[
  {
    "path": ".clang-format",
    "content": "# This is the clang-format style used by qt releated deepin projects.\n#\n# This file is modified from https://github.com/qt/qt5/blob/5b22f8ec2e4fbb58e362b709ee82f2dbd8afdfd3/_clang-format\n# based on the rules from https://github.com/linuxdeepin/deepin-styleguide,\n# https://wiki.qt.io/Qt_Coding_Style and https://wiki.qt.io/Coding_Conventions\n#\n# This is for clang-format >= 14.0.0\n\n---\n# Webkit style was loosely based on the Qt style\nBasedOnStyle: WebKit\n\n# deepin project might not use same standard.\nStandard: Auto\n\n# Column width is limited to 100 in accordance with Qt Coding Style.\n# https://wiki.qt.io/Qt_Coding_Style\n# Note that this may be changed at some point in the future.\nColumnLimit: 100\n# How much weight do extra characters after the line length limit have.\n# PenaltyExcessCharacter: 4\n\n# Disable reflow of some specific comments\n# qdoc comments: indentation rules are different.\n# Translation comments and SPDX license identifiers are also excluded.\nCommentPragmas: \"^!|^:|^ SPDX-License-Identifier:\"\n\nPointerAlignment: Right\n\n# We use template< without space.\nSpaceAfterTemplateKeyword: false\n\n# We want to break before the operators, but not before a '='.\nBreakBeforeBinaryOperators: NonAssignment\n\n# Braces are usually attached, but not after functions or class declarations.\nBreakBeforeBraces: Custom\nBraceWrapping:\n  AfterClass: true\n  AfterControlStatement: false\n  AfterEnum: false\n  AfterFunction: true\n  AfterNamespace: false\n  AfterObjCDeclaration: false\n  AfterStruct: true\n  AfterUnion: false\n  BeforeCatch: false\n  BeforeElse: false\n  IndentBraces: false\n\n# Indent initializers by 4 spaces\nConstructorInitializerIndentWidth: 4\n\n# Indent width for line continuations.\nContinuationIndentWidth: 8\n\n# No indentation for namespaces.\nNamespaceIndentation: None\n\n# Allow indentation for preprocessing directives (if/ifdef/endif). https://reviews.llvm.org/rL312125\nIndentPPDirectives: AfterHash\n# We only indent with 2 spaces for preprocessor directives\nPPIndentWidth: 2\n\n# Horizontally align arguments after an open bracket.\n# The coding style does not specify the following, but this is what gives\n# results closest to the existing code.\nAlignAfterOpenBracket: true\nAlwaysBreakTemplateDeclarations: true\n\n# Ideally we should also allow less short function in a single line, but\n# clang-format does not handle that.\nAllowShortFunctionsOnASingleLine: Inline\n\n# As clang-format 13 can regroup includes we enable this feature.\n# basically according to https://wiki.qt.io/Coding_Conventions#Including_headers\n# and https://github.com/linuxdeepin/deepin-styleguide\nIncludeBlocks: Regroup\nIncludeCategories:\n  # gtest/gmock's h files\n  - Regex: '^<g(test|mock)/'\n    Priority: 1\n    CaseSensitive: true\n  # Your project's h files.\n  - Regex: '^\"'\n    Priority: 2\n  # DTK libraries' h files\n  - Regex: '^<D[A-Z]'\n    Priority: 4\n    CaseSensitive: true\n  # QT libraries' h files\n  - Regex: '^<(Q[A-Z]|Qt)'\n    Priority: 5\n    CaseSensitive: true\n  # C++ system headers (as of C++23).\n  - Regex: '^<(algorithm|any|array|atomic|barrier|bit|bitset|cassert|ccomplex|cctype|cerrno|cfenv|cfloat|charconv|chrono|cinttypes|ciso646|climits|clocale|cmath|codecvt|compare|complex|concepts|condition_variable|coroutine|csetjmp|csignal|cstdalign|cstdarg|cstdbool|cstddef|cstdint|cstdio|cstdlib|cstring|ctgmath|ctime|cuchar|cwchar|cwctype|deque|exception|execution|expected|filesystem|flat_map|flat_set|format|forward_list|fstream|functional|future|generator|initializer_list|iomanip|ios|iosfwd|iostream|istream|iterator|latch|limits|list|locale|map|mdspan|memory|memory_resource|mutex|new|numbers|numeric|optional|ostream|print|queue|random|ranges|ratio|regex|scoped_allocator|semaphore|set|shared_mutex|source_location|span|spanstream|sstream|stack|stacktrace|stdexcept|stdfloat|stop_token|streambuf|string|string_view|strstream|syncstream|system_error|thread|tuple|type_traits|typeindex|typeinfo|unordered_map|unordered_set|utility|valarray|variant|vector|version)>$'\n    Priority: 6\n    CaseSensitive: true\n  # C system headers.\n  - Regex: '^<(aio|arpa/inet|assert|complex|cpio|ctype|curses|dirent|dlfcn|errno|fcntl|fenv|float|fmtmsg|fnmatch|ftw|glob|grp|iconv|inttypes|iso646|langinfo|libgen|limits|locale|math|monetary|mqueue|ndbm|netdb|net/if|netinet/in|netinet/tcp|nl_types|poll|pthread|pwd|regex|sched|search|semaphore|setjmp|signal|spawn|stdalign|stdarg|stdatomic|stdbool|stddef|stdint|stdio|stdlib|stdnoreturn|string|strings|stropts|sys/ipc|syslog|sys/mman|sys/msg|sys/resource|sys/select|sys/sem|sys/shm|sys/socket|sys/stat|sys/statvfs|sys/time|sys/times|sys/types|sys/uio|sys/un|sys/utsname|sys/wait|tar|term|termios|tgmath|threads|time|trace|uchar|ulimit|uncntrl|unistd|utime|utmpx|wchar|wctype|wordexp)\\.h>$'\n    Priority: 7\n    CaseSensitive: true\n  # other libraries' h files.\n  - Regex: '^<'\n    Priority: 3\nIncludeIsMainRegex: '((T|t)est)?$'\nSortIncludes: true\n\n# macros for which the opening brace stays attached.\nForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH, forever, Q_FOREVER, QBENCHMARK, QBENCHMARK_ONCE ]\n\n# Break constructor initializers before the colon and after the commas.\nBreakConstructorInitializers: BeforeComma\n\n# Add \"// namespace <namespace>\" comments on closing brace for a namespace\n# Ignored for namespaces that qualify as a short namespace,\n# see 'ShortNamespaceLines'\nFixNamespaceComments: true\n\n# Definition of how short a short namespace is, default 1\nShortNamespaceLines: 1\n\n# When escaping newlines in a macro attach the '\\' as far left as possible, e.g.\n##define a     \\\n#   something; \\\n#   other;     \\\n#   thelastlineislong;\nAlignEscapedNewlines: Left\n\n# Avoids the addition of a space between an identifier and the\n# initializer list in list-initialization.\nSpaceBeforeCpp11BracedList: false\n\nAllowAllArgumentsOnNextLine: false\nAllowShortLambdasOnASingleLine: Empty\nAlignTrailingComments: true\nBinPackArguments: false\nBinPackParameters: false\n# EmptyLineAfterAccessModifier: Never\nPackConstructorInitializers: Never\nPenaltyReturnTypeOnItsOwnLine: 100\nSeparateDefinitionBlocks: Always\nWhitespaceSensitiveMacros:\n  - Q_PROPERTY\n  - Q_INTERFACES\n"
  },
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\n\n[CMakeLists.txt]\nindent_style = space\nindent_size = 4\n\n[*.{cpp,h,ts}]\nindent_style = space\nindent_size = 4\n"
  },
  {
    "path": ".github/copilot-instructions.md",
    "content": "# DDE Control Center - AI Coding Agent Instructions\n\n## Project Overview\nDDE Control Center (深度控制中心) v6.0+ is a Qt6/QML-based desktop control panel for Deepin Desktop Environment. It uses a **plugin-based architecture** where the core framework provides infrastructure and all features are implemented as plugins.\n\n## Critical Architecture Concepts\n\n### Plugin System (V25 Architecture)\n- **Two-phase loading**: Plugins load in stages to optimize startup\n  1. `{plugin}.qml` - Metadata/menu entry (fast, synchronous)\n  2. `{plugin}.so` - C++ backend (threaded, async)\n  3. `{plugin}Main.qml` - Full UI (loaded on-demand)\n- **Plugin location**: `${CMAKE_INSTALL_LIBDIR}/dde-control-center/plugins_v1.0/{plugin-name}/`\n- **Factory pattern**: Use `DCC_FACTORY_CLASS(YourClass)` macro + `#include \"yourclass.moc\"` to register plugins\n- **Thread safety**: Plugin C++ objects created in worker threads are moved to main thread - all child objects MUST be in the same tree hierarchy or they won't be moved\n\n### Core Framework Classes\n- **DccObject**: Tree-node base class for all UI elements. Key properties:\n  - `name`: Unique ID (no `/` characters, used in URL paths)\n  - `parentName`: Parent's URL path (can be hierarchical like `\"aa/bb/cc\"`)\n  - `weight`: Display order (0-65535, use increments of 10)\n  - `pageType`: Determines rendering (Menu, Editor, Item)\n- **DccApp**: Global singleton accessible from QML, provides `root`, `addObject()`, `removeObject()`, `showPage()` \n- **DccFactory**: Interface for plugin registration (see [include/dccfactory.h](include/dccfactory.h))\n\n### QML-C++ Integration\n- C++ exports accessed via `dccData` in QML (automatically injected)\n- Use `Q_PROPERTY`, `Q_INVOKABLE`, or slots for QML exposure\n- Example: `dccData.calc(a, b)` calls C++ method from QML\n\n## Build & Development Workflows\n\n### Standard Build\n```bash\ncmake -B build\ncmake --build build\n# Debug single plugin without installing:\n./build/bin/dde-control-center --spec ./build/lib/plugins_v1.0/{plugin-name}\n```\n\n### Build Flags\n- `BUILD_TESTING=ON`: Enable unit tests (uses GTest)\n- `ENABLE_ASAN=OFF`: Address sanitizer (disabled by default due to plugin compat issues)\n- `DISABLE_*` options: Conditionally disable plugins (see [CMakeLists.txt](CMakeLists.txt#L40-L46))\n\n### Plugin Development Pattern\nSee complete example in [examples/plugin-example](examples/plugin-example) and [docs/v25-dcc-interface.zh_CN.md](docs/v25-dcc-interface.zh_CN.md)\n\n**CMakeLists.txt template**:\n```cmake\nfind_package(DdeControlCenter REQUIRED)\nadd_library(myplugin MODULE src/myplugin.cpp)\ntarget_link_libraries(myplugin PRIVATE Dde::Control-Center Qt6::Core)\ndcc_install_plugin(NAME myplugin TARGET myplugin)\ndcc_handle_plugin_translation(NAME myplugin) # auto-handles i18n\n```\n\n**Plugin registration** ([src/plugin-*/operation/*.cpp](src/plugin-deepinid/operation/deepinidinterface.cpp#L25-L26)):\n```cpp\n#include \"dccfactory.h\"\nDCC_FACTORY_CLASS(YourPluginClass)\n#include \"yourpluginclass.moc\"\n```\n\n## Project Conventions\n\n### File Naming\n- Plugins: `plugin-{name}/` directories under [src/](src/)\n- QML entry: `{name}.qml` (metadata only)\n- QML main: `{name}Main.qml` (full UI implementation) - **renamed from `main.qml` in v6.0.77 to avoid translation conflicts**\n- C++ sources: `operation/` or `src/` subdirectories\n\n### Configuration Management\n- **DConfig** for settings: `org.deepin.dde.control-center` ([misc/configs/](misc/configs/))\n- Check visibility: `dde-dconfig get org.deepin.dde.control-center -r org.deepin.dde.control-center hideModule`\n- **DccDBusInterface** QML type for DBus interaction (see [docs/v25-dcc-interface.zh_CN.md](docs/v25-dcc-interface.zh_CN.md#L168-L186))\n\n### Qt Version\n- **Qt6 only** - mixing Qt5 libraries will cause crashes\n- Uses `Qt6::`, `Dtk6::` namespaces\n- CMake: `set(QT_NS Qt6)` and `set(DTK_NS Dtk6)`\n\n## Testing\n- Framework: GTest for C++ unit tests\n- Location: [tests/](tests/) and [dde-grand-search/tests/](dde-grand-search/tests/)\n- Run: Enable `BUILD_TESTING=ON`, tests built to `build/bin/`\n\n## Common Pitfalls\n1. **ASAN incompatibility**: Don't use ASAN in plugins if control center wasn't built with it\n2. **Thread safety**: Plugin constructor objects must be children of the exported class to be moved to main thread\n3. **Name conflicts**: Plugin `name` property must be unique - used for URLs and configuration\n4. **QML translation**: Use `qsTr()` in QML, handled by `dcc_handle_plugin_translation()`\n\n## Key Files for Reference\n- [include/dccobject.h](include/dccobject.h) - Core object properties/signals\n- [include/dccapp.h](include/dccapp.h) - Global API\n- [include/dccfactory.h](include/dccfactory.h) - Plugin interface + registration macro\n- [misc/DdeControlCenterPluginMacros.cmake](misc/DdeControlCenterPluginMacros.cmake) - CMake helpers\n- [docs/v25-dcc-interface.zh_CN.md](docs/v25-dcc-interface.zh_CN.md) - Complete API reference (Chinese)\n"
  },
  {
    "path": ".github/workflows/backup-to-gitlab.yml",
    "content": "name: backup to gitlab\non: [push]\n\nconcurrency:\n  group: ${{ github.workflow }}\n  cancel-in-progress: true\n\njobs:\n  backup-to-gitlabwh:\n    uses: linuxdeepin/.github/.github/workflows/backup-to-gitlabwh.yml@master\n    secrets: inherit\n\n  backup-to-gitee:\n    uses: linuxdeepin/.github/.github/workflows/backup-to-gitee.yml@master\n    secrets: inherit\n"
  },
  {
    "path": ".github/workflows/call-auto-tag.yml",
    "content": "name: auto tag\n\non:\n  pull_request_target:\n    types: [opened, synchronize, closed]\n    paths:\n      - \"debian/changelog\"\n\nconcurrency:\n  group: ${{ github.workflow }}-pull/${{ github.event.number }}\n  cancel-in-progress: true\n\njobs:\n  auto_tag:\n    uses: linuxdeepin/.github/.github/workflows/auto-tag.yml@master\n    secrets: inherit\n"
  },
  {
    "path": ".github/workflows/call-build-distribution.yml",
    "content": "name: Call build-distribution\non:\n  push:\n    paths-ignore:\n      - \".github/workflows/**\"\n  pull_request_target:\n    paths-ignore:\n      - \".github/workflows/**\"\n\njobs:\n  check_job:\n    uses: linuxdeepin/.github/.github/workflows/build-distribution.yml@master\n    secrets: inherit\n"
  },
  {
    "path": ".github/workflows/call-chatOps.yml",
    "content": "name: chatOps\non:\n  issue_comment:\n    types: [created]\n\njobs:\n  chatopt:\n    uses: linuxdeepin/.github/.github/workflows/chatOps.yml@master\n    secrets: inherit\n"
  },
  {
    "path": ".github/workflows/call-clacheck.yml",
    "content": "name: Call CLA check\non:\n  issue_comment:\n    types: [created]\n  pull_request_target:\n    types: [opened, closed, synchronize]\n\nconcurrency:\n  group: ${{ github.workflow }}-pull/${{ github.event.number }}\n  cancel-in-progress: true\n\njobs:\n  clacheck:\n    uses: linuxdeepin/.github/.github/workflows/cla-check.yml@master\n    secrets: inherit\n"
  },
  {
    "path": ".github/workflows/call-commitlint.yml",
    "content": "name: Call commitlint\non:\n  pull_request_target:\n\nconcurrency:\n  group: ${{ github.workflow }}-pull/${{ github.event.number }}\n  cancel-in-progress: true\n\njobs:\n  check_job:\n    uses: linuxdeepin/.github/.github/workflows/commitlint.yml@master\n"
  },
  {
    "path": ".github/workflows/call-deploy-dev-doc.yml",
    "content": "name: deploy docs\r\non:\r\n  push:\r\n    branches: [\"master\"]\r\n  workflow_dispatch:\r\n    inputs:\r\n      tag:\r\n        required: true\r\n        type: string\r\n\r\npermissions:\r\n  contents: read\r\n  pages: write\r\n  id-token: write\r\n\r\n# Allow one concurrent deployment\r\nconcurrency:\r\n  group: \"pages\"\r\n  cancel-in-progress: true\r\n\r\njobs:\r\n  deploydocs:\r\n    uses: linuxdeepin/.github/.github/workflows/deploy-dev-doc.yml@master\r\n    with:\r\n      ref: ${{ inputs.tag }}\r\n    secrets: inherit\r\n"
  },
  {
    "path": ".github/workflows/call-license-check.yml",
    "content": "name: Call License and README Check\non:\n  pull_request_target:\n    types: [opened, synchronize, reopened]\n\npermissions:\n  pull-requests: write\n  contents: read\n\nconcurrency:\n  group: ${{ github.workflow }}-pull/${{ github.event.number }}\n  cancel-in-progress: true\n\njobs:\n  license-check:\n    uses: linuxdeepin/.github/.github/workflows/license-check.yml@master\n"
  },
  {
    "path": ".github/workflows/cppcheck.yml",
    "content": "name: cppcheck\non:\n  pull_request_target:\n    paths-ignore:\n      - \".github/workflows/**\"\n\nconcurrency:\n  group: ${{ github.workflow }}-pull/${{ github.event.number }}\n  cancel-in-progress: true\n\njobs:\n  cppchceck:\n    name: cppcheck\n    runs-on: ubuntu-latest\n    steps:\n      - run: export\n      - uses: actions/checkout@v4\n        with:\n          ref: ${{ github.event.pull_request.head.sha }}\n          persist-credentials: false\n      - uses: linuxdeepin/action-cppcheck@main\n        with:\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n          repository: ${{ github.repository }}\n          pull_request_id: ${{ github.event.pull_request.number }}\n          allow_approve: false\n"
  },
  {
    "path": ".gitignore",
    "content": "# Compiled Object files\n*.slo\n*.lo\n*.o\n\n# Compiled Dynamic libraries\n*.so\n*.dylib\n\n# Compiled Static libraries\n*.lai\n*.la\n*.a\n\nbuild*/\n*.pro.user*\n*.DS_Store\n*.core\n*.autosave\n*.user*\n\ndebian/files\ndebian/tmp\nobj-x86_64-linux-gnu\ndebian/debhelper-build-stamp\ndebian/dde-control-center\ndebian/dde-control-center-dev\ndebian/dde-control-center-doc\n*.log\n*.substvars\n.debhelper\n\n# qm file is auto generate from .ts file\n*.qm\n\n# vim tmp file\n*.swp\n\n*.vscode\n*.vim\n\n# clion tmp file\n.idea/\n# clangd tmp file\n.cache/\n\n.transifexrc\nlupdate.sh\n\n# nix\n.direnv\n"
  },
  {
    "path": ".obs/workflows.yml",
    "content": "test_build:\n  steps:\n    - link_package:\n        source_project: deepin:Develop:dde\n        source_package: %{SCM_REPOSITORY_NAME}\n        target_project: deepin:CI\n\n    - configure_repositories:\n        project: deepin:CI\n        repositories:\n          - name: deepin_develop\n            paths:\n              - target_project: deepin:Develop:dde\n                target_repository: deepin_develop\n              - target_project: deepin:CI\n                target_repository: deepin_develop\n              - target_project: deepin:CI:dodconfig\n                target_repository: deepin_develop\n            architectures:\n              - x86_64\n              - aarch64\n\n  filters:\n    event: pull_request\n\ntag_build:\n  steps:\n    - trigger_services:\n        project: deepin:Unstable:dde\n        package: %{SCM_REPOSITORY_NAME}\n  filters:\n    event: tag_push\n\ncommit_build:\n  steps:\n    - trigger_services:\n        project: deepin:Develop:dde\n        package: %{SCM_REPOSITORY_NAME}\n  filters:\n    event: push\n"
  },
  {
    "path": ".reuse/dep5",
    "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: dtkcore\nUpstream-Contact: UnionTech Software Technology Co., Ltd. <>\nSource: https://github.com/linuxdeepin/dtkcore\n\n# ci\nFiles: .github/* .gitlab-ci.yml .obs/workflows.yml\nCopyright: None\nLicense: CC0-1.0\n\n# config\nFiles: .clang-format .editorconfig\nCopyright: None\nLicense: CC0-1.0\n\n# debian rpm archlinux\nFiles: debian/* rpm/* archlinux/*\nCopyright: None\nLicense: CC0-1.0\n\n# translation\nFiles: translations/* **/*.ts .tx/config .tx/transifex.yaml\nCopyright: UnionTech Software Technology Co., Ltd.\nLicense: GPL-3.0-or-later\n\n# png svg\nFiles: **/*.svg **/*.png **/*.dci **/*.gif **/*.webp\nCopyright: UnionTech Software Technology Co., Ltd.\nLicense: CC0-1.0\n\n# xml toml json conf yaml ...\nFiles: **/*.json **/*.service **/*.txt **/*.sh **/*.html **/conf .gitignore **/*.desktop **/*.css **/*.ttf *.conf *.xml\nCopyright: None\nLicense: CC0-1.0\n\n# README\nFiles: **/*.md README.md README.zh_CN.md\nCopyright: UnionTech Software Technology Co., Ltd.\nLicense: CC-BY-4.0\n\n# Project file\nFiles: **/*.cmake **/CMakeLists.txt **/*.in **/*.qrc CMakeLists.txt\nCopyright: None\nLicense: CC0-1.0\n\n# MetaInfo File\nFiles: misc/org.deepin.dde.controlcenter.metainfo.xml\nCopyright: None\nLicense: CC0-1.0\n\n# 3rdparty\nFiles: src/plugin-display/wayland/*\nCopyright: Marcus Britanicus, Abrar, rahmanshaber\nLicense: MIT\n\n######## dcc-old ########\n# translation\nFiles: dcc-old/translations/*\nCopyright: UnionTech Software Technology Co., Ltd.\nLicense: GPL-3.0-or-later\n\n# 3rdparty\nFiles: dcc-old/src/plugin-display/wayland/*\nCopyright: Marcus Britanicus, Abrar, rahmanshaber\nLicense: MIT\n\nFiles: toolGenerate/**/*\nCopyright: None\nLicense: CC0-1.0\n"
  },
  {
    "path": ".tx/config",
    "content": "[main]\nhost = https://www.transifex.com\n\n[o:linuxdeepin:p:deepin-desktop-environment:r:332dacad18d2b1a048dba06b5c1f0293]\nfile_filter = translations/dde-control-center_<lang>.ts\nsource_file = translations/dde-control-center_en.ts\nsource_lang = en_US\ntype = QT\n\n[o:linuxdeepin:p:deepin-desktop-environment:r:4ea171636f1b3b620948addfb330f0d9]\nfile_filter = translations/desktop/desktop_<lang>.ts\nsource_file = translations/desktop/desktop.ts\nsource_lang = en_US\ntype = QT\n"
  },
  {
    "path": ".tx/deepin.conf",
    "content": "[transifex]\nbranch = m23\n"
  },
  {
    "path": ".tx/transifex.yaml",
    "content": "filters:\n  - filter_type: file\n    source_file: translations/dde-control-center_en.ts\n    file_format: QT\n    source_language: en_US\n    translation_files_expression: translations/dde-control-center_<lang>.ts\n  - filter_type: file\n    source_file: translations/desktop/desktop.ts\n    file_format: QT\n    source_language: en_US\n    translation_files_expression: translations/desktop/desktop_<lang>.ts\nsettings:\n    pr_branch_name: transifex_update_<br_unique_id>\n"
  },
  {
    "path": "CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\n\nset(DVERSION \"6.0.44\" CACHE STRING \"define project version\")\nset(BUILD_DOCS OFF CACHE BOOL \"Generate doxygen-based documentation\")\n\nset(PROJECT_NAME dde-control-center)\nproject(${PROJECT_NAME}\n    VERSION ${DVERSION}\n    DESCRIPTION \"Deepin Control Center\"\n    HOMEPAGE_URL \"https://github.com/linuxdeepin/dde-control-center\"\n    LANGUAGES CXX C\n)\n\nset(CMAKE_CXX_STANDARD 17)\nset(CMAKE_INCLUDE_CURRENT_DIR ON)\nset(CMAKE_AUTOMOC ON)\nset(CMAKE_AUTORCC ON)\nset(CMAKE_CXX_STANDARD_REQUIRED ON)\nset(ENABLE_ASAN OFF)\noption(BUILD_TESTING \"UNIT test\" OFF)\nset(BUILD_EXAMPLES OFF)\n\nset(DCC_ENABLE_MEMORY_MANAGEMENT ON)\n\nset(QT_NS Qt6)\nset(DTK_NS Dtk6)\nset(ASQT_NS AppStreamQt)\n\n# 设置静态库文件目录\nset(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)\n# 动态库文件目录\nset(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)\n# 可执行文件目录\nset(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)\n\n\n# INFO:\n# plugins can be disabled and their options\n# plugin-authentication : DISABLE_AUTHENTICATION\n# plugin-keyboard: DISABLE_LANGUAGE to disable language panel\n\noption(DISABLE_AUTHENTICATION \"disable build authentication plugins\" OFF)\noption(DISABLE_PRIVACY_PLUGIN \"disable privacy and security plugin\" OFF)\noption(DISABLE_LANGUAGE \"disable lanugage settings in control center\" OFF)\noption(USE_DEEPIN_ZONE \"enable special timezone file on deepin\" OFF)\noption(DISABLE_SOUND_ADVANCED \"disable sound advanced settings\" OFF)\nset(DEEPIN_TIME_ZONE_PATH \"/usr/share/dde/zoneinfo/zone1970.tab\" CACHE STRING \"deepin timezone path\")\nset(LOCALE_I18N_PATH \"/usr/share/i18n/SUPPORTED\" CACHE STRING \"Supported locale path\")\n\nset(CMAKE_MODULE_PATH \"${CMAKE_SOURCE_DIR}/misc;${CMAKE_MODULE_PATH};${ECM_MODULE_PATH};${PROJECT_SOURCE_DIR}/misc\")\ninclude(DdeControlCenterPluginMacros)\n\n# asan 自己有内存泄露，暂不使用\nif (CMAKE_BUILD_TYPE STREQUAL \"Debug\")\n    set(UNITTEST ON)\n    set(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} -g -Wall -Werror=return-type -fno-omit-frame-pointer -Wextra\")\n    if(ENABLE_ASAN)\n        if (CMAKE_CXX_COMPILER_ID MATCHES \"GNU\"  OR CMAKE_CXX_COMPILER_ID MATCHES \"Clang\")\n            set(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} -fsanitize=address -g\")\n            set(CMAKE_C_FLAGS \"${CMAKE_C_FLAGS} -fsanitize=address -g\")\n            set(CMAKE_EXE_LINKER_FLAGS \"${CMAKE_EXE_LINKER_FLAGS} -fsanitize=address\")\n            set(CMAKE_LINKER_FLAGS \"${CMAKE_LINKER_FLAGS} -fsanitize=address\")\n            set(CMAKE_SHARED_LINKER_FLAGS \"${CMAKE_SHARED_LINKER_FLAGS} -fsanitize=address\")\n            add_definitions(-DUSE_ASAN)\n        endif()\n    endif()\nelse()\n    # generate qm\n    execute_process(COMMAND bash \"misc/translate_generation.sh\" \"${CMAKE_CURRENT_BINARY_DIR}/src/dde-control-center\"\n        WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})\n    # generate desktop translate\n    execute_process(COMMAND bash \"misc/translate_ts2desktop.sh\"\n        WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})\nendif()\n\nif (BUILD_TESTING)\n    set(UNITTEST ON)\nendif()\n\nset(BUILD_PLUGIN ON)\n\nif (NOT BUILD_PLUGIN)\n    set(UNITTEST OFF)\nendif()\n# GNU 默认\n\nif (CMAKE_CXX_COMPILER_ID STREQUAL \"GNU\")\n    set(UT_COMPILER -fprofile-arcs -ftest-coverage)\nelseif (CMAKE_CXX_COMPILER_ID STREQUAL \"Clang\")\n    set(UT_COMPILER -fprofile-instr-generate -ftest-coverage)\nendif()\n\nif (USE_DEEPIN_ZONE)\n    add_definitions(-DUSE_DEEPIN_ZONE)\n    add_definitions(-DDEEPIN_TIME_ZONE_PATH=\"${DEEPIN_TIME_ZONE_PATH}\")\nendif ()\n\nadd_definitions(-DLOCALE_I18N_PATH=\"${LOCALE_I18N_PATH}\")\n\nif(DCC_ENABLE_MEMORY_MANAGEMENT)\n  add_definitions(-DDCC_ENABLE_MEMORY_MANAGEMENT)\nendif()\n# 增加安全编译参数\nset(POSITION_INDEPENDENT_CODE True)\nset(THREADS_PREFER_PTHREAD_FLAG ON)\nfind_package(Threads REQUIRED)\n\n# Install settings\nif (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)\n    set(CMAKE_INSTALL_PREFIX /usr)\nendif ()\ninclude(GNUInstallDirs)\ninclude(CMakePackageConfigHelpers)\ninclude(GoogleTest)\n\nif(BUILD_DOCS)\n    add_subdirectory(docs)\nendif()\n\nset(DCC_PLUGINS_VERSION 1.1)\nset(DCC_TRANSLATION_INSTALL_DIR \"${CMAKE_INSTALL_DATAROOTDIR}/${PROJECT_NAME}/translations/v${DCC_PLUGINS_VERSION}\" CACHE STRING \"Install dir for dde-control-center translate files\")\n\n# 输出目录\nset(DCC_LIBDIR ${PROJECT_BINARY_DIR}/lib)\n# 插件目录\nset(DCC_PLUGINS_DIR plugins_v${DCC_PLUGINS_VERSION})\n# 安装目录\nset(DCC_INSTALL_DIR ${CMAKE_INSTALL_LIBDIR}/dde-control-center)\nset(DCC_DEBUG_LIBDIR ${DCC_INSTALL_DIR})\nset(DCC_TRANSLATE_READ_DIR ${CMAKE_INSTALL_PREFIX}/${DCC_TRANSLATION_INSTALL_DIR})\n\nif (CMAKE_BUILD_TYPE STREQUAL \"Debug\")\n    set(DCC_DEBUG_LIBDIR ${DCC_LIBDIR})\n    set(DCC_TRANSLATE_READ_DIR ${PROJECT_BINARY_DIR}/src/dde-control-center)\nendif()\n\nadd_definitions(-DTRANSLATE_READ_DIR=\"${DCC_TRANSLATE_READ_DIR}\")\n# 插件安装目录\nset(DCC_PLUGINS_INSTALL_DIR ${DCC_DEBUG_LIBDIR}/${DCC_PLUGINS_DIR} CACHE STRING \"Install dir for dde-control-center plugins\")\n# 插件读取目录\nset(MODULE_READ_DIR \"${DCC_DEBUG_LIBDIR}\" CACHE STRING \"Dir to find dde-control-center modules\")\nset(PLUGINS_READ_DIR \"${DCC_PLUGINS_INSTALL_DIR}\" CACHE STRING \"Dir to find dde-control-center plugins\")\n\nGNUInstallDirs_get_absolute_install_dir(\n    MODULE_READ_FULL_DIR\n    MODULE_READ_DIR\n    LIBDIR\n)\n\nGNUInstallDirs_get_absolute_install_dir(\n    PLUGINS_READ_FULL_DIR\n    PLUGINS_READ_DIR\n    LIBDIR\n)\n\nmessage(STATUS ${MODULE_READ_FULL_DIR})\nmessage(STATUS ${PLUGINS_READ_FULL_DIR})\nmessage(STATUS ${DCC_PLUGINS_INSTALL_DIR})\n\nadd_definitions(-DDefaultModuleDirectory=\"${MODULE_READ_FULL_DIR}\")\nadd_definitions(-DDefaultPluginsDirectory=\"${PLUGINS_READ_FULL_DIR}\")\n\n# DdeControlCenterPluginMacros.cmake 使用\nset(DDE_CONTROL_CENTER_PLUGIN_DIR ${DCC_PLUGINS_DIR})\nset(DDE_CONTROL_CENTER_TRANSLATION_INSTALL_DIR ${DCC_TRANSLATION_INSTALL_DIR})\nset(DDE_CONTROL_CENTER_PLUGIN_INSTALL_DIR ${DCC_PLUGINS_INSTALL_DIR})\n\nset(LOCALSTATE_READ_DIR \"${CMAKE_INSTALL_FULL_LOCALSTATEDIR}\" CACHE STRING \"Dir to find modifiable single-machine data\")\nset(DCC_PROJECT_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR})\nadd_definitions(-DVARDIRECTORY=\"${LOCALSTATE_READ_DIR}\")\n# Find the library\nfind_package(PkgConfig REQUIRED)\nfind_package(${DTK_NS} REQUIRED COMPONENTS Core Gui  )\nfind_package(${QT_NS} COMPONENTS Core Quick Gui Network DBus Concurrent Test LinguistTools Multimedia REQUIRED)\nif(${QT_NS}_VERSION VERSION_GREATER_EQUAL 6.10)\n  find_package(${QT_NS} COMPONENTS GuiPrivate REQUIRED)\nendif()\nfind_package(GTest REQUIRED)\nfind_package(Threads REQUIRED)\n\n# Check if dde-api provides EventLogger (header-only)\nfind_package(DDEAPI QUIET)\nif(DDEAPI_FOUND)\n    set(HAVE_DDE_API_EVENTLOGGER ON)\n    message(STATUS \"Found DDEAPI: EventLogger available\")\nelse()\n    message(STATUS \"DDEAPI not found, event logging will be disabled\")\nendif()\n\nif (${CMAKE_SYSTEM_PROCESSOR} STREQUAL \"sw_64\")\n    set(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} -mieee\")\nendif()\n\n# dconfig\nfile(GLOB DCONFIG_FILES \"misc/configs/*.json\")\ndtk_add_config_meta_files(APPID org.deepin.dde.control-center BASE misc/configs FILES ${DCONFIG_FILES})\nfile(GLOB DCONFIG_FILE_REGION_FORMAT \"misc/configs/common/org.deepin.region-format.json\")\ndtk_add_config_meta_files(COMMONID true FILES ${DCONFIG_FILE_REGION_FORMAT})\n\ninclude_directories(\n    include\n)\n\nset(Test_Libraries\n    -lgcov\n    Threads::Threads\n    GTest::gtest\n    ${QT_NS}::Test\n)\n\nset(DCC_FRAME_Library dde-control-center_frame)\nset(Enable_TreelandSupport ON CACHE BOOL \"Enable Treeland Support\")\n\nadd_subdirectory(src/dde-control-center)\n#-----------------------shared-utils------------------------\nadd_subdirectory(src/shared-utils)\n#--------------------------plugins--------------------------\nadd_subdirectory(src/plugin-system)\nadd_subdirectory(src/plugin-device)\nadd_subdirectory(src/plugin-accounts)\nif (NOT DISABLE_AUTHENTICATION)\n    add_subdirectory(src/plugin-authentication)\nendif()\nadd_subdirectory(src/plugin-sound)\nadd_subdirectory(src/plugin-defaultapp)\nadd_subdirectory(src/plugin-power)\nadd_subdirectory(src/plugin-mouse)\nadd_subdirectory(src/plugin-personalization)\nadd_subdirectory(src/plugin-keyboard)\nadd_subdirectory(src/plugin-systeminfo)\nadd_subdirectory(src/plugin-commoninfo)\nadd_subdirectory(src/plugin-touchscreen)\nadd_subdirectory(src/plugin-datetime)\nadd_subdirectory(src/plugin-wacom)\nadd_subdirectory(src/plugin-bluetooth)\nadd_subdirectory(src/plugin-notification)\nadd_subdirectory(src/plugin-deepinid)\nadd_subdirectory(src/plugin-display)\nif (NOT DISABLE_PRIVACY_PLUGIN)\n    add_subdirectory(src/plugin-privacy)\nendif()\nadd_subdirectory(src/plugin-dock)\n\nif(BUILD_EXAMPLES)\n    add_subdirectory(examples)\nendif()\n\nif(UNITTEST)\n    add_subdirectory(tests)\nendif()\n"
  },
  {
    "path": "LICENSE",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Use with the GNU Affero General Public License.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<http://www.gnu.org/licenses/>.\n\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\n<http://www.gnu.org/philosophy/why-not-lgpl.html>.\n"
  },
  {
    "path": "LICENSES/CC-BY-4.0.txt",
    "content": "Creative Commons Attribution 4.0 International\n\n Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses.\n\nConsiderations for licensors: Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC-licensed material, or material used under an exception or limitation to copyright. More considerations for licensors.\n\nConsiderations for the public: By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public.\n\nCreative Commons Attribution 4.0 International Public License\n\nBy exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License (\"Public License\"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.\n\nSection 1 – Definitions.\n\n     a.\tAdapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.\n\n     b.\tAdapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.\n\n     c.\tCopyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.\n\n     d.\tEffective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.\n\n     e.\tExceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.\n\n     f.\tLicensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License.\n\n     g.\tLicensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.\n\n     h.\tLicensor means the individual(s) or entity(ies) granting rights under this Public License.\n\n     i.\tShare means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.\n\n     j.\tSui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.\n\n     k.\tYou means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning.\n\nSection 2 – Scope.\n\n     a.\tLicense grant.\n\n          1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:\n\n               A. reproduce and Share the Licensed Material, in whole or in part; and\n\n               B. produce, reproduce, and Share Adapted Material.\n\n          2. Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions.\n\n          3. Term. The term of this Public License is specified in Section 6(a).\n\n          4. Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material.\n\n          5. Downstream recipients.\n\n               A. Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License.\n\n               B. No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.\n\n          6.  No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i).\n\nb. Other rights.\n\n          1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.\n\n          2. Patent and trademark rights are not licensed under this Public License.\n\n          3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties.\n\nSection 3 – License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the following conditions.\n\n     a.\tAttribution.\n\n          1. If You Share the Licensed Material (including in modified form), You must:\n\n               A. retain the following if it is supplied by the Licensor with the Licensed Material:\n\n                    i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);\n\n                    ii. a copyright notice;\n\n                    iii. a notice that refers to this Public License;\n\n                    iv.\ta notice that refers to the disclaimer of warranties;\n\n                    v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable;\n\n               B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and\n\n               C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License.\n\n          2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.\n\n          3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable.\n\n          4. If You Share Adapted Material You produce, the Adapter's License You apply must not prevent recipients of the Adapted Material from complying with this Public License.\n\nSection 4 – Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:\n\n     a.\tfor the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database;\n\n     b.\tif You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and\n\n     c.\tYou must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database.\nFor the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.\n\nSection 5 – Disclaimer of Warranties and Limitation of Liability.\n\n     a.\tUnless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.\n\n     b.\tTo the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.\n\n     c.\tThe disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.\n\nSection 6 – Term and Termination.\n\n     a.\tThis Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.\n\n     b.\tWhere Your right to use the Licensed Material has terminated under Section 6(a), it reinstates:\n\n          1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or\n\n          2. upon express reinstatement by the Licensor.\n\n     c.\tFor the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License.\n\n     d.\tFor the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.\n\n     e.\tSections 1, 5, 6, 7, and 8 survive termination of this Public License.\n\nSection 7 – Other Terms and Conditions.\n\n     a.\tThe Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.\n\n     b.\tAny arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.\n\nSection 8 – Interpretation.\n\n     a.\tFor the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.\n\n     b.\tTo the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.\n\n     c.\tNo term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.\n\n     d.\tNothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.\n\nCreative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses.\n\nCreative Commons may be contacted at creativecommons.org.\n"
  },
  {
    "path": "LICENSES/CC0-1.0.txt",
    "content": "Creative Commons Legal Code\n\nCC0 1.0 Universal\n\n    CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n    LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN\n    ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS\n    INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES\n    REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS\n    PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM\n    THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED\n    HEREUNDER.\n\nStatement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator\nand subsequent owner(s) (each and all, an \"owner\") of an original work of\nauthorship and/or a database (each, a \"Work\").\n\nCertain owners wish to permanently relinquish those rights to a Work for\nthe purpose of contributing to a commons of creative, cultural and\nscientific works (\"Commons\") that the public can reliably and without fear\nof later claims of infringement build upon, modify, incorporate in other\nworks, reuse and redistribute as freely as possible in any form whatsoever\nand for any purposes, including without limitation commercial purposes.\nThese owners may contribute to the Commons to promote the ideal of a free\nculture and the further production of creative, cultural and scientific\nworks, or to gain reputation or greater distribution for their Work in\npart through the use and efforts of others.\n\nFor these and/or other purposes and motivations, and without any\nexpectation of additional consideration or compensation, the person\nassociating CC0 with a Work (the \"Affirmer\"), to the extent that he or she\nis an owner of Copyright and Related Rights in the Work, voluntarily\nelects to apply CC0 to the Work and publicly distribute the Work under its\nterms, with knowledge of his or her Copyright and Related Rights in the\nWork and the meaning and intended legal effect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\nprotected by copyright and related or neighboring rights (\"Copyright and\nRelated Rights\"). Copyright and Related Rights include, but are not\nlimited to, the following:\n\n  i. the right to reproduce, adapt, distribute, perform, display,\n     communicate, and translate a Work;\n ii. moral rights retained by the original author(s) and/or performer(s);\niii. publicity and privacy rights pertaining to a person's image or\n     likeness depicted in a Work;\n iv. rights protecting against unfair competition in regards to a Work,\n     subject to the limitations in paragraph 4(a), below;\n  v. rights protecting the extraction, dissemination, use and reuse of data\n     in a Work;\n vi. database rights (such as those arising under Directive 96/9/EC of the\n     European Parliament and of the Council of 11 March 1996 on the legal\n     protection of databases, and under any national implementation\n     thereof, including any amended or successor version of such\n     directive); and\nvii. other similar, equivalent or corresponding rights throughout the\n     world based on applicable law or treaty, and any national\n     implementations thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention\nof, applicable law, Affirmer hereby overtly, fully, permanently,\nirrevocably and unconditionally waives, abandons, and surrenders all of\nAffirmer's Copyright and Related Rights and associated claims and causes\nof action, whether now known or unknown (including existing as well as\nfuture claims and causes of action), in the Work (i) in all territories\nworldwide, (ii) for the maximum duration provided by applicable law or\ntreaty (including future time extensions), (iii) in any current or future\nmedium and for any number of copies, and (iv) for any purpose whatsoever,\nincluding without limitation commercial, advertising or promotional\npurposes (the \"Waiver\"). Affirmer makes the Waiver for the benefit of each\nmember of the public at large and to the detriment of Affirmer's heirs and\nsuccessors, fully intending that such Waiver shall not be subject to\nrevocation, rescission, cancellation, termination, or any other legal or\nequitable action to disrupt the quiet enjoyment of the Work by the public\nas contemplated by Affirmer's express Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason\nbe judged legally invalid or ineffective under applicable law, then the\nWaiver shall be preserved to the maximum extent permitted taking into\naccount Affirmer's express Statement of Purpose. In addition, to the\nextent the Waiver is so judged Affirmer hereby grants to each affected\nperson a royalty-free, non transferable, non sublicensable, non exclusive,\nirrevocable and unconditional license to exercise Affirmer's Copyright and\nRelated Rights in the Work (i) in all territories worldwide, (ii) for the\nmaximum duration provided by applicable law or treaty (including future\ntime extensions), (iii) in any current or future medium and for any number\nof copies, and (iv) for any purpose whatsoever, including without\nlimitation commercial, advertising or promotional purposes (the\n\"License\"). The License shall be deemed effective as of the date CC0 was\napplied by Affirmer to the Work. Should any part of the License for any\nreason be judged legally invalid or ineffective under applicable law, such\npartial invalidity or ineffectiveness shall not invalidate the remainder\nof the License, and in such case Affirmer hereby affirms that he or she\nwill not (i) exercise any of his or her remaining Copyright and Related\nRights in the Work or (ii) assert any associated claims and causes of\naction with respect to the Work, in either case contrary to Affirmer's\nexpress Statement of Purpose.\n\n4. Limitations and Disclaimers.\n\n a. No trademark or patent rights held by Affirmer are waived, abandoned,\n    surrendered, licensed or otherwise affected by this document.\n b. Affirmer offers the Work as-is and makes no representations or\n    warranties of any kind concerning the Work, express, implied,\n    statutory or otherwise, including without limitation warranties of\n    title, merchantability, fitness for a particular purpose, non\n    infringement, or the absence of latent or other defects, accuracy, or\n    the present or absence of errors, whether or not discoverable, all to\n    the greatest extent permissible under applicable law.\n c. Affirmer disclaims responsibility for clearing rights of other persons\n    that may apply to the Work or any use thereof, including without\n    limitation any person's Copyright and Related Rights in the Work.\n    Further, Affirmer disclaims responsibility for obtaining any necessary\n    consents, permissions or other rights required for any use of the\n    Work.\n d. Affirmer understands and acknowledges that Creative Commons is not a\n    party to this document and has no duty or obligation with respect to\n    this CC0 or use of the Work.\n"
  },
  {
    "path": "LICENSES/GPL-3.0-or-later.txt",
    "content": "GNU GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>\n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nPreamble\n\nThe GNU General Public License is a free, copyleft license for software and other kinds of works.\n\nThe licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.\n\nTo protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.\n\nFor example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n\nDevelopers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.\n\nFor the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.\n\nSome devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.\n\nFinally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.\n\nThe precise terms and conditions for copying, distribution and modification follow.\n\nTERMS AND CONDITIONS\n\n0. Definitions.\n\n“This License” refers to version 3 of the GNU General Public License.\n\n“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\n\n“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.\n\nTo “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.\n\nA “covered work” means either the unmodified Program or a work based on the Program.\n\nTo “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.\n\nTo “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.\n\nAn interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.\n\n1. Source Code.\nThe “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.\n\nA “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.\n\nThe “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.\n\nThe “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.\n\nThe Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.\n\nThe Corresponding Source for a work in source code form is that same work.\n\n2. Basic Permissions.\nAll rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.\n\nYou may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.\n\nConveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.\n\n3. Protecting Users' Legal Rights From Anti-Circumvention Law.\nNo covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.\n\nWhen you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.\n\n4. Conveying Verbatim Copies.\nYou may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.\n\nYou may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.\n\n5. Conveying Modified Source Versions.\nYou may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:\n\n     a) The work must carry prominent notices stating that you modified it, and giving a relevant date.\n\n     b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”.\n\n     c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.\n\n     d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.\n\nA compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.\n\n6. Conveying Non-Source Forms.\nYou may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:\n\n     a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.\n\n     b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.\n\n     c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.\n\n     d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.\n\n     e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.\n\nA separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.\n\nA “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.\n\n“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.\n\nIf you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).\n\nThe requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.\n\nCorresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.\n\n7. Additional Terms.\n“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.\n\nWhen you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.\n\nNotwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:\n\n     a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or\n\n     b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or\n\n     c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or\n\n     d) Limiting the use for publicity purposes of names of licensors or authors of the material; or\n\n     e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or\n\n     f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.\n\nAll other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.\n\nIf you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.\n\nAdditional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.\n\n8. Termination.\nYou may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).\n\nHowever, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.\n\nTermination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.\n\n9. Acceptance Not Required for Having Copies.\nYou are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.\n\n10. Automatic Licensing of Downstream Recipients.\nEach time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.\n\nAn “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.\n\nYou may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.\n\n11. Patents.\nA “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.\n\nA contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.\n\nEach contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.\n\nIn the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.\n\nIf you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.\n\nIf, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.\n\nA patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.\n\nNothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.\n\n12. No Surrender of Others' Freedom.\nIf conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.\n\n13. Use with the GNU Affero General Public License.\nNotwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.\n\n14. Revised Versions of this License.\nThe Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.\n\nIf the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.\n\nLater license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.\n\n15. Disclaimer of Warranty.\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. Limitation of Liability.\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n17. Interpretation of Sections 15 and 16.\nIf the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.\n\nEND OF TERMS AND CONDITIONS\n\nHow to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\n\nTo do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.\n\n     <one line to give the program's name and a brief idea of what it does.>\n     Copyright (C) <year>  <name of author>\n\n     This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\n     This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.\n\n     You should have received a copy of the GNU General Public License along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:\n\n     <program>  Copyright (C) <year>  <name of author>\n     This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n     This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”.\n\nYou should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <http://www.gnu.org/licenses/>.\n\nThe GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>.\n"
  },
  {
    "path": "LICENSES/LGPL-3.0-or-later.txt",
    "content": "GNU LESSER GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nThis version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below.\n\n0. Additional Definitions.\n\nAs used herein, \"this License\" refers to version 3 of the GNU Lesser General Public License, and the \"GNU GPL\" refers to version 3 of the GNU General Public License.\n\n\"The Library\" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.\n\nAn \"Application\" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.\n\nA \"Combined Work\" is a work produced by combining or linking an Application with the Library.  The particular version of the Library with which the Combined Work was made is also called the \"Linked Version\".\n\nThe \"Minimal Corresponding Source\" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.\n\nThe \"Corresponding Application Code\" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work.\n\n1. Exception to Section 3 of the GNU GPL.\nYou may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL.\n\n2. Conveying Modified Versions.\nIf you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:\n\n     a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or\n\n     b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.\n\n3. Object Code Incorporating Material from Library Header Files.\nThe object code form of an Application may incorporate material from a header file that is part of the Library.  You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:\n\n     a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License.\n\n     b) Accompany the object code with a copy of the GNU GPL and this license document.\n\n4. Combined Works.\nYou may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following:\n\n     a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License.\n\n     b) Accompany the Combined Work with a copy of the GNU GPL and this license document.\n\n     c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document.\n\n     d) Do one of the following:\n\n           0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.\n\n          1) Use a suitable shared library mechanism for linking with the Library.  A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version.\n\n     e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)\n\n5. Combined Libraries.\nYou may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:\n\n     a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License.\n\n     b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.\n\n6. Revised Versions of the GNU Lesser General Public License.\nThe Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License \"or any later version\" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.\n\nIf the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall\napply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.\n\nGNU GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>\n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nPreamble\n\nThe GNU General Public License is a free, copyleft license for software and other kinds of works.\n\nThe licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.\n\nTo protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.\n\nFor example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n\nDevelopers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.\n\nFor the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.\n\nSome devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.\n\nFinally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.\n\nThe precise terms and conditions for copying, distribution and modification follow.\n\nTERMS AND CONDITIONS\n\n0. Definitions.\n\n“This License” refers to version 3 of the GNU General Public License.\n\n“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\n\n“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.\n\nTo “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.\n\nA “covered work” means either the unmodified Program or a work based on the Program.\n\nTo “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.\n\nTo “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.\n\nAn interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.\n\n1. Source Code.\nThe “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.\n\nA “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.\n\nThe “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.\n\nThe “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.\n\nThe Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.\n\nThe Corresponding Source for a work in source code form is that same work.\n\n2. Basic Permissions.\nAll rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.\n\nYou may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.\n\nConveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.\n\n3. Protecting Users' Legal Rights From Anti-Circumvention Law.\nNo covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.\n\nWhen you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.\n\n4. Conveying Verbatim Copies.\nYou may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.\n\nYou may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.\n\n5. Conveying Modified Source Versions.\nYou may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:\n\n     a) The work must carry prominent notices stating that you modified it, and giving a relevant date.\n\n     b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”.\n\n     c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.\n\n     d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.\n\nA compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.\n\n6. Conveying Non-Source Forms.\nYou may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:\n\n     a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.\n\n     b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.\n\n     c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.\n\n     d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.\n\n     e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.\n\nA separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.\n\nA “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.\n\n“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.\n\nIf you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).\n\nThe requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.\n\nCorresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.\n\n7. Additional Terms.\n“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.\n\nWhen you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.\n\nNotwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:\n\n     a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or\n\n     b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or\n\n     c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or\n\n     d) Limiting the use for publicity purposes of names of licensors or authors of the material; or\n\n     e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or\n\n     f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.\n\nAll other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.\n\nIf you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.\n\nAdditional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.\n\n8. Termination.\nYou may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).\n\nHowever, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.\n\nTermination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.\n\n9. Acceptance Not Required for Having Copies.\nYou are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.\n\n10. Automatic Licensing of Downstream Recipients.\nEach time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.\n\nAn “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.\n\nYou may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.\n\n11. Patents.\nA “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.\n\nA contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.\n\nEach contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.\n\nIn the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.\n\nIf you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.\n\nIf, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.\n\nA patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.\n\nNothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.\n\n12. No Surrender of Others' Freedom.\nIf conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.\n\n13. Use with the GNU Affero General Public License.\nNotwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.\n\n14. Revised Versions of this License.\nThe Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.\n\nIf the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.\n\nLater license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.\n\n15. Disclaimer of Warranty.\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. Limitation of Liability.\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n17. Interpretation of Sections 15 and 16.\nIf the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.\n\nEND OF TERMS AND CONDITIONS\n\nHow to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\n\nTo do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.\n\n     <one line to give the program's name and a brief idea of what it does.>\n     Copyright (C) <year>  <name of author>\n\n     This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\n     This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.\n\n     You should have received a copy of the GNU General Public License along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:\n\n     <program>  Copyright (C) <year>  <name of author>\n     This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n     This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”.\n\nYou should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <http://www.gnu.org/licenses/>.\n\nThe GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>.\n"
  },
  {
    "path": "LICENSES/MIT.txt",
    "content": "MIT License\n\nCopyright (c) <year> <copyright holders>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "## DDE Control Center\n\nDDE Control Center is the control panel of Deepin Desktop Environment.\n\n## Dependencies\n\nCheck `debian/control` for build-time and runtime dependencies, or use `cmake` to check the missing required dependencies.\n\n## Installation\n\n### Build from source code\n\n1. Make sure you have installed all dependencies.\n\n2. Build:\n```\n$ cd dde-control-center\n$ mkdir Build\n$ cd Build\n$ cmake ..\n$ make\n```\n\n3. Install:\n```\n$ sudo make install\n```\n\nThe executable binary file could be found at `/usr/bin/dde-control-center` after the installation is finished, and plugins will be placed into `${CMAKE_INSTALL_FULL_LIBDIR}/dde-control-center/modules/`, usually is `/usr/lib/dde-control-center/modules/`.\n\nA `debian` folder is provided to build the package under the *deepin* linux desktop distribution. To build the package, use the following command:\n\n```shell\n$ sudo apt build-dep . # install build dependencies\n$ dpkg-buildpackage -uc -us -nc -b # build binary package(s)\n```\n\n## Usage\n\nExecute `dde-control-center -h` to get more details.\n\nNote: `--spec` can be used to debug plugins. The passed in value is the path where the so of plugin is in.\n\n## Getting help\n\nYou can press `F1` to start [deepin-manual](https://github.com/linuxdeepin/deepin-manual) when you focus on DDE Control Center window.\n\nYou may also find these channels useful if you encounter any other issues:\n\n* [Telegram group](https://deepin.org/to/tg)\n* [Matrix](https://matrix.to/#/#deepin-community:matrix.org)\n* [IRC (libera.chat)](https://web.libera.chat/#deepin-community)\n* [Forum](https://bbs.deepin.org)\n* [WiKi](https://wiki.deepin.org/)\n\n## Develop Plugins with cmake\n\n```cmake\n\n# just show the target link way\n\nfind_package(DdeControlCenter REQUIRED)\nfind_package(Dtk COMPONENTS Core Widget REQUIRED)\nfind_package(Qt5 COMPONENTS Core Gui Widgets REQUIRED)\n\nadd_library(dcc_exampleplugin SHARED\n    plugin.h\n    plugin.cpp\n)\n\ntarget_link_libraries(dcc_exampleplugin PRIVATE\n    Dde::DCCWidget\n    Dde::DCCInterface\n    Dtk::Core\n    Dtk::Widget\n    Qt5::Core\n    Qt5::Gui\n    Qt5::Widgets\n)\n\n```\n\n## Getting involved\n\nWe encourage you to report issues and contribute changes\n\n* [Contribution guide for developers](https://github.com/linuxdeepin/developer-center/wiki/Contribution-Guidelines-for-Developers-en). (English)\n* [开发者代码贡献指南](https://github.com/linuxdeepin/developer-center/wiki/Contribution-Guidelines-for-Developers) (中文)\n\n## License\n\nDDE Control Center is licensed under [GPL-3.0-or-later](LICENSE).\n"
  },
  {
    "path": "README.zh_CN.md",
    "content": "## DDE 控制中心\n\nDDE 控制中心控制整个DDE桌面环境\n\n## 依赖\n\n查看 `debian/control` 文件来了解此项目的构建与运行时依赖，或者使用 `cmake` 检查缺失的必要组件。\n\n## 安装\n\n### 源码安装\n\n1. Make sure you have installed all dependencies.\n\n2. Build:\n```bash\ncd dde-control-center\ncmake -B build\ncmake --build build \n```\n\n3. Install:\n```bash\nsudo make install\n```\n注意，不推荐，应该先打包然后安装。\n\n运行文件在 `/usr/bin/dde-control-center` , 插件在 `${CMAKE_INSTALL_FULL_LIBDIR}/dde-control-center/modules/`下，`CMAKE_INSTALL_FULL_LIBDIR`请查阅GNUInstallDir,根据发行版有所不同 , 如arch下这个目录在 `/usr/lib/dde-control-center/modules/`.\n\n为在 *deepin* 桌面发行版进行此软件包的构建，我们还提供了一个 `debian` 目录。若要构建软件包，可参照下面的命令进行构建：\n\n```shell\n$ sudo apt build-dep . # 安装构建依赖\n$ dpkg-buildpackage -uc -us -nc -b # 构建二进制软件包\n```\n\n## 使用方式\n\nExecute `dde-control-center -h` to get more details.\n\n## 帮助\n\n任何使用问题都可以通过以下方式寻求帮助:\n\n* [Telegram 群组](https://t.me/deepin_community)\n* [Matrix](https://matrix.to/#/#deepin-community:matrix.org)\n* [IRC (libera.chat)](https://web.libera.chat/#deepin-community)\n* [Forum](https://bbs.deepin.org)\n* [WiKi](https://wiki.deepin.org/)\n\n## 加入我们\n\n请到developer-center提交issue或者参与讨论。当然也可以直接参与代码维护提交代码和修复。我们会很开心获得您的帮助和贡献\n\n* [Contribution guide for developers](https://github.com/linuxdeepin/developer-center/wiki/Contribution-Guidelines-for-Developers-en). (English)\n* [开发者代码贡献指南](https://github.com/linuxdeepin/developer-center/wiki/Contribution-Guidelines-for-Developers) (中文)\n\n## License\n\nDDE Control Center 遵循协议 [GPL-3.0-or-later](LICENSE).\n"
  },
  {
    "path": "archlinux/PKGBUILD",
    "content": "pkgname=deepin-control-center-git\n_pkgname=deepin-control-center\npkgver=5.4.47.r673.g52c86a908\npkgrel=1\nsourcename=dde-control-center\nsourcetars=(\"$sourcename\"_\"$pkgver\".tar.xz)\nsourcedir=\"$sourcename\"\npkgdesc='New control center for linux deepin'\narch=('x86_64' 'aarch64')\nurl=\"https://github.com/linuxdeepin/dde-control-center\"\nlicense=('GPL3')\ndepends=('dtkwidget-git' 'libpwquality' 'doxygen'\n         'deepin-daemon-git' 'startdde-git'\n         'deepin-pw-check-git' 'qt5-gsettings' 'icu')\nmakedepends=('git' 'cmake' 'ninja' 'qt5-tools' 'qt5-base' 'qt5-x11extras' \n             'qt5-multimedia' 'qt5-svg' 'dtkcommon-git' 'dtkcore-git' 'dtkwidget-git' 'dtkgui-git'\n             'gtest' 'gmock' 'polkit-qt5' 'systemd')\noptdepends=('redshift: automatic color temperature support')\n# Not packaged: network-manager-l2tp\nconflicts=('deepin-control-center')\nprovides=('deepin-control-center')\noptdepends=('deepin-network-core-git' 'networkmanager-qt')\ngroups=('deepin-git')\nsource=(\"${sourcetars[@]}\")\nsha512sums=('SKIP')\nprepare() {\n    cd $sourcedir\n}\n\nbuild() {\n  cd $sourcedir\n  cmake -GNinja \\\n        -DCMAKE_INSTALL_PREFIX=/usr \\\n        -DDISABLE_UPDATE=ON \\\n        -DDISABLE_AUTHENTICATION=ON \\\n        -DDISABLE_LANGUAGE=ON \\\n        -DCMAKE_INSTALL_LIBDIR=/usr/lib \\\n        -DCMAKE_INSTALL_LOCALSTATEDIR=/var\n  ninja\n}\n\npackage() {\n  cd $sourcedir\n  DESTDIR=\"$pkgdir\" ninja install\n}\n"
  },
  {
    "path": "debian/changelog",
    "content": "dde-control-center (6.1.83) unstable; urgency=medium\n\n  * build: add dde-api-dev build dependency\n  * i18n: Updates for project Deepin Desktop Environment (#3179)\n\n -- zhangkun <zhangkun2@uniontech.com>  Fri, 24 Apr 2026 13:18:28 +0800\n\ndde-control-center (6.1.82) unstable; urgency=medium\n\n  * feat: add event logger integration for control center\n  * perf(wallpaper): optimize wallpaper thumbnail loading with\n    QImageReader scaling\n  * refactor: simplify plugin loading by removing async loading\n  * Revert \"fix: use QQmlIncubator for asynchronous plugin object\n    creation\"\n  * fix: Optimize the typesetting layout of open-source software\n    declarations\n  * feat(notification): add app notification search functionality\n  * fix(display): use screen dimensions instead of currentResolution for\n    Qt screen matching\n  * fix: use QQmlIncubator for asynchronous plugin object creation\n  * docs: update v25 dcc interface documentation\n  * i18n: Updates for project Deepin Desktop Environment (#3170)\n  * fix: prevent control center from not closing properly\n  * fix: Window size not correctly restored after maximisation\n  * fix: optimize page visibility management in DccWindow\n  * fix(datetime): add real-time display for timezone information\n  * i18n: Updates for project Deepin Desktop Environment (#3127)\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 23 Apr 2026 21:46:05 +0800\n\ndde-control-center (6.1.81) unstable; urgency=medium\n\n  * feat: improve DccRepeater parent object assignment\n  * fix: dconfig controls whether the username is displayed in the\n    verification password pop-up window\n  * fix: fix control center plugin loading and page display logic\n  * fix: Optimize the typesetting layout of open-source software\n    declarations\n  * fix: defer icon source resolution until component completion\n  * fix: synchronize plugin data phase loading\n  * refactor: move plugin factory preparation before module loading\n  * refactor: remove mutex lock and use async processing for image\n    provider\n  * fix: improve keyboard navigation focus management and rename\n    property\n  * fix(sound): fix Bluetooth audio mode detection and switching logic\n  * fix: DConfig controls whether the boot menu item area supports\n    editing the wallpaper\n  * fix: Modify the background transparency of the account creation\n    screen\n  * fix: correct text color property type and logic\n  * fix(datetime): fix layout overlap in RegionFormatDialog\n  * fix(ui): optimize layout and visibility control for list items\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 09 Apr 2026 20:27:22 +0800\n\ndde-control-center (6.1.80) unstable; urgency=medium\n\n  * fix: add support for markdown format in user license\n  * fix: update license file search logic and UI improvements\n  * fix: enable TLS certificate verification for avatar downloads\n\n -- zhangkun <zhangkun2@uniontech.com>  Fri, 03 Apr 2026 13:05:02 +0800\n\ndde-control-center (6.1.79) unstable; urgency=medium\n\n  * chore(systeminfo): remove redundant Copyright fields from license\n    files\n  * fix(systeminfo): prevent auth dialog loop by transferring focus to\n    edit button\n\n -- zhangkun <zhangkun2@uniontech.com>  Mon, 30 Mar 2026 15:16:14 +0800\n\ndde-control-center (6.1.78) unstable; urgency=medium\n\n  * fix: defer object creation to prevent QML GC crash\n  * fix(commoninfo): set notification replacesId to 0 for proper display\n  * fix: update translation URLs and fix typo\n  * fix: Fix the issue where pressing Enter on an item has no effect\n  * fix: resolve highlight residue issue after mouse leaves dropdown\n    menu items\n  * fix(bluetooth): correct audio headset icon mapping\n  * fix: correct typo \"operation system\" to \"operating system\" in GPL\n    license files\n  * fix: Resolve the issue where the shortcut key for selected desktop\n    files does not work\n  * fix: fix DccRepeater memory management and object ownership\n  * i18n: Updates for project Deepin Desktop Environment (#3112)\n  * chore: update GPL-3.0 license files with complete open source\n    software list\n  * fix: prevent GC crashes during page transitions\n  * fix(datetime): resolve SpinboxEx unit text overlap in English locale\n  * refactor: optimize DConfig data synchronization to reduce DBus calls\n  * fix: prevent control center crash from recursive QML creation\n  * fix: optimize model assignment in RegionFormatDialog\n  * fix(ui): optimize UI details and unify color management\n  * refactor: optimize time plugin timer update mechanism\n  * fix: optimize package query method for privacy security module\n  * fix: change overlap detection from complete to partial coverage\n  * fix: fix potential null pointer and loading state issues\n  * fix: prevent infinite loops and improve UI responsiveness\n  * style(keyboard): update file selection button icon in shortcut\n    dialog\n  * fix(ui): fix theme switch buttons to prevent blur\n  * fix: Fix the issue of inconsistent display of title text\n  * fix(keyboard): resolve shortcut text overlap with input box on\n    window resize\n  * i18n: Updates for project Deepin Desktop Environment (#3082)\n  * fix: correct shortcut ID for preview-workspace\n\n -- zhangkun <zhangkun2@uniontech.com>  Wed, 25 Mar 2026 17:09:29 +0800\n\ndde-control-center (6.1.77) unstable; urgency=medium\n\n  * refactor: remove DConfig usage for permission blacklist\n  * fix: Fix the misalignment issue of the tablet title\n  * fix(ui): fix breadcrumb title overlap when window width is small\n  * fix(touchscreen): add tooltip for truncated display names\n  * fix(accounts): fix edit icon color too light in account fullname\n    editor\n  * Fix: Optimised the UI display of the Eye Care interface\n  * fix: update layout on Crumb visibility change\n  * fix: Custom keyboard shortcuts\n  * fix(datetime): resolve long date/time format text overflow in\n    language settings\n  * fix(display): make home screen icon responsive to screen item size\n  * Fix: Keyboard control issue in secondary menus\n  * fix: Fix brightness control height issue\n  * fix(datetime): adjust date label left margin to align with settings\n  * Revert \"fix： Speaker Display Anomaly\"\n  * fix(datetime): optimize timezone display and text visibility\n  * Fix: Issue with password prompt box\n  * fix(datetime): adjust timezone clock icon size to 24px\n  * fix(datetime): adjust spacing between clock and title bar\n  * refactor(datetime): optimize datetime setting dialog layout and unit\n    display\n  * fix(power): adjust spacing to 6px in power management interface\n  * fix(touchscreen): fix style issues in touchscreen settings module\n  * fix: Fixed the issue of the other users list not displaying\n    completely\n\n -- zhangkun <zhangkun2@uniontech.com>  Wed, 18 Mar 2026 14:13:59 +0800\n\ndde-control-center (6.1.76) unstable; urgency=medium\n\n  * refactor: update system info DBus interface and proxy\n  * fix(display): preserve display order when adjusting resolution\n  * Fix: Abnormal behaviour in primary menu tabs\n  * fix(accounts): resolve clear button shifting during text input\n  * fix: Time display UI optimisation\n  * fix: fix module matching and listing issues\n  * fix: Optimized focus acquisition logic for secondary menus\n  * fix: add parent module validation and fix DTK reference\n  * fix(window): change about dialog to window modal mode\n  * fix: make loading page background opaque\n  * fix(plugin): set DTK palette for loaded plugin components\n  * fix(power): show tooltip for truncated text in ComboBox dropdown\n    items\n  * refactor: improve permission matching with package name fallback\n  * fix(ui): adjust padding and insets for better layout alignment\n  * fix: remove unused port combo enable properties\n  * fix: set smooth=false for sidebar button icon to prevent blur at\n    fractional scaling\n  * fix: preserve maximized window state when jumping from global search\n  * fix: fix control center initialization and navigation issues\n  * refactor: remove search result separator logic\n  * fix: Fix the translation function call issue in ListElement\n  * fix(keyboard): use DTK font manager for shortcuts edit button\n  * fix(accounts): adjust password dialog layout spacing\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 12 Mar 2026 21:31:46 +0800\n\ndde-control-center (6.1.75) unstable; urgency=medium\n\n  * fix: Optimized display for solid-color wallpapers\n  * fix(accounts): fix hover area response issue in custom avatar upload\n  * fix(ui): adapt button width to text content\n  * fix: optimize window color and page visibility handling\n  * feat: optimize object lookup performance with name-based mapping\n  * refactor: improve search relevance algorithm and sorting\n  * fix: resolve clicked function naming conflict\n  * fix(accounts): optimize delete dialog layout alignment\n  * fix(bluetooth): adjust loading animation size\n  * fix: Fixed the issue of the secondary screen being disconnected\n    during resolution changes\n  * fix: Subsystem sound options appearing empty when navigating\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 05 Mar 2026 20:48:43 +0800\n\ndde-control-center (6.1.74) unstable; urgency=medium\n\n  * Revert \"fix: Optimized text display position at progress bar edges\"\n  * fix: prevent dangling pointer in page navigation\n  * fix(systeminfo): align copyright text center in systemLogo\n  * fix(systeminfo): align copyright text center and enable word wrap\n  * fix: defer showing repeat days edit page\n\n -- zhangkun <zhangkun2@uniontech.com>  Mon, 02 Mar 2026 10:52:37 +0800\n\ndde-control-center (6.1.73) unstable; urgency=medium\n\n  * fix: Fix incomplete display of processor text on the page\n  * fix: include size in image cache key to prevent collisions\n  * fix: Optimized text display position at progress bar edges\n  * feat: simplify cursor size selection logic\n  * fix: Filter out components whose focus cannot be operated\n  * fix: fix sidebar width initialization and validation\n  * feat: add loading page for control center\n  * chore: update dde-control-center-dev dependencies\n  * fix: keep sleep and screen lock switches enabled with passwordless\n    login\n  * fix: fix cache image error\n  * fix: fix touchpad visibility and disable input condition\n  * Fix: Optimize cyclic selection in the system sound effects list.\n  * fix(personalization): fix touchpad swipe and mouse drag in theme\n    selector\n  * fix(time-range): improve hour input focus behavior\n  * fix： Speaker Display Anomaly\n\n -- zhangkun <zhangkun2@uniontech.com>  Fri, 27 Feb 2026 17:02:50 +0800\n\ndde-control-center (6.1.72) unstable; urgency=medium\n\n  * fix: Adapt the first item in the menu\n  * fix(bluetooth): fix audio-headphones device type support\n  * fix: Fixed issue where the focus did not start from the current page\n    when entering the secondary interface\n  * fix(display): prevent unintended brightness reset to 10%\n  * fix: prevent face image stretching distortion\n  * fix: Optimise Password Change Interface\n  * fix: Default window size not restored\n  * fix(sound): font size of \"No output device for sound found\" is too\n    large\n  * fix: fix wallpaper path handling for non-existent files\n  * fix(display): fix screen context for x11 display dialogs\n  * fix: improve audio device combo box state management\n  * fix: adjust wallpaper selection border rendering order\n  * feat: Updated translations\n  * feat: adjust sidebar width for English locale and update device\n    module name\n  * fix(ui): fix scrollbar ghosting during page switching\n  * feat: add dock plugin sorting with custom proxy model\n  * feat: add pluginsChanged signal to reload dock tray plugins\n    dynamically\n  * fix: [Device] [Keyboard] Keyboard test text appears too large\n  * fix: No response when using arrow keys\n  * fix: improve navigation object tracking in control center\n  * fix(systeminfo): fix processorChanged signal emission and processor\n    setting location\n  * fix: Fix cursor style not updating after theme switch\n  * fix: fix window effect feature availability and combo box model\n    handling\n  * feat: add indicator display control\n  * refactor: optimize parent object lookup and code structure\n  * fix(bluetooth): fix send file button not showing due to stale state\n  * docs: update v25 dcc interface documentation\n  * fix: update fingerprint enrollment error handling and UI logic\n  * fix: Configuration switch save error\n  * fix: The black wallpaper is positioned too far forward\n  * fix: move getAppPath to background thread\n  * Fixed: Level 1 menu items unresponsive when navigating with keyboard\n    arrow keys\n  * feat: show touchpad only on laptops\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 05 Feb 2026 19:23:12 +0800\n\ndde-control-center (6.1.71) unstable; urgency=medium\n\n  * i18n: Updates for project Deepin Desktop Environment (#2967)\n  * fix: Fix the UI flickering issue when editing shortcut keys\n  * fix: Modified the time setting logic in the scheduled shutdown\n    feature.\n  * chore: update cmake minimum version to 3.23\n  * fix(sound): sync source mute state with volume\n  * feat: Updated translation\n  * feat: add brightness control for Treeland compositor\n  * feat: migrate QML plugins to Qt6 resource system\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 29 Jan 2026 20:22:08 +0800\n\ndde-control-center (6.1.70) unstable; urgency=medium\n\n  * feat: support configurable password encryption algorithms\n  * fix: Fix the timing of when the popup appears\n  * fix: adjust mode delegate styling properties\n  * feat: redesign color picker dialog UI\n  * fix: Fix the error of looping through the plugin area list\n\n -- fuleyi <fuleyi@uniontech.com>  Wed, 28 Jan 2026 15:59:27 +0800\n\ndde-control-center (6.1.69) unstable; urgency=medium\n\n  * fix: fix screensaver initialization on Wayland\n  * docs: update developer mode license agreement text\n  * fix: hide screensaver module when treeland is active\n  * chore: update commoninfo icon\n  * fix: add DBus signal connection for mime info changes\n  * fix: separate model data from checked states in privacy folder\n  * fix: improve spinbox input validation and sync\n  * fix: remove premature wallpaperMapChanged signal emission\n  * i18n: Updates for project Deepin Desktop Environment (#2942)\n  * fix: Fix issue where system sound effects cannot be selected using\n    the Tab key\n  * feat: add privacy configuration for control center\n  * fix: update file dialog signal handling and remove debug log\n\n -- zhangkun <zhangkun2@uniontech.com>  Fri, 23 Jan 2026 10:05:33 +0800\n\ndde-control-center (6.1.68) unstable; urgency=medium\n\n  * feat: Change \"Device\" to \"Bluetooth and other devices\"\n  * i18n: Translate dde-control-center_en.ts in ja\n  * i18n: Translate dde-control-center_en.ts in ja\n  * i18n: Translate dde-control-center_en.ts in ja\n  * i18n: Translate dde-control-center_en.ts in ja\n  * fix: resolve binding loop in CustomComBobox MenuItem\n  * refactor: migrate DBus interfaces to DDBusInterface\n  * fix: Fix the issue of the timeRange control sending signals\n    repeatedly\n  * fix: remove duplicate taskbar icon for region chooser\n  * fix: adjust mouse cursor size UI layout and remove debug log\n  * fix spelling errors\n  * fix: Fix multiple entries showing in the list after renaming\n    Bluetooth\n  * fix: improve timezone list display performance\n  * fix: correct copyright year logic for system info\n  * feat: add Alt+Space shortcut for window menu\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 15 Jan 2026 20:00:09 +0800\n\ndde-control-center (6.1.67) unstable; urgency=medium\n\n  * fix: exclude onboard from privacy FileAndFolder app list\n\n -- zhangkun <zhangkun2@uniontech.com>  Wed, 07 Jan 2026 13:35:37 +0800\n\ndde-control-center (6.1.66) unstable; urgency=medium\n\n  * chore: remove touchpad switch file existence check\n  * fix: fix command injection vulnerability in password encryption\n  * fix: correct 12-hour time format patterns in RegionProxy\n  * i18n: Updates for project Deepin Desktop Environment (#2920)\n  * fix: Fix the issue with focus in the user group interface\n  * refactor: migrate InterfaceEffectListview to DccObject for search\n    support\n  * i18n: Updates for project Deepin Desktop Environment (#2889)\n  * fix: unmute input device when adjusting volume\n  * fix: Fix the issue where error messages do not disappear\n    automatically\n  * fix: resolve Next button not disabled after unchecking disclaimer\n  * fix: reset face image content when starting enrollment\n  * fix: Fix the issue where disabled modules are not grayed out\n  * fix: correct decimal symbol setting when user selects space\n  * docs: add GitHub Copilot instructions file\n  * feat: support multiple plugin directories via --spec option\n  * fix: add text drop support to search bar\n  * fix: add close button hint to timezone popup\n  * fix: prepend runtime plugin directory to QML import paths\n\n -- zhangkun <zhangkun2@uniontech.com>  Tue, 06 Jan 2026 20:51:47 +0800\n\ndde-control-center (6.1.65) unstable; urgency=medium\n\n  * fix: adjust alert tooltip target in authentication UI\n  * fix: Fix the issue with selecting screensaver settings\n  * fix: emit all relevant roles on bluetooth device state change\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 25 Dec 2025 19:33:39 +0800\n\ndde-control-center (6.1.64) unstable; urgency=medium\n\n  * feat: manage QML cache versioning proactively\n  * fix: Fix the issue where the theme area cannot switch focus\n  * fix: Fix the issue where tab cannot select focus\n  * fix: Change the app order in Privacy and Security\n  * feat: Remove old code\n  * fix: avoid list refresh on camera auth dialog open\n  * fix: Fixed the issue where the time format did not follow the locale\n  * fix: resolve text truncation in multi-screen dock settings\n  * fix: correct loading indicator position when adding language\n  * fix: add scrollbar to region format list in RegionFormatDialog\n  * feat: remove night mode redshift integration\n\n -- YeShanShan <yeshanshan@uniontech.com>  Wed, 24 Dec 2025 14:36:14 +0800\n\ndde-control-center (6.1.63) unstable; urgency=medium\n\n  * i18n: Updates for project Deepin Desktop Environment (#2885)\n  * fix: fix QML component loading and gesture data handling\n  * fix: Modify display interface layout spacing\n  * fix: improve URL matching logic and empty URL handling\n  * fix: Fix build with Qt 6.10 and higher\n  * i18n: Updates for project Deepin Desktop Environment (#2873)\n  * feat: remove pointer size configuration from mouse settings\n  * fix: add pointer size change notification\n  * fix: adjust DccTitleObject styling for better visual consistency\n  * fix: Fix incomplete display of resolution options\n  * fix: adjust footer layout spacing in DccSettingsView\n  * fix: Update open source license\n  * fix: Optimize the UI of wallpaper selection page\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 18 Dec 2025 19:43:30 +0800\n\ndde-control-center (6.1.62) unstable; urgency=medium\n\n  * refactor: standardize QML component id naming\n  * fix: fix sidebar width update when right view is empty\n  * fix: Tooltip for the add image button\n  * fix: add monitor count tracking for multi-screen visibility\n  * fix: Fix the issue of shortcut key replacement failure\n  * fix: Fix Bluetooth model being reset\n  * refactor: replace custom object creation with Qt Loader\n  * fix: refresh fingerprint list before enrollment\n  * feat: replace screen saver start/stop with preview method\n  * fix: fix repeater child object crash without parent\n  * fix: refresh fingerprint list when device is hot-plugged\n  * fix: align balance slider style with design specification\n  * fix: Fix issue where renaming a Bluetooth device does not refresh\n  * chore: fix screensaver button colors\n  * fix: resolve text overflow issues in keyboard plugin for Russian\n    locale\n  * fix: Update translation file\n\n -- YeShanShan <yeshanshan@uniontech.com>  Thu, 11 Dec 2025 20:32:03 +0800\n\ndde-control-center (6.1.61) unstable; urgency=medium\n\n  * fix: Fix the issue with link text style errors\n  * fix: Fix issue where the interface does not restore after deleting\n    the avatar\n  * fix: Fix no prompt when input is too long\n  * fix: Fix thumbnails not updating\n  * fix: reset boot delay switch state when authentication is cancelled\n  * i18n: Updates for project Deepin Desktop Environment (#2847)\n  * fix: Fix issue with full names containing spaces being incorrectly\n    recognized\n  * fix: restore Custom shortcut edit button in Spanish locale\n\n -- fuleyi <fuleyi@uniontech.com>  Thu, 04 Dec 2025 19:12:24 +0800\n\ndde-control-center (6.1.60) unstable; urgency=medium\n\n  * i18n: Updates for project Deepin Desktop Environment (#2840)\n\n -- wjyrich <wujiangyu@uniontech.com>  Fri, 28 Nov 2025 10:45:26 +0800\n\ndde-control-center (6.1.59) unstable; urgency=medium\n\n  * fix: adjust clear cloud data button font size\n  * fix: Fix the date server authentication issue\n  * fix: update transaltion\n  * feat: add combine application icons option to dock settings\n  * i18n: Updates for project Deepin Desktop Environment (#2806)\n  * fix: auto fallback to system app when default app is uninstalled\n  * fix: unify screen tab style in display and wallpaper modules\n  * fix: adjust font size of setting button in ScreenSaver page\n  * fix: add tooltip for truncated authorization button in\n    NativeInfoPage\n  * fix: resolve preview button text truncation in ScreenSaverPage\n  * fix: Modify mouse interface layout\n  * fix: resolve color picker handle overflow in\n    SaturationLightnessPicker\n  * fix: Fix custom avatar selection issue\n  * fix: improve wallpaper thumbnail alignment and layout\n  * fix: improve locale-aware number formatting\n  * fix: Fixed an issue where the edit and add buttons could not be\n    focused using the tab key\n  * i18n: remove de_DE translation resources\n  * fix: Fix the mouse interface layout effect\n  * fix: improve wallpaper thumbnail rendering quality\n  * refactor: use install command for plugin binaries\n  * fix: resolve unknown icons in notifications after editor install\n  * fix: Fix the issue of drag-and-drop images not working\n  * fix: resolve duplicate installation in QML plugin build\n  * feat: add reproducible build parameters\n  * fix: add display mode detection for dock plugin visibility\n\n -- zhaoyingzhen <zhaoyingzhen@uniontech.com>  Thu, 27 Nov 2025 17:31:35 +0800\n\ndde-control-center (6.1.58) unstable; urgency=medium\n\n  * fix: update dock plugins reload, icon not show.\n\n -- wujiangyu <wujiangyu@uniontech.com>  Fri, 14 Nov 2025 13:53:21 +0800\n\ndde-control-center (6.1.57) unstable; urgency=medium\n\n  * fix: fix QML memory management crash issues\n  * fix: Fix where custom dates have no authorization\n  * fix: prioritize loading group plugins and fix icon paths\n  * fix: Fix shortcut key tooltip text overflow\n  * fix: hide touchpad switch on devices without touchpad_switch file\n  * fix: Fix language long text overflow\n  * fix: resolve delay when removing user apps via trash button\n  * feat: enhance number format symbol conflict handling\n  * refactor: expose initData as public slot and add activation handler\n  * fix: improve text width calculation in sound plugin menu items\n  * i18n: Updates for project Deepin Desktop Environment (#2803)\n  * fix: update DNotifySender usage for system protection\n  * fix: add translation for system protection notification\n  * feat: add solid system read-only protection feature\n  * fix: normalize title-to-thumbnail spacing in WallpaperSelectView\n  * fix: Fix Bluetooth name change flashing\n\n -- xionglinlin <xionglinlin@uniontech.com>  Thu, 13 Nov 2025 19:53:05 +0800\n\ndde-control-center (6.1.56) unstable; urgency=medium\n\n  * fix: Record the status of the sidebar\n\n -- caixiangrong <caixiangrong@uniontech.com>  Fri, 07 Nov 2025 10:11:47 +0800\n\ndde-control-center (6.1.55) unstable; urgency=medium\n\n  * fix: add hover tooltip for Mode options in Sound settings\n  * fix: Modifying text beyond the scope of the control\n  * fix: update shortcut placeholder text\n  * i18n: Updates for project Deepin Desktop Environment (#2786)\n  * fix: resolve color picker dialog shaking issue\n  * refactor: reorder window effect settings\n  * fix: update translations\n  * fix: Screen sorted by type\n  * fix: Record the status of the sidebar\n  * fix: Update disclaimer content\n  * fix: correct eyedropper button style in custom color dialog\n  * i18n: Updates for project Deepin Desktop Environment (#2782)\n  * feat: add Min Nan Chinese locale support\n  * [dde-control-center] Updates for project Deepin Desktop Environment (#2759)\n  * fix: align screensaver preview height with settings items\n  * fix: Repeated incorrect password change prompt\n  * fix: enable tab focus for app items in FileAndFolder\n  * fix: align selection background with design spec in ScreenTab\n  * fix: prevent UI freeze when rapidly clicking Restore Defaults button\n  * fix: resolve text spacing issue in ScreenSaver setting button\n\n -- caixiangrong <caixiangrong@uniontech.com>  Thu, 06 Nov 2025 16:56:37 +0800\n\ndde-control-center (6.1.54) UNRELEASED; urgency=medium\n\n  * fix: resolve currency format example display issues in RTL locales\n  * fix: remove hover inner shadow on first item in Touchpad gestures\n  * fix: Fix the password input box so that Chinese characters can be entered\n  * fix: Fix the main window graying out after the dialog box is displayed\n  * fix: ScheduledShutdownDialog title invisible in dark mode\n  * fix: reduce screensaver settings button height in personalization\n  * fix: scrollbar cannot reach bottom in language selection dialog\n  * fix: prevent button conflict during language loading in LangAndFormat\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 30 Oct 2025 21:47:29 +0800\n\ndde-control-center (6.1.53) unstable; urgency=medium\n\n  * fix: correct custom wallpaper delete button color in dark mode\n  * i18n: Updates for project Deepin Desktop Environment (#2749)\n  * fix: correct lock switch display with passwordless login enabled\n  * fix: Modify the spacing between menu controls\n  * fix: adjust dialog layout margins and width calculation\n  * feat: sort theme list alphabetically and keep custom theme first\n  * fix: background misalignment in format dialog\n  * fix: auth dialog missing on second timezone change\n  * feat: adjust disclaimer layout spacing\n  * fix: Fix password verification prompt\n  * fix: underscore search mismatch in keyboard shortcuts\n  * fix: escape HTML special characters in conflict name display\n  * i18n: Translate dde-control-center_en.ts in pl\n  * feat: add fingerprint device change handling\n\n -- wujiangyu <wujiangyu@uniontech.com>  Thu, 23 Oct 2025 17:19:10 +0800\n\ndde-control-center (6.1.52) unstable; urgency=medium\n\n  * i18n: Translate dde-control-center_en.ts in uk\n  * fix: Fix the issue on the change password interface\n  * [dde-control-center] Updates for project Deepin Desktop Environment\n    (#2730)\n  * fix: Modify the issue of only X screen not updating\n  * fix: Modify the user experience plan popup style\n  * fix: Fix abnormal graying effect\n  * fix: add ListView background and rounded item selection\n  * fix: compatibility with Qt 6.10\n  * fix: adjust SearchEdit width to align with list in\n    RegionFormatDialog\n  * fix: resolve spacing issues in RegionFormatDialog\n  * fix: add background highlight when clicking accounts\n  * fix: gesture animation plays selected action instead of hovered item\n  * fix: Modify the font style of color temperature parameters\n  * fix: add tooltip for truncated text in sound device dropdown menu\n  * fix: Fix the incorrect email issue in the privacy text\n  * fix: make fingerprint renaming operation synchronous\n  * [dde-control-center] Updates for project Deepin Desktop Environment\n    (#2722)\n  * fix: resolve SearchEdit text truncation with large font size\n  * fix: Fix custom avatar issue\n  * refactor: optimize wallpaper settings layout structure\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 16 Oct 2025 20:51:00 +0800\n\ndde-control-center (6.1.51) unstable; urgency=medium\n\n  * fix: add missing signal for developer mode state sync\n  * fix: remove keyboard layout from description\n  * fix: prevent control center freeze when uninstalling third-party\n    apps\n  * fix: remove click-triggered focus highlight in accounts list\n  * fix: resolve disabled speaker still showing as current output device\n  * fix: update time format display when system timezone is modified\n  * fix: preserve hostname validation alert when input loses focus\n  * fix: support qrc scheme in image loading and replace dci with png\n  * refactor: optimize image loading and thumbnail generation\n  * fix: add missing scrollbars in timezone selection dialogs\n  * fix: adjust time range input opacity based on enabled state\n\n -- YeShanShan <yeshanshan@uniontech.com>  Fri, 10 Oct 2025 17:31:21 +0800\n\ndde-control-center (6.1.50) unstable; urgency=medium\n\n  * fix: Fix the issue of the edit button not being horizontal\n\n -- zhangkun <zhangkun2@uniontech.com>  Fri, 26 Sep 2025 13:11:56 +0800\n\ndde-control-center (6.1.49) unstable; urgency=medium\n\n  * fix: disable hover effect on language delete button\n  * fix: Fix the security center version judgment exception\n  * fix: Fix the issue with the display of the license file\n  * fix: resolve dark mode icon visibility in keyboard shortcut editor\n  * fix: handle multi-arch package list paths\n  * fix: enable text wrapping for security center link\n  * fix: Fix the password error not selected completely\n  * fix: update week start day format on locale change\n  * fix: correct ACL error code matching logic\n  * fix: fix applet threading and item removal issues\n  * fix: add persistent storage for custom NTP server addresses\n  * refactor: replace libdpkg API with dpkg-query command\n  * feat: remove keyboard layout management module\n  * i18n: Updates for project Deepin Desktop Environment (#2691)\n  * fix: When system has no blur effect, the Multitasking View plugin is\n    also displayed in the Control Center\n  * fix: resolve onboard icon display in privacy FileAndFolder\n\n -- YeShanShan <yeshanshan@uniontech.com>  Thu, 25 Sep 2025 19:28:02 +0800\n\ndde-control-center (6.1.48) unstable; urgency=medium\n\n  * fix: connect license state change signal\n  * i18n: Updates for project Deepin Desktop Environment (#2685)\n  * fix: remove background from default app items\n  * style: update font styles in control center\n  * feat: adapt developer mode to use ACL service\n  * i18n: Updates for project Deepin Desktop Environment (#2683)\n  * fix: update iris enrollment UI and max limit\n  * feat: improve fingerprint enrollment animation and messaging\n  * fix: adjust title bar left margin\n  * feat: add configurable device management visibility\n  * fix: Adjust the display effects of the user group interface.\n  * i18n: Updates for project Deepin Desktop Environment (#2668)\n  * fix: hide current keyboard layouts from add layout dialog\n  * fix: resolve missing translation in power module US English locale\n  * fix: Fix the abnormal layout of the interface\n  * fix: Adjust the user group interface layout\n  * refactor: simplify gesture action mapping logic\n  * fix: correct i18n formatting in QML file\n  * fix: typo mistake of \"Wallpapers\"\n  * fix: resolve scrollbar unable to reach bottom in region list\n  * fix: add timeout dialog for X11 rotation changes\n  * fix: improve touchpad gesture animation behavior\n  * chore: Sync by\n    https://github.com/linuxdeepin/.github/commit/ae0f54a002362031e7e012\n    f4be2d79cfb370a57e\n\n -- YeShanShan <yeshanshan@uniontech.com>  Thu, 18 Sep 2025 20:07:38 +0800\n\ndde-control-center (6.1.47) unstable; urgency=medium\n\n  * chore(iris): update translation\n  * refactor: restructure biometric authentication controllers\n  * i18n: Translate dde-control-center_en.ts in uk (#2663)\n  * fix: Fix the Bluetooth interface opening slowly\n  * fix: Fix the font issue in the Bluetooth interface.\n  * [dde-control-center] Updates for project Deepin Desktop Environment\n    (#2659)\n  * fix: adapt datetime interface to 20pt system font size\n  * fix: Fix developer mode links not clicking\n  * fix: Fix the startup menu text not displaying fully\n  * fix: align edit button to right in language module\n  * fix: adapt datetime plugin dialogs for 20pt font size display\n  * fix: Fix account interface focus anomaly\n  * i18n: Updates for project Deepin Desktop Environment (#2649)\n  * fix: Fix the issue of unresponsive spaces\n  * fix: center-align verification switch in boot menu settings\n  * [dde-control-center] Updates for project Deepin Desktop Environment\n    (#2644)\n  * [dde-control-center] Updates for project Deepin Desktop Environment\n    (#2644)\n  * fix: resolve incorrect corner display on hover in default app list\n  * fix: add previousServerAddress recovery mechanism in datetime plugin\n  * i18n: Updates for project Deepin Desktop Environment (#2635)\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 11 Sep 2025 20:58:45 +0800\n\ndde-control-center (6.1.46) unstable; urgency=medium\n\n  * chore: update color extractor icon binary\n  * fix: fix combobox layout issues in sound settings\n  * fix: Fix the plaintext password to be copied\n  * fix: update DeepinID UI layout and icons\n  * fix: Changing the reset password does not prompt an error\n  * fix: fix gesture group item corner and separator styling\n  * feat: replace rectangle with DciIcon for badge display\n  * i18n: Translate dde-control-center_en.ts in pl (#2618)\n  * fix: adjust notification settings checkbox layout\n  * fix: Adjust the layout of the password change interface\n  * fix: adjust ScrollBar position and width in LangsChooserDialog\n  * fix: Modify the Edit Avatar interface\n  * fix: use ClickStyle instead of magic number\n  * fix: correct ScrollBar position in RegionsChooserWindow\n  * fix: update gesture group combo box background style\n  * fix: rename four finger click animation file\n  * fix: adjust ComboBox width in datetime plugin for better layout\n  * fix: add missing number separators for international locales\n  * fix: show remove button when locale generation is running\n  * fix: resolve loading state inconsistency in LangAndFormat component\n  * style: adjust font size and left margin in multiple QML files\n  * fix: Supplement referral dependencies\n  * fix: prevent region dropdown graying out on language switch\n  * fix: improve face enrollment dialog layout and responsiveness\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 04 Sep 2025 21:47:37 +0800\n\ndde-control-center (6.1.45) unstable; urgency=medium\n\n  * refactor: standardize shortcut key identifiers naming convention\n  * fix: resolve text truncation in language dialog with large system\n    fonts\n  * Fix: Adapt debugging settings function\n  * fix: standardize font sizes for Wacom plugin menu item titles\n  * fix: correct DBus interface usage in SetTimezone method\n  * i18n: Updates for project Deepin Desktop Environment (#2605)\n  * style: remove explicit width from combo boxes\n  * fix: correct bluetooth mouse icon style issue\n  * fix: Fixed the user group list stuttering\n  * fix: enhance timezone authentication and standardize UI text\n    formatting\n  * fix: Modify the interface layout\n  * fix: Fixed a bug in the developer mode interface\n  * fix: prevent audio effect output when toggling mono audio setting\n  * fix: resolve text truncation issue in ShortcutSettingDialog\n  * fix: align combo label to right (#2599)\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 28 Aug 2025 14:33:41 +0200\n\ndde-control-center (6.1.44) unstable; urgency=medium\n\n  * style: adjust busy indicator size and positioning\n  * Fix: Modify search list style\n  * fix: Fixed the launch menu display issue\n  * fix: resolve language display order issues in language name\n    formatting\n  * fix: Fixed user group list tab focus failure\n  * [dde-control-center] Updates for project Deepin Desktop Environment\n    (#2591)\n  * Fix: Default display on the primary screen\n  * i18n: Updates for project Deepin Desktop Environment (#2575)\n  * fix: add system shortcut name conflict detection\n  * fix: correct double click speed slider direction (#2588)\n  * fix: resolve bluetooth device more button style issues\n  * fix: Fix the password box display abnormally\n  * fix: resolve delete button hover effect issues in DefaultApp\n    DetailItem\n  * fix: resolve missing corner radius in format list items\n  * fix: adjust DccEditorItem height calculation\n  * fix: update building warnings.\n  * style: update DccLabel font style\n  * feat: enhance privacy plugin UI and functionality\n  * refactor: simplify theme selection UI components\n\n -- YeShanShan <yeshanshan@uniontech.com>  Thu, 21 Aug 2025 19:47:51 +0800\n\ndde-control-center (6.1.43) unstable; urgency=medium\n\n  * fix: update region format config flags\n  * chore: update desktop translation\n  * i18n: Updates for project Deepin Desktop Environment (#2573)\n  * fix: adjust notification UI alignment\n  * fix: improve input field UI consistency\n  * fix: adjust password layout spacing and margins\n  * fix: improve shortcut conflict text display\n  * fix: improve Bluetooth UI state handling during power toggle\n  * fix: improve shortcut dialog text consistency\n  * fix: bluetooth device list auto-refresh after power toggle (#2567)\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 14 Aug 2025 20:46:50 +0800\n\ndde-control-center (6.1.42) unstable; urgency=medium\n\n  * fix: improve bluetooth mode selection stability (#2564)\n  * i18n: Updates for project Deepin Desktop Environment (#2558)\n  * fix: round margin values to prevent subpixel blurring\n\n -- wujiangyu <wujiangyu@uniontech.com>  Tue, 12 Aug 2025 10:38:51 +0800\n\ndde-control-center (6.1.41) unstable; urgency=medium\n\n  * fix: improve gesture action data handling\n  * i18n: Updates for project Deepin Desktop Environment (#2552)\n  * fix: Created successfully with the same username and password\n  * fix: add focus support for SearchableListViewPopup\n\n -- YeShanShan <yeshanshan@uniontech.com>  Thu, 07 Aug 2025 20:52:06 +0800\n\ndde-control-center (6.1.40) unstable; urgency=medium\n\n  * fix: unsupported relocation error on arm64\n\n -- Wang Zichong <wangzichong@deepin.org>  Fri, 01 Aug 2025 11:08:00 +0800\n\ndde-control-center (6.1.39) unstable; urgency=medium\n\n  * chore: remove upper-level datetime_*.ts resources\n  * fix: Modify the translation of Scaling\n  * i18n: Updates for project Deepin Desktop Environment (#2549)\n  * fix: update double click speed slider labels\n  * style: adjust datetime plugin UI elements\n  * fix: remove unnecessary trim in Bluetooth device name validation\n  * fix: Cursor display jumps add text measurement and auto-alignment\n    for text field\n  * i18n: Updates for project Deepin Desktop Environment (#2545)\n  * fix: remove unused QString to UnicodeString convert\n  * fix: remove the need of `datetime_language.ts` and\n    `datetime_country.ts`\n  * i18n: Updates for project Deepin Desktop Environment (#2543)\n  * chore: update ts files\n  * i18n: Translate dde-control-center_en.ts in es (#2541)\n  * fix: remove the need of `keyboard_language.ts` resources\n  * i18n: Updates for project Deepin Desktop Environment (#2521)\n  * fix: add fallback for empty app icons in notification plugin\n  * fix: show shortcut keys in edit mode\n  * refactor: remove redundant textColor property in NativeInfoPage\n  * fix: allow saving shortcuts with modifier-only keys\n  * feat: adjust notification combo box width\n  * fix: Fixed the issue of incomplete display of large fonts\n  * fix: Modify search error issues\n  * fix: Modify the schematic diagram style\n  * fix: resolve active color inconsistency in timezone menu popup\n  * fix: Change the size of the hover background\n  * fix: Fixed the issue of pop-up theme mismatch\n  * fix: resolve theme adaptation issues in RegionsChooserWindow dark\n    mode\n  * fix: resolve cancel operation in shortcut setting dialog\n  * fix: Fix mailbox errors\n  * fix: Fix the startup screen\n  * fix: reset view position when searching in RegionFormatDialog\n  * fix: resolve empty region list after clearing search input\n  * fix: The error message is fixed\n\n -- YeShanShan <yeshanshan@uniontech.com>  Thu, 31 Jul 2025 19:42:46 +0800\n\ndde-control-center (6.1.38) unstable; urgency=medium\n\n  * i18n: Updates for project Deepin Desktop Environment (#2519)\n\n -- zhangkun <zhangkun2@uniontech.com>  Fri, 18 Jul 2025 15:08:00 +0800\n\ndde-control-center (6.1.37) unstable; urgency=medium\n\n  * fix: Update text errors\n  * [dde-control-center] Updates for project Deepin Desktop Environment\n    (#2512)\n  * fix: Fixed Bluetooth device status not refreshing\n  * fix: hide noise suppression setting when input device is bluetooth\n  * fix: Modifying icons does not change with the theme\n\n -- zhangkun <zhangkun2@uniontech.com>  Fri, 18 Jul 2025 13:58:02 +0800\n\ndde-control-center (6.1.36) unstable; urgency=medium\n\n  * fix: Worng state in power anagement\n  * fix: resolve keyboard layout addition failure\n  * fix: Fix password error prompt issue\n  * i18n: Updates for project Deepin Desktop Environment (#2500)\n  * fix: resolve audio feedback issue when adjusting volume from 0% to\n    100%\n  * refactor: clean up QML properties and connections\n  * fix: improve region selection menu styling and interaction\n  * style: remove redundant textColor properties in DccWindow\n  * fix: The issue of renaming user groups is fixed\n  * fix: adjust text opacity in LangAndFormat for better visibility\n  * fix: Fixed the Bluetooth speaker icon error\n  * fix: Fixed the issue of customizing the avatar\n\n -- WuJiangYu <wujiangyu@uniontech.com>  Wed, 16 Jul 2025 10:47:37 +0800\n\ndde-control-center (6.1.35) unstable; urgency=medium\n\n  * i18n: Translate dde-control-center_en.ts in zh_TW\n  * i18n: Translate dde-control-center_en.ts in zh_HK\n  * i18n: Translate dde-control-center_en.ts in zh_CN\n  * i18n: Translate dde-control-center_en.ts in hu\n  * i18n: Translate dde-control-center_en.ts in fi\n  * i18n: Translate dde-control-center_en.ts in pl\n  * i18n: Translate dde-control-center_en.ts in sv\n  * i18n: Translate dde-control-center_en.ts in az\n  * i18n: Translate dde-control-center_en.ts in vi\n  * i18n: Translate dde-control-center_en.ts in kab\n  * i18n: Translate dde-control-center_en.ts in pt_BR\n  * i18n: Translate dde-control-center_en.ts in zh_HK\n  * i18n: Translate dde-control-center_en.ts in fr\n  * i18n: Translate dde-control-center_en.ts in ko\n  * i18n: Translate dde-control-center_en.ts in ru\n  * i18n: Translate dde-control-center_en.ts in sl\n  * i18n: Translate dde-control-center_en.ts in zh_CN\n  * i18n: Translate dde-control-center_en.ts in gl_ES\n  * i18n: Translate dde-control-center_en.ts in zh_TW\n  * i18n: Translate dde-control-center_en.ts in th\n  * i18n: Translate dde-control-center_en.ts in ja\n  * i18n: Translate dde-control-center_en.ts in es\n  * i18n: Translate dde-control-center_en.ts in sq\n  * i18n: Translate dde-control-center_en.ts in ne\n  * i18n: Translate dde-control-center_en.ts in uk\n  * i18n: Translate dde-control-center_en.ts in kk\n  * i18n: Translate dde-control-center_en.ts in de_DE\n  * i18n: Translate dde-control-center_en.ts in bn\n  * i18n: Translate dde-control-center_en.ts in ca\n  * i18n: Translate dde-control-center_en.ts in tr\n  * i18n: Translate dde-control-center_en.ts in he\n  * i18n: Translate dde-control-center_en.ts in et\n  * i18n: Translate dde-control-center_en.ts in ar\n  * feat: add locale generation support and UI indicators\n  * fix: resolve missing number format in region settings\n  * i18n: Translate dde-control-center_en.ts in zh_CN\n  * i18n: Translate dde-control-center_en.ts in zh_TW\n  * i18n: Translate dde-control-center_en.ts in zh_HK\n  * i18n: Translate dde-control-center_en.ts in ru\n  * i18n: Translate dde-control-center_en.ts in kk\n  * i18n: Translate dde-control-center_en.ts in kab\n  * i18n: Translate dde-control-center_en.ts in sq\n  * i18n: Translate dde-control-center_en.ts in fr\n  * i18n: Translate dde-control-center_en.ts in de_DE\n  * i18n: Translate dde-control-center_en.ts in zh_CN\n  * i18n: Translate dde-control-center_en.ts in he\n  * i18n: Translate dde-control-center_en.ts in th\n  * i18n: Translate dde-control-center_en.ts in vi\n  * i18n: Translate dde-control-center_en.ts in ne\n  * i18n: Translate dde-control-center_en.ts in pt_BR\n  * i18n: Translate dde-control-center_en.ts in bn\n  * i18n: Translate dde-control-center_en.ts in hu\n  * i18n: Translate dde-control-center_en.ts in ca\n  * i18n: Translate dde-control-center_en.ts in fi\n  * i18n: Translate dde-control-center_en.ts in uk\n  * i18n: Translate dde-control-center_en.ts in pl\n  * i18n: Translate dde-control-center_en.ts in gl_ES\n  * i18n: Translate dde-control-center_en.ts in sl\n  * i18n: Translate dde-control-center_en.ts in tr\n  * i18n: Translate dde-control-center_en.ts in az\n  * i18n: Translate dde-control-center_en.ts in zh_HK\n  * i18n: Translate dde-control-center_en.ts in et\n  * i18n: Translate dde-control-center_en.ts in es\n  * i18n: Translate dde-control-center_en.ts in zh_TW\n  * i18n: Translate dde-control-center_en.ts in sv\n  * i18n: Translate dde-control-center_en.ts in ko\n  * i18n: Translate dde-control-center_en.ts in ja\n  * i18n: Translate dde-control-center_en.ts in ar\n  * fix: improve nickname modification handling and validation\n  * i18n: Updates for project Deepin Desktop Environment (#2491)\n  * fix: Unprocessed screen scaling\n  * fix: Fixed the issue of right-clicking to exit editing\n  * fix: Modify the schematic diagram style\n  * fix: The issue of creating a new user prompt is fixed\n  * fix: Fixed the sorting issue of Bluetooth devices\n  * [dde-control-center] Updates for project Deepin Desktop Environment\n    (#2470)\n  * feat: implement avatar caching system\n  * fix: Fixed the dynamic display in Security Center\n  * fix: hide balance control for handsfree devices\n  * fix: prevent bottom button occlusion in RegionFormatDialog\n  * fix: prevent scrollbar overflow in region selection dropdown\n  * fix: Volume adjustment display issue Update font size and add\n    transparency to volume percentage labels\n  * fix: Fix file prompts that are not supported\n  * fix: fix region and format panel layout in TimeAndDate dialog\n  * fix: Fixed the user group focus issue\n  * fix: improve shortcut conflict handling and data persistence\n  * fix: prevent duplicate shortcut conflict errors\n  * fix: prevent bottom clipping at maximum font size\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 10 Jul 2025 21:52:38 +0800\n\ndde-control-center (6.1.34) unstable; urgency=medium\n\n  * refactor: clean up code and optimize variable declarations\n  * fix: The fingerprint animation is too small\n  * feat: Add development and debugging options to the community version\n\n -- caixiangrong <caixiangrong@uniontech.com>  Fri, 04 Jul 2025 09:28:25 +0800\n\ndde-control-center (6.1.33) unstable; urgency=medium\n\n  * fix: Fix symbolic link error\n  * i18n: Updates for project Deepin Desktop Environment (#2463)\n  * fix: Add image caching processing\n  * fix: Fix the issue of abnormal display of user types\n  * fix: Modify the button style\n  * fix: optimize search bar layout metrics in ListViewPopup\n  * fix(power): The first modification of custom shutdown does not take\n    effect\n  * fix: Add schematic text shadow\n  * fix: Fixed the issue that custom avatars were displayed incorrectly\n  * chore: avoid hard-code compiler options in CMakeLists.txt\n  * fix: enhance timezone selector layout and display\n  * fix: Modify the issue of incomplete text display in Crumb\n  * fix: Fixed the issue that the upload avatar was set immediately\n  * fix: Scheduled shutdown dialog date synchronization issue Initialize\n    `selectedDays` as empty and sync with latest model data on dialog\n    visibility. Centralizes reset logic in `syncSelectedDays()` function\n    called during: - Dialog visibility changes - Closing/cancellation\n    actions - Cancel button click\n  * fix: resolve oversized edit button font in language settings\n  * fix: Add error handling for opening developer mode\n  * fix: adjust language selector layout alignment\n  * Make the string translatable\n  * fix: preserve balance when toggling mono audio and adjust UI weights\n  * fix: Fix compilation warning\n  * fix: prevent focus on keyboard shortcut edit buttons\n  * fix: Fixed some copywriting errors\n  * fix: Fixed the Bluetooth sorting issue of links\n  * chore: add option to disable privacy'n'security plugin\n  * fix: Modify the Create User dialog box\n  * fix: round volume values to avoid floating point precision issues\n  * fix: add shortcut clearing functionality in keyboard module\n  * fix: Fixed the issue that the settings menu was opened\n  * fix: position regions chooser window at mouse click position\n  * fix: adjust UI spacing and fonts in Region and Language interface\n  * fix: Fixed the issue that the blur effect was abnormal\n  * fix: Fixed the wrong selection of the active color\n  * fix: remove duplicate Numeric Keypad display names in keyboard\n    settings\n  * fix: Fix creating user interface display\n  * fix: maintain selected region when filtering in RegionFormatDialog\n  * fix: improve icon handling and UI components\n  * fix(accounts): The 'Quick Login' option is not hidden correctly\n\n -- WuJiangYu <wujiangyu@uniontech.com>  Thu, 03 Jul 2025 19:59:25 +0800\n\ndde-control-center (6.1.32) unstable; urgency=medium\n\n  * i18n: Updates for project Deepin Desktop Environment (#2419)\n  * chore: remove reginal variants for es language\n  * fix: update deepin ID notification for UOS compatibility\n  * refactor: add Q_UNUSED macros to unused parameters\n  * i18n: Updates for project Deepin Desktop Environment (#2415)\n\n -- caixiangrong <caixiangrong@uniontech.com>  Mon, 23 Jun 2025 16:58:03 +0800\n\ndde-control-center (6.1.31) unstable; urgency=medium\n\n  * fix: Open all keyboard layouts\n\n -- caixiangrong <caixiangrong@uniontech.com>  Thu, 19 Jun 2025 16:43:03 +0800\n\ndde-control-center (6.1.30) unstable; urgency=medium\n\n  * fix: hide pressure sensitivity settings in mouse mode\n  * refactor: reorganize shutdown time signal and handling\n  * fix: resolve spacing and font issues in touchpad components\n  * fix: adjust spacing and margins in LangsChooserDialog\n  * fix: Fix the issue of incomplete text display\n  * fix: Block keyboard lock function\n  * fix: Fixed text position anomalies\n  * fix: resolve button hover effects in MicrophonePage\n  * fix: add missing hover effects for shortcut editing buttons\n  * fix: Fixed icon exceptions\n  * i18n: Translate dde-control-center_en.ts in uk (#2399)\n  * fix: Fixed the issue of font display in user groups\n  * fix: reduce excessive spacing between list items in LangAndFormat\n  * fix: reduce excessive spacing between setting sections in\n    TimeAndDate\n  * fix: align placeholder text to left in custom NTP server input field\n  * i18n: Updates for project Deepin Desktop Environment (#2378)\n  * fix: modify opacity slide Min value as 25%.\n  * fix: adapt custom server confirm button for screen scaling\n  * fix: resolve volume icon hover effect issues in SpeakerPage\n  * fix: Fix default display for unnamed Bluetooth\n  * fix: resolve play button icon display in sound effects\n  * style: reorder member variable initialization\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 19 Jun 2025 10:09:03 +0800\n\ndde-control-center (6.1.29) unstable; urgency=medium\n\n  * fix: Fixed the failure of uploading an avatar\n  * fix: Fix activation status not syncing\n  * fix: Modify the processing method of the identify window\n  * fix: ScheduledShutdownDialog cancel behavior on close\n  * fix: standardize icon naming in TimeAndDate component\n  * fix: resolve caps lock toggle functionality in keyboard plugin\n  * fix: Modify brightness text style\n  * fix: hide Touchpad gesture options when disabled\n  * fix: Fix search no results\n  * fix: The fixed issue is prompt for creating a user with the same name\n  * fix: Add notification jump processing\n  * fix: resolve editing state issue in Shortcuts component\n  * fix: Fixed the display of developer mode\n  * i18n: Updates for project Deepin Desktop Environment (#2370)\n  * fix: improve RegionsChooserWindow layout and scrolling experience\n  * fix: handle empty text input in DateTimeSettingDialog\n  * fix: Fixed the issue of user group clicking\n  * fix: Modify the height spacing\n  * fix: customize spinbox input validation in DateTimeSettingDialog\n  * chore: update debian control\n  * i18n: Translate dde-control-center_en.ts in zh_TW (#2368)\n  * i18n: Updates for project Deepin Desktop Environment (#2363)\n\n -- caixiangrong <caixiangrong@uniontech.com>  Thu, 12 Jun 2025 16:40:40 +0800\n\ndde-control-center (6.1.28) unstable; urgency=medium\n\n  * refactor: migrate RSA encryption to EVP API\n  * style: add unused parameter markers and fix member order\n  * feat: add battery power state awareness to screensaver\n  * fix: add POST_BUILD to custom commands\n  * fix: update translation with QuickLogin and Lock Dock\n  * fix: Add a user group error message\n  * feat: add Lock the height of dock.\n  * feat: add quick login.\n  * fix: improve caps lock and num lock toggle functionality\n  * fix: add disambiguation context for \"Medium\" copywriting\n  * i18n: Updates for project Deepin Desktop Environment (#2352)\n  * fix: prevent key sequence recording when edit button is clicked\n  * fix: Add a full name error message\n  * fix: Fixed the issue that the error message was displayed\n  * fix: Fix text length limit\n  * fix: adjust text handling in KeyboardLayout component\n  * feat: Implement keyboard on/off authentication\n  * feat: The mode is not updated when only one screen is switched\n  * fix: optimize scrolling experience in Shortcuts component\n  * fix: Mask input field copy operations\n  * fix: Modify menu translations\n  * fix: optimize input field layout and validation in TimeAndDate\n  * feat: update moudle translation\n  * feat: Implement keyboard on/off function\n  * fix: remove redundant displayName properties in sound component\n  * fix: Fixed the issue of the background color of the list item hover\n  * fix: Optimized the focus of the user group list\n  * fix: optimize volume control step size for better usability\n  * fix: improve deepinid plugin initialization and activation logic\n  * i18n: Updates for project Deepin Desktop Environment (#2329)\n  * fix: Modifying desktop display without options issue\n  * i18n: Updates for project Deepin Desktop Environment (#2326)\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 05 Jun 2025 21:38:17 +0800\n\ndde-control-center (6.1.27) unstable; urgency=medium\n\n  * fix: Edit compilation warning\n  * fix: Modify the style of the ComboBox\n  * fix: Modify confirmation window coordinate error\n  * fix: Fixed the computer name error message\n  * chore: use day name from Locale.standaloneDayName()\n  * fix: Modify duplicate settings issue\n  * fix: enhance clear button UI and padding in TimeAndDate\n  * fix: Fixed the issue that Bluetooth did not refresh automatically\n  * fix: Add password hint restrictions\n  * fix: Duplicate applications can be added in the default program\n  * fix: improve text visibility in TimeAndDate component\n  * fix: resolve con loading in LangsChooserDialog\n  * feat: Add URL fuzzy matching function\n  * fix: resolve shortcut conflicts by adding type parameter\n  * fix: Fixed the issue that the menu position was abnormal\n  * fix: remove ai-assistant from assistive tools filter\n  * fix: The default program appears in recent installations\n  * fix: Fixed the issue of slow creation of multiple accounts\n  * fix: preserve custom shortcut order in ShortcutModel\n  * fix: optimize window switch handling in keyboard plugin\n  * chore: Update QML imports for compatibility with Qt >= 6.9\n  * fix: Fix the blank context menu issue\n  * fix: Fixed the issue that the button text was not displayed\n    completely\n  * fix: optimize text filtering in keyboard shortcuts\n  * fix: The scrollbar does not display\n  * fix: Modify time input control\n  * fix: Same page return and item animation\n  * fix: update focus handling in Common\n  * chore: update UI text descriptions and translations\n  * feat: disables search in privacy plugin settings\n  * fix: Fixed the issue that the font size did not change with the\n    change\n  * fix: optimize input field widths on Sound page\n  * fix: Modify custom time rules\n  * style: add subtle borders to preview containers\n  * fix: adjust sound name width with ellipsis in TimeAndDate\n  * fix: Fixed the issue that the font size did not change with the\n    change\n  * fix: Modify the text ellipsis effect\n  * style: improve window blur color handling\n  * fix: prevent duplicate format in TimeAndDate component\n  * chore: Update obs workflows.yml\n  * fix: update numberKeepList with Arabic thousands separator\n  * fix: update time format strings in RegionProxy\n  * fix: Add Bluetooth connection animation\n  * fix: add wrap support for datetime spinboxes\n  * fix: Fixed the issue that other account status was abnormal\n  * fix: adjust component heights and vertical alignment for\n    localization\n  * refactor: improve scheduled shutdown dialog handling\n  * fix: Fix the issue of user group name not displaying completely\n  * fix: The following is fixed for the user group sorting error\n  * fix: improve text visibility in Label components\n  * fix: The default program of the terminal cannot be set\n  * fix: No search results related to performance mode\n  * fix: Tab key cannot traverse application notifications\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 29 May 2025 17:31:02 +0800\n\ndde-control-center (6.1.26) unstable; urgency=medium\n\n  * fix: ensure plain text format in KeySequenceDisplay\n  * fix: Correct spelling errors\n  * fix: improve sound device combo box dynamic sizing\n  * fix: disable power management features in virtual environments\n  * fix: adjust device page plugin order\n  * fix: The application name contains the deepin character\n  * fix: Fix the issue of names that are too long not being truncated.\n  * fix: improve language label display in LangsChooserDialog\n  * fix: Fix the display issue of the new creation failure interface.\n  * fix: disable focus on shortcut operation buttons\n  * fix: Modify custom time rules\n  * fix(auth): adjust unreasonable UI\n\n -- xionglinlin <xionglinlin@uniontech.com>  Thu, 15 May 2025 22:05:47 +0800\n\ndde-control-center (6.1.25) unstable; urgency=medium\n\n  * fix: Modifying settings for copying mode issues\n  * fix: Fix the hyperlink issue in the user interface\n  * fix: Fix Bluetooth rename prompt error\n  * fix: correct week start day format index\n  * fix: Fix text style\n  * fix: Fix the button text display issue\n  * fix: hide play button background\n  * fix: improve datetime format handling for non-Chinese locales\n  * i18n: Updates for project Deepin Desktop Environment (#2244)\n  * fix: preserve original language data in LanguageListModel\n\n -- YeShanShan <yeshanshan@uniontech.com>  Tue, 13 May 2025 16:28:40 +0800\n\ndde-control-center (6.1.24) unstable; urgency=medium\n\n  * fix: optimize slider behavior in sound control center\n  * fix: improve country name translation in datetime module\n  * fix: update mouse double-click speed slider labels\n  * fix: Fixed the issue that hyperlinks did not have context menus\n  * fix: Fixed the Bluetooth switch issue in airplane mode\n  * fix: Fixed the lack of hover effect for list items\n  * fix: Modify the height of the sidebar item\n  * fix: improve time format handling in datetime model\n  * feat:  adapt to WallpaperChanged signal\n  * fix: Modify and check password strength issues\n  * fix: Add keyboard_language generation script\n  * i18n: Updates for project Deepin Desktop Environment (#2233)\n  * fix: Fix layout errors\n  * fix: update font in ShortcutSettingDialog\n  * fix: Fixed the issue that the rename was empty\n  * i18n: Updates for project Deepin Desktop Environment (#2229)\n\n -- YeShanShan <yeshanshan@uniontech.com>  Thu, 08 May 2025 16:44:23 +0800\n\ndde-control-center (6.1.23) unstable; urgency=medium\n\n  * fix: Add new language translation\n  * fix: The issue of abnormal mouse style is fixed\n  * fix: clear filter wildcard in LangsChooserDialog when deactivated\n  * fix: failed to retrieve search results for grand searching\n  * fix: Fixed the issue that the test content was not cleared\n  * fix: adjust icon size in LangAndFormat component\n  * fix: update locale in currentTime()\n  * fix: Fixed the error of opening the default path\n  * i18n: Updates for project Deepin Desktop Environment (#2218)\n  * fix: update system time zone check in addUserTimeZone method\n  * fix: Fixed the issue that the error content did not disappear\n  * fix: add setFirstDayOfWeek call in setCurrentFormat\n  * fix: Fixed the background exception of mouse operation\n  * fix: resolve display issues in TimeAndDate component\n  * fix: Modify the width of the strong reminder box\n  * fix: Update Chinese translation\n  * fix: Fixed that the password was empty and could still be determined\n  * feat: DccCheckIcon defaults to checked status\n  * fix: Modify search term configuration\n  * fix: enhance SearchableListViewPopup and TimeAndDate components\n  * fix: Fixed the issue that Bluetooth was renamed to empty\n  * fix: Fixed the error issue of changing the full name\n  * fix: Fixed the issue of waiting for Bluetooth to be turned on and\n    off\n  * fix: The issue of setting the background of grub startup is fixed\n\n -- YeShanShan <yeshanshan@uniontech.com>  Tue, 29 Apr 2025 13:16:21 +0800\n\ndde-control-center (6.1.22) unstable; urgency=medium\n\n  * fix: Display window only when DBus calls ShowPage\n  * fix: Update error messages for camera occupancy\n  * i18n: Updates for project Deepin Desktop Environment (#2198)\n  * fix: add stopSoundEffectPlayback method and integrate into SoundEffectsPage\n  * fix: Fixed the Bluetooth list loading issue\n  * i18n: Updates for project Deepin Desktop Environment (#2194)\n  * fix: Can be renamed to a duplicate name\n  * fix: update sound effects and animations for theme support\n  * fix: Fixed the Bluetooth name display issue\n\n -- caixiangrong <caixiangrong@uniontech.com>  Tue, 22 Apr 2025 15:52:20 +0800\n\ndde-control-center (6.1.21) unstable; urgency=medium\n\n  * fix: Compatible with previous command parameters\n  * fix: Return hierarchy error\n  * fix: Return hierarchy error\n  * fix: use system locale for date formatting\n  * fix: Add translation language types\n  * fix: use system locale for date formatting\n  * fix: Added error sounds\n  * fix: Modify the translation loading location\n  * fix: The title is displayed incorrectly.\n  * fix: Add secure compilation parameters\n  * i18n: Updates for project Deepin Desktop Environment (#2171)\n  * fix: improve timezone selection persistence in search\n  * fix: The issue of user group editing is fixed\n  * fix: always include switch-monitors in system shortcuts filter\n  * fix: Fixed the Bluetooth checkbox clicking issue\n  * fix: simplify NTP server validation and address assignment\n  * fix: missing unchecked state for DccCheckIcon\n  * fix: ScorllBar still hide when hovered\n  * feat: Support the user agreement for UosMilitary\n  * fix: copyright cannot display Chinese\n  * fix: Add the computer name tooltip\n  * i18n: Updates for project Deepin Desktop Environment (#2168)\n  * fix: Fixed the issue of formula bar style\n  * fix: The issue that the username is displayed too long is fixed\n  * fix: The issue that the group title is not refreshed in time is fixed\n  * fix: disable microphone input level slider interaction\n  * i18n: Updates for project Deepin Desktop Environment (#2156)\n\n -- caixiangrong <caixiangrong@uniontech.com>  Thu, 17 Apr 2025 16:32:20 +0800\n\ndde-control-center (6.1.20) unstable; urgency=medium\n\n  * refact: migrate plugin-update to deepin-update-ui\n  * fix: remove redundant locale config when setting region\n  * fix: improve SearchableListViewPopup positioning and visibility\n  * fix: Fixed text color errors\n  * fix: The issue that the username is displayed abnormally is fixed\n  * fix: Fixed the issue that the full name could not be set to the\n    blank\n  * fix: number separator issue in SpinBox with C locale\n  * fix: Fixed the profile picture background issue\n  * fix: Fixed the issue that the font size does not change\n  * fix: adjust UI for DccCheckIcon\n  * fix: Fixed it was not refreshed in time when switching theme\n    displays\n  * fix: prevent duplicate timezone between system and user lists\n  * i18n: Updates for project Deepin Desktop Environment (#2154)\n  * i18n: Updates for project Deepin Desktop Environment (#2153)\n\n -- YeShanShan <yeshanshan@uniontech.com>  Thu, 10 Apr 2025 15:49:14 +0800\n\ndde-control-center (6.1.19) unstable; urgency=medium\n\n  *  feat: modify the system configuration items of the deepinid\n  * fix: No configuration written after modifying the region format\n  * chore: update README.md and translations in desktop file\n  * i18n: Updates for project Deepin Desktop Environment (#2147)\n  * fix: typo mistakes (#2145)\n  * i18n: Updates for project Deepin Desktop Environment (#2146)\n  * fix(personalization): UI optimization\n  * fix: Modify Crumb spacing\n  * fix: No configuration written after modifying the region format\n  * i18n: Updates for project Deepin Desktop Environment (#2140)\n  * fix: Remove Qt5 dependencies\n  * fix: wallpaper interface loads slowly\n  * fix: Modify search list keyboard interaction\n  * fix: Modify the style of the return key\n  * i18n: Updates for project Deepin Desktop Environment (#2138)\n  * fix: fix typo and update ts files\n  * i18n: Updates for project Deepin Desktop Environment (#2136)\n  * fix: minor typos (#2134)\n  * fix: add update moudle check error tips\n  * i18n: Updates for project Deepin Desktop Environment (#2131)\n  * i18n: Updates for project Deepin Desktop Environment (#2130)\n  * fix: add transifex config\n\n -- caixiangrong <caixiangrong@uniontech.com>  Thu, 27 Mar 2025 15:52:20 +0800\n\ndde-control-center (6.1.18) unstable; urgency=medium\n\n  * fix: The issue of intercepting mouse events while modifying the ComboBox\n  * fix: Adjust the ListView UI\n  * chore(power): update translate\n  * fix(power): ui optimization\n  * fix: Modify Crumb style\n  * fix: add transifex config\n  * fix: the number of wallpapers displayed has not been updated\n  * fix: no hide 'Show the shutdown Interface' option on lid close\n  * fix: Modifying cursor style issues\n  * fix: Modify Control Center Exit Deadlock Issue\n  * fix: Notification preview image without dark mode\n  * fix: develop moudel add get debug level\n  * fix: change sound list model enabled\n  * fix: Can delete logged-in users\n\n -- caixiangrong <caixiangrong@uniontech.com>  Thu, 20 Mar 2025 17:52:20 +0800\n\ndde-control-center (6.1.17) unstable; urgency=medium\n\n  * fix: occasionally crashes when switching wallpapers on multiple screens\n\n -- zhangkun <zhangkun2@uniontech.com>  Tue, 18 Mar 2025 10:27:40 +0800\n\ndde-control-center (6.1.16) unstable; urgency=medium\n\n  * chore: update icon\n  * fix: add Bluetooth name and icon margin\n\n -- caixiangrong <caixiangrong@uniontech.com>  Wed, 12 Mar 2025 13:31:20 +0800\n\ndde-control-center (6.1.15) unstable; urgency=medium\n\n  * fix: Missing application notification title\n  * fix: langAndFormat moudle Reset button width\n  * fix: Change username to root\n  * fix: update touchscreen icon\n  * fix: No response to jump datetime module\n  * feat: comment unadapted system configuration items\n\n -- xionglinlin <xionglinlin@uniontech.com>  Tue, 11 Mar 2025 16:22:22 +0800\n\ndde-control-center (6.1.14) unstable; urgency=medium\n\n  * fix: Add eye protection mode\n  * fix: Change the image of the startup menu\n  * fix: appearance theme can not change by property changed\n  * chore: update icons\n  * fix: update developerMode translation\n  * chore(bluetooth): update icon\n  * feat(power): Adjust and optimize the UI\n  * fix: Modify the button hierarchy of the title bar\n  * fix: change system version info to Authorization Property data\n  * chore: hide compact mode\n  * chore(power): update icon\n  * fix: Continuous calls to the enroll interface may not initiate enroll\n  * typo: Correct the interface of the PropertiesChanged signal\n  * fix: Fix overlapping issue in the control center display schematic adjustment\n  * fix: update status is incorrect\n  * fix: Modify the disappearance issue of the network interface\n  * fix: Abnormal display of modify delete button\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 06 Mar 2025 19:30:52 +0800\n\ndde-control-center (6.1.13) unstable; urgency=medium\n\n  * chore: add dde-control-center-dock conflict\n\n -- zhangkun <zhangkun2@uniontech.com>  Fri, 28 Feb 2025 17:22:58 +0800\n\ndde-control-center (6.1.12) unstable; urgency=medium\n\n  * fix: update moudle add reday state\n  * fix: update User Experience Program text\n  * chore(personalization): Custom images are prohibited from selecting GIF and svg images\n  * fix: combobox for slideShow wallpaper  will not select 'never'\n  * fix: Occasionally crash when exiting\n  * fit: Modify the display logic of the monitor title\n  * fix: font combobox displays incomplete font names\n  * chore(power): Unhide the auto shutdown module on treeland\n  * fit: No response after switching to only the secondary screen\n  * chore(update): update icon\n  * fit: Modifying the unplugged network card caused a crash issue\n  * fit: When merge mode, masking should not be re spliced\n  * fix: update bluetooth icon\n  * fix: update commonInfo translation\n  * fix: first thumb name is empty\n  * fix: fix develop mode status issue\n  * fit: Modify the display rules of the Identify button\n  * fix: the configuration of hide combobox options does not take effect\n  * feat: hide privacy on non uos\n  * fit: No character rule verification\n  * fit: Modify screen stitching overlap issue\n  * fix: fix develop mode status issue\n  * fix: unlock when not locked\n  * fix: biometric authentication sometimes not displaying\n  * chore(wallpaper): update translate\n  * chore(dock): update include\n  * feat: add dock plugin\n\n -- shenwenqi <shenwenqi@uniontech.com>  Fri, 28 Feb 2025 14:40:53 +0800\n\ndde-control-center (6.1.11) unstable; urgency=medium\n\n  * feat: add dock plugin\n\n -- zhangkun <zhangkun2@uniontech.com>  Fri, 21 Feb 2025 17:18:53 +0800\n\ndde-control-center (6.1.10) unstable; urgency=medium\n\n  * feat: Support selecting monitor when setting wallpaper\n  * fix: can not click setting button when setting picture screensaver\n  * fix: the opacity has abnormally reached its maximum value in treeland\n  * feat: Add tab key navigation interaction function\n  * chore: update custom solidwallpapers path\n  * chore(personalization): update translate\n  * feat: add wallpaper and screensaver\n  * fix: update Bluetooth list ui\n  * feat: update moudle translation\n  * feat: update moudle adapter Lastore daemon\n  * fix: multiple accounts can be enabled for automatic login\n  * fix: standardUser can change other account passwords\n  * fix: The bottom button is not fully displayed\n\n -- zhangkun <zhangkun2@uniontech.com>  Fri, 21 Feb 2025 15:49:34 +0800\n\ndde-control-center (6.1.9) unstable; urgency=medium\n\n  * fix(privacy): some applications that have been abnormally excluded\n  * feat(BiometricAuth): Add fingerprint registration animation and Reasonably hide modules\n  * feat: Provide interfaces for setting wallpapers and themeType\n  * feat: Update icon\n  * feat: Update display module translation\n  * feat: Display module screen splicing function\n  * fix: delete update moudel list item implicitHeight\n  * fix: modify Bluetooth moudle edit button style\n  * fix: Plugin status updates are processed in the main thread through signaling\n  * fix: modify update actionBtn width\n  * fix: modify bluetooth moudel redo icon path\n  * fix: Incorrect setting of suspend mode to hibernate mode\n  * fix: Incorrect password modification function for other accounts\n  * fix: bluetooth moudle change button to toolbutton\n  * fix: add bluetooth device not update model\n  * fix: update touchpad translation\n  * fix: touchpad finger animation not update\n  * feat: add biometric authentication module\n\n -- zhangkun <zhangkun2@uniontech.com>  Fri, 14 Feb 2025 10:38:44 +0800\n\ndde-control-center (6.1.8) unstable; urgency=medium\n\n  * feat: override icu database\n  * fix: Modify the issue of dconfig saving crashing and freezing\n  * feat: impl privacy\n  * fix: Modify memory release issue\n  * feat: 初步实现生物认证-人脸识别\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 23 Jan 2025 17:21:20 +0800\n\ndde-control-center (6.1.7) unstable; urgency=medium\n\n  * fix: Adjust default program UI style\n  * feat: add mouse touchpad gesture module (#2000)\n  * feat: Temporarily hide account and security modules (#1999)\n  * feat: update deepinid module (#1997)\n\n -- caixiangrong <caixiangrong@uniontech.com>  Tue, 14 Jan 2025 16:46:20 +0800\n\ndde-control-center (6.1.6) unstable; urgency=medium\n\n  * fix: Add default program functionality\n  * fix: Error in modifying the setting area\n  * fix: Adjust the UI style of the control center\n  * fix: update system update icon\n  * fix: update keyboard icon\n\n -- zhangkun <zhangkun2@uniontech.com>  Fri, 10 Jan 2025 14:34:23 +0800\n\ndde-control-center (6.1.5) unstable; urgency=medium\n\n  * fix: Modify the UI style of the list view\n  * fix: delete boot menu background color (#1987)\n  * fix: add mouse and keyboard icon (#1988)\n  * fix: the icon for sending system notifications is incorrect\n  * fix: Adjust bluetooth more button size\n  * chore: do not fullscreen on space key pressed\n  * feat: Add the function of modifying screen scale\n  * fix: Adjust sound combobox mode data (#1983)\n  * chore: hide edit button when item count < 2\n  * chore: dialog set fix size\n  * fix: Adjust the bluetooth module UI (#1980)\n\n -- zhangkun <zhangkun2@uniontech.com>  Thu, 02 Jan 2025 13:52:51 +0800\n\ndde-control-center (6.1.4) unstable; urgency=medium\n\n  * fix: Adjust the audio module UI\n  * fix: abnormal hiding of some items on Treeland\n  * fix: Modify exit crash issue\n  * fix: button size tweak\n  * chore: CustomAvatarEmptyArea text align tweak\n  * fix: update systeminfo ui\n  * chore(personalization): ui optimization\n  * fix: arrow button error in dark mode\n  * fix: crash when saving avatar\n  * fix: option to set the 'titlebarHeight' for Combbox is empty\n  * feat: Modify sidebar behavior\n  * fix: shortcut modify failed\n  * chore: account view loading speed optimized\n  * fix: RegionFormatDialog view background missing\n  * chore: disable timezone clock animation\n  * fix: region chooser window color and position error\n\n -- zhangkun <zhangkun2@uniontech.com>  Tue, 24 Dec 2024 19:29:24 +0800\n\ndde-control-center (6.1.3) unstable; urgency=medium\n\n  * release 6.1.3\n\n -- shenwenqi <shenwenqi@uniontech.com>  Mon, 23 Dec 2024 10:28:31 +0800\n\ndde-control-center (6.1.2) unstable; urgency=medium\n\n  * release 6.1.2\n\n -- shenwenqi <shenwenqi@uniontech.com>  Fri, 20 Dec 2024 11:30:42 +0800\n\ndde-control-center (6.1.1) unstable; urgency=medium\n\n  * release 6.1.1\n\n -- Mike Chen <chenke@deepin.org>  Thu, 19 Dec 2024 11:06:42 +0800\n\ndde-control-center (6.1.0) unstable; urgency=medium\n\n  * fix: Failed to modify DBus jump issue\n  * fix: long date formats error\n\n -- caixiangrong <caixiangrong@uniontech.com>  Mon, 16 Dec 2024 16:33:40 +0800\n\ndde-control-center (6.0.78) unstable; urgency=medium\n\n  * 6.0.78\n\n -- Wang Fei <wangfei@deepin.org>  Fri, 13 Dec 2024 13:46:35 +0800\n\ndde-control-center (6.0.77) unstable; urgency=medium\n\n  * fix: Fix incorrect page status after the update is completed\n  * chore: adjust active colors\n  * chore: keyboard translations tweak\n  * chore: update datetime/language translations\n  * chore: add keboard layout tips\n  * chore(power): update translate\n  * chore(personalization): update translate\n  * fix: modify deepinid module display name\n  * fix: have no input device,there are input titles and prompt texts (#1873)\n  * fix: DBus adds asynchronous return processing\n  * feat: add audio Mono (#1871)\n  * chore: dcc focus tweak\n  * Fix: update bluetooth translation\n  * fix: wallpaper color selection is not effective\n  * fix: region format init failed\n  * fix: wrong lib install path\n  * feat: Modify translation processing errors\n  * chore: udpate keyboard shortcut translations\n  * fix(personnalization): screen select combobox is empty\n  * feat: Update menu item description\n  * feat: add sound description (#1859)\n  * chore: update date and time translations\n  * chore(personalization): update activeColor list\n  * fix: hidden developer mode (#1856)\n  * fix: system/custom timezone datas affect each other\n  * fix(power): The sliding bar scale value is incorrect\n  * feat: update audio framework translations (#1853)\n  * fix: Modifying DBus cannot redirect properly\n  * feat: Add audio framework module (#1850)\n  * feat: Update weight\n  * feat: Update {name}Main translation\n  * feat: Change main.qml to {name}Main.qm\n  * fix: window effect no background\n  * feat: Update display,notification,deepinid,wacom,touchscreen translation\n  * chore: update power and personalization translations\n  * chore: keyboard visble tweak\n  * chore: update datetime/accounts translations\n  * feat: Update translations for Bluetooth, General, System Information, Sound, etc.\n  * chore: update power translations\n  * feat: Update translation\n  * chore: datetime translation tweak\n  * chore: init ts files\n  * fix: Modify update description (#1832)\n  * fix: Update workflows.yml\n  * fix(build): display module arm64 build failed\n  * fix: Hide menu without touchpad\n  * fix: font size error\n  * fix: font Combobox is empty\n  * fix: update deepinid description\n  * feat: Add display module\n  * feat: Update workflows.yml\n  * fix: language set failed\n  * fix: Setting activity color invalid\n  * fix: Personalization module starts slowly in Treeland\n  * feat: dcc deepinid module\n  * fix: Create a new object when calling getSectionItem\n  * fix: zoom shortcut filter tweak\n  * chore: use AP instead of ap/Ap\n  * fix: system timezone setting error\n  * feat: Added initial version update function\n  * feat: Treeland adaptation of personalized modules\n  * feat: add the StartupWMClass field to the desktop file\n  * fix: ntp server list can not scroll\n  * fix: The hoverEnabled of DccItem defaults to true\n  * feat: add current acount page\n  * feat: add account module\n  * chore: time date tweak\n  * fix: loading plugin crashed\n  * chore: time date display tweak\n  * fix: Add DCI search path\n\n -- Zhangkun <zhangkun2@uniontech.com>  Fri, 06 Dec 2024 16:25:17 +0800\n\ndde-control-center (6.0.76.2) unstable; urgency=medium\n\n  * release 6.0.76.2\n\n -- Zhangkun <zhangkun2@uniontech.com>  Fri, 22 Nov 2024 11:18:36 +0800\n\ndde-control-center (6.0.76.1) unstable; urgency=medium\n\n  * fix: modify keyboard name(Task: 361721)\n\n -- caixiangrong <caixiangrong@uniontech.com>  Wed, 20 Nov 2024 16:09:40 +0800\n\ndde-control-center (6.0.76) unstable; urgency=medium\n\n  * feat: Implement notification module code(Task: 366517)\n  * fix: Multiple creation issues with modifying plugin objects(Task: 361721)\n  * feat: Improve the interface of the control center(Task: 361721)\n  * fix: Add DccSetingsObject(Task: 361721)\n  * fix: modify keyboard name(Task: 361721)\n\n -- Deepin Packages Builder <packages@deepin.org>  Wed, 20 Nov 2024 13:39:40 +0800\n\ndde-control-center (6.0.75) unstable; urgency=medium\n\n  * release 6.0.75\n\n -- xionglinlin <xionglinlin@uniontech.com>  Thu, 14 Nov 2024 10:00:17 +0800\n \ndde-control-center (6.0.74) UNRELEASED; urgency=medium\n\n  * release 6.0.74\n\n -- Zhangkun <zhangkun2@uniontech.com>  Fri, 08 Nov 2024 14:26:12 +0800\n\ndde-control-center (6.0.73) unstable; urgency=medium\n\n  * release 6.0.73 \n\n -- Zhangkun <zhangkun2@uniontech.com>  Thu, 07 Nov 2024 15:58:29 +0800\n\ndde-control-center (6.0.72) unstable; urgency=medium\n\n  * release 6.0.72\n\n -- Mike Chen <chenke@deepin.org>  Thu, 31 Oct 2024 13:36:34 +0800\n\ndde-control-center (6.0.71) unstable; urgency=medium\n\n  * Release 6.0.71\n  * fix: adapt to compact mode\n\n -- Zhang Kun <zhangkun2@uniontech.com>  Thu, 24 Oct 2024 19:09:05 +0800\n\ndde-control-center (6.0.70) unstable; urgency=medium\n\n  * chore: add translations about time format\n  * chore: add the country feature\n  * fix: Modify the style of the image source list widget\n  * chore: Add 'qt6-declarative-private-dev' dependency in control\n  * fix: Fixed the problem of obtaining the path of the boot menu theme image\n  * feat: 蓝牙图标改成和dde-tray-loader一样的内建图标\n  * feat: Control Center-General Module Design and Transformation\n  * feat: add dccrepeater\n  * feat: implement personalized module\n\n -- Yutao Meng <mengyutao@deepin.org>  Wed, 16 Oct 2024 17:29:08 +0800\n\ndde-control-center (6.0.69) unstable; urgency=medium\n\n  * Display compact mode\n\n -- Zhang Kun <zhangkun2@uniontech.com>  Sat, 12 Oct 2024 10:28:49 +0800\n\ndde-control-center (6.0.68) unstable; urgency=medium\n\n  * release 6.0.68\n\n -- Mike Chen <chenke@deepin.org>  Fri, 27 Sep 2024 14:11:00 +0800\n\ndde-control-center (6.0.67) unstable; urgency=medium\n\n  * fix: incorrect bluetooth device icon theme type\n\n -- xionglinlin <xionglinlin@uniontech.com>  Wed, 25 Sep 2024 17:58:11 +0800\n\ndde-control-center (6.0.66) unstable; urgency=medium\n\n  * release 6.0.66\n  * feat: remove linglong update\n  * feat: add compact mode and hide it by default\n\n -- Zhang Kun <zhangkun2@uniontech.com>  Thu, 12 Sep 2024 15:49:46 +0800\n\ndde-control-center (6.0.65) unstable; urgency=medium\n\n  * fix: need click twice to set hidden dock plugin visible\n\n -- Yutao Meng <mengyutao@deepin.org>  Wed, 04 Sep 2024 16:47:38 +0800\n\ndde-control-center (6.0.64) unstable; urgency=medium\n\n  * bump version to 6.0.64\n\n -- Deepin Packages Builder <packages@deepin.org>  Thu, 29 Aug 2024 10:34:15 +0800\n\ndde-control-center (6.0.63) unstable; urgency=medium\n\n  * fix: set search popup distance from searchLineEdit to 8 (#1675)(Issue: 10398)\n\n -- Deepin Packages Builder <packages@deepin.org>  Thu, 22 Aug 2024 11:02:02 +0800\n\ndde-control-center (6.0.62) unstable; urgency=medium\n\n  * bump version to 6.0.62\n\n -- Deepin Packages Builder <packages@deepin.org>  Wed, 14 Aug 2024 14:42:16 +0800\n\ndde-control-center (6.0.61) unstable; urgency=medium\n\n  * fix: dock panel min size error(Issue: 10069)(Influence: can adjust dock's min size)\n\n -- Deepin Packages Builder <packages@deepin.org>  Tue, 06 Aug 2024 15:45:27 +0800\n\ndde-control-center (6.0.60) unstable; urgency=medium\n\n  * fix: Fixed the problem that the icon cannot be retrieved from the system monitor (#1661)(issue: 9833)\n  * fix: Add screenshot plug-in icon (#1662)(Issue: 9944)\n\n -- zyz <zhaoyingzhen@uniontech.com>  Wed, 31 Jul 2024 14:48:00 +0800\n\ndde-control-center (6.0.59) unstable; urgency=medium\n\n  * fix: module object name setting error (#1655)(Influence: module can jump normally)\n  * fix: remove some shortcuts(Issue: 9599)\n  * fix: Fix crash when switching Light/Dark theme(Issue: 9883)\n\n -- zyz <zhaoyingzhen@uniontech.com>  Wed, 24 Jul 2024 14:16:00 +0800\n\ndde-control-center (6.0.58) unstable; urgency=medium\n\n  * chore: compatible to new dock \n\n -- Wang Fei <wangfei@deepin.org>  Tue, 09 Jul 2024 11:41:02 +0800\n\ndde-control-center (6.0.57) unstable; urgency=medium\n\n  * feat: Add translations for dde-control-center in plymouth notifications(Issue: https://github.com/linuxdeepin/developer-center/issues/8998)\n  * fix: The avatar selection interface is not adapted to dark mode(Issue: https://github.com/linuxdeepin/developer-center/issues/9440)\n  * feat: add configuration for hidden icon themes(Issue: https://github.com/linuxdeepin/developer-center/issues/9024)\n  * fix: Refresh dock plugins list when switch composite status(Issue: https://github.com/linuxdeepin/developer-center/issues/8995)\n  * fix: crash when selecting custom avatar(Issue: https://github.com/linuxdeepin/developer-center/issues/9513)\n  * fix: 规范地区名称(Issue: https://github.com/linuxdeepin/developer-center/issues/5997)\n\n -- Zhang kun <zhangkun2@uniontech.com>  Tue, 02 Jul 2024 10:05:16 +0800\n\ndde-control-center (6.0.56) unstable; urgency=medium\n\n  * chore: use GenericName if X-Deepin-Vendor is 'deepin' (linuxdeepin/developer-center#6692)\n\n -- zsien <quezhiyong@deepin.org>  Thu, 30 May 2024 17:39:02 +0800\n\ndde-control-center (6.0.55) unstable; urgency=medium\n\n  * feat: add backup updates ui(Issue: https://github.com/linuxdeepin/developer-center/issues/8626)\n  * fix: data of datetime is unintialized(Issue: https://github.com/linuxdeepin/developer-center/issues/8248)\n\n -- Zhang Kun <zhangkun2@uniontech.com>  Thu, 23 May 2024 16:08:10 +0800\n\ndde-control-center (6.0.54) unstable; urgency=medium\n\n  * release 6.0.54\n\n -- Mike Chen <chenke@deepin.org>  Mon, 13 May 2024 15:15:21 +0800\n\ndde-control-center (6.0.53) unstable; urgency=medium\n\n  * fix: the config file of \"showtimetofull\" option has changed\n\n -- Yutao Meng <mengyutao@deepin.org>  Tue, 30 Apr 2024 13:14:53 +0800\n\ndde-control-center (6.0.52) unstable; urgency=medium\n\n  * fix: upgrade information mismatch with dark mode(Issue: https://github.com/linuxdeepin/developer-center/issues/7996)\n\n -- Zhang kun <zhangkun2@uniontech.com>  Fri, 26 Apr 2024 13:30:56 +0800\n\ndde-control-center (6.0.51) unstable; urgency=medium\n\n  * feat: Update performance mode listview style\n  * fix: wrong time format\n\n -- Wang Fei <wangfei@deepin.org>  Wed, 24 Apr 2024 19:07:10 +0800\n\ndde-control-center (6.0.50) unstable; urgency=medium\n\n  * release 6.0.50\n\n -- Mike Chen <chenke@deepin.org>  Mon, 22 Apr 2024 09:36:57 +0800\n\ndde-control-center (6.0.49) unstable; urgency=medium\n\n  * fix: adjust configure for dock module temporarily\n  * fix: space between lang and country \n\n -- Wang Fei <wangfei@deepin.org>  Mon, 15 Apr 2024 17:40:26 +0800\n\ndde-control-center (6.0.48) unstable; urgency=medium\n\n  * chore: remove show recent apps in dock settings \n  * fix: wrong long date format\n  * chore: tab indicator radius tweak\n  * fix: cannot search parenthese \n\n -- Wang Fei <wangfei@deepin.org>  Tue, 02 Apr 2024 10:04:37 +0800\n\ndde-control-center (6.0.47) unstable; urgency=medium\n\n  * fix: ui flash when switching power subpage\n\n -- Wang Fei <wangfei@deepin.org>  Wed, 20 Mar 2024 16:36:48 +0800\n\ndde-control-center (6.0.46) unstable; urgency=medium\n\n  * fix: ui flash when switching power subpage \n  * Revert \"fix: type(defult)\"\n\n -- wangfei <wangfei@deepin.org>  Fri, 15 Mar 2024 10:05:46 +0800\n\ndde-control-center (6.0.45) unstable; urgency=medium\n\n  * fix: grand search can not search dcc modules\n  * fix: hover index not repaint\n  * fix: type(defult)\n  * fix: The width of bottom button is too long\n  * fix: version info data source not consistent\n  * fix(PersonalizationThemeList): wrong margins\n\n -- Yutao Meng <mengyutao@deepin.org>  Mon, 04 Mar 2024 16:46:01 +0800\n\ndde-control-center (6.0.44) unstable; urgency=medium\n\n  * fix: typo compositor\n  * chore: remove code for gamma control\n  * fix(CustomShortcut): file chooser is opened when Enter pressed\n  * fix: wrong tab index\n  * fix: listview not show item backgound when normal\n  * fix: set all mime type\n  * chore: mask linglong-upgrade.service together\n\n -- wangfei <wangfei@deepin.org>  Wed, 31 Jan 2024 09:34:03 +0800\n\ndde-control-center (6.0.43) unstable; urgency=medium\n\n  * feat: make plugin-display works in treeland\n\n -- rewine <luhongxu@deepin.org>  Mon, 22 Jan 2024 23:23:44 +0800\n\ndde-control-center (6.0.42) unstable; urgency=medium\n\n  *  chore: remove Cooperation in display plugin (https://github.com/linuxdeepin/developer-center/issues/7023)\n\n -- chenhongtao <chenhongtao@deepin.org>  Mon, 22 Jan 2024 17:22:42 +0800\n\ndde-control-center (6.0.41) unstable; urgency=medium\n\n  * fix: time format error （https://github.com/linuxdeepin/developer-center/issues/6995）\n\n -- chenhongtao <chenhongtao@deepin.org>  Mon, 22 Jan 2024 09:54:17 +0800\n\ndde-control-center (6.0.40) unstable; urgency=medium\n\n  * fix: block some plugins under treeland\n  * fix: wait for http event finished when join internal channel\n  * fix: extra button too wide\n  * chore: record app added and removed event in notify plugin\n\n -- chenhongtao <chenhongtao@deepin.org>  Thu, 18 Jan 2024 10:24:02 +0800\n\ndde-control-center (6.0.39) unstable; urgency=medium\n\n  * feat: add new custom date format\n  * fix: after set password status, restart dde-lock\n  * if dist space is full show the reason\n\n -- chenhongtao <chenhongtao@deepin.org>  Mon, 15 Jan 2024 18:08:52 +0800\n\ndde-control-center (6.0.38) unstable; urgency=medium\n\n  * feat: make display of account list show in center\n  * fix: ci with new dtk\n\n -- chenhongtao <chenhongtao@deepin.org>  Thu, 11 Jan 2024 16:16:50 +0800\n\ndde-control-center (6.0.37) unstable; urgency=medium\n\n  * feat: set locale.conf when set region\n  * fix: after set region, label value not update\n  * fix: account icon count is wrong\n  * fix: defaultapp program name is not displayed correctly\n  * fix: unable to delete timezone continuously\n  * feat: let avatarlistview can handle tab\n  * fix: when there is a modal dialog, not switch pages\n  * fix: language and locale not initialized\n\n -- chenhongtao <chenhongtao@deepin.org>  Mon, 08 Jan 2024 09:55:12 +0800\n\ndde-control-center (6.0.36) unstable; urgency=medium\n\n  * fix: bring back close button for password dialog\n  * fix: settingsgroup in scrollarea is not resized\n  * feat: split plymouth scale settings\n  * fix: atom upgrade status should not be stored\n  * fix: use mask to handle linglong\n  * fix: remembered size should not min than sizehint\n  * chore: hide region feature\n  * chore: add new shotcut\n  * feat: use icu to translate region\n  * chore: add log to plugin-commoninfo\n  * feat: show tooltip when switchlabel text is elided\n  * feat: check package in feature\n  * fix: map dialog radius not follow system\n  * chore: sync translation\n  * chore: find icon from system first\n\n -- chenhongtao <chenhongtao@deepin.org>  Tue, 12 Dec 2023 16:02:51 +0800\n\ndde-control-center (6.0.35) unstable; urgency=medium\n\n  * when there are no link, detailinfoitem hide the link widgets\n  * fix: slider of battery should not have background\n  * fix typo in datetime region\n  * fix: read point/badge not clear\n  * tidy up the cmake\n\n -- chenhongtao <chenhongtao@deepin.org>  Tue, 28 Nov 2023 11:25:52 +0800\n\ndde-control-center (6.0.34) unstable; urgency=medium\n\n  * fix: is desktop is marked nodisplay, not show it\n  * feat: switch defappplugin to new am\n  * fix: crash when setting default application\n  * chore: set defaultterminal with qgsettings\n  * feat: add audio server switch support\n  * chore: update translations\n\n -- bluesky <chenchongbiao@deepin.org>  Thu, 16 Nov 2023 15:46:10 +0800\n\ndde-control-center (6.0.33) unstable; urgency=medium\n\n  * chore: update translation about region\n  * fix: fontsize icon is not clear enough\n\n -- chenhongtao <chenhongtao@deepin.org>  Thu, 09 Nov 2023 10:04:32 +0800\n\ndde-control-center (6.0.32) unstable; urgency=medium\n\n  * feat: better cmake\n  * feat: support balance_performance\n  * fix: widgets will increase in vlistmodule\n\n -- chenhongtao <chenhongtao@deepin.org>  Wed, 01 Nov 2023 18:04:41 +0800\n\ndde-control-center (6.0.31) unstable; urgency=medium\n\n  * feat: country and region format\n  * fix: archlinux obs remove useless depencies\n  * feat: special timezone on deepin\n  * fix: ui error on zone map\n\n -- chenhongtao <chenhongtao@deepin.org>  Thu, 26 Oct 2023 15:32:19 +0800\n\ndde-control-center (6.0.30) unstable; urgency=medium\n\n  * feat: add pausePlayer ability\n  * fix: typo of \"finger\"\n  * feat: when it is no password, set wakeupsetting to all false\n  * feat: support configure low power percentage\n  * feat(persionalization): always put custom to the end\n  * feat: use DIconTheme instead\n  * fix: when add custom avatar, page not change\n  * feat: ability of showing battery percentage in bluetooth page\n\n -- chenhongtao <chenhongtao@deepin.org>  Thu, 19 Oct 2023 10:18:40 +0800\n\ndde-control-center (6.0.29) unstable; urgency=medium\n\n  * fix: debian warning\n -- chenhongtao <chenhongtao@deepin.org>  Mon, 25 Sep 2023 13:40:40 +0800\n\ndde-control-center (6.0.28) unstable; urgency=medium\n\n  * fix: tabbar height is too large cause page flash\n  * fix: light theme text in discaimer is not clear\n  * fix: listview is not in the center or grub page\n  * fix sidebar expand/collapse status error\n -- chenhongtao <chenhongtao@deepin.org>  Thu, 14 Sep 2023 13:56:40 +0800\n\ndde-control-center (6.0.27) unstable; urgency=medium\n\n  * resize window at frist to fit some pages\n -- chenhongtao <chenhongtao@deepin.org>  Tue, 12 Sep 2023 09:53:30 +0800\n\ndde-control-center (6.0.26) unstable; urgency=medium\n\n  * fix alert message position error\n  * update the tip of internal switcher\n  * hide region-setting view\n  * show hscrollbar when page width is too big\n  * fix machineid is remembered when joining tesing\n -- chenhongtao <chenhongtao@deepin.org>  Fri, 08 Sep 2023 11:04:30 +0800\n\ndde-control-center (6.0.25) unstable; urgency=medium\n\n  * bring back missing translations\n\n -- chenhongtao <chenhongtao@deepin.org>  Wed, 06 Sep 2023 15:26:30 +0800\n\ndde-control-center (6.0.24) unstable; urgency=medium\n  * support linglong update\n  * fix settings always be disabled\n -- chenhongtao <chenhongtao@deepin.org>  Wed, 06 Sep 2023 10:27:05 +0800\n\ndde-control-center (6.0.23) unstable; urgency=medium\n\n  * fix avatarlistDialog is not modal\n  * not to init filedialog when initialize a class, to speed up the plugin\n  * use categrade log to show the log\n  * fix opening the Control Center in the launcher or right-clicking to open the Control Center fails\n  * disable edit btn when no customzonelist\n  * fix the logic of the shown of description, and update description\n  * bring back missing icon\n  * remote setSelection of the tabbar, we not use it anymore\n  * init device Combobox enable state when active\n -- chenhongtao <chenhongtao@deepin.org>  Mon, 28 Aug 2023 10:55:03 +0800\n\ndde-control-center (6.0.22) unstable; urgency=medium\n\n  * when descption is empty, module will use the displayName of child to make\n    a descption\n  * fix the case that on archlinux, it shows uniontech in the module of systeminfo\n  * fix the issue that dde-control-center coredump on opensuse\n  * fix wrong usage of the dbus mouse speed\n  * avoid hardcode of dbus service\n  * dark png shown in personalization\n  * fix dcc-update-plugin cannot initialize very fast\n  * change account to user\n  * region set in datetime plugin\n\n -- chenhongtao <chenhongtao@deepin.org>  Tue, 08 Aug 2023 13:55:03 +0800\n\ndde-control-center (6.0.21) unstable; urgency=medium\n\n  * fix margin of page\n  * a missing choice in power plugin\n  * depercate DCCDBusInterface\n  * fix the white place of titlebar in hlistmodule cannot be dragged\n\n -- chenhongtao <chenhongtao@deepin.org>  Thu, 25 May 2023 15:01:03 +0800\n\ndde-control-center (6.0.20) unstable; urgency=medium\n\n  * 更新systeminfo文案\n  * 更新keyboard的布局，去除错误的实现，使用DCCListview\n  * 修改错误的cmake写法\n\n -- chenhongtao <chenhongtao@uniontech.com>  Thu, 11 May 2023 14:01:03 +0800\n\ndde-control-center (6.0.19) unstable; urgency=medium\n\n  * 修改繁体中文名称\n\n -- zsien <quezhiyong@uniontech.com>  Sat, 06 May 2023 11:01:03 +0800\n\ndde-control-center (6.0.18) unstable; urgency=medium\n\n  * fix: wrong package for doc\n  * chore: add a readme for doc\n  * chore: adjust internal channel logic\n  * fix: a lot of qt warning\n  * feat: change logic to load translations\n\n -- chenhongtao <chenhongtao@uniontech.com>  Fri, 5 May 2023 10:23:35 +0800\n\ndde-control-center (6.0.17) unstable; urgency=medium\n\n  * fix: load plugin logic\n  * chore: add document package\n  * feat: read path form READ_DIR instead of INSTALL_DIR\n\n -- chenhongtao <chenhongtao@uniontech.com>  Sun, 23 Apr 2023 16:28:35 +0800\n\ndde-control-center (6.0.16) unstable; urgency=medium\n\n  * chore: 优化账户头像设置\n  * chore: change the display for wm radius\n\n -- dengbo <dengbo@uniontech.com>  Fri, 21 Apr 2023 13:28:35 +0800\n\ndde-control-center (6.0.15) unstable; urgency=medium\n\n  * fix: 控制中心新建用户时闪退\n\n -- dengbo <dengbo@uniontech.com>  Wed, 19 Apr 2023 16:47:45 +0800\n\ndde-control-center (6.0.14) unstable; urgency=medium\n\n  * fix: 控制中心用户头像显示异常\n  * feat: add docs build\n\n -- dengbo <dengbo@uniontech.com>  Tue, 18 Apr 2023 13:39:45 +0800\n\ndde-control-center (6.0.13) unstable; urgency=medium\n\n  * Support Internal Channel\n  * Support more account icon\n  * Register Log to JournalAppender\n  * Handle new sync load logic, use Eventloop to set a timeout\n\n -- chenhongtao <chenhongtao@uniontech.com>  Fri, 14 Apr 2023 10:22:04 +0800\n\ndde-control-center (6.0.12) unstable; urgency=medium\n\n  * Reflactor bluetooth page, use icon from system\n  * Fix animate on sound page when choose sound effect\n  * Reflactor notify Page\n  * Add a plugindir flag for plugin developer\n  * Fix wrong active color in personalization\n\n -- chenhongtao <chenhongtao@uniontech.com>  Tue, 28 Mar 2023 15:53:04 +0800\n\ndde-control-center (6.0.11) unstable; urgency=medium\n\n  * Fix slider item\n  * Fix battery setting lost\n  * Fix the bug of async\n\n -- chenhongtao <chenhongtao@uniontech.com>  Wed, 22 Feb 2023 14:53:04 +0800\n\ndde-control-center (6.0.10) unstable; urgency=medium\n  * fix align of center widget\n\n -- chenhongtao <chenhongtao@uniontech.com>  Fri, 17 Feb 2023 16:18:00 +0800\n\ndde-control-center (6.0.9.1) unstable; urgency=medium\n\n  [ TagBuilder ]\n  * chore: 替换deepin下系统信息图标(Task: 185303)(Influence: 系统信息图标)\n\n -- chenhongtao <chenhongtao@uniontech.com>  Tue, 07 Feb 2023 18:00:00 +0800\n\ndde-control-center (6.0.9) unstable; urgency=medium\n\n  [ TagBuilder ]\n  * chore: 修改deepin下系统信息图标(Task: 185303)(Influence: 系统信息图标)\n\n -- chenhongtao <chenhongtao@uniontech.com>  Tue, 07 Feb 2023 15:14:17 +0800\n\ndde-control-center (6.0.8) unstable; urgency=medium\n\n  [ TagBuilder ]\n  * fix: 修改主题缩略图模糊问题(Bug: 182545)(Influence: 屏幕缩放不为1时，控制中心-个性化-图标主题-缩略图)\n  * fix: 更新主题开发者文档(Bug: 182241)(Influence: 控制中心-个性化-主题-开发者文档)\n  * fix: 屏蔽主题开发者文档按钮(Bug: 182241)(Influence: 控制中心-个性化-开发者文档按钮)\n  * fix: 修改更新设置自动安装和清除软件包按钮状态不同步问题(Bug: 182923)(Influence: 控制中心-更新-自动安装和清除软件包按钮状态)\n\n -- zhaoyingzhen <zhaoyingzhen@uniontech.com>  Fri, 13 Jan 2023 10:21:17 +0800\n\ndde-control-center (6.0.7.1) unstable; urgency=medium\n\n  [ Deepin Packages Builder ]\n  * dde-control-center for v25\n\n -- caixiangrong <caixiangrong@uniontech.com>  Fri, 05 Jul 2024 14:49:21 +0800\n"
  },
  {
    "path": "debian/control",
    "content": "Source: dde-control-center\nSection: admin\nPriority: optional\nMaintainer: Deepin Sysdev <sysdev@deepin.com>\nBuild-Depends:\n debhelper-compat (= 12),\n pkg-config,\n cmake,\n qt6-base-dev,\n qt6-declarative-dev,\n qt6-tools-dev,\n qt6-declarative-private-dev,\n qt6-multimedia-dev,\n libpolkit-qt6-1-dev,\n libdtkcommon-dev,\n libdtk6gui-dev(>=6.0.21),\n libdtk6core-dev,\n libdtk6core-bin,\n doxygen,\n libgtest-dev,\n extra-cmake-modules,\n libqt6svg6,\n deepin-gettext-tools,\n qml6-module-qtquick-layouts,\n qml6-module-qtquick-window,\n qml6-module-qt-labs-qmlmodels,\n qt6-wayland-dev,\n qt6-wayland-private-dev,\n qt6-wayland-dev-tools,\n wlr-protocols,\n treeland-protocols(>=0.4.1),\n systemd,\n libdareader-dev,\n libdeepin-pw-check-dev,\n libicu-dev,\n libwayland-dev,\n libssl-dev,\n libdde-shell-dev(>= 1.99.20),\n libdpkg-dev,\n dde-api-dev (>> 6.0.39)\nStandards-Version: 4.5.0\nHomepage: https://github.com/linuxdeepin/dde-control-center\n\nPackage: dde-control-center\nArchitecture: any\nDepends:\n ${shlibs:Depends}, ${misc:Depends},\n qml6-module-qtquick-layouts,\n qml6-module-qtquick-window,\n qml6-module-qt-labs-qmlmodels,\n qml6-module-qtquick-dialogs,\n qml6-module-qtquick-effects,\n libdtk6declarative(>> 6.7.36),\n netselect,\nRecommends: uos-license-content,\nConflicts: dde-control-center-dock\nReplaces: dde-control-center-dock\nDescription: New control center for Deepin Desktop Environment,\n Integrated control center with rich functions,Besides providing rich\n system setting items, the function level is simple, the logic is clear,\n the user can easily set the system, and the learning cost is low,\n Provide users with automatic update system and developer mode to meet\n the various needs of users for the operating system.\n abrecovery -restore system, Determine whether the system is restored\n reboot-reminder-dialog -Update restart, Confirm whether to restart the system\n after the completion of the update.\n DDE Control Center is the control panel of Deepin Desktop Environment.\n\nPackage: dde-control-center-dev\nArchitecture: any\nDepends: \n dde-control-center (= ${binary:Version}),\n qt6-declarative-dev,\n qt6-tools-dev,\n ${misc:Depends},\nDescription: New control center for Deepin Desktop Environment - development files\n DDE Control Center is the control panel of Deepin Desktop Environment.\n\nPackage: dde-control-center-doc\nArchitecture: any\nDepends: dde-control-center (= ${binary:Version}), ${misc:Depends}\nDescription: dde-control-center (document)\n This package contains the doc files of dde-control-center\n"
  },
  {
    "path": "debian/copyright",
    "content": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: dde-control-center\n\nFiles: *\nCopyright: 2015 Deepin Technology Co., Ltd.\nLicense: LGPL-3+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n GNU Lesser General Public License for more details.\n .\n You should have received a copy of the GNU Lesser General Public License\n along with this program. If not, see <https://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU Lesser General\n Public License version 3 can be found in \"/usr/share/common-licenses/LGPL-3\".\n"
  },
  {
    "path": "debian/dde-control-center-dev.install",
    "content": "usr/include\nusr/lib/*/cmake\n"
  },
  {
    "path": "debian/dde-control-center.install",
    "content": "usr/bin/\nusr/lib/*/*.so*\nusr/lib/*/dde-control-center/\nusr/share\nusr/lib/*/dde-grand-search-daemon/plugins/searcher/*\nusr/lib/systemd/user/\n"
  },
  {
    "path": "debian/preinst",
    "content": "#!/bin/bash\nrm -rf  /home/*/.cache/deepin/dde-control-center/qmlcache/\n"
  },
  {
    "path": "debian/rules",
    "content": "#!/usr/bin/make -f\ninclude /usr/share/dpkg/default.mk\nexport QT_SELECT = qt6\nVERSION = $(DEB_VERSION_UPSTREAM)\nPACK_VER = $(shell echo $(VERSION) | awk -F'[+_~-]' '{print $$1}')\n\nexport DEB_BUILD_MAINT_OPTIONS = hardening=+all\nexport DEB_CFLAGS_MAINT_APPEND = -Wall -Wl,-E\nexport DEB_CXXFLAGS_MAINT_APPEND = -Wall -Wl,-E\nexport DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack\n\n# reproducible编译参数\nDEB_CMAKE_EXTRA_FLAGS += -DCMAKE_SKIP_BUILD_RPATH=ON\n\n%:\n\tdh $@ --parallel\noverride_dh_auto_configure:\n\tdh_auto_configure -- $(DEB_CMAKE_EXTRA_FLAGS) -DCVERSION=$(DEB_VERSION_UPSTREAM) -DDVERSION=$(PACK_VER) -DUSE_DEEPIN_ZONE=ON\n"
  },
  {
    "path": "debian/source/format",
    "content": "3.0 (native)"
  },
  {
    "path": "debian/source/lintian-overrides",
    "content": "dde-control-center source: source-is-missing [misc/developdocument.html]\n"
  },
  {
    "path": "docs/CMakeLists.txt",
    "content": "find_package(Doxygen REQUIRED)\n\nset(QCH_INSTALL_DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/qt6/doc CACHE STRING \"QCH install location\")\n\nfind_program(QHelpGenerator_EXECUTABLE NAMES qt6-documentation-tools qhelpgenerator)\n\nset(DOXYGEN_GENERATE_HTML YES CACHE STRING \"Doxygen HTML output\")\nset(DOXYGEN_GENERATE_XML YES CACHE STRING \"Doxygen XML output\")\nset(DOXYGEN_GENERATE_QHP YES CACHE STRING \"Doxygen QHP output\")\nset(DOXYGEN_FILE_PATTERNS *.cpp *.h *.zh_CN.md *.zh_CN.dox CACHE STRING \"Doxygen File Patterns\")\nset(DOXYGEN_PROJECT_NUMBER ${CMAKE_PROJECT_VERSION} CACHE STRING \"\")# Should be the same as this project is using.\nset(DOXYGEN_EXTRACT_STATIC YES)\nset(DOXYGEN_OUTPUT_LANGUAGE \"Chinese\")\nset(DOXYGEN_QHG_LOCATION ${QHelpGenerator_EXECUTABLE})\nset(DOXYGEN_QHP_NAMESPACE \"org.deepin.dde-control-center\")\nset(DOXYGEN_QCH_FILE \"dde-control-center.qch\")\nset(DOXYGEN_QHP_VIRTUAL_FOLDER \"dde-control-center\")\nset(DOXYGEN_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/docs/)\n\nset(DOXYGEN_HTML_EXTRA_STYLESHEET \"\" CACHE STRING \"Doxygen custom stylesheet for HTML output\")\nset(DOXYGEN_TAGFILES \"qtcore.tags=qthelp://org.qt-project.qtcore/qtcore/\" CACHE STRING \"Doxygen tag files\")\nset(DOXYGEN_IMAGE_PATH ${PROJECT_SOURCE_DIR}/docs/src)\nset(DOXYGEN_SOURCE_BROWSE \"YES\")\n\nset(BUILD_THEME OFF CACHE BOOL \"Build doxgen theme\")\nif(BUILD_THEME)\n    if(EXISTS \"${CMAKE_CURRENT_LIST_DIR}/doxygen-theme\")\n        message(STATUS \"doxygen-theme exists\")\n    else()\n        execute_process(COMMAND git clone https://github.com/linuxdeepin/doxygen-theme.git --depth=1\n            WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}\n            TIMEOUT 60)\n        execute_process(COMMAND bash themesetting.sh\n            WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}/doxygen-theme/)\n    endif()\n    set(DOXYGEN_HTML_EXTRA_STYLESHEET\n        \"docs/doxygen-theme/doxygen-awesome-css/doxygen-awesome.css\" \"docs/doxygen-theme/doxygen-awesome-css/doxygen-awesome-sidebar-only.css\" \"docs/doxygen-theme/doxygen-awesome-css/doxygen-awesome-sidebar-only-darkmode-toggle.css\")\n    set(DOXYGEN_HTML_EXTRA_FILES\n        \"docs/doxygen-theme/doxygen-awesome-css/doxygen-awesome-darkmode-toggle.js\" \"docs/doxygen-theme/doxygen-awesome-css/doxygen-awesome-fragment-copy-button.js\" \"docs/doxygen-theme/doxygen-awesome-css/doxygen-awesome-paragraph-link.js\" \"docs/doxygen-theme/doxygen-awesome-css/doxygen-awesome-interactive-toc.js\")\n    set(DOXYGEN_GENERATE_TREEVIEW \"YES\")\n    set(DOXYGEN_DISABLE_INDEX \"NO\")\n    set(DOXYGEN_FULL_SIDEBAR \"NO\")\n    set(DOXYGEN_HTML_HEADER \"docs/doxygen-theme/doxygen-awesome-css/header.html\")\n    set(DOXYGEN_HTML_FOOTER \"docs/doxygen-theme/doxygen-awesome-css/footer.html\")\nendif()\n\nset(DOXYGEN_MACRO_EXPANSION \"YES\")\n# set(DOXYGEN_PREDEFINED \"DCC_NAMESPACE=dccv23\")\n\ndoxygen_add_docs(doxygen\n    ${PROJECT_SOURCE_DIR}/include\n    ${PROJECT_SOURCE_DIR}/docs\n    ALL\n    WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}\n    COMMENT \"Generate documentation via Doxygen\")\n\ninstall(FILES ${PROJECT_BINARY_DIR}/docs/html/dde-control-center.qch DESTINATION ${QCH_INSTALL_DESTINATION})\n"
  },
  {
    "path": "docs/v23-dcc-interface.zh_CN.md",
    "content": "# dde-control-center\n\n## 接口变更记录\n\n| 时间| 版本|说明| 控制中心版本号|\n|:----|:----|:----|:----|\n|2022.4.13|1.0|创建|6.0.0.0|\n|2022.6.1|1.1|1.接口增加版本号控制<br>2.增加布局类LayoutBase|6.0.0.1+u013|\n|2022.8.8|1.2|1.PluginInterface类里location返回值由int型改为QString，返回插件位置索引或前一个ModuleObject的name<br>2.去掉了ModuleObject类里的setChildType等函数。替代方案是用PageModule、VListModule、HListModule或其继承类<br>3.ModuleObject里的icon支持DDciIcon(DTK>5.6.0),icon接口兼容QIcon类型，同时可设置DDciIcon或QString。当为QString时，会在资源里查找对应图标<br>4.去掉了LayoutBase类，相关静态函数移到ModuleObject中，用PageModule等类替代其功能|6.0.3+u021|\n|2022.10.8|1.3|1.修改hidden拼写错误<br>2.扩展添加一些ModuleObject类|6.0.3+u043|\n|2022.12.12|1.4|1.规范插件IId名<br>2.扩展ModuleObject类不参与搜索接口|6.0.4.1+u039|\n\n## V23控制中心新特性\n\n1. V23控制中心只负责框架设计，具体功能全部由插件实现\n2. V23控制中心支持多级插件系统，支持插件插入到任意位置中\n3. 更方便、更精确的搜索功能\n4. 高度可定制，可定制任意插件是否显示，若插件支持，可定制任意插件内容是否显示\n\n## V23控制中心插件安装路径必要说明\n\n1. 控制中心会自动加载翻译，翻译目录需要严格放置在 `/${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATAROOTDIR}/dde-control-center/translations`下，控制中心会自动加载，同时，插件的翻译和名称也有要求，命名为`${Plugin_name}_{locale}.ts`,locale 就是多语言的翻译，翻译文件必须控制和插件名称相同\n2. 控制中心的so应该放置在`/${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}/dde-control-center/modules`下，请使用构建系统的提供的gnuinstall路径，上面举的例子是cmake, mesonbuild也有自己的逻辑\n\n## V23控制中心插件开发必要说明\n\n控制中心有一个option,可以用来加载一个文件夹下的插件，比如一般插件会放置到`build`文件夹下，这时候可以\n\n```bash\ndde-control-center --spec ./build\n```\n\n来加载单独一个插件进行调试。另外提醒，调试时候不要使用asan，因为没有使用asan的控制中心无法加载使用了asan编译的插件\n\n## V23控制中心开发接口说明\n\n1. ModuleObject类用于构建每个页面元素，其是插件的核心\n2. PluginInterface类用于规范插件信息，每个插件必须提供一个ModuleObject对象。\n\n### ModuleObject基本信息说明\n\n|名称|数据类型|说明|\n|:----|:----|:----|\n|name|QString|名称，作为每个模块的唯一标识，**必须设置**|\n|displayName|QString|显示名称，如菜单的名称，页面的标题等，为空则不显示|\n|description|QString|描述，如主菜单的描述信息|\n|contentText|QStringList|上下文数据，参与搜索，只可用于终结点|\n|icon|QVariant|图标，如主菜单的图标，可以为QIcon、DDciIcon、QString(会根据资源路径去找)|\n|badge|int|主菜单中的角标, 默认为0不显示，大于0显示|\n\n基本信息都有对应的set函数，修改时有moduleDataChanged信号\n\n### ModuleObject接口说明\n\n* ModuleObject虚函数\n\n|名称|说明|\n|:----|:----|\n|active()|模块激活时被调用，可重写此方法实现后端数据获取|\n|deactive()|离开模块时被调用，可用于释放资源|\n|page()|终结点的模块必须实现此方法，用于显示页面，并且每次调用需new新的Widget ***注意： page返回的widget生命周期只是对应窗口显示的时候，即模块切换时就会被析构。ModuleObject的生命周期是从控制中心启动到关闭***|\n|activePage(autoActive)|激活并返回page，控制激活流程，不建议重写|\n\n* ModuleObject公有方法\n\n|名称|说明|\n|:----|:----|\n|trigger()|触发该ModuleObject，该函数会触发triggered信号，框架收到信号会切换到该ModuleObject页|\n|currentModule()|当前激活的子项|\n|setCurrentModule(child)|设置当前激活项，由框架调用。子项变化时会触发currentModuleChanged信号|\n|defultModule()|默认激活的子项（如第二级激活时，会根据该值展开到第三级、第四级），如果返回为nullptr则不向下展开|\n|isHidden()|是否为隐藏，默认不隐藏|\n|setHidden(hidden)|设置为隐藏，对应ModuleObject隐藏应通过该函数设置，不要自行设置QWidget的隐藏|\n|isDisabled()|是否为禁用，默认为启用|\n|setDisabled(disabled)|设置为禁用，对应ModuleObject禁用应通过该函数设置，不要自行设置QWidget的禁用|\n|findChild(child)|查找子项，广度搜索优先，返回子项相对于当前模块所在的层级，-1为未找到，0为自己，>0为子项层级|\n|hasChildrens()|是否拥有子项|\n|childrens()|子项列表，由ModuleObject组成|\n|getChildrenSize()|获取子项列表大小|\n|appendChild(child)|添加子项|\n|removeChild(child/index)|删除子项|\n|insertChild(before/index, child)|插入子项|\n|getFlagState/getFlag<br>/*setFlagState*|处理状态标志，状态标志为uint32_t型，高16位(0xFFFF0000)为控制中心定义，低16位(0x0000FFFF)可由用户设置|\n|extra/setExtra|*扩展标志，在VList和Page布局中放在最下面，横向排列*|\n|noSearch/setNoSearch|*是否参与搜索，默认参与搜索*|\n\n* ModuleObject信号\n\n|名称|说明|\n|:----|:----|\n|moduleDataChanged()|基本信息改变后发送此信号|\n|displayNameChanged(const QString &displayName)|displayName改变后发送此信号|\n|stateChanged(uint32_t flag, bool state)|状态标志变化|\n|childStateChanged(ModuleObject *const child, uint32_t flag, bool state)|子项状态标志变化|\n|removedChild(ModuleObject *const module)|删除child前触发|\n|insertedChild(ModuleObject *const module)|插入child后触发|\n|childrenSizeChanged(const int size)|childrens改变后必须发送此信号|\n|triggered()|trigger触发该信号，框架收到信号会切换到该ModuleObject页|\n|currentModuleChanged(ModuleObject *currentModule)|当前激活的子项改变时会触发此信号|\n\n* ModuleObject静态方法\n\n|名称|说明|\n|:----|:----|\n|IsHidden|返回module是否显示，判断了配置项和程序设置项|\n|IsHiddenFlag|判断标志是否为隐藏标志|\n|IsDisabled|返回module是否可用，判断了配置项和程序设置项|\n|IsDisabledFlag|判断标志是否为禁用标志|\n\n```plain\n小提示：当模块无需实现虚函数时，可不用继承，直接设置其基本信息即可。\n```\n### PluginInterface接口说明\n\n* PluginInterface虚函数列表：\n\n|名称|说明|\n|:----|:----|\n|module()|模块对象，每个插件必须提供一个根模块，该模块管理插件中所有子项|\n|name()|插件名称，插件标识，需具有唯一性|\n|follow()|插件必须知道其需要跟随的父ModuleObject的url ,默认为空则为一级插件|\n|location()|插件位置索引或前一个ModuleObject的name，相同索引则按加载顺序进行排序，先加载的往后顺延，默认追加到最后|\n\n一个标准的插件开发流程：\n\n1. 继承PluginInterface，实现其虚函数。\n2. 实例化一个根模块，根模块在初始化时不允许有耗时操作，若有耗时操作，应继承ModuleObject然后实现active方法，将耗时操作放入其中。\n3. 若根模块的子项是横向菜单列表，则可使用List储存其基础信息，继承或使用HListModule类，然后循环使用appendChild方法将菜单添加到根模块中。\n4. 若根模块的子项是纵向菜单列表，则可使用List储存其基础信息，继承或使用VListModule类，然后循环使用appendChild方法将菜单添加到根模块中。\n5. 以此类推，具体的某个子项菜单同样再次添加菜单列表，直到菜单列表的子项为PageModule时为止。\n6. 准备一个以上的Module继承自ModuleObject，并实现其page()方法，然后添加到PageModule中，注意，page()方法中需返回新的QWidget对象。\n7. 当某个菜单为PageModule时，使用其appendChild方法将上方的Module添加到其子项中，此时，控制中心会根据page的大小添加滚动条，并将多个page进行垂直排列进行显示。PageModule持支嵌套，并且其有默认边距，如果嵌套使用，嵌套的PageModule边距建议设置为0（ getContentsMargins(0, 0, 0, 0)）\n8. 若某个VListModule或PageModule页面需要附加按钮时，可调其子项ModuleObject的setExtra，该ModuleObject的page提供按钮，这样该ModuleObject将显示在VListModule或PageModule页面的最下方。\n***注意：插件加载是在线程中进行的，在加载完成后会随ModuleObject移到主线程中。加载时(ModuleObject的构造函数中)创建的对象******必须******将ModuleObject设置为父对象，否则会导致没有父对象的对象不会被移到主线程中，其中的信号槽等不到对应的线程而一直不执行。***\n\n### 代码示例：\n\n* 准备Page，LabelModule继承自ModuleObject\n```cpp\nQWidget *LabelModule::page()\n{\n    return new QLabel(text());\n}\n\nvoid LabelModule::setText(const QString &text)\n{\n   m_text = text;\n}\n```\n* 准备附加按钮，ButtonModule继承自ModuleObject\n```cpp\nQWidget *ButtonModule::page()\n{\n    QPushButton *button = new QPushButton(text());\n    button->setMaximumWidth(200);\n    connect(button, &QPushButton::clicked, this, &ButtonModule::onButtonClicked);\n    return button;\n}\n\nvoid ButtonModule::setText(const QString &text)\n{\n    m_text = text;\n}\n```\n* 实现PluginInterface接口\n```cpp\nclass Plugin : public PluginInterface\n{\n    Q_OBJECT\n    // IID会用于去重，需唯一\n    Q_PLUGIN_METADATA(IID \"com.deepin.dde.ControlCenter.Plugin_test\" FILE \"plugin-test.json\")\n    Q_INTERFACES(DCC_NAMESPACE::PluginInterface)\npublic:\n    virtual QString name() const override;\n    virtual ModuleObject *module() override;\n};\nQString Plugin::name() const\n{\n    return QStringLiteral(\"plugin1\");\n}\n\nModuleObject *Test1Plugin::module()\n{\n    // 返回模块根节点\n    return new Test1ModuleObject();\n}\n\nTest1ModuleObject::Test1ModuleObject()\n    : HListModule(\"firstmenu\", tr(\"主菜单\"), tr(\"我是主菜单\"), DIconTheme::findQIcon(\"preferences-system\"))\n{\n    // 根节点继承于HListModule\n    //-----------正常树构建----------\n    { // LabelModule页面\n        int i = 1;\n        ModuleObject *module = new PageModule(QString(\"menu%1\").arg(i), tr(\"菜单%1\").arg(i), this);\n\n        for (int j = 0; j < 5; j++) {\n            LabelModule *labelModule = new LabelModule(QString(\"main%1menu%2\").arg(i).arg(j), QString(\"具体页面%1的第%2个page的标题\").arg(i).arg(j), module);\n            labelModule->setText(QString(\"我是具体页面%1的第%2个page\").arg(i).arg(j));\n            module->appendChild(labelModule);\n        }\n\n        appendChild(module);\n    }\n    { // ButtonModule页面\n        int i = 2;\n        ModuleObject *module = new PageModule(QString(\"menu%1\").arg(i), tr(\"菜单%1\").arg(i), this);\n\n        for (int j = 0; j < 30; j++) {\n            ButtonModule *buttonModule = new ButtonModule(QString(\"main%1menu%2\").arg(i).arg(j), QString(\"具体页面%1的第%2个page的标题\").arg(i).arg(j), module);\n            buttonModule->setText(QString(\"我是具体页面%1的第%2个page\").arg(i).arg(j));\n            module->appendChild(buttonModule);\n        }\n    \n        appendChild(module);\n    }\n    //-----------自定义布局页面----------\n    { // ButtonModule页面，同上面ButtonModule页面，但使用自定义布局，显示效果和上面不同\n        int i = 4;\n        ModuleObject *module = new PageModule(QString(\"menu%1\").arg(i), tr(\"菜单%1\").arg(i), this);\n\n        for (int j = 0; j < 30; j++) {\n            ButtonModule *buttonModule = new ButtonModule(QString(\"main%1menu%2\").arg(i).arg(j), QString(\"自定义布局页面%1的第%2个page的标题\").arg(i).arg(j), module);\n            buttonModule->setText(QString(\"我是页面%1的第%2个按钮\").arg(i).arg(j));\n            module->appendChild(buttonModule);\n        }\n        module->children(1)->setHidden(true);\n        module->children(2)->setDisabled(true);\n\n        appendChild(module);\n    }\n\n    //-------特殊按钮及多及嵌套示例-----------\n    VListModule *module = new VListModule(QString(\"menu%1\").arg(5), tr(\"菜单%1\").arg(5));\n    appendChild(module); // 主菜单添加带有附加按钮的菜单\n\n    // 添加VList子项，先添加一个正常子项\n    ModuleObject *lstModule1 = new PageModule(QString(\"menuSpeci1\"), tr(\"特殊菜单1\"), module);\n    module->appendChild(lstModule1);\n\n    // 正常子项的Page\n    LabelModule *labelModule1 = new LabelModule(QString(\"pageSpeci1\"), QString(\"特殊页面1\"), lstModule1);\n    labelModule1->setText(\"特殊页面内容1\");\n    lstModule1->appendChild(labelModule1);\n\n    // 添加VList子项，再添加一个带有附加按钮的子项\n    PageModule *lstModule2 = new PageModule(\"menuSpeci2\", \"特殊菜单2\", module);\n    module->appendChild(lstModule2);\n\n    LabelModule *module2_1 = new LabelModule(QString(\"pageSpeci2\"), QString(\"特殊页面2\"), lstModule2);\n    module2_1->setText(\"特殊页面内容2\");\n    lstModule2->appendChild(module2_1);\n\n    ButtonModule *module2_2 = new ButtonModule(QString(\"pageSpeci2\"), QString(\"特殊页面2\"), lstModule2);\n    module2_2->setText(\"Page中的测试按钮\");\n    module2_2->setExtra(); // 设置为附加按钮，父ChildType为ModuleObject::Page\n    lstModule2->appendChild(module2_2);\n\n    ButtonModule *ButtonModule3 = new ButtonModule(QString(\"pageSpeci3\"), QString(\"特殊页面3\"), lstModule2);\n    ButtonModule3->setText(\"测试按钮\");\n    ButtonModule3->setExtra(); // 设置为附加按钮，父ChildType为ModuleObject::VList\n    module->appendChild(ButtonModule3);\n    connect(ButtonModule3, &ButtonModule::onButtonClicked, ButtonModule3, &ModuleObject::triggered);\n    PageModule *page3 = new PageModule(QString(\"pageSpeci3\"), QString(\"特殊页面3\"), ButtonModule3);\n    ButtonModule3->appendChild(page3); // extra项激活时，会激活其第一个子项的page\n\n    ButtonModule *module3_1 = new ButtonModule(\"testPage\", \"测试页面\", module);\n    module3_1->setText(\"附加按钮测试页面\");\n    page3->appendChild(module3_1);\n\n    ButtonModule *module3_2 = new ButtonModule(\"buttonClose\", \"关闭\", module);\n    module3_2->setText(\"关闭\");\n    module3_2->setExtra();\n    page3->appendChild(module3_2);\n    connect(module3_2, &ButtonModule::onButtonClicked, lstModule1, &ModuleObject::triggered);\n}\n```\n* 二级插件与一级插件不同的是，需要实现其follow方法\n```cpp\nQString Plugin::name() const\n{\n    return QStringLiteral(\"plugin-test2\");\n}\n\nModuleObject* Plugin::module()\n{\n    //-----------创建根节点----------\n    ModuleObject *moduleRoot = new ModuleObject(\"menu3\", tr(\"菜单3\"), tr(\"我是菜单3\"), DIconTheme::findQIcon(\"preferences-system\"), this);\n    moduleRoot->setChildType(ModuleObject::ChildType::Page);\n\n    for (int j = 0; j < 4; j++) {\n        LabelModule *labelModule = new LabelModule(QString(\"main%1menu%2\").arg(3).arg(j), QString(\"具体页面%1的第%2个page的标题\").arg(3).arg(j), moduleRoot);\n        labelModule->setText(QString(\"我是具体页面%1的第%2个page\").arg(3).arg(j));\n        moduleRoot->appendChild(labelModule);\n    }\n\n    return moduleRoot;\n}\n\nQString Plugin::follow() const\n{\n    // 注意这里返回的是上级的url\n    return QStringLiteral(\"firstmenu\");\n}\n\nQString Plugin::location() const\n{\n    // 返回对应位置或前一个兄弟节点的name\n    return \"2\";\n}\n\n```\n* 自定义布局\n要实现类似PageModule的自定义布局，需继承ModuleObject类实现其page函数\n\n```cpp\n#include \"interface/moduleobject.h\"\n\nclass QFormLayout;\nclass QScrollArea;\nclass FormModule : public DCC_NAMESPACE::ModuleObject\n{\n    Q_OBJECT\n\npublic:\n    explicit FormModule(const QString &name, const QString &displayName = {}, QObject *parent = nullptr);\n\n    QWidget *page() override;\n\nprivate Q_SLOTS:\n    void onCurrentModuleChanged(ModuleObject *child);\n\nprivate:\n    void onAddChild(DCC_NAMESPACE::ModuleObject *const childModule);\n    void onRemoveChild(DCC_NAMESPACE::ModuleObject *const childModule);\n    void clearData();\n\nprivate:\n    QMap<ModuleObject *, QWidget *> m_mapWidget;\n    QScrollArea *m_area;\n    QFormLayout *m_layout;\n};\nFormModule::FormModule(const QString &name, const QString &displayName, QObject *parent)\n    : ModuleObject(name, displayName, parent)\n    , m_area(nullptr)\n    , m_layout(nullptr)\n{\n    // 响应子类激活信号\n    connect(this, &FormModule::currentModuleChanged, this, &FormModule::onCurrentModuleChanged);\n}\n\nQWidget *FormModule::page()\n{\n    // page函数在parentWidget上布局窗口并返回\n    QWidget *parentWidget = new QWidget();\n\n    QVBoxLayout *mainLayout = new QVBoxLayout;\n    mainLayout->setContentsMargins(0, 0, 0, 0);\n    parentWidget->setLayout(mainLayout);\n    m_layout = new QFormLayout();\n    // 在parentWidget析构后需要清理缓存数据，可以监听信号处理，或放deactive函数中\n    connect(parentWidget, &QObject::destroyed, this, [this]() { clearData(); });\n\n    QWidget *areaWidget = new QWidget();\n\n    m_area = new QScrollArea(parentWidget);\n    m_area->setFrameShape(QFrame::NoFrame);\n    m_area->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);\n    m_area->setWidgetResizable(true);\n    areaWidget->setParent(m_area);\n    m_area->setWidget(areaWidget);\n    mainLayout->addWidget(m_area);\n\n    areaWidget->setLayout(m_layout);\n\n    for (auto &&tmpChild : childrens()) {\n        auto page = tmpChild->activePage();\n        if (page) {\n            m_layout->addRow(tmpChild->displayName(), page);\n            m_mapWidget.insert(tmpChild, page);\n        }\n    }\n\n    auto addModuleSlot = [this](ModuleObject *const tmpChild) {\n        onAddChild(tmpChild);\n    };\n    // 监听子项的添加、删除、状态变更，动态的更新界面\n    connect(this, &ModuleObject::insertedChild, areaWidget, addModuleSlot);\n    connect(this, &ModuleObject::appendedChild, areaWidget, addModuleSlot);\n    connect(this, &ModuleObject::removedChild, areaWidget, [this](ModuleObject *const childModule) { onRemoveChild(childModule); });\n    connect(this, &ModuleObject::childStateChanged, areaWidget, [this](ModuleObject *const tmpChild, uint32_t flag, bool state) {\n    if (ModuleObject::IsHiddenFlag(flag)) { // 显示隐藏同增加删除处理\n        if (state)\n          onRemoveChild(tmpChild);\n        else\n          onAddChild(tmpChild);\n        }\n    });\n    // 处理子激活项\n    onCurrentModuleChanged(currentModule());\n    return parentWidget;\n}\n// 处理子激活项\nvoid FormModule::onCurrentModuleChanged(dccV23::ModuleObject *child)\n{\n    // 激活子项处理是删除之前激活项的QWidget,并用当前激活项的activePage替代\n    // 该例子中子项都为叶子节点，此处为滚动到对应项\n    // 获取窗口坐标需要在窗口显示后，所以此处稍作延时\n    QTimer::singleShot(10, m_area, [this, child]() {\n        if (m_area && m_mapWidget.contains(child)) {\n            QWidget *w = m_mapWidget.value(child);\n            if (-1 != m_layout->indexOf(w)) {\n                QPoint p = w->mapTo(w->parentWidget(), QPoint());\n                m_area->verticalScrollBar()->setSliderPosition(p.y());\n            }\n        }\n    });\n}\n// 动态的添加子项\nvoid FormModule::onAddChild(dccV23::ModuleObject *const childModule)\n{\n    if (ModuleObject::IsHidden(childModule) || m_mapWidget.contains(childModule))\n        return;\n\n    int index = 0;\n    for (auto &&child : childrens()) {\n        if (child == childModule)\n          break;\n        if (!ModuleObject::IsHidden(child))\n          index++;\n    }\n    auto newPage = childModule->activePage();\n    if (newPage) {\n        m_layout->insertRow(index, childModule->displayName(), newPage);\n        m_mapWidget.insert(childModule, newPage);\n    }\n}\n// 动态的删除子项\nvoid FormModule::onRemoveChild(dccV23::ModuleObject *const childModule)\n{\n    if (m_mapWidget.contains(childModule)) {\n        QWidget *w = m_mapWidget.value(childModule);\n        int index = m_layout->indexOf(w);\n        if (-1 != index) {\n            w->deleteLater();\n            delete m_layout->takeAt(index);\n            m_mapWidget.remove(childModule);\n            return;\n        }\n    }\n}\n// 清理缓存数据\nvoid FormModule::clearData()\n{\n    m_layout = nullptr;\n    m_area = nullptr;\n    m_mapWidget.clear();\n}\n```\n* 扩展ModuleObject\n为了方便开发，**dcc-widgets里提供了一些实用的ModuleObject**，具体可以参考对应的头文件\n\n```cpp\nvoid Test1ModuleObject::addTestModule(ModuleObject *parent)\n{\n    // ItemModule测试\n    // ItemModule提供一个回调函数接口,方便窗口与ModuleObject结合\n    // 左边是displayName字符串，右则是回调函数返回的widget，回调函数可以是匿名函数，也可以是成员函数。其参数是ModuleObject*，返回值为创建的QWidget*\n    // 同时ItemModule提供一些接口如setLeftVisible设置左则是否显示，setClickable是否处理点击。具体参考ItemModule头文件\n    // @warning 回调函数返回的widget生命周期只是对应窗口显示的时候，即模块切换时就会被析构。ItemModule的生命周期是从控制中心启动到关闭。\n    ItemModule *item = new ItemModule(\"item\", tr(\"Title\"));\n    item->setRightWidget([](ModuleObject *item) {\n        return new QPushButton(Dtk::Widget::DStyle::standardIcon(qApp->style(), Dtk::Widget::DStyle::SP_EditElement), \"\");\n    });\n    parent->appendChild(item);\n    ItemModule *itemButton = new ItemModule(\"itemButton\", tr(\"Button:\"), false);\n    itemButton->setRightWidget(this, &Test1ModuleObject::initButton);\n    itemButton->setBackground(true);\n    parent->appendChild(itemButton);\n    // SettingsGroupModule测试\n    // SettingsGroupModule提供一个基于SettingsGroup的ModuleObject,可实现SettingsGroup的窗口背景处理\n    SettingsGroupModule *groupModule = new SettingsGroupModule(\"group\", tr(\"group Module\"));\n    groupModule->appendChild(new ItemModule(\"groupItem1\", tr(\"group PushButton\"), [](ModuleObject *module) { return new QPushButton(); }));\n    groupModule->appendChild(new ItemModule(\"groupItem2\", tr(\"group LineEdit\"), [](ModuleObject *module) { return new QLineEdit(); }));\n    groupModule->appendChild(new ItemModule(\"groupItem3\", tr(\"group ComboBox\"), [](ModuleObject *module) { return new QComboBox(); }));\n    parent->appendChild(groupModule);\n\n    // HorizontalModule测试\n    // HorizontalModule提供一个横向布局的ModuleObject，与PageModule(纵向布局)类似\n    HorizontalModule *hor = new HorizontalModule(\"hor\", tr(\"Horizontal Module\"));\n    hor->setStretchType(HorizontalModule::AllStretch);\n    parent->appendChild(hor);\n    ItemModule *hlabel = new ItemModule(\n            \"hlabel\", tr(\"Horizontal Edit\"), [](ModuleObject *module) {\n                QLabel *label = new QLabel(module->displayName());\n                connect(module, &ModuleObject::displayNameChanged, label, &QLabel::setText);\n                return label;\n            },\n            false);\n    connect(hlabel, &ModuleObject::displayNameChanged, hlabel, [hlabel]() {\n        hlabel->setHidden(false);\n    });\n\n    ItemModule *hedit = new ItemModule(\n              \"hedit\", tr(\"Horizontal Edit\"), [hlabel](ModuleObject *module) {\n                QLineEdit *edit = new QLineEdit(module->displayName());\n                edit->setFixedHeight(32);\n                connect(module, &ModuleObject::displayNameChanged, edit, &QLineEdit::setText);\n                connect(edit, &QLineEdit::editingFinished, [edit, hlabel, module]() {\n                    QString text = edit->text();\n                    if (!text.isEmpty()) {\n                        hlabel->setDisplayName(text);\n                        module->setDisplayName(text);\n                    }\n                    module->setHidden(true);\n                });\n                return edit;\n            },\n            false);\n    hedit->setHidden(true);\n    ItemModule *hbutton = new ItemModule(\n            \"hbutton\", tr(\"Horizontal QPushButton\"), [hlabel, hedit](ModuleObject *module) {\n                QPushButton *but = new QPushButton();\n                but->setIcon(Dtk::Widget::DStyle::standardIcon(qApp->style(), Dtk::Widget::DStyle::SP_EditElement));\n                but->setFixedSize(32, 32);\n                connect(but, &QPushButton::clicked, module, [hlabel, hedit, module]() {\n                    hlabel->setHidden(true);\n                    hedit->setHidden(false);\n                    module->setHidden(true);\n                });\n                return but;\n            },\n            false);\n    connect(hedit, &ModuleObject::stateChanged, hedit, [hlabel, hbutton, hedit]() {\n        hlabel->setHidden(!hedit->isHidden());\n        hbutton->setHidden(!hedit->isHidden());\n    });\n    hor->appendChild(hlabel);\n    hor->appendChild(hedit);\n    hor->appendChild(hbutton);\n    // ListViewModule测试\n    // ListViewModule提供一个以DListView为界面的ModuleObject，子项可用ModuleObjectItem或ModuleObject\n    ListViewModule *listmodule = new ListViewModule(\"listView\", tr(\"List View\"));\n    connect(listmodule, &ListViewModule::clicked, this, [](ModuleObject *module) {\n        qInfo() << __FILE__ << __LINE__ << \"clicked:\" << module->displayName();\n        QString display = module->displayName();\n        if (display.contains(\"click\")) {\n            display.remove(\"click\");\n            module->setDisplayName(display);\n        } else {\n            module->setDisplayName(display + \"click\");\n        }\n    });\n    parent->appendChild(listmodule);\n    ModuleObjectItem *listitem0 = new ModuleObjectItem(\"item0\", tr(\"listitem 0\"));\n    listmodule->appendChild(listitem0);\n    ModuleObjectItem *item1 = new ModuleObjectItem(\"item1\", tr(\"listitem 1\"));\n    item1->setRightIcon(Dtk::Widget::DStyle::SP_ArrowEnter);\n    listmodule->appendChild(item1);\n\n    ModuleObjectItem *item2 = new ModuleObjectItem(\"item2\", tr(\"listitem 2\"));\n    item2->setRightText(\"right Text\", -2);\n    item2->setRightIcon(Dtk::Widget::DStyle::SP_ArrowEnter);\n    listmodule->appendChild(item2);\n    connect(item2, &ModuleObjectItem::clicked, this, [item1]() {\n        qInfo() << __FILE__ << __LINE__ << \"clicked ModuleObjectItem:\" << tr(\"listitem 2\");\n        item1->setHidden(!item1->isHidden());\n        static int pix = Dtk::Widget::DStyle::SP_ForkElement;\n        item1->setRightIcon((Dtk::Widget::DStyle::StandardPixmap)(pix));\n        pix++;\n        if (pix >= (int)(Dtk::Widget::DStyle::SP_Title_SS_ShowNormalButton))\n          pix = Dtk::Widget::DStyle::SP_ForkElement;\n    });\n    ModuleObject *listitem03 = new ModuleObject(\"listitem03\", tr(\"listitem 3\"));\n    listmodule->appendChild(listitem03);\n}\n```\n\n\n## Debug 说明\n\n控制中心有一个参数 `--spec`，这个参数接受一个path的变量，用于加载当前文件夹下所有插件，控制中心此时为一个runtime。如果是加载一个子插件，需要将父插件软连接到这个该目录，之后可以调试。\n\n## CMake\n\n控制中心导出两个target `Dde::DCCWidget`和`Dde::DCCInterface`,在`find_package(DdeControlCenter)`后直接在`target_link_libraries`中连接这两个target就可以使用控制中心的库和头文件了。\n"
  },
  {
    "path": "docs/v25-dcc-interface.zh_CN.md",
    "content": "\\mainpage dde-control-center\n@brief dde-control-center\n\n# dde-control-center\n## 接口变更记录\n| 时间 | 版本 | 说明 | 控制中心版本号 |\n|---|---|---|---|\n| 2024.11.8 | 1.0 | 创建 | 6.0.71 |\n| 2024.12.2 | 1.0 | 修改main.qml为{name}Main.qml(防止翻译冲突，兼容以前命名) | 6.0.77 |\n| 2026.1.14 | 1.1 | 修改{name}.qml为{Name}.qml(qml命名规范) | 6.1.71 |\n\n## V25控制中心新特性\n1.  V25控制中心只负责框架设计，具体功能全部由插件实现\n2.  V25控制中心支持多级插件系统，支持插件插入到任意位置中\n3.  更方便、更精确的搜索功能,更好的搜索交互\n4.  高度可定制，可定制任意插件是否显示，若插件支持，可定制任意插件内容是否显示\n5.  界面采用qml实现，更灵活，更易维护\n6.  插件数据采用C++实现，更高效，与界面完全解偶\n7.  插件支持多语言，支持多语言切换\n8.  插件显示禁用支持统一配置。配置修改立即生效\n## V25控制中心插件安装路径必要说明\n1.  V25控制中心插件安装路径为`${CMAKE_INSTALL_LIBDIR}/dde-control-center/plugins_v1.1`\n2.  该路径下插件以单个文件夹形式存在，文件夹名为插件名，文件夹内为插件文件,假设插件名为example，则插件文件夹内容为：\n```bash\n${CMAKE_INSTALL_LIBDIR}/dde-control-center/plugins_v1.1/example/\n├── qmldir\n├── libexample_qml.so\n└── example.so\n```\n1.  example.so、qmldir为qml插件c++导出的动态库\n2.  libexample_qml.so为qml资源文件编译成的动态库。包含资源有：\n    1) Example.qml为插件元数据文件，包含一个DccObject对象。通常该对象只是插件入口菜单。为了让主界面快速显示出来\n    2) ExampleMain.qml为插件入口文件，插件启动时，会自动加载该文件，该文件中根对象为一个DccObject对象，该对象可以包含任意qml对象，并且该文件中可以用到example.so导出的函数，使用方式为：dccData.xxx(),dccData为example.so导出的对象\n    3) Xxx.qml为插件其他文件，在ExampleMain.qml中使用\n## V25控制中心插件开发说明\n1.  V25控制中心插件开发需要安装dde-control-center-dev包，该包中包含V25控制中心插件开发所需头文件和库文件\n2.  V25控制中心使用的是qt6,qt6与qt5混用会导致程序崩溃。因此插件需要使用qt6进行开发\n## V25控制中心插件加载顺序说明\n1.  插件加载时，会先根据配置判断该插件是否显示，若不显示，则加载结束。查看配置命令：`dde-dconfig get org.deepin.dde.control-center -r org.deepin.dde.control-center hideModule`\n2.  以Qt的qml插件形式加载example模块\n3.  加载Example.qml，若Example.qml中根对象DccObject对象visible属性为false，则加载结束\n4.  在线程中加载example.so，最后会将example.so导出的对象移动到主线程\n5.  将example.so导出的对象设置为dccData,加载ExampleMain.qml。此时，ExampleMain.qml中可以使用dccData.xxx()调用example.so导出的函数\n6.  加载完成，将DccObject对象插入到模块树中\n## V25控制中心插件开发必要说明\n1.  控制中心有一个option,可以用来加载一个文件夹下的插件，比如一般插件会放置到`build`文件夹下，这时候可以`dde-control-center --spec ./lib/plugins_v1.1/`来加载单独一个插件进行调试。另外提醒，调试时候不要使用asan，因为没有使用asan的控制中心无法加载使用了asan编译的插件\n2.  控制中心插件加载是在线程中，但最终会将插件对象移到主线程。所以example.so构造函数中创建的对象需要在example.so导出类的树结构中(即子对象的父对象或祖先对象是example.so导出类)，否则不会被移动到主线程，导致其中信号槽线程等不到，无法正常使用。\n3.  example.so导出类是唯一的，插件中不建议使用单例，可在example.so导出类中创建一个单例对象\n## V25控制中心开发接口说明\n控制中心导出的qml类有：\n### 关键类\n#### DccObject\n控制中心的树形结构的数据节点，可表示界面的一个菜单项或功能项。\n| 属性名称 | 说明 | 备注 |\n|---|---|---|\n| name | 名称 | 作为唯一id使用，结合父项的name组成url,用于定位跳转、配置隐藏禁用等，由字符、数字组成，不建议有符号空格，不可有‘/’(url分隔符，会影响解析) |\n| parentName | 父项名称 | 父项的url,表示该项是哪个项的子项。此处可以是一个url,如：“aa/bb/cc” |\n| weight | 权重 | 权重越高，该项所插入的位置越靠后。取值范围：0-65535，建议取值用10、20、30的方式，方便有需求要从中间插入控件 |\n| displayName | 显示名称 | 用于搜索、显示，需支持翻译 |\n| description | 描述 | 用于显示 |\n| icon | 图标 | 图标名 |\n| badge | 标识 | 用于显示红色圆点等，如：更新的红点提示，取值范围：0-255 |\n| visible | 可见 | 与控件显示关联，默认true |\n| enabled | 启用 | 与控件状态关联，默认true |\n| visibleToApp | 可见 | 只读，包含配置与visible的结果，与控件显示关联 |\n| enabledToApp | 启用 | 只读，包含配置与enabled的结果，与控件状态关联 |\n| canSearch | 可搜索 | 默认true |\n| children | 子对象 | 只读，获取子控件列表 |\n| backgroundType | 背景样式 | 默认AutoBg |\n| pageType | 界面类型 | Menu、Editor、Item等，影响page显示方式，取值范围：0-255 |\n| page | 界面控件 |  |\n| parentItem | 控件父项 |  |\n\n| 信号 | 说明 | 备注 |\n|---|---|---|\n| active | 激活 | backgroundType为Clickable时，点击控件出发，参数为空。DBus的ShowPage方法出发，如:ShowPage(\"aa/bb?param=1\")，则aa/bb项会收到active(\"param=1\")信号 |\n| deactive | 停用 | 页面退出时触发 |\n#### DccApp\n全局单例，管理控制中心的整个模块树\n| 函数 | 说明 | 备注 |\n|---|---|---|\n| root | 根结点 | 属性 |\n| activeObject | 当前菜单项 | 属性 |\n| addObject | 添加Object | 将DccObject加到模块树上,方法 |\n| removeObject | 移除Object | 将DccObject从模块树上移除，动态创建的Object需要手动destroy,方法 |\n| showPage | 跳转页面 | 若url参数为空，会按Object的父项查找，直到找到Menu类型的Object,将其设置为当前页面。url参数不为空，则找到对应项触发active信号,方法 |\n| mainWindow | 主窗口 | 方法 |\n| activeItemChanged | 搜索或showPage对应的控件，常用于强提醒显示 | 信号 |\n### 辅助类\n#### DccModel\n以根结点的子项组成一个ListModel\n| 属性名称 | 说明 | 备注 |\n|---|---|---|\n| root | 根结点 |  |\n#### DccRepeater\n使用提供的model实例化多个基于DccObject的对象，并添加到父项中，与Repeater类似\n| 属性 | 说明 | 备注 |\n|---|---|---|\n| model | 数据源 | 对象的数据源，为QVariant类型，支持多种数据类型 |\n| delegate | 模板 | 用于生成对象的模板，为model中的每一项数据生成一个DccObject对象 |\n| count | model生成对象的数量 | 只读 |\n\n| 信号 | 说明 | 备注 |\n|---|---|---|\n| objAdded | 添加DccObject对象 | model实例化新对象时触发 |\n| objRemoved | 移除DccObject对象 | model移除对象时触发 |\n\n#### DccDBusInterface\n与DBus交互的类，支持属性、信号、方法\n| 属性 | 说明 | 备注 |\n|---|---|---|\n| service | 服务名 | D-Bus 服务的唯一标识符 |\n| path | 路径 | D-Bus 服务的对象路径 |\n| inter | 接口名 | D-Bus 服务的对象接口 |\n| connection | 总线类型 | SystemBus系统总线/SessionBus会话总线 |\n| suffix | 属性前缀 | 为动态属性添加前缀，避免与QML保留字冲突 |\n\n| 函数 | 说明 | 备注 |\n|---|---|---|\n| callWithCallback | 异步调用 D-Bus 方法，并通过JS回调处理结果 |  |\n\n### 界面类\n#### DccLoader\n用于加载DccObject的page控件的加载器，继承自Qt Quick的Loader。\n| 属性 | 说明 | 备注 |\n|---|---|---|\n| dccObj | 要加载的DccObject | var |\n| dccObjItem | 控件父项 | Item |\n#### DccGroupView\n一个组样式的控件，根据子项DccObject的pageType进行渲染，并将所有子项放在一个组容器中。可通过 DccRepeater 批量创建子项。\n| 属性 | 说明 | 备注 |\n|---|---|---|\n| isGroup | 是否显示组样式，默认为true | 值为true：子项无间距，显示分隔线；值为false：子项有间距，无分隔线 |\n#### DccRightView\n控制中心右侧样式控件，用于展示菜单项的子页面内容，支持滚动、拖动。Menu类型的DccObject未指定page时，page会自动使用该控件\n#### DccRowView\n横向排列子项的行布局容器，通过DccLoader加载子项的page控件，将子项水平排列\n#### DccSettingsView\n与DccRightView类似，但可以显示一个下方悬浮区域。需要其对应的DccObject有两个子项，一个为主内容区域，未指定page时默认使用DccGroupView，一个为下方悬浮区域，未指定page时默认使用DccRowView\n#### DccSettingsObject\n封装了DccSettingsView所需结构的DccObject模板，预创建了所需的两个子项\n| 属性 | 说明 | 备注 |\n|---|---|---|\n| bodyUrl | 子项body的 URL | 用于向body中添加子项 |\n| footerUrl | 子项footer的 URL | 用于向footer中添加子项 |\n#### DccItemBackground\n处理控件背景的控件，在DccRightView中用到\n#### DccCheckIcon\n显示勾选图标的控件，用于显示和切换选中状态\n#### DccLabel\n支持自动省略和悬浮提示的Label\n#### DccTitleObject\n包含标题和描述的分组标题控件\n#### SearchBar\n搜索框控件，支持搜索、搜索结果弹窗显示和键盘导航\n#### DccTimeRange\n选择或编辑时间范围的控件，显示格式为\"时:分\"\n| 属性 | 说明 | 备注 |\n|---|---|---|\n| hour | 时 |  |\n| minute | 分 |  |\n\n## 代码示例：\n### 代码文件夹结构\n假设插件名为example，代码文件夹内容为：\n```plain\nplugin-example\n├── CMakeLists.txt          # CMake构建脚本，用于编译和构建插件\n├── qml                     # QML文件目录\n│   ├── dcc_example.dci     # 图标文件\n│   ├── ExamplePage1.qml    # 第一个示例页面的QML文件，在exampleMain.qml中加载\n│   ├── ExamplePage2.qml    # 第二个示例页面的QML文件，在exampleMain.qml中加载\n│   ├── Example.qml         # 主QML文件，包含简单的插件信息\n│   └── ExampleMain.qml     # 主QML文件，包含插件所有页面\n└── src                     # 源文件目录，存放C++源文件和相关头文件\n    ├── pluginexample.cpp   # 插件的C++实现文件，包含功能实现和QML与C++的交互\n    ├── pluginexample.h     # 插件的头文件，定义类、函数和QML中可能用到的接口\n    └── resources.qrc       # qrc资源文件（可选）\n```\n\n（文件说明按模块加载顺序说明）\n\n### CMakeLists.txt\n```bash\ncmake_minimum_required(VERSION 3.23) # qt_add_qml_module函数支持最小版本3.18,建议版本3.23+\n# 该name会设置为插件名，只支持字母加数字，需要与{Name}.qml中DccObject的name相同，用于插件禁用操作\nset(PLUGIN_NAME \"example\")\n\nfind_package(Qt6 COMPONENTS Core LinguistTools REQUIRED) # dcc_handle_plugin_translation中用到LinguistTools的函数\nfind_package(DdeControlCenter REQUIRED) # 查找dde-control-center库\n\nfile(GLOB_RECURSE PLUGIN_SRCS\n        \"src/*.cpp\"\n        \"src/*.h\"\n        # \"src/qrc/example.qrc\"\n)\nadd_library(${PLUGIN_NAME} MODULE\n        ${PLUGIN_SRCS}\n)\n\n# target_include_directories(${PLUGIN_NAME} PUBLIC\n#     Dde::Control-Center\n# )\n\ntarget_link_libraries(${PLUGIN_NAME} PRIVATE\n    Dde::Control-Center # 添加dde-control-center库\n    Qt6::Core\n)\n# 处理插件安装\ndcc_install_plugin(NAME ${PLUGIN_NAME} TARGET ${PLUGIN_NAME})\n# 处理翻译和安装，如果自己处理翻译，可以不调用该函数\ndcc_handle_plugin_translation(NAME ${PLUGIN_NAME} )\n```\n### Example.qml\n```javascript\nimport org.deepin.dcc 1.0\n\n// 该文件中不能使用dccData,根对象为DccObject\nDccObject {\n    id: root\n    name: \"example\" // 与插件名相同\n    parentName: \"root\"\n    displayName: qsTr(\"Example\")\n    icon: \"dcc_example\"\n    weight: 1000\n\n    visible: false // 控制模块显示，如果模块不显示，则不会加载example.so和example.qml\n    DccDBusInterface { // 控制中心导致的qml类，可使用DBus。如果是用DConfig,dtk有导出D.Config类，可以直接使用\n        property var windowRadius // 关注的dbus属性\n        service: \"org.deepin.dde.Appearance1\"\n        path: \"/org/deepin/dde/Appearance1\"\n        inter: \"org.deepin.dde.Appearance1\"\n        connection: DccDBusInterface.SessionBus\n        onWindowRadiusChanged: { // dbus属性变化信号\n            root.visible = windowRadius > 0\n        }\n        // on为关键字，关联DBus信号\n        function onChanged(type, value) { // dbus信号\n            console.log(\"Changed signal received, type: \", type, \", value: \", value)\n            // 调用DBus的List方法，[\"gtk\"]为参数，多个参数示例:[\"str\",1,\"str\"]，listSlot为处理DBus调用返回，参数个数为DBus返回的参数个数。listErrorSlot为处理DBus错误返回，1个参数，为错误字符串\n            callWithCallback(\"List\", [\"gtk\"], listSlot, listErrorSlot)\n        }\n        function listSlot(ty) {\n            console.log(\"List slot received, type: \" + ty)\n        }\n        function listErrorSlot(error) {\n            console.log(\"error\", error)\n        }\n    }\n}\n```\n### pluginexample.h\n```cpp\nclass PluginExample : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged FINAL)\npublic:\n    explicit PluginExample(QObject *parent = nullptr);\n\n    QString name() const;\n    void setName(const QString &name);\n    // 属性、Q_INVOKABLE、信号、槽等可在qml中直接使用\n    Q_INVOKABLE int calc(int a, int b);\n\npublic Q_SLOTS:\n    void setCalcType(int type);\n\nQ_SIGNALS:\n    void nameChanged(const QString &name);\n    void calcTypeChanged(int calcType);\n\nprivate:\n    QString m_name;\n    int m_calcType;\n};\n```\n### pluginexample.cpp\npluginexample.cpp为PluginExample类实现，与控制中心插件相关内容为：\n\n```cpp\n#include \"dccfactory.h\"\nDCC_FACTORY_CLASS(PluginExample) // DCC_FACTORY_CLASS在dccfactory.h中定义，用于注册插件,该宏会自动生成PluginExampleFactory类，并实现create函数。PluginExampleFactory类为Qt类，所以需要包含pluginexample.moc\n#include \"pluginexample.moc\"\n```\n### ExampleMain.qml\n```javascript\nimport org.deepin.dcc 1.0\n\n// 该文件中可以使用dccData,根对象为DccObject\nDccObject {\n    ExamplePage1 {\n        name: \"example_1\"\n        parentName: \"example\"\n        displayName: qsTr(\"Normal Page\")\n        icon: \"dcc_example\"\n        weight: 10\n    }\n    ExamplePage2 {\n        name: \"example_2\"\n        parentName: \"example\"\n        displayName: qsTr(\"Settings Page\")\n        icon: \"dcc_example\"\n        weight: 20\n    }\n}\n```\n### ExamplePage1.qml\n```javascript\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: root\n    property real calcValue\n    property real calcType: 0\n    DccObject {\n        name: \"calc\"\n        parentName: root.name\n        displayName: qsTr(\"calc\")\n        icon: \"dcc_example\"\n        weight: 10\n        backgroundType: DccObject.Normal // 设置背景样式\n        pageType: DccObject.Editor // Editor为page是右边的控件，左边显示displayName、icon等\n        page: Button {\n            text: dccObj.displayName\n            onClicked: {\n                calcValue = dccData.calc(calcValue, 2)\n            }\n        }\n    }\n    DccObject {\n        name: \"value\"\n        parentName: root.name\n        displayName: qsTr(\"value\")\n        weight: 20\n        pageType: DccObject.Editor\n        backgroundType: DccObject.ClickStyle // ClickStyl表示有点击效果，点击时会发出active信号\n        page: RowLayout {\n            Text {\n                text: calcValue\n            }\n            ComboBox {}\n        }\n        onActive: cmd => console.log(this, \"onActive:\", cmd)\n    }\n    DccObject {\n        name: \"group\"\n        parentName: root.name\n        displayName: qsTr(\"group\")\n        weight: 30\n        pageType: DccObject.Item\n        page: DccGroupView {} // 组效果，其子项会放在一个组里\n        DccObject {\n            name: \"item2\" // name要求当前组内唯一\n            parentName: root.name + \"/group\" // parentName要求可定位到对应项，可用多个DccObject的name组合\n            displayName: qsTr(\"value\")\n            weight: 20\n            pageType: DccObject.Item // Item的page将占整个区域\n            page: Text {\n                text: calcValue\n            }\n        }\n        DccObject {\n            name: \"item1\"\n            parentName: root.name + \"/group\"\n            displayName: qsTr(\"value\")\n            weight: 10\n            pageType: DccObject.Editor\n            page: Text {\n                text: calcValue\n            }\n        }\n        DccObject {\n            id: calcTypeObj\n            name: \"calcType\"\n            parentName: root.name\n            displayName: qsTr(\"calc type\")\n            description: qsTr(\"description\")\n            icon: \"dcc_example\"\n            weight: 30\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            page: Button {\n                text: dccObj.displayName\n                onClicked: {\n                    calcType++\n                    if (calcType >= 4) {\n                        calcType = 0\n                    }\n                    dccData.setCalcType(calcType)\n                }\n            }\n            Connections {\n                target: dccData\n                function onCalcTypeChanged(cType) {\n                    calcTypeObj.displayName = cType\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"group2\"\n        parentName: root.name\n        displayName: qsTr(\"group2\")\n        weight: 40\n        pageType: DccObject.Item\n        page: DccGroupView {}\n        DccRepeater { // DccRepeater配合model可实现多个DccObject\n            model: 3\n            delegate: DccObject {\n                name: \"item\" + (index + 1)\n                parentName: root.name + \"/group2\"\n                displayName: qsTr(\"Item\") + (index + 1)\n                weight: 30 + index\n                pageType: DccObject.Editor\n                page: Switch {}\n            }\n        }\n    }\n}\n```\n### ExamplePage2.qml\n```javascript\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0 as D\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: root\n    property real calcValue\n    property real calcType: 0\n\n    weight: 10\n    page: DccSettingsView {} // 设置界面，此DccObject的pageType为Menu，page为DccSettingsView\n    DccObject {\n        name: \"body\" // DccSettingsView里的限制，其子项必须是两个DccObject，第一个为主界面，第二个为下方按钮区域\n        parentName: root.name\n        weight: 10\n        pageType: DccObject.Item\n        DccObject {\n            name: \"calc\"\n            parentName: root.name + \"/body\"\n            displayName: qsTr(\"calc\")\n            icon: \"dcc_example\"\n            weight: 10\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            page: Button {\n                text: dccObj.displayName\n                onClicked: {\n                    calcValue = dccData.calc(calcValue, 2)\n                }\n            }\n        }\n        DccObject {\n            name: \"value\"\n            parentName: root.name + \"/body\"\n            displayName: qsTr(\"no Search\")\n            canSearch: false // 设置界面通常不搜索，可设置canSearch\n            weight: 20\n            pageType: DccObject.Item\n            page: Text {\n                text: calcValue\n            }\n        }\n        DccObject {\n            name: \"menuEditor\"\n            parentName: root.name + \"/body\"\n            displayName: qsTr(\"no Search\")\n            canSearch: false // 设置界面通常不搜索，可设置canSearch\n            weight: 30\n            pageType: DccObject.MenuEditor // 菜单加编辑控件,子项是一个菜单项\n            page: Switch {\n            }\n            DccObject {\n                name: \"menu\"\n                parentName: root.name + \"/body/menuEditor\"\n                weight: 10\n                DccRepeater {\n                    model: 8\n                    delegate: DccObject {\n                        name: \"item\" + (index + 1)\n                        parentName: \"menuEditor/menu\"\n                        displayName: qsTr(\"Item\") + (index + 1)\n                        weight: 30 + index\n                        backgroundType: DccObject.Normal\n                        pageType: DccObject.Editor\n                        page: Switch {}\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"calcType\" // 该DccObject会显示在example_2中\n            parentName: \"example_2/body\" // DccObject位置只与parentName和weight有关，与其自身位置无关\n            weight: 80\n            displayName: qsTr(\"calc type\")\n            pageType: DccObject.Editor\n            backgroundType: DccObject.Normal\n            page: Text {\n                text: calcType\n            }\n        }\n        DccObject {\n            name: \"group2\"\n            parentName: root.name + \"/body\"\n            displayName: qsTr(\"group2\")\n            weight: 100\n            pageType: DccObject.Item\n            page: DccGroupView {}\n\n            DccObject {\n                name: \"item0\"\n                parentName: root.name + \"/body/group2\"\n                displayName: qsTr(\"value\")\n                weight: 20\n                pageType: DccObject.Item\n                page: Rectangle {\n                    implicitHeight: 50\n                    Text {\n                        anchors.centerIn: parent\n                        text: calcValue\n                    }\n                }\n            }\n            // DccRepeater类可配合model实现多个DccObject\n            DccRepeater {\n                model: 23\n                delegate: DccObject {\n                    name: \"item\" + (index + 1)\n                    parentName: root.name + \"/body/group2\"\n                    displayName: qsTr(\"Item\") + (index + 1)\n                    weight: 30 + index\n                    pageType: DccObject.Editor\n                    page: Switch {}\n                }\n            }\n        }\n    }\n    DccObject {\n        name: \"footer\"\n        parentName: root.name\n        weight: 20\n        pageType: DccObject.Item\n        DccObject {\n            name: \"delete\"\n            parentName: root.name + \"/footer\"\n            weight: 10\n            pageType: DccObject.Item\n            page: Button {\n                text: qsTr(\"Delete\")\n                onClicked: {\n                    deleteDialog.createObject(this).show()\n                }\n            }\n        }\n\n        Component {\n            id: deleteDialog\n            D.DialogWindow {\n                modality: Qt.ApplicationModal\n                width: 380\n                icon: \"preferences-system\"\n                onClosing: destroy(10)\n                ColumnLayout {\n                    width: parent.width\n                    Label {\n                        Layout.fillWidth: true\n                        Layout.leftMargin: 50\n                        Layout.rightMargin: 50\n                        text: qsTr(\"Are you sure you want to delete this configuration?\")\n                        font.bold: true\n                        wrapMode: Text.WordWrap\n                        horizontalAlignment: Text.AlignHCenter\n                    }\n                    RowLayout {\n                        Layout.topMargin: 10\n                        Layout.bottomMargin: 10\n                        Button {\n                            Layout.fillWidth: true\n                            text: qsTr(\"Cancel\")\n                            onClicked: close()\n                        }\n                        Rectangle {\n                            implicitWidth: 2\n                            Layout.fillHeight: true\n                            color: this.palette.button\n                        }\n\n                        Button {\n                            Layout.fillWidth: true\n                            text: qsTr(\"Delete\")\n                            onClicked: {\n                                close()\n                            }\n                        }\n                    }\n                }\n            }\n        }\n        DccObject {\n            // 按钮区域可加个空项处理右对齐问题\n            name: \"spacer\"\n            parentName: root.name + \"/footer\"\n            weight: 20\n            pageType: DccObject.Item\n            page: Item {\n                Layout.fillWidth: true\n            }\n        }\n        DccObject {\n            name: \"cancel\"\n            parentName: root.name + \"/footer\"\n            weight: 30\n            pageType: DccObject.Item\n            page: Button {\n                text: qsTr(\"Cancel\")\n                onClicked: {\n                    DccApp.showPage(root.parentName)\n                }\n            }\n        }\n        DccObject {\n            name: \"save\"\n            parentName: root.name + \"/footer\"\n            weight: 40\n            pageType: DccObject.Item\n            page: Button {\n                text: qsTr(\"Save\")\n                onClicked: {\n                    calcValue = dccData.calc(calcValue, 3)\n                }\n            }\n        }\n    }\n}\n```\n"
  },
  {
    "path": "examples/CMakeLists.txt",
    "content": "add_subdirectory(plugin-example)\n"
  },
  {
    "path": "examples/plugin-example/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.23) # qt_add_qml_module函数支持最小版本3.18,建议版本3.23+\n# 该name会设置为插件名，只支持字母加数字，需要与{Name}.qml中DccObject的name相同，用于插件禁用操作\nset(PLUGIN_NAME \"example\")\n\nfind_package(Qt6 COMPONENTS Core LinguistTools REQUIRED) # dcc_handle_plugin_translation中用到LinguistTools的函数\nfind_package(DdeControlCenter REQUIRED)\n\nfile(GLOB_RECURSE PLUGIN_SRCS\n        \"src/*.cpp\"\n        \"src/*.h\"\n        # \"src/qrc/example.qrc\"\n)\nadd_library(${PLUGIN_NAME} MODULE\n        ${PLUGIN_SRCS}\n)\n\n# target_include_directories(${PLUGIN_NAME} PUBLIC\n#     Dde::Control-Center\n# )\n\ntarget_link_libraries(${PLUGIN_NAME} PRIVATE\n    Dde::Control-Center # 添加dde-control-center库\n    Qt6::Core\n)\n# 处理插件安装\ndcc_install_plugin(NAME ${PLUGIN_NAME} TARGET ${PLUGIN_NAME})\n# 处理翻译和安装，如果自己处理翻译，可以不调用该函数\ndcc_handle_plugin_translation(NAME ${PLUGIN_NAME} )\n"
  },
  {
    "path": "examples/plugin-example/qml/Example.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport org.deepin.dcc 1.0\n\n// 该文件中不能使用dccData,根对象为DccObject\nDccObject {\n    id: root\n    name: \"example\" // 与插件名相同\n    parentName: \"root\"\n    displayName: qsTr(\"Example\")\n    icon: \"dcc_example\"\n    weight: 1000\n\n    visible: false // 控制模块显示\n    DccDBusInterface {\n        property var windowRadius\n        service: \"org.deepin.dde.Appearance1\"\n        path: \"/org/deepin/dde/Appearance1\"\n        inter: \"org.deepin.dde.Appearance1\"\n        connection: DccDBusInterface.SessionBus\n        onWindowRadiusChanged: {\n            root.visible = windowRadius > 0\n        }\n    }\n}\n"
  },
  {
    "path": "examples/plugin-example/qml/ExampleMain.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport org.deepin.dcc 1.0\n\n// 该文件中可以使用dccData,根对象为DccObject\nDccObject {\n    ExamplePage1 {\n        name: \"example_1\"\n        parentName: \"example\"\n        displayName: qsTr(\"Normal Page\")\n        icon: \"dcc_example\"\n        weight: 10\n    }\n    ExamplePage2 {\n        name: \"example_2\"\n        parentName: \"example\"\n        displayName: qsTr(\"Settings Page\")\n        icon: \"dcc_example\"\n        weight: 20\n    }\n    ExamplePage3 {\n        name: \"example_3\"\n        parentName: \"example\"\n        displayName: qsTr(\"Settings Page\")\n        icon: \"dcc_example\"\n        weight: 30\n    }\n}\n"
  },
  {
    "path": "examples/plugin-example/qml/ExamplePage1.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: root\n    property real calcValue\n    property real calcType: 0\n    DccObject {\n        name: \"calc\"\n        parentName: root.name\n        displayName: qsTr(\"calc\")\n        icon: \"dcc_example\"\n        weight: 10\n        backgroundType: DccObject.Normal // 设置背景样式\n        pageType: DccObject.Editor // Editor为page是右边的控件，左边显示displayName、icon等\n        page: Button {\n            text: dccObj.displayName\n            onClicked: {\n                calcValue = dccData.calc(calcValue, 2)\n            }\n        }\n    }\n    DccObject {\n        name: \"value\"\n        parentName: root.name\n        displayName: qsTr(\"value\")\n        weight: 20\n        pageType: DccObject.Editor\n        backgroundType: DccObject.ClickStyle // ClickStyl表示有点击效果，点击时会发出active信号\n        page: RowLayout {\n            Text {\n                text: calcValue\n            }\n            ComboBox {}\n        }\n        onActive: cmd => console.log(this, \"onActive:\", cmd)\n    }\n    DccObject {\n        name: \"group\"\n        parentName: root.name\n        displayName: qsTr(\"group\")\n        weight: 30\n        pageType: DccObject.Item\n        page: DccGroupView {} // 组效果，其子项会放在一个组里\n        DccObject {\n            name: \"item2\" // name要求当前组内唯一\n            parentName: root.name + \"/group\" // parentName要求可定位到对应项，可用多个DccObject的name组合\n            displayName: qsTr(\"value\")\n            weight: 20\n            pageType: DccObject.Item // Item的page将占整个区域\n            page: Text {\n                text: calcValue\n            }\n        }\n        DccObject {\n            name: \"item1\"\n            parentName: root.name + \"/group\"\n            displayName: qsTr(\"value\")\n            weight: 10\n            pageType: DccObject.Editor\n            page: Text {\n                text: calcValue\n            }\n        }\n        DccObject {\n            id: calcTypeObj\n            name: \"calcType\"\n            parentName: root.name\n            displayName: qsTr(\"calc type\")\n            description: qsTr(\"description\")\n            icon: \"dcc_example\"\n            weight: 30\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            page: Button {\n                text: dccObj.displayName\n                onClicked: {\n                    calcType++\n                    if (calcType >= 4) {\n                        calcType = 0\n                    }\n                    dccData.setCalcType(calcType)\n                }\n            }\n            Connections {\n                target: dccData\n                function onCalcTypeChanged(cType) {\n                    calcTypeObj.displayName = cType\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"group2\"\n        parentName: root.name\n        displayName: qsTr(\"group2\")\n        weight: 40\n        pageType: DccObject.Item\n        page: DccGroupView {}\n        DccRepeater { // DccRepeater配合model可实现多个DccObject\n            model: 3\n            delegate: DccObject {\n                name: \"item\" + (index + 1)\n                parentName: root.name + \"/group2\"\n                displayName: qsTr(\"Item\") + (index + 1)\n                weight: 30 + index\n                pageType: DccObject.Editor\n                page: Switch {}\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "examples/plugin-example/qml/ExamplePage2.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0 as D\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: root\n    property real calcValue\n    property real calcType: 0\n\n    weight: 10\n    page: DccSettingsView {} // 设置界面，此DccObject的pageType为Menu，page为DccSettingsView\n    DccObject {\n        name: \"body\" // DccSettingsView里的限制，其子项必须是两个DccObject，第一个为主界面，第二个为下方按钮区域\n        parentName: root.name\n        weight: 10\n        pageType: DccObject.Item\n        DccObject {\n            name: \"calc\"\n            parentName: root.name + \"/body\"\n            displayName: qsTr(\"calc\")\n            icon: \"dcc_example\"\n            weight: 10\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            page: Button {\n                text: dccObj.displayName\n                onClicked: {\n                    calcValue = dccData.calc(calcValue, 2)\n                }\n            }\n        }\n        DccObject {\n            name: \"value\"\n            parentName: root.name + \"/body\"\n            displayName: qsTr(\"no Search\")\n            canSearch: false // 设置界面通常不搜索，可设置canSearch\n            weight: 20\n            pageType: DccObject.Item\n            page: Text {\n                text: calcValue\n            }\n        }\n        DccObject {\n            name: \"menuEditor\"\n            parentName: root.name + \"/body\"\n            displayName: qsTr(\"no Search\")\n            canSearch: false // 设置界面通常不搜索，可设置canSearch\n            weight: 30\n            pageType: DccObject.MenuEditor // 菜单加编辑控件,子项是一个菜单项\n            page: Switch {}\n            DccObject {\n                name: \"menu\"\n                parentName: root.name + \"/body/menuEditor\"\n                weight: 10\n                DccRepeater {\n                    model: 8\n                    delegate: DccObject {\n                        name: \"item\" + (index + 1)\n                        parentName: \"menuEditor/menu\"\n                        displayName: qsTr(\"Item\") + (index + 1)\n                        weight: 30 + index\n                        backgroundType: DccObject.Normal\n                        pageType: DccObject.Editor\n                        page: Switch {}\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"calcType\" // 该DccObject会显示在example_2中\n            parentName: \"example_2/body\" // DccObject位置只与parentName和weight有关，与其自身位置无关\n            weight: 80\n            displayName: qsTr(\"calc type\")\n            pageType: DccObject.Editor\n            backgroundType: DccObject.Normal\n            page: Text {\n                text: calcType\n            }\n        }\n        DccObject {\n            name: \"group2\"\n            parentName: root.name + \"/body\"\n            displayName: qsTr(\"group2\")\n            weight: 100\n            pageType: DccObject.Item\n            page: DccGroupView {}\n\n            DccObject {\n                name: \"item0\"\n                parentName: root.name + \"/body/group2\"\n                displayName: qsTr(\"value\")\n                weight: 20\n                pageType: DccObject.Item\n                page: Rectangle {\n                    implicitHeight: 50\n                    Text {\n                        anchors.centerIn: parent\n                        text: calcValue\n                    }\n                }\n            }\n            // DccRepeater类可配合model实现多个DccObject\n            DccRepeater {\n                model: 23\n                delegate: DccObject {\n                    name: \"item\" + (index + 1)\n                    parentName: root.name + \"/body/group2\"\n                    displayName: qsTr(\"Item\") + (index + 1)\n                    weight: 30 + index\n                    pageType: DccObject.Editor\n                    page: Switch {}\n                }\n            }\n        }\n    }\n    DccObject {\n        name: \"footer\"\n        parentName: root.name\n        weight: 20\n        pageType: DccObject.Item\n        DccObject {\n            name: \"delete\"\n            parentName: root.name + \"/footer\"\n            weight: 10\n            pageType: DccObject.Item\n            page: Button {\n                text: qsTr(\"Delete\")\n                onClicked: {\n                    deleteDialog.createObject(this).show()\n                }\n            }\n        }\n\n        Component {\n            id: deleteDialog\n            D.DialogWindow {\n                modality: Qt.ApplicationModal\n                width: 380\n                icon: \"preferences-system\"\n                onClosing: destroy(10)\n                ColumnLayout {\n                    width: parent.width\n                    Label {\n                        Layout.fillWidth: true\n                        Layout.leftMargin: 50\n                        Layout.rightMargin: 50\n                        text: qsTr(\"Are you sure you want to delete this configuration?\")\n                        font.bold: true\n                        wrapMode: Text.WordWrap\n                        horizontalAlignment: Text.AlignHCenter\n                    }\n                    RowLayout {\n                        Layout.topMargin: 10\n                        Layout.bottomMargin: 10\n                        Button {\n                            Layout.fillWidth: true\n                            text: qsTr(\"Cancel\")\n                            onClicked: close()\n                        }\n                        Rectangle {\n                            implicitWidth: 2\n                            Layout.fillHeight: true\n                            color: this.palette.button\n                        }\n\n                        Button {\n                            Layout.fillWidth: true\n                            text: qsTr(\"Delete\")\n                            onClicked: {\n                                close()\n                            }\n                        }\n                    }\n                }\n            }\n        }\n        DccObject {\n            // 按钮区域可加个空项处理右对齐问题\n            name: \"spacer\"\n            parentName: root.name + \"/footer\"\n            weight: 20\n            pageType: DccObject.Item\n            page: Item {\n                Layout.fillWidth: true\n            }\n        }\n        DccObject {\n            name: \"cancel\"\n            parentName: root.name + \"/footer\"\n            weight: 30\n            pageType: DccObject.Item\n            page: Button {\n                text: qsTr(\"Cancel\")\n                onClicked: {\n                    DccApp.showPage(root.parentName)\n                }\n            }\n        }\n        DccObject {\n            name: \"save\"\n            parentName: root.name + \"/footer\"\n            weight: 40\n            pageType: DccObject.Item\n            page: Button {\n                text: qsTr(\"Save\")\n                onClicked: {\n                    calcValue = dccData.calc(calcValue, 3)\n                }\n            }\n        }\n        function parseP(msgtext) {\n            const param_reg = /<([^\\]]+)>/\n            const parameters = []\n            let match = msgtext ? msgtext.match(param_reg) : null\n            if (match) {\n                const param = match[1].split(\",\").map(p => p.trim())\n                for (let par of param) {\n                    let num = parseInt(par, 10)\n                    if (!isNaN(num)) {\n                        parameters.push(num)\n                        // parameters.push(par)\n                    }\n                }\n            }\n            return parameters\n        }\n    }\n}\n"
  },
  {
    "path": "examples/plugin-example/qml/ExamplePage3.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\n\nDccSettingsObject {\n    id: root\n    DccRepeater {\n        model: 13\n        delegate: DccObject {\n            name: \"item\" + (index + 1)\n            parentName: root.bodyUrl\n            displayName: qsTr(\"Item\") + (index + 1)\n            weight: 30 + index\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            page: Switch {}\n        }\n    }\n    DccObject {\n        name: \"delete\"\n        parentName: root.footerUrl\n        weight: 10\n        pageType: DccObject.Item\n        page: Button {\n            text: qsTr(\"Delete\")\n        }\n    }\n}\n"
  },
  {
    "path": "examples/plugin-example/src/pluginexample.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"pluginexample.h\"\n\n#include \"dccfactory.h\"\n\nPluginExample::PluginExample(QObject *parent)\n    : QObject(parent)\n    , m_calcType(0)\n{\n}\n\nQString PluginExample::name() const\n{\n    return m_name;\n}\n\nvoid PluginExample::setName(const QString &name)\n{\n    if (m_name != name) {\n        m_name = name;\n        Q_EMIT nameChanged(m_name);\n    }\n}\n\nint PluginExample::calc(int a, int b)\n{\n    switch (m_calcType) {\n    case 0: // +\n        return a + b;\n        break;\n    case 1: // -\n        return a - b;\n        break;\n    case 2: // *\n        return a * b;\n        break;\n    case 3: // /\n        return a / b;\n        break;\n    default:\n        return a + b;\n        break;\n    }\n}\n\nvoid PluginExample::setCalcType(int type)\n{\n    if (m_calcType != type) {\n        m_calcType = type;\n        Q_EMIT calcTypeChanged(m_calcType);\n    }\n}\nDCC_FACTORY_CLASS(PluginExample)// DCC_FACTORY_CLASS在dccfactory.h中定义，用于注册插件,该宏会自动生成PluginExampleFactory类，并实现create函数。PluginExampleFactory类为Qt类，所以需要包含pluginexample.moc\n#include \"pluginexample.moc\"\n"
  },
  {
    "path": "examples/plugin-example/src/pluginexample.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef PLUGINEXAMPLE_H\n#define PLUGINEXAMPLE_H\n\n#include <QObject>\n\nclass PluginExample : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged FINAL)\npublic:\n    explicit PluginExample(QObject *parent = nullptr);\n\n    QString name() const;\n    void setName(const QString &name);\n\n    Q_INVOKABLE int calc(int a, int b);\n\npublic Q_SLOTS:\n    void setCalcType(int type);\n\nQ_SIGNALS:\n    void nameChanged(const QString &name);\n    void calcTypeChanged(int calcType);\n\nprivate:\n    QString m_name;\n    int m_calcType;\n};\n\n#endif // PLUGINEXAMPLE_H\n"
  },
  {
    "path": "examples/plugin-example/translations/example.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_az.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_bo.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_ca.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_es.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_fi.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_fr.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_hu.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_it.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_ja.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_ko.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_nb_NO.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_pl.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_pt_BR.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_ru.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_uk.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_zh_CN.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_zh_HK.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/example_zh_TW.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ignore this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disconnecting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddButtonWidget</name>\n    <message>\n        <source>Add Application</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure all parts of your face are not covered by objects and are clearly visible. Your face should be well-lit as well.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Close</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisInfoDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Try Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AdvancedSettingModule</name>\n    <message>\n        <source>Advanced Setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Audio Framework</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Different audio frameworks have their own advantages and disadvantages, and you can choose the one that best matches you to use</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationInfoItem</name>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationModule</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationPlugin</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth&#xa0;is&#xa0;turned&#xa0;on,&#xa0;and&#xa0;the&#xa0;namcde&#xa0;is&#xa0;displayed&#xa0;as&#xa0;%1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Bluetooth to find nearby devices (speakers, keyboard, mouse)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothModule</name>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth device manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Device crashed, please scan again!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CooperationSettingsDialog</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share mouse and keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share your mouse and keyboard across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share clipboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Storage path for shared files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Share the copied content across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountSpinBox</name>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsModule</name>\n    <message>\n        <source>Users</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login Without Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity Days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AppNotifyWidget</name>\n    <message>\n        <source>Show notifications from %1 on desktop and in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show messages on lockscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show in notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListDialog</name>\n    <message>\n        <source>Person</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListFrame</name>\n    <message>\n        <source>Dimensional Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat Style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::AvatarListView</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BootWidget</name>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Startup Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot, and drag and drop a picture to change the background</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click the option in boot menu to set it as the first boot</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch theme on to view it in boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>GRUB password is required to edit its configuration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change GRUB password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <comment>button</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::BrightnessWidget</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Night Shift</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The screen hue will be auto adjusted according to your location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cool</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Warm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoPlugin</name>\n    <message>\n        <source>General Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CommonInfoWork</name>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CreateAccountPage</name>\n    <message>\n        <source>Group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Policykit authentication failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomAddAvatarWidget</name>\n    <message>\n        <source>You have not uploaded a picture, you can click or drag to upload a picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Uploaded file type is incorrect, please upload again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomContentDialog</name>\n    <message>\n        <source>Add Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomEdit</name>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with %1, click on Add to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomItem</name>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please enter a shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::CustomRegionFormatDialog</name>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DetailInfoItem</name>\n    <message>\n        <source>For more details, visit:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeDialog</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1. Export your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2. Go to https://www.chinauos.com/developMode to download an offline certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3. Import the certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DeveloperModeWidget</name>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer mode enables you to get root privileges, install and run unsigned apps not listed in app store, but your system integrity may also be damaged, please use it carefully.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To make some features effective, a restart is required. Restart now?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Root Access Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DisplayPlugin</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light, resolution, scaling and etc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::DouTestWidget</name>\n    <message>\n        <source>Double-click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralKBSettingWidget</name>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps Lock Prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::GeneralSettingWidget</name>\n    <message>\n        <source>Left Hand</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad while typing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double-click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KBLayoutSettingWidget</name>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardLayoutDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::KeyboardPlugin</name>\n    <message>\n        <source>Keyboard and Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keyboard Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MainWindow</name>\n    <message>\n        <source>Help</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ModifyPasswdPage</name>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password Hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MonitorControlWidget</name>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gather Windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MousePlugin</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>TrackPoint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MouseSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::MultiScreenWidget</name>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Multiple Displays</extra-contents_path>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Mode</extra-contents_path>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Main Scree</extra-contents_path>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::NotificationModule</name>\n    <message>\n        <source>AppNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>SystemNotify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PalmDetectSetting</name>\n    <message>\n        <source>Palm Detection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Contact Surface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minimum Pressure Value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable the option if touchpad doesn&apos;t work after enabled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PlyMouthModule</name>\n    <message>\n        <source>Boot Animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Big Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PrivacyPolicyWidget</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RefreshRateWidget</name>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RegionFormatDialog</name>\n    <message>\n        <source>Region Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First of day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RemoveUserDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ResolutionWidget</name>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resolution</extra-contents_path>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Resize Desktop</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Recommended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::RotateWidget</name>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-contents_path>/display/Rotation</extra-contents_path>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ScalingWidget</name>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecondaryScreenDialog</name>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityLevelItem</name>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SecurityQuestionsPage</name>\n    <message>\n        <source>Security Questions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>These questions will be used to help reset your password in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security question 3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep the answer under 30 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not choose a duplicate question please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please select a question</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the city where you were born?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s the name of the first school you attended?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Who do you love the most in this world?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite animal?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your favorite song?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>What&apos;s your nickname?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SettingsHead</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortCutSettingWidget</name>\n    <message>\n        <source>System Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Assistive Tools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore Defaults</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutContentDialog</name>\n    <message>\n        <source>Please Reset Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This shortcut conflicts with  %1, click on Replace to make this shortcut effective immediately</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::ShortcutItem</name>\n    <message>\n        <source>Enter a new shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModule</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>systemInfo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agreements and Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition License</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1-bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoPlugin</name>\n    <message>\n        <source>System Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: support@uniontech.com.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageSettingDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add System Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemLanguageWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemNotifyWidget</name>\n    <message>\n        <source>Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>System Notifications</extra-child_page>\n        <extra-contents_path>/notification/System Notifications</extra-contents_path>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TimeSlotItem</name>\n    <message>\n        <source>From</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchScreenModule</name>\n    <message>\n        <source>Touch Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select your touch screen when connected or set it here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TouchpadSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable TouchPad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::TrackPointSettingWidget</name>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::UserExperienceProgramWidget</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>User Experience Program</extra-child_page>\n        <extra-contents_path>/commoninfo/User Experience Program</extra-contents_path>\n    </message>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. To know more about the management of your data, please refer to UnionTech OS Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorSourceItem</name>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timeout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::update::MirrorsWidget</name>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Test Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Untested</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retest</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateWidget</name>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModule</name>\n    <message>\n        <source>Time and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppModule</name>\n    <message>\n        <source>Default Applications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefAppPlugin</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersDialog</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.\n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\nPlease be noted that UnionTech Software will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom. \nUnionTech Software is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UnionTech OS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UnionTech OS. \n</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimersItem</name>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockModuleObject</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Alignment</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Align left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage1</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>calc type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>description</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage2</name>\n    <message>\n        <source>calc</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>no Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>group2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>value</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to delete this configuration?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ExamplePage3</name>\n    <message>\n        <source>Item</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceInfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 faces</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FaceidDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerDisclaimer</name>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerInfoWidget</name>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FingerWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 10 fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralModule</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlocking is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HostNameItem</name>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InternalButtonItem</name>\n    <message>\n        <source>Internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click here open the link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisDetailWidget</name>\n    <message>\n        <source>No supported devices found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>IrisWidget</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage Irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can add up to 5 irises</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyLabel</name>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationDesktopModule</name>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Transparency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rounded Corner</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Middle</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationModule</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeList</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeModule</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationThemeWidget</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n        <extra-child_page>General</extra-child_page>\n        <extra-contents_path>/personalization/General</extra-contents_path>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PinCodeDialog</name>\n    <message>\n        <source>The PIN for connecting to the Bluetooth device is:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerModule</name>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery low, please plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery critically low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>, </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Be good to imporving performance, but power consumption and heat generation will increase</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>CPU always works under low frequency, will reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error occurred when reading the configuration files of password rules!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking system versions, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Leave</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionModule</name>\n    <message>\n        <source>Region and Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Country or Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ResultItem</name>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchInput</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModule</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundPlugin</name>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left/Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeSettingModule</name>\n    <message>\n        <source>Time Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeZoneChooser</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneItem</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneModule</name>\n    <message>\n        <source>Timezone List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TreeCombox</name>\n    <message>\n        <source>Collaboration Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnionIDBindReminderDialog</name>\n    <message>\n        <source>The user account is not linked to Union ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To reset passwords, you should authenticate your Union ID first. Click &quot;Go to Link&quot; to finish the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UnknownUpdateItem</name>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateCtrlWidget</name>\n    <message>\n        <source>Check Again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error, failed to detect the updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart the computer to use the system and the applications properly</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network disconnected, please retry after connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is not authorized, please activate first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This update may take a long time, please do not shut down or reboot during the process</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updating...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last checking time: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to pause)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1% downloaded (Click to continue)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your battery is lower than 50%, please plug in to continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please ensure sufficient power to restart, and don&apos;t power off or unplug your machine</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The backup update function is currently disabled. If the upgrade fails, the system cannot be rolled back!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update Now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModel</name>\n    <message>\n        <source>Updates Available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing updates…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update installed successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update download failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Checking for updates, please wait…</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your system is up to date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateModule</name>\n    <message>\n        <source>Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdatePlugin</name>\n    <message>\n        <source>Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingItem</name>\n    <message>\n        <source>Insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed: insufficient disk space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Network error, please check and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Packages error, please try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dependency error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unmet dependencies</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The newest system installed, restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System backup failed, space is full</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Release date: </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateSettingsModule</name>\n    <message>\n        <source>Update Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates Only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to only update security vulnerabilities and compatibility issues</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Check for Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Download Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to automatically download the updates in wireless or wired network</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Install Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backup updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ensuring normal system rollback in case of upgrade failure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear Package Cache</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart Mirror Switch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Switch it on to connect to the quickest mirror site automatically</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mirror List</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Updates from Internal Testing Sources</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>internal update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the internal testing channel to get deepin latest updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install updates automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Install &quot;%1&quot; automatically when the download is complete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWidget</name>\n    <message>\n        <source>Current Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWork</name>\n    <message>\n        <source>An update has been detected.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UpdateWorker</name>\n    <message>\n        <source>System Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fixed some known bugs and security vulnerabilities</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Security Updates</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Third-party Repositories</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It may be unsafe for you to leave the internal testing channel now, do you still want to leave?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your are safe to leave the internal testing channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot find machineid</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot Uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error when exit testingChannel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>try to manually uninstall package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot install package</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseBatteryModule</name>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer will suspend after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UseElectricModule</name>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomModule</name>\n    <message>\n        <source>Drawing Tablet</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::DccRepeater</name>\n    <message>\n        <source>Delegate must be of `DccObject` type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>example</name>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>exampleMain</name>\n    <message>\n        <source>Normal Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings Page</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>main</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>updateControlPanel</name>\n    <message>\n        <source>Downloading </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Waiting </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Installing </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Backing up </source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Learn more</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_az.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_bo.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_ca.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_es.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_fi.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_fr.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_hu.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_it.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_ja.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_ko.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_nb_NO.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_pl.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_pt_BR.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_ru.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_uk.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_zh_CN.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_zh_HK.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_zh_TW.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "include/dccfactory.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCCFACTORY_H\n#define DCCFACTORY_H\n\n#include <QObject>\n\nnamespace dccV25 {\n#define DccFactory_iid \"org.deepin.dde.dcc-factory/v1.0\"\nclass DccObject;\n\nclass DccFactory : public QObject\n{\n    Q_OBJECT\npublic:\n    using QObject::QObject;\n\n    // 作为数据返回，会导出为dccData供main.qml使用\n    virtual QObject *create(QObject * = nullptr) { return nullptr; }\n\n    // 未提供qml的，可在此自己加载qml返回DccObject对象\n    virtual DccObject *dccObject(QObject * = nullptr) { return nullptr; }\n};\n} // namespace dccV25\nQ_DECLARE_INTERFACE(dccV25::DccFactory, DccFactory_iid)\n\n#define DCC_FACTORY_CLASS(classname)                                      \\\n    namespace {                                                           \\\n    class Q_DECL_EXPORT classname##DccFactory : public dccV25::DccFactory \\\n    {                                                                     \\\n        Q_OBJECT                                                          \\\n        Q_PLUGIN_METADATA(IID DccFactory_iid)                             \\\n        Q_INTERFACES(dccV25::DccFactory)                                  \\\n    public:                                                               \\\n        using dccV25::DccFactory::DccFactory;                             \\\n        QObject *create(QObject *parent = nullptr) override               \\\n        {                                                                 \\\n            return new classname(parent);                                 \\\n        }                                                                 \\\n    };                                                                    \\\n    }\n#endif // DCCFACTORY_H\n"
  },
  {
    "path": "misc/DdeControlCenterConfig.cmake.in",
    "content": "@PACKAGE_INIT@\ninclude(CMakeFindDependencyMacro)\ninclude(${CMAKE_CURRENT_LIST_DIR}/DdeControlCenterTargets.cmake)\nset(DDE_CONTROL_CENTER_PLUGIN_VERSION @DCC_PLUGINS_VERSION@)\nset(DDE_CONTROL_CENTER_PLUGIN_DIR @DCC_PLUGINS_DIR@)\nset(DDE_CONTROL_CENTER_PLUGIN_INSTALL_DIR @CMAKE_INSTALL_PREFIX@/@DCC_PLUGINS_INSTALL_DIR@)\nset(DDE_CONTROL_CENTER_TRANSLATION_INSTALL_DIR @CMAKE_INSTALL_PREFIX@/@DCC_TRANSLATION_INSTALL_DIR@)\ninclude(\"${CMAKE_CURRENT_LIST_DIR}/DdeControlCenterPluginMacros.cmake\")\n"
  },
  {
    "path": "misc/DdeControlCenterConfigOld.cmake.in",
    "content": "@PACKAGE_INIT@\ninclude(CMakeFindDependencyMacro)\ninclude(${CMAKE_CURRENT_LIST_DIR}/DdeControlCenterTargets.cmake)\nset(DDE_CONTROL_CENTER_PLUGIN_DIR @DCC_PLUGINS_DIR@)\nset(DDE_CONTROL_CENTER_PLUGIN_INSTALL_DIR @CMAKE_INSTALL_PREFIX@/@DCC_PLUGINS_INSTALL_DIR@)\nset(DDE_CONTROL_CENTER_TRANSLATION_INSTALL_DIR @CMAKE_INSTALL_PREFIX@/@DCC_TRANSLATION_INSTALL_DIR@)\ninclude(\"${CMAKE_CURRENT_LIST_DIR}/DdeControlCenterPluginMacros.cmake\")\n\n# dcc-old\nset_and_check(DdeControlCenter_INCLUDE_DIR \"@PACKAGE_INCLUDE_INSTALL_DIR@\")\nset(DCC_INTERFACE_LIBRARIES dcc-interface)\nset(DCC_WIDGETS_LIBRARIES dcc-widgets)\nset(DCC_MODULE_INSTALL_DIR \"@MODULE_INSTALL_DIR@\")\ncheck_required_components(DdeControlCenter)\n\ninclude(\"${CMAKE_CURRENT_LIST_DIR}/DdeControlCenterInterfaceTargets.cmake\")\ninclude(\"${CMAKE_CURRENT_LIST_DIR}/DdeControlCenterWidgetTargets.cmake\")\n"
  },
  {
    "path": "misc/DdeControlCenterPluginMacros.cmake",
    "content": "cmake_minimum_required(VERSION 3.23)\ninclude(CMakeParseArguments)\n\nfunction(dcc_to_capitalized_string input_string output_variable)\n    if(NOT input_string STREQUAL \"\")\n        string(SUBSTRING ${input_string} 0 1 first_char)\n        string(SUBSTRING ${input_string} 1 -1 rest_chars)\n        string(TOUPPER ${first_char} capitalized_first_char)\n        set(result \"${capitalized_first_char}${rest_chars}\")\n    else()\n        set(result \"\")\n    endif()\n    set(${output_variable} ${result} PARENT_SCOPE)\nendfunction()\n\nmacro(dcc_build_plugin)\n    set(oneValueArgs NAME TARGET QML_ROOT_DIR)\n    set(multiValueArgs QML_FILES RESOURCE_FILES)\n    set(QML_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/qml)\n    find_package(Qt6 COMPONENTS Qml)\n    cmake_parse_arguments(_config \"${options}\" \"${oneValueArgs}\" \"${multiValueArgs}\" ${ARGN})\n\n    if(NOT \"${_config_NAME}\" MATCHES \"^[A-Za-z0-9]+$\")\n        message(FATAL_ERROR \"Error: The name '${_config_NAME}' contains invalid characters. Only alphanumeric characters are allowed.\")\n    endif()\n\n    if (DEFINED _config_QML_ROOT_DIR)\n        set(QML_ROOT_DIR ${_config_QML_ROOT_DIR})\n    endif()\n\n\n    if(NOT _config_QML_FILES)\n        file(GLOB_RECURSE _config_QML_FILES ${QML_ROOT_DIR}/*.qml ${QML_ROOT_DIR}/*.js)\n    endif()\n\n    if(NOT _config_RESOURCE_FILES)\n        file(GLOB_RECURSE _config_RESOURCE_FILES ${QML_ROOT_DIR}/*.dci ${QML_ROOT_DIR}/*.svg ${QML_ROOT_DIR}/*.png ${QML_ROOT_DIR}/*.jpg ${QML_ROOT_DIR}/*.webp)\n    endif()\n\n    set(plugin_dirs ${PROJECT_BINARY_DIR}/lib/${DDE_CONTROL_CENTER_PLUGIN_DIR}/${_config_NAME}/)\n    foreach(FILE_PATH ${_config_QML_FILES})\n        file(RELATIVE_PATH FILE_NAME ${CMAKE_CURRENT_SOURCE_DIR} ${FILE_PATH})\n        list(APPEND QML_PATHS ${FILE_NAME})\n\n        file(RELATIVE_PATH F_NAME ${QML_ROOT_DIR} ${FILE_PATH})\n\n        if(${F_NAME} STREQUAL \"main.qml\")\n            dcc_to_capitalized_string(${_config_NAME} UPPERNAME)\n            message(FATAL_ERROR \"Error: The filename '${F_NAME}' is deprecated. Please rename it to ${UPPERNAME}Main.qml. path:${FILE_PATH}\")\n        endif()\n        if(NOT \"${F_NAME}\" MATCHES \"^[A-Z]\")\n           dcc_to_capitalized_string(${F_NAME} UPPERNAME)\n           message(FATAL_ERROR \"Error: The filename '${F_NAME}' must start with an uppercase letter. Please rename it to ${UPPERNAME}. path:${FILE_PATH}\")\n        endif()\n\n        set_source_files_properties(${FILE_NAME} PROPERTIES\n            QT_RESOURCE_ALIAS ${F_NAME}\n        )\n    endforeach(FILE_PATH)\n\n    foreach(FILE_PATH ${_config_RESOURCE_FILES})\n        file(RELATIVE_PATH FILE_NAME ${CMAKE_CURRENT_SOURCE_DIR} ${FILE_PATH})\n        list(APPEND RESOURCE_PATHS ${FILE_NAME})\n\n        file(RELATIVE_PATH F_NAME ${QML_ROOT_DIR} ${FILE_PATH})\n        set_source_files_properties(${FILE_NAME} PROPERTIES\n            QT_RESOURCE_ALIAS ${F_NAME}\n        )\n    endforeach(FILE_PATH)\n    qt_policy(SET QTP0001 NEW)\n    qt_policy(SET QTP0004 NEW)\n    cmake_policy(SET CMP0071 NEW)\n    qt_add_qml_module(${_config_NAME}_qml\n        PLUGIN_TARGET ${_config_NAME}_qml\n        URI ${_config_NAME}\n        VERSION 1.0\n        QML_FILES ${QML_PATHS}\n        RESOURCES ${RESOURCE_PATHS}\n        OUTPUT_DIRECTORY ${plugin_dirs}\n    )\n    install(TARGETS ${_config_NAME}_qml DESTINATION ${DDE_CONTROL_CENTER_PLUGIN_INSTALL_DIR}/${_config_NAME})\n    install(FILES ${plugin_dirs}/qmldir DESTINATION ${DDE_CONTROL_CENTER_PLUGIN_INSTALL_DIR}/${_config_NAME})\n\n    if (DEFINED _config_TARGET)\n        set_target_properties(${_config_TARGET} PROPERTIES\n            PREFIX \"\"\n            OUTPUT_NAME ${_config_NAME}\n            LIBRARY_OUTPUT_DIRECTORY ${plugin_dirs}\n        )\n        # avoid warning when `DCC_FACTORY_CLASS` used in .cpp\n        set_property(TARGET ${_config_TARGET} APPEND PROPERTY AUTOMOC_MACRO_NAMES \"DCC_FACTORY_CLASS\")\n    endif()\nendmacro()\n\nfunction(dcc_install_plugin)\n    dcc_build_plugin(${ARGN})\n    if (DEFINED _config_TARGET)\n        install(TARGETS ${_config_TARGET} DESTINATION ${DDE_CONTROL_CENTER_PLUGIN_INSTALL_DIR}/${_config_NAME})\n    endif()\n\nendfunction()\n\nfunction(dcc_handle_plugin_translation)\n    set(oneValueArgs NAME SOURCE_DIR)\n    set(multiValueArgs QML_FILES SOURCE_FILES )\n    cmake_parse_arguments(_config \"${options}\" \"${oneValueArgs}\" \"${multiValueArgs}\" ${ARGN})\n\n    if(NOT _config_SOURCE_DIR)\n        set(_config_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})\n    endif()\n\n    if(NOT _config_QML_FILES)\n        file(GLOB_RECURSE _config_QML_FILES ${_config_SOURCE_DIR}/*.qml ${_config_SOURCE_DIR}/*.js)\n    endif()\n\n    if(NOT _config_SOURCE_FILES)\n        file(GLOB_RECURSE _config_SOURCE_FILES ${_config_SOURCE_DIR}/*.cpp ${_config_SOURCE_DIR}/*.h)\n    endif()\n\n    file(GLOB TRANSLATION_FILES ${_config_SOURCE_DIR}/translations/${_config_NAME}_*.ts)\n    if( NOT TRANSLATION_FILES)\n        set(TRANSLATION_FILES\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_en.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_en_US.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_az.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_bo.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_ca.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_es.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_fi.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_fr.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_hu.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_it.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_ja.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_ko.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_nb_NO.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_pl.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_pt_BR.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_ru.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_uk.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_zh_CN.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_zh_HK.ts\n            ${_config_SOURCE_DIR}/translations/${_config_NAME}_zh_TW.ts\n        )\n    endif()\n\n    # set(plugin_dirs ${PROJECT_BINARY_DIR}/plugins/${_config_NAME}/)\n\n    # FIXME: not working on Qt 6.7\n    # set_source_files_properties(${TRANSLATION_FILES}\n    #     PROPERTIES OUTPUT_LOCATION \"${plugin_dirs}/translations\"\n    # )\n\n    add_custom_target(${_config_NAME}_translation ALL\n        SOURCES ${TRANSLATION_FILES}\n    )\n    qt_add_translations(${_config_NAME}_translation\n        TS_FILES ${TRANSLATION_FILES}\n        SOURCES ${_config_QML_FILES} ${_config_SOURCE_FILES}\n        LUPDATE_OPTIONS -no-obsolete -no-ui-lines -locations none\n        QM_FILES_OUTPUT_VARIABLE TRANSLATED_FILES\n    )\n    # /usr/share/dde-control-center/translations/xxx.qm\n    file(GLOB QM_FILES  \"${CMAKE_CURRENT_BINARY_DIR}/*.qm\")\n    list(APPEND QM_FILES ${TRANSLATED_FILES})\n    install(FILES ${QM_FILES} DESTINATION ${DDE_CONTROL_CENTER_TRANSLATION_INSTALL_DIR})\nendfunction()\n"
  },
  {
    "path": "misc/configs/common/org.deepin.region-format.json",
    "content": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"country\": {\n            \"value\": \"\",\n            \"serial\": 0,\n            \"flags\": [\"user-public\"],\n            \"name\": \"country\",\n            \"name[zh_CN]\": \"国家/地区\",\n            \"description\": \"config country\",\n            \"description[zh_CN]\": \"配置国家/地区\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"languageRegion\": {\n            \"value\": \"\",\n            \"serial\": 0,\n            \"flags\": [\"user-public\"],\n            \"name\": \"language and region\",\n            \"name[zh_CN]\": \"语言和区域\",\n            \"description\": \"config language and region\",\n            \"description[zh_CN]\": \"配置语言和区域\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"localeName\": {\n            \"value\": \"\",\n            \"serial\": 0,\n            \"flags\": [\"user-public\"],\n            \"name\": \"language[_script][_country][.codeset][@modifier]\",\n            \"name[zh_CN]\": \"本地\",\n            \"description\": \"config locale name\",\n            \"description[zh_CN]\": \"配置本地\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"firstDayOfWeek\": {\n            \"value\": 0,\n            \"serial\": 0,\n            \"flags\": [\"user-public\"],\n            \"name\": \"First day of week\",\n            \"name[zh_CN]\": \"一周第一天\",\n            \"description\": \"config region format first day of week\",\n            \"description[zh_CN]\": \"配置区域格式一周第一天\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"shortDateFormat\": {\n            \"value\": \"\",\n            \"serial\": 0,\n            \"flags\": [\"user-public\"],\n            \"name\": \"short date format\",\n            \"name[zh_CN]\": \"短日期格式\",\n            \"description\": \"config region format short date\",\n            \"description[zh_CN]\": \"配置区域格式短日期格式\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"longDateFormat\": {\n            \"value\": \"\",\n            \"serial\": 0,\n            \"flags\": [\"user-public\"],\n            \"name\": \"long date format\",\n            \"name[zh_CN]\": \"长日期格式\",\n            \"description\": \"config region format long date\",\n            \"description[zh_CN]\": \"配置区域格式长日期格式\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"shortTimeFormat\": {\n            \"value\": \"\",\n            \"serial\": 0,\n            \"flags\": [\"user-public\"],\n            \"name\": \"short time format\",\n            \"name[zh_CN]\": \"短时间格式\",\n            \"description\": \"config region format short time\",\n            \"description[zh_CN]\": \"配置区域格式短时间格式\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"longTimeFormat\": {\n            \"value\": \"\",\n            \"serial\": 0,\n            \"flags\": [\"user-public\"],\n            \"name\": \"long time\",\n            \"name[zh_CN]\": \"长时间格式\",\n            \"description\": \"config region format long time\",\n            \"description[zh_CN]\": \"配置区域格式长时间格式\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"currencyFormat\": {\n            \"value\": \"\",\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"currency symbol\",\n            \"name[zh_CN]\": \"货币符号\",\n            \"description\": \"config region format currency symbol\",\n            \"description[zh_CN]\": \"配置区域货币符号\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"numberFormat\": {\n            \"value\": \"\",\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"number format\",\n            \"name[zh_CN]\": \"数字格式\",\n            \"description\": \"config region format number format\",\n            \"description[zh_CN]\": \"配置区域格式数字格式\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"paperFormat\": {\n            \"value\": \"\",\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"paper format\",\n            \"name[zh_CN]\": \"纸张格式\",\n            \"description\": \"config region format paper format\",\n            \"description[zh_CN]\": \"配置区域格式纸张格式\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        }\n    }\n  }\n"
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.accounts.json",
    "content": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"avatarPath\": {\n            \"value\": \"\",\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"avatarPath\",\n            \"name[zh_CN]\": \"图像路径\",\n            \"description\": \"config accounts avatar path\",\n            \"description[zh_CN]\": \"控制中心账户图像路径配置\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        }\n    }\n  }"
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.commoninfo.json",
    "content": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"showReadOnlyProtection\": {\n            \"value\": true,\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"show read-only protection\",\n            \"name[zh_CN]\": \"显示只读保护\",\n            \"description\": \"Whether to show the read-only protection option in the developer mode\",\n            \"description[zh_CN]\": \"是否在开发者模式中显示只读保护选项\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"bootWallpaperEnabled\": {\n            \"value\": true,\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"edit boot wallpaper\",\n            \"name[zh_CN]\": \"拖拽图片改变背景\",\n            \"description\": \"Is the GRUB \\\"boot menu\\\" wallpaper editable?\",\n            \"description[zh_CN]\": \"\\\"启动菜单\\\"grub背景图片可否编辑\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"bootGrubUserNameVisible\": {\n            \"value\": true,\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"boot grub userName visible\",\n            \"name[zh_CN]\": \"显示用户名\",\n            \"description\": \"Whether to show the username in the verification password pop-up window of \\\"Startup Menu Verification\\\"\",\n            \"description[zh_CN]\": \"是否在\\\"启动菜单验证\\\"的验证密码弹窗中显示用户名\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        }\n    }\n}\n"
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.datetime.json",
    "content": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"customNtpServer\": {\n            \"value\": \"\",\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"custom NTP server\",\n            \"name[zh_CN]\": \"自定义NTP服务器\",\n            \"description\": \"custom NTP server address for time synchronization\",\n            \"description[zh_CN]\": \"用于时间同步的自定义NTP服务器地址\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        }\n    }\n}\n"
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.display.json",
    "content": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"minBrightnessValue\": {\n            \"value\": 0.1,\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"minBrightnessValue\",\n            \"name[zh_CN]\": \"亮度调节最小值\",\n            \"description\": \"config brightness min value\",\n            \"description[zh_CN]\": \"控制中心显示亮度调节最小值\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        }\n    }\n}"
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.json",
    "content": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"width\": {\n            \"value\": 800,\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"width\",\n            \"name[zh_CN]\": \"宽度\",\n            \"description\": \"config dde-control-center width\",\n            \"description[zh_CN]\": \"控制中心宽度配置\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"height\": {\n            \"value\": 600,\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"height\",\n            \"name[zh_CN]\": \"高度\",\n            \"description\": \"config dde-control-center height\",\n            \"description[zh_CN]\": \"控制中心高度配置\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"sidebarWidth\": {\n            \"value\": -1,\n            \"serial\": 0,\n            \"flags\": true,\n            \"name\": \"sidebarWidth\",\n            \"name[zh_CN]\": \"侧边栏宽度\",\n            \"description\": \"config dde-control-center sidebar width\",\n            \"description[zh_CN]\": \"控制中心侧边栏宽度\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"hideModule\": {\n            \"value\": [],\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"hide module\",\n            \"name[zh_CN]\": \"隐藏模块\",\n            \"description\": \"config dde-control-center hide module\",\n            \"description[zh_CN]\": \"控制中心隐藏模块配置\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        },\n        \"disableModule\": {\n            \"value\": [],\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"disable module\",\n            \"name[zh_CN]\": \"禁用模块\",\n            \"description\": \"config dde-control-center disable module\",\n            \"description[zh_CN]\": \"控制中心禁用模块配置\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        }\n    }\n  }\n"
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.personalization.json",
    "content": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"hideIconThemes\": {\n            \"value\": [\"Papirus\", \"Papirus-Dark\", \"Papirus-Light\", \"ePapirus\", \"ePapirus-Dark\"],\n            \"serial\": 0,\n            \"flags\": [\"global\"],\n            \"name\": \"hide icon theme\",\n            \"name[zh_CN]\": \"隐藏图标主题\",\n            \"description[zh_CN]\": \"配置需要隐藏的图标主题\",\n            \"description\": \"Configure icon themes that need to be hidden\",\n            \"permissions\": \"readonly\",\n            \"visibility\": \"public\"\n        },\n        \"titleBarHeightStatus\": {\n            \"value\": \"Enabled\",\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"titleBarHeightStatus\",\n            \"name[zh_CN]\": \"标题栏高度的状态\",\n            \"description[zh_CN]\": \"标题栏高度的状态\",\n            \"description\": \"\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"private\"\n        },\n        \"titleBarHeightSupportCompactDisplay\": {\n            \"value\": true,\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"titleBarHeightSupportCompactDisplay\",\n            \"name[zh_CN]\": \"标题栏高度是否支持紧凑模式\",\n            \"description[zh_CN]\": \"标题栏高度是否支持紧凑模式，默认为是。开启配置时，开/关紧凑模式标题栏高度减/增一档。关闭配置时，标题栏高度不联动。当用户手动设置过一次标题栏高度后，会关闭配置。\",\n            \"description\": \"\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"private\"\n        },\n        \"scrollbarPolicyStatus\": {\n            \"value\": \"Enabled\",\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"scrollbarPolicyStatus\",\n            \"name[zh_CN]\": \"滚动条显示策略的状态\",\n            \"description[zh_CN]\": \"滚动条显示策略的状态\",\n            \"description\": \"\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"private\"\n        },\n        \"compactDisplayStatus\": {\n            \"value\": \"Enabled\",\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"compactDisplayStatus\",\n            \"name[zh_CN]\": \"紧凑模式的状态\",\n            \"description[zh_CN]\": \"紧凑模式的状态\",\n            \"description\": \"\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"private\"\n        }\n    }    \n}\n"
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.power.json",
    "content": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"linePowerScreenBlackDelay\": {\n            \"value\": [\"1m\",\"5m\",\"10m\",\"15m\",\"30m\",\"1h\"],\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"Control-center_LinePowerScreenBlackDelay\",\n            \"name[zh_CN]\": \"使用电源-关闭显示器\",\n            \"description[zh_CN]\": \"此配置用于设置插入电源关闭显示器的时间\",\n            \"description\": \"\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"private\"\n        },\n        \"linePowerSleepDelay\": {\n            \"value\": [\"10m\",\"15m\",\"30m\",\"1h\",\"2h\",\"3h\"],\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"Control-center_LinePowerSleepDelay\",\n            \"name[zh_CN]\": \"使用电源-进入待机时间\",\n            \"description[zh_CN]\": \"此配置用于设置插入电源进入待机的时间\",\n            \"description\": \"\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"private\"\n        },\n        \"linePowerLockDelay\": {\n                \"value\": [\"1m\",\"5m\",\"10m\",\"15m\",\"30m\",\"1h\"],\n                \"serial\": 0,\n                \"flags\": [],\n                \"name\": \"Control-center_LinePowerLockDelay\",\n                \"name[zh_CN]\": \"使用电源-自动锁屏时间\",\n                \"description[zh_CN]\": \"此配置用于设置插入电源自动锁屏的时间\",\n                \"description\": \"\",\n                \"permissions\": \"readwrite\",\n                \"visibility\": \"private\"\n        },\n\t    \"batteryScreenBlackDelay\": {\n            \"value\": [\"1m\",\"5m\",\"10m\",\"15m\",\"30m\",\"1h\"],\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"Control-center_BatteryScreenBlackDelay\",\n            \"name[zh_CN]\": \"使用电池-关闭显示器\",\n            \"description[zh_CN]\": \"此配置用于设置使用电池关闭显示器的时间\",\n            \"description\": \"\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"private\"\n        },\n        \"batterySleepDelay\": {\n            \"value\": [\"10m\",\"15m\",\"30m\",\"1h\",\"2h\",\"3h\"],\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"Control-center_BatterySleepDelay\",\n            \"name[zh_CN]\": \"使用电池-进入待机时间\",\n            \"description[zh_CN]\": \"此配置用于设置使用电池进入待机的时间\",\n            \"description\": \"\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"private\"\n        },\n        \"batteryLockDelay\": {\n            \"value\": [\"1m\",\"5m\",\"10m\",\"15m\",\"30m\",\"1h\"],\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"Control-center_BatteryLockDelay\",\n            \"name[zh_CN]\": \"使用电池-自动锁屏时间\",\n            \"description[zh_CN]\": \"此配置用于设置使用电池自动锁屏的时间\",\n            \"description\": \"\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"private\"\n        },\n        \"showHibernate\": {\n            \"value\": true,\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"show hibernate\",\n            \"name[zh_CN]\": \"下拉框显示休眠选项\",\n            \"description[zh_CN]\": \"笔记本合盖或按下电源键的下拉框中是否显示休眠\",\n            \"description\": \"\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"private\"\n        },\n        \"showShutdown\": {\n            \"value\": true,\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"show shutdown\",\n            \"name[zh_CN]\": \"下拉框显示关机选项\",\n            \"description[zh_CN]\": \"笔记本合盖或按下电源键的下拉框中是否显示关机\",\n            \"description\": \"\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"private\"\n        },\n        \"showSuspend\": {\n            \"value\": true,\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"show suspend\",\n            \"name[zh_CN]\": \"下拉框显示待机选项\",\n            \"description[zh_CN]\": \"笔记本合盖或按下电源键的下拉框中是否显示待机\",\n            \"description\": \"\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"private\"\n        },\n        \"enableScheduledShutdown\": {\n            \"value\": \"Enabled\",\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"enableScheduledShutdown\",\n            \"name[zh_CN]\": \"定时关机\",\n            \"description[zh_CN]\": \"\",\n            \"description\": \"控制中心-电源管理-关机设置中`定时关机`的显示状态 \\n 值为 Enabled 时在控制中心正常显示 \\n 值为 Disabled 时在控制中心显示禁用状态 \\n 值为 Hidden 时不在控制中心显示\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"private\"\n        }\n    }\n}\n\n"
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.sound.json",
    "content": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"showDeviceManager\": {\n            \"value\": true,\n            \"serial\": 0,\n            \"flags\": [],\n            \"name\": \"Whether to display device management\",\n            \"name[zh_CN]\": \"是否显示设备管理\",\n            \"description\": \"Whether to display device management, mainly to enable automatic port switching for use\",\n            \"description[zh_CN]\": \"是否显示设备管理，主要是开启端口自动切换使用\",\n            \"permissions\": \"readwrite\",\n            \"visibility\": \"public\"\n        }\n    }\n}\n"
  },
  {
    "path": "misc/deepin-debug-config/org.deepin.dde.control-center.json",
    "content": "{\n    \"name\": \"dde-control-center\",\n    \"group\": \"dde\",\n    \"submodules\": [\n        {\n            \"name\": \"org.deepin.dde.control-center\",\n            \"exec\": \"org.deepin.dde.control-center.sh\"\n        }\n    ],\n    \"version\": \"V1.0\"\n}\n"
  },
  {
    "path": "misc/deepin-log-config/org.deepin.dde.control-center.json",
    "content": "{\n    \"name\": \"dde-control-center\",\n    \"group\": \"dde\",\n    \"submodules\": [\n        {\n            \"name\": \"control-center.app\",\n            \"filter\": \"org.deepin.dde.control-center.app\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.accounts\",\n            \"filter\": \"org.deepin.dde.control-center.accounts\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.bluetooth\",\n            \"filter\": \"org.deepin.dde.control-center.bluetooth\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.datetime\",\n            \"filter\": \"org.deepin.dde.control-center.datetime\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.defaultapp\",\n            \"filter\": \"org.deepin.dde.control-center.defaultapp\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.display\",\n            \"filter\": \"org.deepin.dde.control-center.display\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.keyboard\",\n            \"filter\": \"org.deepin.dde.control-center.keyboard\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.mouse\",\n            \"filter\": \"org.deepin.dde.control-center.mouse\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.notification\",\n            \"filter\": \"org.deepin.dde.control-center.notification\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.personalization\",\n            \"filter\": \"org.deepin.dde.control-center.personalization\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.power\",\n            \"filter\": \"org.deepin.dde.control-center.power\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.privacy\",\n            \"filter\": \"org.deepin.dde.control-center.privacy\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.sound\",\n            \"filter\": \"org.deepin.dde.control-center.sound\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.cloudsync\",\n            \"filter\": \"org.deepin.dde.control-center.cloudsync\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.systeminfo\",\n            \"filter\": \"org.deepin.dde.control-center.systeminfo\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.\",\n            \"filter\": \"org.deepin.dde.control-center.\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.commoninfo\",\n            \"filter\": \"org.deepin.dde.control-center.commoninfo\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        },\n        {\n            \"name\": \"control-center.update\",\n            \"filter\": \"org.deepin.dde.control-center.update\",\n            \"exec\": \"/usr/bin/dde-control-center\",\n            \"logType\": \"journal\"\n        }\n    ],\n    \"visible\": 1,\n    \"version\": \"V1.0\"\n}\n"
  },
  {
    "path": "misc/developdocument.html",
    "content": "<!doctype html>\n<html>\n<head>\n<meta charset='UTF-8'><meta name='viewport' content='width=device-width initial-scale=1'>\n\n<link href='https://fonts.loli.net/css?family=Open+Sans:400italic,700italic,700,400&subset=latin,latin-ext' rel='stylesheet' type='text/css' /><style type='text/css'>html {overflow-x: initial !important;}:root { --bg-color:#ffffff; --text-color:#333333; --select-text-bg-color:#B5D6FC; --select-text-font-color:auto; --monospace:\"Lucida Console\",Consolas,\"Courier\",monospace; --title-bar-height:20px; }\n.mac-os-11 { --title-bar-height:28px; }\nhtml { font-size: 14px; background-color: var(--bg-color); color: var(--text-color); font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; }\nbody { margin: 0px; padding: 0px; height: auto; inset: 0px; font-size: 1rem; line-height: 1.42857; overflow-x: hidden; background: inherit; tab-size: 4; }\niframe { margin: auto; }\na.url { word-break: break-all; }\na:active, a:hover { outline: 0px; }\n.in-text-selection, ::selection { text-shadow: none; background: var(--select-text-bg-color); color: var(--select-text-font-color); }\n#write { margin: 0px auto; height: auto; width: inherit; word-break: normal; overflow-wrap: break-word; position: relative; white-space: normal; overflow-x: visible; padding-top: 36px; }\n#write.first-line-indent p { text-indent: 2em; }\n#write.first-line-indent li p, #write.first-line-indent p * { text-indent: 0px; }\n#write.first-line-indent li { margin-left: 2em; }\n.for-image #write { padding-left: 8px; padding-right: 8px; }\nbody.typora-export { padding-left: 30px; padding-right: 30px; }\n.typora-export .footnote-line, .typora-export li, .typora-export p { white-space: pre-wrap; }\n.typora-export .task-list-item input { pointer-events: none; }\n@media screen and (max-width: 500px) {\n  body.typora-export { padding-left: 0px; padding-right: 0px; }\n  #write { padding-left: 20px; padding-right: 20px; }\n  .CodeMirror-sizer { margin-left: 0px !important; }\n  .CodeMirror-gutters { display: none !important; }\n}\n#write li > figure:last-child { margin-bottom: 0.5rem; }\n#write ol, #write ul { position: relative; }\nimg { max-width: 100%; vertical-align: middle; image-orientation: from-image; }\nbutton, input, select, textarea { color: inherit; font: inherit; }\ninput[type=\"checkbox\"], input[type=\"radio\"] { line-height: normal; padding: 0px; }\n*, ::after, ::before { box-sizing: border-box; }\n#write h1, #write h2, #write h3, #write h4, #write h5, #write h6, #write p, #write pre { width: inherit; }\n#write h1, #write h2, #write h3, #write h4, #write h5, #write h6, #write p { position: relative; }\np { line-height: inherit; }\nh1, h2, h3, h4, h5, h6 { break-after: avoid-page; break-inside: avoid; orphans: 4; }\np { orphans: 4; }\nh1 { font-size: 2rem; }\nh2 { font-size: 1.8rem; }\nh3 { font-size: 1.6rem; }\nh4 { font-size: 1.4rem; }\nh5 { font-size: 1.2rem; }\nh6 { font-size: 1rem; }\n.md-math-block, .md-rawblock, h1, h2, h3, h4, h5, h6, p { margin-top: 1rem; margin-bottom: 1rem; }\n.hidden { display: none; }\n.md-blockmeta { color: rgb(204, 204, 204); font-weight: 700; font-style: italic; }\na { cursor: pointer; }\nsup.md-footnote { padding: 2px 4px; background-color: rgba(238, 238, 238, 0.7); color: rgb(85, 85, 85); border-radius: 4px; cursor: pointer; }\nsup.md-footnote a, sup.md-footnote a:hover { color: inherit; text-transform: inherit; text-decoration: inherit; }\n#write input[type=\"checkbox\"] { cursor: pointer; width: inherit; height: inherit; }\nfigure { overflow-x: auto; margin: 1.2em 0px; max-width: calc(100% + 16px); padding: 0px; }\nfigure > table { margin: 0px; }\ntr { break-inside: avoid; break-after: auto; }\nthead { display: table-header-group; }\ntable { border-collapse: collapse; border-spacing: 0px; width: 100%; overflow: auto; break-inside: auto; text-align: left; }\ntable.md-table td { min-width: 32px; }\n.CodeMirror-gutters { border-right: 0px; background-color: inherit; }\n.CodeMirror-linenumber { user-select: none; }\n.CodeMirror { text-align: left; }\n.CodeMirror-placeholder { opacity: 0.3; }\n.CodeMirror pre { padding: 0px 4px; }\n.CodeMirror-lines { padding: 0px; }\ndiv.hr:focus { cursor: none; }\n#write pre { white-space: pre-wrap; }\n#write.fences-no-line-wrapping pre { white-space: pre; }\n#write pre.ty-contain-cm { white-space: normal; }\n.CodeMirror-gutters { margin-right: 4px; }\n.md-fences { font-size: 0.9rem; display: block; break-inside: avoid; text-align: left; overflow: visible; white-space: pre; background: inherit; position: relative !important; }\n.md-fences-adv-panel { width: 100%; margin-top: 10px; text-align: center; padding-top: 0px; padding-bottom: 8px; overflow-x: auto; }\n#write .md-fences.mock-cm { white-space: pre-wrap; }\n.md-fences.md-fences-with-lineno { padding-left: 0px; }\n#write.fences-no-line-wrapping .md-fences.mock-cm { white-space: pre; overflow-x: auto; }\n.md-fences.mock-cm.md-fences-with-lineno { padding-left: 8px; }\n.CodeMirror-line, twitterwidget { break-inside: avoid; }\n.footnotes { opacity: 0.8; font-size: 0.9rem; margin-top: 1em; margin-bottom: 1em; }\n.footnotes + .footnotes { margin-top: 0px; }\n.md-reset { margin: 0px; padding: 0px; border: 0px; outline: 0px; vertical-align: top; background: 0px 0px; text-decoration: none; text-shadow: none; float: none; position: static; width: auto; height: auto; white-space: nowrap; cursor: inherit; -webkit-tap-highlight-color: transparent; line-height: normal; font-weight: 400; text-align: left; box-sizing: content-box; direction: ltr; }\nli div { padding-top: 0px; }\nblockquote { margin: 1rem 0px; }\nli .mathjax-block, li p { margin: 0.5rem 0px; }\nli blockquote { margin: 1rem 0px; }\nli { margin: 0px; position: relative; }\nblockquote > :last-child { margin-bottom: 0px; }\nblockquote > :first-child, li > :first-child { margin-top: 0px; }\n.footnotes-area { color: rgb(136, 136, 136); margin-top: 0.714rem; padding-bottom: 0.143rem; white-space: normal; }\n#write .footnote-line { white-space: pre-wrap; }\n@media print {\n  body, html { border: 1px solid transparent; height: 99%; break-after: avoid; break-before: avoid; font-variant-ligatures: no-common-ligatures; }\n  #write { margin-top: 0px; padding-top: 0px; border-color: transparent !important; }\n  .typora-export * { -webkit-print-color-adjust: exact; }\n  .typora-export #write { break-after: avoid; }\n  .typora-export #write::after { height: 0px; }\n  .is-mac table { break-inside: avoid; }\n  .typora-export-show-outline .typora-export-sidebar { display: none; }\n}\n.footnote-line { margin-top: 0.714em; font-size: 0.7em; }\na img, img a { cursor: pointer; }\npre.md-meta-block { font-size: 0.8rem; min-height: 0.8rem; white-space: pre-wrap; background: rgb(204, 204, 204); display: block; overflow-x: hidden; }\np > .md-image:only-child:not(.md-img-error) img, p > img:only-child { display: block; margin: auto; }\n#write.first-line-indent p > .md-image:only-child:not(.md-img-error) img { left: -2em; position: relative; }\np > .md-image:only-child { display: inline-block; width: 100%; }\n#write .MathJax_Display { margin: 0.8em 0px 0px; }\n.md-math-block { width: 100%; }\n.md-math-block:not(:empty)::after { display: none; }\n.MathJax_ref { fill: currentcolor; }\n[contenteditable=\"true\"]:active, [contenteditable=\"true\"]:focus, [contenteditable=\"false\"]:active, [contenteditable=\"false\"]:focus { outline: 0px; box-shadow: none; }\n.md-task-list-item { position: relative; list-style-type: none; }\n.task-list-item.md-task-list-item { padding-left: 0px; }\n.md-task-list-item > input { position: absolute; top: 0px; left: 0px; margin-left: -1.2em; margin-top: calc(1em - 10px); border: none; }\n.math { font-size: 1rem; }\n.md-toc { min-height: 3.58rem; position: relative; font-size: 0.9rem; border-radius: 10px; }\n.md-toc-content { position: relative; margin-left: 0px; }\n.md-toc-content::after, .md-toc::after { display: none; }\n.md-toc-item { display: block; color: rgb(65, 131, 196); }\n.md-toc-item a { text-decoration: none; }\n.md-toc-inner:hover { text-decoration: underline; }\n.md-toc-inner { display: inline-block; cursor: pointer; }\n.md-toc-h1 .md-toc-inner { margin-left: 0px; font-weight: 700; }\n.md-toc-h2 .md-toc-inner { margin-left: 2em; }\n.md-toc-h3 .md-toc-inner { margin-left: 4em; }\n.md-toc-h4 .md-toc-inner { margin-left: 6em; }\n.md-toc-h5 .md-toc-inner { margin-left: 8em; }\n.md-toc-h6 .md-toc-inner { margin-left: 10em; }\n@media screen and (max-width: 48em) {\n  .md-toc-h3 .md-toc-inner { margin-left: 3.5em; }\n  .md-toc-h4 .md-toc-inner { margin-left: 5em; }\n  .md-toc-h5 .md-toc-inner { margin-left: 6.5em; }\n  .md-toc-h6 .md-toc-inner { margin-left: 8em; }\n}\na.md-toc-inner { font-size: inherit; font-style: inherit; font-weight: inherit; line-height: inherit; }\n.footnote-line a:not(.reversefootnote) { color: inherit; }\n.md-attr { display: none; }\n.md-fn-count::after { content: \".\"; }\ncode, pre, samp, tt { font-family: var(--monospace); }\nkbd { margin: 0px 0.1em; padding: 0.1em 0.6em; font-size: 0.8em; color: rgb(36, 39, 41); background: rgb(255, 255, 255); border: 1px solid rgb(173, 179, 185); border-radius: 3px; box-shadow: rgba(12, 13, 14, 0.2) 0px 1px 0px, rgb(255, 255, 255) 0px 0px 0px 2px inset; white-space: nowrap; vertical-align: middle; }\n.md-comment { color: rgb(162, 127, 3); opacity: 0.6; font-family: var(--monospace); }\ncode { text-align: left; vertical-align: initial; }\na.md-print-anchor { white-space: pre !important; border-width: initial !important; border-style: none !important; border-color: initial !important; display: inline-block !important; position: absolute !important; width: 1px !important; right: 0px !important; outline: 0px !important; background: 0px 0px !important; text-decoration: initial !important; text-shadow: initial !important; }\n.os-windows.monocolor-emoji .md-emoji { font-family: \"Segoe UI Symbol\", sans-serif; }\n.md-diagram-panel > svg { max-width: 100%; }\n[lang=\"flow\"] svg, [lang=\"mermaid\"] svg { max-width: 100%; height: auto; }\n[lang=\"mermaid\"] .node text { font-size: 1rem; }\ntable tr th { border-bottom: 0px; }\nvideo { max-width: 100%; display: block; margin: 0px auto; }\niframe { max-width: 100%; width: 100%; border: none; }\n.highlight td, .highlight tr { border: 0px; }\nmark { background: rgb(255, 255, 0); color: rgb(0, 0, 0); }\n.md-html-inline .md-plain, .md-html-inline strong, mark .md-inline-math, mark strong { color: inherit; }\n.md-expand mark .md-meta { opacity: 0.3 !important; }\nmark .md-meta { color: rgb(0, 0, 0); }\n@media print {\n  .typora-export h1, .typora-export h2, .typora-export h3, .typora-export h4, .typora-export h5, .typora-export h6 { break-inside: avoid; }\n}\n.md-diagram-panel .messageText { stroke: none !important; }\n.md-diagram-panel .start-state { fill: var(--node-fill); }\n.md-diagram-panel .edgeLabel rect { opacity: 1 !important; }\n.md-fences.md-fences-math { font-size: 1em; }\n.md-fences-advanced:not(.md-focus) { padding: 0px; white-space: nowrap; border: 0px; }\n.md-fences-advanced:not(.md-focus) { background: inherit; }\n.typora-export-show-outline .typora-export-content { max-width: 1440px; margin: auto; display: flex; flex-direction: row; }\n.typora-export-sidebar { width: 300px; font-size: 0.8rem; margin-top: 80px; margin-right: 18px; }\n.typora-export-show-outline #write { --webkit-flex:2; flex: 2 1 0%; }\n.typora-export-sidebar .outline-content { position: fixed; top: 0px; max-height: 100%; overflow: hidden auto; padding-bottom: 30px; padding-top: 60px; width: 300px; }\n@media screen and (max-width: 1024px) {\n  .typora-export-sidebar, .typora-export-sidebar .outline-content { width: 240px; }\n}\n@media screen and (max-width: 800px) {\n  .typora-export-sidebar { display: none; }\n}\n.outline-content li, .outline-content ul { margin-left: 0px; margin-right: 0px; padding-left: 0px; padding-right: 0px; list-style: none; }\n.outline-content ul { margin-top: 0px; margin-bottom: 0px; }\n.outline-content strong { font-weight: 400; }\n.outline-expander { width: 1rem; height: 1.42857rem; position: relative; display: table-cell; vertical-align: middle; cursor: pointer; padding-left: 4px; }\n.outline-expander::before { content: \"\"; position: relative; font-family: Ionicons; display: inline-block; font-size: 8px; vertical-align: middle; }\n.outline-item { padding-top: 3px; padding-bottom: 3px; cursor: pointer; }\n.outline-expander:hover::before { content: \"\"; }\n.outline-h1 > .outline-item { padding-left: 0px; }\n.outline-h2 > .outline-item { padding-left: 1em; }\n.outline-h3 > .outline-item { padding-left: 2em; }\n.outline-h4 > .outline-item { padding-left: 3em; }\n.outline-h5 > .outline-item { padding-left: 4em; }\n.outline-h6 > .outline-item { padding-left: 5em; }\n.outline-label { cursor: pointer; display: table-cell; vertical-align: middle; text-decoration: none; color: inherit; }\n.outline-label:hover { text-decoration: underline; }\n.outline-item:hover { border-color: rgb(245, 245, 245); background-color: var(--item-hover-bg-color); }\n.outline-item:hover { margin-left: -28px; margin-right: -28px; border-left: 28px solid transparent; border-right: 28px solid transparent; }\n.outline-item-single .outline-expander::before, .outline-item-single .outline-expander:hover::before { display: none; }\n.outline-item-open > .outline-item > .outline-expander::before { content: \"\"; }\n.outline-children { display: none; }\n.info-panel-tab-wrapper { display: none; }\n.outline-item-open > .outline-children { display: block; }\n.typora-export .outline-item { padding-top: 1px; padding-bottom: 1px; }\n.typora-export .outline-item:hover { margin-right: -8px; border-right: 8px solid transparent; }\n.typora-export .outline-expander::before { content: \"+\"; font-family: inherit; top: -1px; }\n.typora-export .outline-expander:hover::before, .typora-export .outline-item-open > .outline-item > .outline-expander::before { content: \"−\"; }\n.typora-export-collapse-outline .outline-children { display: none; }\n.typora-export-collapse-outline .outline-item-open > .outline-children, .typora-export-no-collapse-outline .outline-children { display: block; }\n.typora-export-no-collapse-outline .outline-expander::before { content: \"\" !important; }\n.typora-export-show-outline .outline-item-active > .outline-item .outline-label { font-weight: 700; }\n.md-inline-math-container mjx-container { zoom: 0.95; }\n\n\n.CodeMirror { height: auto; }\n.CodeMirror.cm-s-inner { background: inherit; }\n.CodeMirror-scroll { overflow: auto hidden; z-index: 3; }\n.CodeMirror-gutter-filler, .CodeMirror-scrollbar-filler { background-color: rgb(255, 255, 255); }\n.CodeMirror-gutters { border-right: 1px solid rgb(221, 221, 221); background: inherit; white-space: nowrap; }\n.CodeMirror-linenumber { padding: 0px 3px 0px 5px; text-align: right; color: rgb(153, 153, 153); }\n.cm-s-inner .cm-keyword { color: rgb(119, 0, 136); }\n.cm-s-inner .cm-atom, .cm-s-inner.cm-atom { color: rgb(34, 17, 153); }\n.cm-s-inner .cm-number { color: rgb(17, 102, 68); }\n.cm-s-inner .cm-def { color: rgb(0, 0, 255); }\n.cm-s-inner .cm-variable { color: rgb(0, 0, 0); }\n.cm-s-inner .cm-variable-2 { color: rgb(0, 85, 170); }\n.cm-s-inner .cm-variable-3 { color: rgb(0, 136, 85); }\n.cm-s-inner .cm-string { color: rgb(170, 17, 17); }\n.cm-s-inner .cm-property { color: rgb(0, 0, 0); }\n.cm-s-inner .cm-operator { color: rgb(152, 26, 26); }\n.cm-s-inner .cm-comment, .cm-s-inner.cm-comment { color: rgb(170, 85, 0); }\n.cm-s-inner .cm-string-2 { color: rgb(255, 85, 0); }\n.cm-s-inner .cm-meta { color: rgb(85, 85, 85); }\n.cm-s-inner .cm-qualifier { color: rgb(85, 85, 85); }\n.cm-s-inner .cm-builtin { color: rgb(51, 0, 170); }\n.cm-s-inner .cm-bracket { color: rgb(153, 153, 119); }\n.cm-s-inner .cm-tag { color: rgb(17, 119, 0); }\n.cm-s-inner .cm-attribute { color: rgb(0, 0, 204); }\n.cm-s-inner .cm-header, .cm-s-inner.cm-header { color: rgb(0, 0, 255); }\n.cm-s-inner .cm-quote, .cm-s-inner.cm-quote { color: rgb(0, 153, 0); }\n.cm-s-inner .cm-hr, .cm-s-inner.cm-hr { color: rgb(153, 153, 153); }\n.cm-s-inner .cm-link, .cm-s-inner.cm-link { color: rgb(0, 0, 204); }\n.cm-negative { color: rgb(221, 68, 68); }\n.cm-positive { color: rgb(34, 153, 34); }\n.cm-header, .cm-strong { font-weight: 700; }\n.cm-del { text-decoration: line-through; }\n.cm-em { font-style: italic; }\n.cm-link { text-decoration: underline; }\n.cm-error { color: red; }\n.cm-invalidchar { color: red; }\n.cm-constant { color: rgb(38, 139, 210); }\n.cm-defined { color: rgb(181, 137, 0); }\ndiv.CodeMirror span.CodeMirror-matchingbracket { color: rgb(0, 255, 0); }\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket { color: rgb(255, 34, 34); }\n.cm-s-inner .CodeMirror-activeline-background { background: inherit; }\n.CodeMirror { position: relative; overflow: hidden; }\n.CodeMirror-scroll { height: 100%; outline: 0px; position: relative; box-sizing: content-box; background: inherit; }\n.CodeMirror-sizer { position: relative; }\n.CodeMirror-gutter-filler, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-vscrollbar { position: absolute; z-index: 6; display: none; outline: 0px; }\n.CodeMirror-vscrollbar { right: 0px; top: 0px; overflow: hidden; }\n.CodeMirror-hscrollbar { bottom: 0px; left: 0px; overflow: auto hidden; }\n.CodeMirror-scrollbar-filler { right: 0px; bottom: 0px; }\n.CodeMirror-gutter-filler { left: 0px; bottom: 0px; }\n.CodeMirror-gutters { position: absolute; left: 0px; top: 0px; padding-bottom: 10px; z-index: 3; overflow-y: hidden; }\n.CodeMirror-gutter { white-space: normal; height: 100%; box-sizing: content-box; padding-bottom: 30px; margin-bottom: -32px; display: inline-block; }\n.CodeMirror-gutter-wrapper { position: absolute; z-index: 4; background: 0px 0px !important; border: none !important; }\n.CodeMirror-gutter-background { position: absolute; top: 0px; bottom: 0px; z-index: 4; }\n.CodeMirror-gutter-elt { position: absolute; cursor: default; z-index: 4; }\n.CodeMirror-lines { cursor: text; }\n.CodeMirror pre { border-radius: 0px; border-width: 0px; background: 0px 0px; font-family: inherit; font-size: inherit; margin: 0px; white-space: pre; overflow-wrap: normal; color: inherit; z-index: 2; position: relative; overflow: visible; }\n.CodeMirror-wrap pre { overflow-wrap: break-word; white-space: pre-wrap; word-break: normal; }\n.CodeMirror-code pre { border-right: 30px solid transparent; width: fit-content; }\n.CodeMirror-wrap .CodeMirror-code pre { border-right: none; width: auto; }\n.CodeMirror-linebackground { position: absolute; inset: 0px; z-index: 0; }\n.CodeMirror-linewidget { position: relative; z-index: 2; overflow: auto; }\n.CodeMirror-wrap .CodeMirror-scroll { overflow-x: hidden; }\n.CodeMirror-measure { position: absolute; width: 100%; height: 0px; overflow: hidden; visibility: hidden; }\n.CodeMirror-measure pre { position: static; }\n.CodeMirror div.CodeMirror-cursor { position: absolute; visibility: hidden; border-right: none; width: 0px; }\n.CodeMirror div.CodeMirror-cursor { visibility: hidden; }\n.CodeMirror-focused div.CodeMirror-cursor { visibility: inherit; }\n.cm-searching { background: rgba(255, 255, 0, 0.4); }\nspan.cm-underlined { text-decoration: underline; }\nspan.cm-strikethrough { text-decoration: line-through; }\n.cm-tw-syntaxerror { color: rgb(255, 255, 255); background-color: rgb(153, 0, 0); }\n.cm-tw-deleted { text-decoration: line-through; }\n.cm-tw-header5 { font-weight: 700; }\n.cm-tw-listitem:first-child { padding-left: 10px; }\n.cm-tw-box { border-style: solid; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-color: inherit; border-top-width: 0px !important; }\n.cm-tw-underline { text-decoration: underline; }\n@media print {\n  .CodeMirror div.CodeMirror-cursor { visibility: hidden; }\n}\n\n\n:root {\n    --side-bar-bg-color: #fafafa;\n    --control-text-color: #777;\n}\n\n@include-when-export url(https://fonts.loli.net/css?family=Open+Sans:400italic,700italic,700,400&subset=latin,latin-ext);\n\n/* open-sans-regular - latin-ext_latin */\n  /* open-sans-italic - latin-ext_latin */\n    /* open-sans-700 - latin-ext_latin */\n    /* open-sans-700italic - latin-ext_latin */\n  html {\n    font-size: 16px;\n    -webkit-font-smoothing: antialiased;\n}\n\nbody {\n    font-family: \"Open Sans\",\"Clear Sans\", \"Helvetica Neue\", Helvetica, Arial, 'Segoe UI Emoji', sans-serif;\n    color: rgb(51, 51, 51);\n    line-height: 1.6;\n}\n\n#write {\n    max-width: 860px;\n  \tmargin: 0 auto;\n  \tpadding: 30px;\n    padding-bottom: 100px;\n}\n\n@media only screen and (min-width: 1400px) {\n\t#write {\n\t\tmax-width: 1024px;\n\t}\n}\n\n@media only screen and (min-width: 1800px) {\n\t#write {\n\t\tmax-width: 1200px;\n\t}\n}\n\n#write > ul:first-child,\n#write > ol:first-child{\n    margin-top: 30px;\n}\n\na {\n    color: #4183C4;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n    position: relative;\n    margin-top: 1rem;\n    margin-bottom: 1rem;\n    font-weight: bold;\n    line-height: 1.4;\n    cursor: text;\n}\nh1:hover a.anchor,\nh2:hover a.anchor,\nh3:hover a.anchor,\nh4:hover a.anchor,\nh5:hover a.anchor,\nh6:hover a.anchor {\n    text-decoration: none;\n}\nh1 tt,\nh1 code {\n    font-size: inherit;\n}\nh2 tt,\nh2 code {\n    font-size: inherit;\n}\nh3 tt,\nh3 code {\n    font-size: inherit;\n}\nh4 tt,\nh4 code {\n    font-size: inherit;\n}\nh5 tt,\nh5 code {\n    font-size: inherit;\n}\nh6 tt,\nh6 code {\n    font-size: inherit;\n}\nh1 {\n    font-size: 2.25em;\n    line-height: 1.2;\n    border-bottom: 1px solid #eee;\n}\nh2 {\n    font-size: 1.75em;\n    line-height: 1.225;\n    border-bottom: 1px solid #eee;\n}\n\n/*@media print {\n    .typora-export h1,\n    .typora-export h2 {\n        border-bottom: none;\n        padding-bottom: initial;\n    }\n\n    .typora-export h1::after,\n    .typora-export h2::after {\n        content: \"\";\n        display: block;\n        height: 100px;\n        margin-top: -96px;\n        border-top: 1px solid #eee;\n    }\n}*/\n\nh3 {\n    font-size: 1.5em;\n    line-height: 1.43;\n}\nh4 {\n    font-size: 1.25em;\n}\nh5 {\n    font-size: 1em;\n}\nh6 {\n   font-size: 1em;\n    color: #777;\n}\np,\nblockquote,\nul,\nol,\ndl,\ntable{\n    margin: 0.8em 0;\n}\nli>ol,\nli>ul {\n    margin: 0 0;\n}\nhr {\n    height: 2px;\n    padding: 0;\n    margin: 16px 0;\n    background-color: #e7e7e7;\n    border: 0 none;\n    overflow: hidden;\n    box-sizing: content-box;\n}\n\nli p.first {\n    display: inline-block;\n}\nul,\nol {\n    padding-left: 30px;\n}\nul:first-child,\nol:first-child {\n    margin-top: 0;\n}\nul:last-child,\nol:last-child {\n    margin-bottom: 0;\n}\nblockquote {\n    border-left: 4px solid #dfe2e5;\n    padding: 0 15px;\n    color: #777777;\n}\nblockquote blockquote {\n    padding-right: 0;\n}\ntable {\n    padding: 0;\n    word-break: initial;\n}\ntable tr {\n    border: 1px solid #dfe2e5;\n    margin: 0;\n    padding: 0;\n}\ntable tr:nth-child(2n),\nthead {\n    background-color: #f8f8f8;\n}\ntable th {\n    font-weight: bold;\n    border: 1px solid #dfe2e5;\n    border-bottom: 0;\n    margin: 0;\n    padding: 6px 13px;\n}\ntable td {\n    border: 1px solid #dfe2e5;\n    margin: 0;\n    padding: 6px 13px;\n}\ntable th:first-child,\ntable td:first-child {\n    margin-top: 0;\n}\ntable th:last-child,\ntable td:last-child {\n    margin-bottom: 0;\n}\n\n.CodeMirror-lines {\n    padding-left: 4px;\n}\n\n.code-tooltip {\n    box-shadow: 0 1px 1px 0 rgba(0,28,36,.3);\n    border-top: 1px solid #eef2f2;\n}\n\n.md-fences,\ncode,\ntt {\n    border: 1px solid #e7eaed;\n    background-color: #f8f8f8;\n    border-radius: 3px;\n    padding: 0;\n    padding: 2px 4px 0px 4px;\n    font-size: 0.9em;\n}\n\ncode {\n    background-color: #f3f4f4;\n    padding: 0 2px 0 2px;\n}\n\n.md-fences {\n    margin-bottom: 15px;\n    margin-top: 15px;\n    padding-top: 8px;\n    padding-bottom: 6px;\n}\n\n\n.md-task-list-item > input {\n  margin-left: -1.3em;\n}\n\n@media print {\n    html {\n        font-size: 13px;\n    }\n    table,\n    pre {\n        page-break-inside: avoid;\n    }\n    pre {\n        word-wrap: break-word;\n    }\n}\n\n.md-fences {\n\tbackground-color: #f8f8f8;\n}\n#write pre.md-meta-block {\n\tpadding: 1rem;\n    font-size: 85%;\n    line-height: 1.45;\n    background-color: #f7f7f7;\n    border: 0;\n    border-radius: 3px;\n    color: #777777;\n    margin-top: 0 !important;\n}\n\n.mathjax-block>.code-tooltip {\n\tbottom: .375rem;\n}\n\n.md-mathjax-midline {\n    background: #fafafa;\n}\n\n#write>h3.md-focus:before{\n\tleft: -1.5625rem;\n\ttop: .375rem;\n}\n#write>h4.md-focus:before{\n\tleft: -1.5625rem;\n\ttop: .285714286rem;\n}\n#write>h5.md-focus:before{\n\tleft: -1.5625rem;\n\ttop: .285714286rem;\n}\n#write>h6.md-focus:before{\n\tleft: -1.5625rem;\n\ttop: .285714286rem;\n}\n.md-image>.md-meta {\n    /*border: 1px solid #ddd;*/\n    border-radius: 3px;\n    padding: 2px 0px 0px 4px;\n    font-size: 0.9em;\n    color: inherit;\n}\n\n.md-tag {\n    color: #a7a7a7;\n    opacity: 1;\n}\n\n.md-toc { \n    margin-top:20px;\n    padding-bottom:20px;\n}\n\n.sidebar-tabs {\n    border-bottom: none;\n}\n\n#typora-quick-open {\n    border: 1px solid #ddd;\n    background-color: #f8f8f8;\n}\n\n#typora-quick-open-item {\n    background-color: #FAFAFA;\n    border-color: #FEFEFE #e5e5e5 #e5e5e5 #eee;\n    border-style: solid;\n    border-width: 1px;\n}\n\n/** focus mode */\n.on-focus-mode blockquote {\n    border-left-color: rgba(85, 85, 85, 0.12);\n}\n\nheader, .context-menu, .megamenu-content, footer{\n    font-family: \"Segoe UI\", \"Arial\", sans-serif;\n}\n\n.file-node-content:hover .file-node-icon,\n.file-node-content:hover .file-node-open-state{\n    visibility: visible;\n}\n\n.mac-seamless-mode #typora-sidebar {\n    background-color: #fafafa;\n    background-color: var(--side-bar-bg-color);\n}\n\n.md-lang {\n    color: #b4654d;\n}\n\n/*.html-for-mac {\n    --item-hover-bg-color: #E6F0FE;\n}*/\n\n#md-notification .btn {\n    border: 0;\n}\n\n.dropdown-menu .divider {\n    border-color: #e5e5e5;\n    opacity: 0.4;\n}\n\n.ty-preferences .window-content {\n    background-color: #fafafa;\n}\n\n.ty-preferences .nav-group-item.active {\n    color: white;\n    background: #999;\n}\n\n.menu-item-container a.menu-style-btn {\n    background-color: #f5f8fa;\n    background-image: linear-gradient( 180deg , hsla(0, 0%, 100%, 0.8), hsla(0, 0%, 100%, 0)); \n}\n\n\n\n</style><title>主题开发者文档</title>\n</head>\n<body class='typora-export'><div class='typora-export-content'>\n<div id='write'  class=''><h1 id='主题开发者文档'><span>主题开发者文档</span></h1><h2 id='主题说明'><span>主题说明</span></h2><p><span>用户可以根据自己需求进行主题切换。也可以开发出自己的主题。</span></p><p><span>主题支持定义修改：桌面壁纸、应用图标、光标、系统字体、字体大小、活动用色、控件底色、窗口圆角大小等。同时支持分别定义深浅色主题，可设置为按当地日出日落时间自动切换深浅色主题。</span></p><h2 id='主题文件'><span>主题文件</span></h2><p><span>系统主题安装在/usr/share/deepin-themes/目录下</span></p><p><span>主题文件最最要的是主题目录下的index.theme文件，index.theme文件记录了主题中桌面壁纸、应用图标、光标、系统字体、字体大小、活动用色、控件底色、窗口圆角大小等的值，以及深浅色主题。</span></p><p><span>index.theme文件示例如下：</span></p><pre class=\"md-fences md-end-block ty-contain-cm modeLoaded md-focus\" spellcheck=\"false\" lang=\"ini\" style=\"break-inside: unset;\"><div class=\"CodeMirror cm-s-inner cm-s-null-scroll CodeMirror-wrap CodeMirror-focused\" lang=\"ini\"><div style=\"overflow: hidden; position: relative; width: 3px; height: 0px; top: 262.5px; left: 497.297px;\"><textarea autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" tabindex=\"0\" style=\"position: absolute; bottom: -1em; padding: 0px; width: 1000px; height: 1em; outline: none;\"></textarea></div><div class=\"CodeMirror-scrollbar-filler\" cm-not-content=\"true\"></div><div class=\"CodeMirror-gutter-filler\" cm-not-content=\"true\"></div><div class=\"CodeMirror-scroll\" tabindex=\"-1\"><div class=\"CodeMirror-sizer\" style=\"margin-left: 0px; margin-bottom: 0px; border-right-width: 0px; padding-right: 0px; padding-bottom: 0px;\"><div style=\"position: relative; top: 0px;\"><div class=\"CodeMirror-lines\" role=\"presentation\"><div role=\"presentation\" style=\"position: relative; outline: none;\"><div class=\"CodeMirror-measure\"></div><div class=\"CodeMirror-measure\"></div><div style=\"position: relative; z-index: 1;\"></div><div class=\"CodeMirror-code\" role=\"presentation\" style=\"\"><div class=\"\" style=\"position: relative;\"><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-header\">[Deepin Theme]</span></span></pre></div><div class=\"\" style=\"position: relative;\"><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">Name</span>=<span class=\"cm-quote\">flow</span></span></pre></div><div class=\"\" style=\"position: relative;\"><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">Name[zh_CN]</span>=<span class=\"cm-quote\">行云</span></span></pre></div><div class=\"\" style=\"position: relative;\"><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">Comment</span>=<span class=\"cm-quote\">like a moving cloud and flowing river</span></span></pre></div><div class=\"\" style=\"position: relative;\"><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">Comment[zh_CN]</span>=<span class=\"cm-quote\">像移动的云和流动的河流</span></span></pre></div><div class=\"\" style=\"position: relative;\"><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 默认主题，通常为浅色主题</span></span></pre></div><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">DefaultTheme</span>=<span class=\"cm-quote\">DefaultTheme</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># [深色主题，可选，配置为覆盖默认主题配置，即深色主题中没有的会用默认主题里的配置]</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">DarkTheme</span>=<span class=\"cm-quote\">DarkTheme</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># [是否在主题选择用户界面中隐藏，不给出则为false]</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">Hidden</span>=<span class=\"cm-quote\">false</span></span></pre><div class=\"CodeMirror-activeline\" style=\"position: relative;\"><div class=\"CodeMirror-activeline-background CodeMirror-linebackground\"></div><div class=\"CodeMirror-gutter-background CodeMirror-activeline-gutter\" style=\"left: 0px; width: 0px;\"></div><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 示例图片，用','分隔，第一个为浅色，第二个为深色，会组合成封面显示</span></span></pre></div><div class=\"\" style=\"position: relative;\"><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">Example</span>=<span class=\"cm-quote\">cover-light.png,cover-dark.png</span></span></pre></div><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span cm-text=\"\" cm-zwsp=\"\">\n</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-header\">[DefaultTheme]</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 桌面壁纸 图片可用系统自带图片(绝对路径)，主题内图片(相对路径)</span></span></pre><div class=\"\" style=\"position: relative;\"><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">Wallpaper</span>=<span class=\"cm-quote\">flow-light.jpg</span></span></pre></div><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 锁屏壁纸</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">LockBackground</span>=<span class=\"cm-quote\">/usr/share/wallpapers/deepin/joshua-coleman-KzPefInJW58-unsplash.jpg</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 应用图标</span></span></pre><div class=\"\" style=\"position: relative;\"><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">IconTheme</span>=<span class=\"cm-quote\">flow</span></span></pre></div><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 鼠标样式</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">CursorTheme</span>=<span class=\"cm-quote\">bloom</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 应用主题 应用程序配色主题，在/usr/share/themes目录下，通常浅色主题为deepin,深色主题为deepin-dark</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">AppTheme</span>=<span class=\"cm-quote\">deepin</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 标准字体</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">StandardFont</span>=<span class=\"cm-quote\">Noto Sans CJK SC</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 等宽字体</span></span></pre><div class=\"\" style=\"position: relative;\"><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">MonospaceFont</span>=<span class=\"cm-quote\">Noto Mono</span></span></pre></div><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 字体大小</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">FontSize</span>=<span class=\"cm-quote\">10.5</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 活动色</span></span></pre><div class=\"\" style=\"position: relative;\"><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">ActiveColor</span>=<span class=\"cm-quote\">#0081FF</span></span></pre></div><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 任务栏底色色值</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">DockBackground</span>=<span class=\"cm-quote\">#FFFFFF</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 任务栏透明度</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">DockOpacity</span>=<span class=\"cm-quote\">0.08</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 启动器底色色值</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">LauncherBackground</span>=<span class=\"cm-quote\">#FFFFFF</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 启动器透明度</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">LauncherOpacity</span>=<span class=\"cm-quote\">0.08</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 窗口圆角大小</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">WindowRadius</span>=<span class=\"cm-quote\">18</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 窗口透明度</span></span></pre><div class=\"\" style=\"position: relative;\"><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">WindowOpacity</span>=<span class=\"cm-quote\">0.4</span></span></pre></div><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-comment\"># 窗口阴影</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">WindowShadow</span>=<span class=\"cm-quote\">#DDDDDD</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span cm-text=\"\" cm-zwsp=\"\">\n</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-header\">[DarkTheme]</span></span></pre><div class=\"\" style=\"position: relative;\"><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">Wallpaper</span>=<span class=\"cm-quote\">flow-dark.jpg</span></span></pre></div><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">AppTheme</span>=<span class=\"cm-quote\">deepin-dark</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">IconTheme</span>=<span class=\"cm-quote\">bloom-dark</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">CursorTheme</span>=<span class=\"cm-quote\">bloom-dark</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">DockBackground</span>=<span class=\"cm-quote\">#000000</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">LauncherBackground</span>=<span class=\"cm-quote\">#000000</span></span></pre><pre class=\" CodeMirror-line \" role=\"presentation\"><span role=\"presentation\" style=\"padding-right: 0.1px;\"><span class=\"cm-def\">WindowShadow</span>=<span class=\"cm-quote\">#222222</span></span></pre></div></div></div></div></div><div style=\"position: absolute; height: 0px; width: 1px; border-bottom: 0px solid transparent; top: 1334px;\"></div><div class=\"CodeMirror-gutters\" style=\"display: none; height: 1334px;\"></div></div></div></pre><h2 id='indextheme文件说明'><span>index.theme文件说明</span></h2><h3 id='deepin-theme节点'><span>Deepin Theme节点</span></h3><p><span>Deepin Theme节点是必须的，且节点名固定</span></p><figure><table><thead><tr><th><span>键</span></th><th><span>描述</span></th><th><span>类型</span></th><th><span>必需</span></th></tr></thead><tbody><tr><td><span>Name</span></td><td><span>主题名</span></td><td><span>string</span></td><td><span>是</span></td></tr><tr><td><span>Name[zh_CN]</span></td><td><span>本地化主题名</span></td><td><span>localestring</span></td><td><span>否</span></td></tr><tr><td><span>Comment</span></td><td><span>主题描述</span></td><td><span>string</span></td><td><span>否</span></td></tr><tr><td><span>Comment[zh_CN]</span></td><td><span>本地化主题描述</span></td><td><span>localestring</span></td><td><span>否</span></td></tr><tr><td><span>DefaultTheme</span></td><td><span>默认主题节点(浅色主题节点)</span></td><td><span>string</span></td><td><span>是</span></td></tr><tr><td><span>DarkTheme</span></td><td><span>深色主题节点</span></td><td><span>string</span></td><td><span>是</span></td></tr><tr><td><span>Hidden</span></td><td><span>是否在用户界面隐藏，默认为false</span></td><td><span>boolean</span></td><td><span>否</span></td></tr><tr><td><span>Example</span></td><td><span>示例图片，用&#39;,&#39;分隔</span></td><td><span>strings</span></td><td><span>是</span></td></tr></tbody></table></figure><h3 id='默认主题节点'><span>默认主题节点</span></h3><p><span>默认主题节点名是Deepin Theme节点下DefaultTheme的值</span></p><figure><table><thead><tr><th><span>键</span></th><th><span>描述</span></th><th style='text-align:left;' ><span>类型</span></th><th><span>必需</span></th></tr></thead><tbody><tr><td><span>Wallpaper</span></td><td><span>桌面壁纸</span></td><td style='text-align:left;' ><span>file</span></td><td><span>否</span></td></tr><tr><td><span>LockBackground</span></td><td><span>锁屏壁纸</span></td><td style='text-align:left;' ><span>file</span></td><td><span>否</span></td></tr><tr><td><span>IconTheme</span></td><td><span>应用图标</span></td><td style='text-align:left;' ><span>string</span></td><td><span>否</span></td></tr><tr><td><span>CursorTheme</span></td><td><span>鼠标样式</span></td><td style='text-align:left;' ><span>string</span></td><td><span>否</span></td></tr><tr><td><span>AppTheme</span></td><td><span>应用主题</span></td><td style='text-align:left;' ><span>string</span></td><td><span>否</span></td></tr><tr><td><span>StandardFont</span></td><td><span>标准字体</span></td><td style='text-align:left;' ><span>string</span></td><td><span>否</span></td></tr><tr><td><span>MonospaceFont</span></td><td><span>等宽字体</span></td><td style='text-align:left;' ><span>string</span></td><td><span>否</span></td></tr><tr><td><span>FontSize</span></td><td><span>字体大小</span></td><td style='text-align:left;' ><span>float</span></td><td><span>否</span></td></tr><tr><td><span>ActiveColor</span></td><td><span>活动色</span></td><td style='text-align:left;' ><span>color</span></td><td><span>否</span></td></tr><tr><td><span>DockBackground</span></td><td><span>任务栏底色色值</span></td><td style='text-align:left;' ><span>color</span></td><td><span>否</span></td></tr><tr><td><span>DockOpacity</span></td><td><span>任务栏透明度</span></td><td style='text-align:left;' ><span>float</span></td><td><span>否</span></td></tr><tr><td><span>LauncherBackground</span></td><td><span>启动器底色色值</span></td><td style='text-align:left;' ><span>color</span></td><td><span>否</span></td></tr><tr><td><span>LauncherOpacity</span></td><td><span>启动器透明度</span></td><td style='text-align:left;' ><span>float</span></td><td><span>否</span></td></tr><tr><td><span>WindowRadius</span></td><td><span>窗口圆角大小</span></td><td style='text-align:left;' ><span>integer</span></td><td><span>否</span></td></tr><tr><td><span>WindowOpacity</span></td><td><span>窗口透明度</span></td><td style='text-align:left;' ><span>float</span></td><td><span>否</span></td></tr><tr><td><span>WindowShadow</span></td><td><span>窗口阴影</span></td><td style='text-align:left;' ><span>string</span></td><td><span>否</span></td></tr></tbody></table></figure><ul><li><span>Wallpaper、LockBackground值为图片文件路径，支持相对路径(以当前主题路径开始)和绝对路径</span></li><li><span>IconTheme、CursorTheme值为/usr/share/icons/下的图标和光标主题，如果开发者有自定义图标光标主题，可在主题包里加依赖，或直接把图标光标主题加到主题包中。</span></li><li><span>AppTheme为应用主题，为/usr/share/themes/下的主题。会影响应用程序的配色，兼容GTK主题包。若开发者未开发AppTheme主题包，建议使用系统自带的主题，即浅色主题AppTheme值为deepin，深色主题为deepin-dark</span></li><li><span>StandardFont、MonospaceFont为字体，值为对应的字体名。</span></li><li><span>FontSize为字体大小，与控制中心中字体大小不同，换算为其的0.75，即这里的10.5对应控制中心显示的14。取值可为8.25、9.0、9.75、10.5、11.25、12、13.5、15.0，分别对应控制中心显示的11、12、13、14、15、16、18、20</span></li><li><span>ActiveColor为活动色，颜色类值同CSS中颜色写法，例：#0081FF为控制中心设置界面的蓝色</span></li></ul><h3 id='深色主题节点'><span>深色主题节点</span></h3><p><span>深色主题节点名是Deepin Theme节点下DarkTheme的值，键同默认主题。</span></p><p><span>当深色主题的键未指定时，会使用默认主题对应的键值。所以深色主题只需定义与默认主题不同的项即可</span></p><p>&nbsp;</p></div></div>\n</body>\n</html>"
  },
  {
    "path": "misc/gen_report.sh",
    "content": "#!/bin/bash\n\n# 需要先安装lcov，打开./unittest/CMakeLists.txt 测试覆盖率的编译条件\n# 将该脚本放置到dde-control-center-unittest二进制文件同级目录运行\nlcov -c -i -d ./ -o init.info\n./dde-control-center-unittest\nlcov -c -d ./ -o cover.info\nlcov -a init.info -a cover.info -o total.info\nlcov --remove total.info '*/usr/include/*' '*/usr/lib/*' '*/usr/lib64/*' '*/usr/local/include/*' '*/usr/local/lib/*' '*/usr/local/lib64/*' '*/third/*' 'testa.cpp' -o final.info\n\n# 生成报告\ngenhtml -o cover_report --legend --title \"lcov\"  --prefix=./ final.info\n\n#打开报告\nnohup x-www-browser ./cover_report/index.html &\n\nexit 0"
  },
  {
    "path": "misc/org.deepin.dde-grand-search.dde-control-center-setting.conf",
    "content": "[Grand Search]\nName=com.deepin.dde-grand-search.dde-control-center-setting\nMode=Trigger\nDBusService=org.deepin.dde.ControlCenter1\nDBusAddress=/org/deepin/dde/ControlCenter1\nDBusInterface=org.deepin.dde.ControlCenter1.GrandSearch\nInterfaceVersion=1.0\n"
  },
  {
    "path": "misc/org.deepin.dde.ControlCenter1.service.in",
    "content": "[D-BUS Service]\nName=org.deepin.dde.ControlCenter1\nExec=@CMAKE_INSTALL_FULL_BINDIR@/dde-control-center -d\nSystemdService=org.deepin.dde.control-center.service\n"
  },
  {
    "path": "misc/org.deepin.dde.control-center.desktop",
    "content": "[Desktop Entry]\nCategories=Application;System;Settings\nComment=Deepin Desktop Environment Control Center\nExec=dde-control-center --show %f\nGenericName=Control Center\nIcon=preferences-system\nName=Deepin Control Center\nStartupNotify=false\nStartupWMClass=dde-control-center\nTerminal=false\nType=Application\nX-Deepin-TurboType=dtkwidget\nX-Deepin-Vendor=deepin\nX-MultipleArgs=false\n\n# Translations:\n# Do not manually modify!\nComment[ar]=مركز تحكم بيئة سطح مكتب Deepin\nComment[az]=Deepin İş Masası Mühiti İdarəetmə Mərkəzi\nComment[bg]=Контролен център на работната среда Deepin\nComment[bn]=ডিপিন ডেস্কটপ এনভাইরনমেন্ট নিয়ন্ত্রণ কেন্দ্র\nComment[bo]=གཏིང་ཚད་ཅོག་ངོས་ཁོར་ཡུག་ཚོད་འཛིན་ལྟེ་གནས།\nComment[ca]=Centre de control de l'entorn d'escriptori del Deepin\nComment[cs]=Ovládací panely pracovního prostředí Deepin\nComment[da]=Kontrolcenter for Deepin-skrivebordsmiljø\nComment[de]=Deepin Desktop-Umgebung Kontrollzentrum\nComment[el]=Κέντρο Ελέγχου Περιβάλλοντος Εγασίας Deepin\nComment[en]=Deepin Desktop Environment Control Center\nComment[en_AU]=Deepin Desktop Environment Control Center\nComment[en_GB]=Deepin Desktop Environment Control Center\nComment[en_US]=Deepin Desktop Environment Control Center\nComment[es]=Centro de control del entorno de escritorio Deepin\nComment[et]=Deepin töölaua juhtpaneel\nComment[fa]=مرکز کنترل محیط دسکتاپ دیپین\nComment[fi]=Deepin ohjauspaneeli\nComment[fr]=Centre de contrôle de l’environnement de bureau Deepin\nComment[gl_ES]=Centro de control de ambiente de escritorio Deepin\nComment[he]=מרכז управления סביבת שולחן העבודה Deepin\nComment[hi_IN]=डीपिन डेस्कटॉप वातावरण नियंत्रण केंद्र \nComment[hr]=Kontrolni centar Deepin radnog okruženja\nComment[hu]=Deepin® Asztali Környezet Vezérlőpult\nComment[id]=Pusat Kontrol Lingkungan Desktop Deepin\nComment[it]=Centro di Controllo del Deepin Desktop Environment\nComment[ja]=Deepin デスクトップ環境のコントロールセンター\nComment[kab]=Ammas n usenqed n twennaḍt n tnarit n Deepin\nComment[kk]=Deepin Аreamаялық міндеттерінің Көрсөткүч центрі\nComment[km_KH]=មជ្ឈមណ្ឌលបញ្ជាបរិស្ថានផ្ទៃតុ Deepin\nComment[ko]=Deepin 바탕화면 환경 제어 센터\nComment[lo]=deepin ສູນຄວບຄຸມສະພາບແວດລ້ອມ desktop\nComment[lt]=Deepin darbalaukio aplinkos valdymo centras\nComment[ms]=Pusat Kawalan Persekitaran Atas Meja Deepin\nComment[nb]=Deepin Desktop Environment Kontrollsenter\nComment[ne]=डीपिन डेस्कटप वातावरण नियन्त्रण केन्द्र\nComment[nl]=Deepin Systeeminstellingen\nComment[pa]=ਡੀਪਿਨ ਡੈਸਕਟਾਪ ਇੰਵਾਇਰਨਮੈਂਟ ਕੰਟਰੋਲ ਸੈਂਟਰ\nComment[pl]=Centrum kontroli środowiska Deepin\nComment[pt]=Centro de Controlo do Ambiente de trabalho Deepin\nComment[pt_BR]=Central de Controle do Deepin Desktop Environment\nComment[ro]=Centru Control Mediu Desktop Deepin\nComment[ru]=Центр управления окружением рабочего стола Deepin\nComment[si]=Deepin ඩෙස්ක්ටොප් පරිසර පාලන මධ්‍යස්ථානය\nComment[sk]=Ovládacie centrum Deepin Desktop Environment\nComment[sl]=Deepin Desktop Enviroment nadzorni center\nComment[sq]=Qendër Kontrolli e Mjedisit Desktop Deepin\nComment[sr]=Дипин Радно Окружење Контролни Центар\nComment[sv]=Deepin Desktop Environment Kontrollcenter\nComment[sw]=Kituo cha ulinzi za eneo la kazi ya Deepin \nComment[tr]=Deepin Masaüstü Ortamı Kontrol Merkezi\nComment[ug]=ئېكران مۇھىتى كونترول قىلىش مەركىزى \nComment[uk]=Центр керування стільничним середовищем Deepin\nComment[vi]=Điều khiển Deepin Desktop Environment \nComment[zh_CN]=深度桌面环境控制中心\nComment[zh_HK]=Deepin 控制中心\nComment[zh_TW]=Deepin 桌面環境的控制中心\nGenericName[af]=Beheersentrum\nGenericName[am_ET]=መቆጣጠሪያ ማእከል\nGenericName[ar]=مركز التحكم\nGenericName[ast]=Centru de control\nGenericName[az]=İdarə Etmə Mərkəzi\nGenericName[bg]=Контролен център\nGenericName[bn]=নিয়ন্ত্রণ কেন্দ্র\nGenericName[bo]=ཚོད་འཛིན་ལྟེ་གནས།\nGenericName[ca]=Centre de control\nGenericName[cs]=Ovládací panely\nGenericName[da]=Kontrolcenter\nGenericName[de]=Kontrollzentrum\nGenericName[el]=Κέντρο Ελέγχου\nGenericName[en]=Control Center\nGenericName[en_AU]=Control Center\nGenericName[en_GB]=Control Center\nGenericName[en_US]=Control Center\nGenericName[eo]=kontroloj centro\nGenericName[es]=Centro de control\nGenericName[et]=Juhtpaneel\nGenericName[fa]=مرکز کنترل\nGenericName[fi]=Ohjauspaneli\nGenericName[fr]=Centre de contrôle\nGenericName[gl_ES]=Centro de Control\nGenericName[he]=מרכז בקרה\nGenericName[hi_IN]=नियंत्रण केंद्र\nGenericName[hr]=Središte upravljanja\nGenericName[hu]=Vezérlőpult\nGenericName[hy]=Ղեկավարման Կենտրոն\nGenericName[id]=Pusat Kontrol\nGenericName[it]=Centro di Controllo\nGenericName[ja]=コントロールセンター\nGenericName[ka]=მართვის ცენტრი\nGenericName[kab]=Ammas n usenqed\nGenericName[kk]=Көрсөткүч центрі\nGenericName[km_KH]=មជ្ឈមណ្ឌលបញ្ជា\nGenericName[ko]=제어 센터\nGenericName[lo]=ສູນຄວບຄຸມ\nGenericName[lt]=Valdymo centras\nGenericName[mn]=Удирдлагын хэсэг\nGenericName[ms]=Pusat Kawalan\nGenericName[nb]=Kontrollsenter\nGenericName[ne]=नियन्त्रण केन्द्र\nGenericName[nl]=Instellingencentrum\nGenericName[pa]=ਕੰਟਰੋਲ ਸੈਂਟਰ\nGenericName[pl]=Centrum kontroli\nGenericName[pt]=Centro de Controlo\nGenericName[pt_BR]=Central de Controle\nGenericName[ro]=Centru Control\nGenericName[ru]=Центр Управления\nGenericName[si]=පාලන මධ්‍යස්ථානය\nGenericName[sk]=Ovládacie centrum\nGenericName[sl]=Nadzorni center\nGenericName[sq]=Qendër Kontrolli\nGenericName[sr]=Контролни Центар\nGenericName[sv]=Kontrollcenter\nGenericName[sw]=Kituo cha ulinzi\nGenericName[ta]=கட்டுப்பாட்டு மையம்\nGenericName[tr]=Kontrol Merkezi\nGenericName[ug]=كونترول مەركىزى \nGenericName[uk]=Центр керування\nGenericName[vi]=Trung tâm kiểm soát\nGenericName[zh_CN]=控制中心\nGenericName[zh_HK]=控制中心\nGenericName[zh_TW]=控制中心\nName[am_ET]=ዲፕኢን መቆጣጠሪያ ማእከል\nName[ar]=مركز تحكم ديبين\nName[ast]=Centru de control Deepin\nName[az]=Deepin İdarəetmə Mərkəzi\nName[bg]=Контролен център на Deepin\nName[bn]=ডিপিন কন্ট্রোল সেন্টার\nName[bo]=གཏིང་ཚད་ཚོད་འཛིན་ལྟེ་གནས།\nName[ca]=Centre de control del Deepin\nName[cs]=Ovládací panely pro Deepin\nName[da]=Deepin kontrolcenter\nName[de]=Deepin Kontrollzentrum\nName[el]=Deepin Κέντρο Ελέγχου\nName[en]=Deepin Control Center\nName[en_AU]=Deepin Control Center\nName[en_GB]=Deepin Control Center\nName[en_US]=Deepin Control Center\nName[es]=Centro de control de Deepin\nName[et]=Deepin juhtpaneel\nName[fa]=مرکز کنترل دیپین\nName[fi]=Deepin ohjauspaneeli\nName[fil]=Deepin Control Center\nName[fr]=Centre de contrôle Deepin\nName[gl_ES]=Centro de control de Deepin\nName[he]=מרכז הבקרה של Deepin\nName[hi_IN]=डीपइन नियंत्रण केंद्र\nName[hr]=Deepin kontrolni centar\nName[hu]=Deepin® Vezérlőpult\nName[id]=Pusat Kontrol Deepin\nName[it]=Centro di Controllo di Deepin\nName[ja]=Deepin コントロールセンター\nName[kab]=Ammas n usenqed n Deepin\nName[kk]=Deepin Көрсөткүч центрі\nName[km_KH]=មជ្ឈមណ្ឌលបញ្ជា Deepin\nName[ko]=Deepin 제어 센터\nName[lo]=ສູນຄວບຄຸມ Deepin\nName[lt]=Deepin valdymo centras\nName[ms]=Pusat Kawalan Deepin\nName[nb]=Deepin kontrollsenter\nName[ne]=Desktop Control Center\nName[nl]=Deepin Systeeminstellingen\nName[pl]=Centrum kontroli Deepin\nName[pt]=Centro de Controlo Deepin\nName[pt_BR]=deepin Central de Controle\nName[ro]=Panou de Control Deepin\nName[ru]=Центр Управления Deepin\nName[si]=Deepin පාලන මධ්‍යස්ථානය\nName[sk]=Deepin Ovládacie centrum\nName[sl]=Nadzorni center Deepin\nName[sq]=Qendër Kontrolli Deepin\nName[sr]=Дипин Контролни Центар\nName[sv]=Deepin Kontrollcenter\nName[tr]=Deepin Kontrol Merkezi\nName[ug]=Deepin كونترول مەركىزى\nName[uk]=Центр керування Deepin\nName[vi]=Trung tâm Điều khiển Deepin\nName[zh_CN]=深度控制中心 \nName[zh_HK]=Deepin 控制中心\nName[zh_TW]=Deepin 控制中心\n\n"
  },
  {
    "path": "misc/org.deepin.dde.controlcenter.metainfo.xml",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<component type=\"desktop-application\">\n  <id>org.deepin.dde.control-center</id>\n  <launchable type=\"desktop-id\">org.deepin.dde.control-center.desktop</launchable>\n  <project_group>DDE</project_group>\n  <compulsory_for_desktop>DDE</compulsory_for_desktop>\n  <metadata_license>CC0-1.0</metadata_license>\n  <project_license>GPL-3.0+</project_license>\n  <content_rating type=\"oars-1.0\"/>\n  <categories>\n    <category>DDE</category>\n    <category>Qt</category>\n    <category>Settings</category>\n  </categories>\n  <name>DDE Control Center</name>\n  <name xml:lang=\"zh-CN\">深度控制中心</name>\n  <name xml:lang=\"zh-TW\">Deepin 控制中心</name>\n  <summary>Configuration tools for your computer</summary>\n  <summary xml:lang=\"ar\">أدوات لضبط حاسبك</summary>\n  <summary xml:lang=\"az\">Kompyuteriniz üçün tənzimləmə alətləri</summary>\n  <summary xml:lang=\"be\">Інструменты для наладжвання вашага камп'ютара</summary>\n  <summary xml:lang=\"bg\">Конфигурационни инструменти за вашия компютър</summary>\n  <summary xml:lang=\"ca\">Eines de configuració per a l'ordinador</summary>\n  <summary xml:lang=\"ca-valencia\">Eines de configuració per a l'ordinador</summary>\n  <summary xml:lang=\"cs\">Konfigurační nástroje pro váš počítač</summary>\n  <summary xml:lang=\"da\">Konfigurationsværktøjer til din computer</summary>\n  <summary xml:lang=\"de\">Einstellungen für Ihren Rechner</summary>\n  <summary xml:lang=\"el\">Εργαλεία διαμόρφωσης για τον υπολογιστή σας</summary>\n  <summary xml:lang=\"en-GB\">Configuration tools for your computer</summary>\n  <summary xml:lang=\"eo\">Agordiloj por via komputilo</summary>\n  <summary xml:lang=\"es\">Herramientas de configuración para su equipo</summary>\n  <summary xml:lang=\"et\">Oma arvuti tööriistade seadistamine</summary>\n  <summary xml:lang=\"eu\">Zure ordenagailua konfiguratzeko tresnak</summary>\n  <summary xml:lang=\"fi\">Tietokoneen ylläpitotyökalut</summary>\n  <summary xml:lang=\"fr\">Outils de configuration pour votre ordinateur</summary>\n  <summary xml:lang=\"gl\">Ferramentas de configuración para o computador.</summary>\n  <summary xml:lang=\"he\">כלי הגדרה למחשב שלך</summary>\n  <summary xml:lang=\"hi\">आपके कंप्यूटर के लिए विन्यास साधन</summary>\n  <summary xml:lang=\"hu\">Beállítóeszközök számítógépéhez</summary>\n  <summary xml:lang=\"ia\">Instrumentos de configuration per tu computator</summary>\n  <summary xml:lang=\"id\">Peralatan konfigurasi untuk komputermu</summary>\n  <summary xml:lang=\"is\">Grunnstillingaverkfæri fyrir tölvuna þína</summary>\n  <summary xml:lang=\"it\">Strumenti di configurazione per il tuo computer</summary>\n  <summary xml:lang=\"ja\">コンピュータ設定ツール</summary>\n  <summary xml:lang=\"ka\">თქვენი კომპიუტერის თქვენზე მორგების ხელსაწყოები</summary>\n  <summary xml:lang=\"ko\">컴퓨터 설정 도구</summary>\n  <summary xml:lang=\"lt\">Jūsų kompiuterio konfigūravimo įrankiai</summary>\n  <summary xml:lang=\"ml\">നിങ്ങളുടെ കമ്പ്യൂട്ടറിനുള്ള ക്രമീകരണങ്ങൾ</summary>\n  <summary xml:lang=\"my\">သင့်ကွန်ပြူတာအတွက် ပြင်ဆင်ရေးကိရိယာများ</summary>\n  <summary xml:lang=\"nb\">Oppsettsverktøy for datamaskinen</summary>\n  <summary xml:lang=\"nl\">Hulpmiddelen voor configuratie van uw computer</summary>\n  <summary xml:lang=\"nn\">Oppsettverktøy for datamaskina</summary>\n  <summary xml:lang=\"pa\">ਤੁਹਾਡੇ ਕੰਪਿਊਟਰ ਲਈ ਸੰਰਚਨਾ ਟੂਲ</summary>\n  <summary xml:lang=\"pl\">Narzędzia ustawień dla twojego komputera</summary>\n  <summary xml:lang=\"pt\">Ferramentas de configuração do seu computador</summary>\n  <summary xml:lang=\"pt-BR\">Ferramentas de configuração para seu computador</summary>\n  <summary xml:lang=\"ro\">Unelte de configurare pentru calculator</summary>\n  <summary xml:lang=\"ru\">Инструменты для настройки компьютера</summary>\n  <summary xml:lang=\"sa\">भवतः सङ्गणकस्य कृते समायोजनानिसाधनम्</summary>\n  <summary xml:lang=\"sk\">Koniguračné nástroje pre váš počítač</summary>\n  <summary xml:lang=\"sl\">Orodja za nastavitve vašega računalnika</summary>\n  <summary xml:lang=\"sv\">Inställningsverktyg för datorn</summary>\n  <summary xml:lang=\"ta\">உங்கள் கணினியை அமைக்க உதவும் கருவிகள்</summary>\n  <summary xml:lang=\"tg\">Абзорҳои танзимотӣ барои компютери шумо</summary>\n  <summary xml:lang=\"tr\">Bilgisayarınız için yapılandırma araçları</summary>\n  <summary xml:lang=\"uk\">Інструменти для налаштовування вашого комп'ютера</summary>\n  <summary xml:lang=\"vi\">Các công cụ cấu hình cho máy tính của bạn</summary>\n  <summary xml:lang=\"x-test\">xxConfiguration tools for your computerxx</summary>\n  <summary xml:lang=\"zh-CN\">您的计算机的配置工具</summary>\n  <summary xml:lang=\"zh-TW\">適用於您電腦的設定工具</summary>\n  <icon type=\"stock\">systemsettings</icon>\n  <description>\n    <p>DDE Control Center allows you to configure and tweak your DDE desktop to make it better meet your needs.</p>\n    <p xml:lang=\"zh-CN\">深度控制中心让您可以按需配置和调整 DDE 桌面环境。</p>\n  </description>\n  <url type=\"bugtracker\">https://github.com/linuxdeepin/developer-center/issues/</url>\n  <url type=\"help\">https://github.com/linuxdeepin/developer-center/issues/</url>\n  <url type=\"homepage\">https://bbs.deepin.org/</url>\n  <releases>\n    <release version=\"6.0.38\" date=\"2024-01-13\"/>\n  </releases>\n</component>\n"
  },
  {
    "path": "misc/systemd/dde-control-center.service.in",
    "content": "[Unit]\nDescription=DDE Control Center background service\n\n[Service]\nExecStart=@CMAKE_INSTALL_FULL_BINDIR@/dde-control-center -d\nType=dbus\nBusName=org.deepin.dde.ControlCenter1\nSlice=app.slice\n"
  },
  {
    "path": "misc/translate_desktop2ts.sh",
    "content": "#!/bin/bash\n\nDESKTOP_SOURCE_FILE=org.deepin.dde.control-center.desktop\nDESKTOP_TS_DIR=../translations/desktop/\n\n/usr/bin/deepin-desktop-ts-convert desktop2ts $DESKTOP_SOURCE_FILE $DESKTOP_TS_DIR\n"
  },
  {
    "path": "misc/translate_generation.sh",
    "content": "#!/bin/bash\n# this file is used to auto-generate .qm file from .ts file.\n# author: shibowen at linuxdeepin.com\nexport PATH=/usr/lib/qt6/bin:$PATH\ncd translations\nts_list=(`ls *.ts`)\nOUT_DIR=${1}\necho OUT_DIR： ${OUT_DIR}\nmkdir -p ${OUT_DIR}\nfor ts in \"${ts_list[@]}\"\ndo\n    printf \"\\nprocess ${ts}\\n\"\n    lrelease \"${ts}\" -qm ${OUT_DIR}/${ts:0:-2}qm\ndone\n"
  },
  {
    "path": "misc/translate_ts2desktop.sh",
    "content": "#!/bin/bash\n\nDESKTOP_TEMP_FILE=misc/org.deepin.dde.control-center.desktop.tmp\nDESKTOP_SOURCE_FILE=misc/org.deepin.dde.control-center.desktop\n\nDESKTOP_TS_DIR=translations/desktop/\n\n/usr/bin/deepin-desktop-ts-convert ts2desktop $DESKTOP_SOURCE_FILE $DESKTOP_TS_DIR $DESKTOP_TEMP_FILE\nmv $DESKTOP_TEMP_FILE $DESKTOP_SOURCE_FILE\n"
  },
  {
    "path": "src/dde-control-center/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\n\n#--------------------------frame--------------------------\nset(DCCFrame_Name ${DCC_FRAME_Library})\n\nadd_library(${DCCFrame_Name} SHARED\n    \"${DCC_PROJECT_ROOT_DIR}/include/dccfactory.h\"\n)\n\nfind_package(${QT_NS} COMPONENTS QmlModels REQUIRED)\nif(${QT_NS}_VERSION VERSION_GREATER_EQUAL 6.10)\n  find_package(${QT_NS} COMPONENTS QmlModelsPrivate QuickPrivate REQUIRED)\nendif()\n\ntarget_link_libraries(${DCCFrame_Name} PRIVATE\n    ${QT_NS}::Core\n)\n\nset_target_properties(${DCCFrame_Name} PROPERTIES\n    VERSION ${CMAKE_PROJECT_VERSION}\n    SOVERSION ${CMAKE_PROJECT_VERSION_MAJOR}\n    OUTPUT_NAME dde-control-center\n    EXPORT_NAME Control-Center\n)\n\ninstall(TARGETS ${DCCFrame_Name}\n        EXPORT DdeControlCenterTargets\n        LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}\n        INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/dde-control-center\n)\n\ninstall(EXPORT DdeControlCenterTargets\n        FILE DdeControlCenterTargets.cmake\n        NAMESPACE Dde::\n        DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/DdeControlCenter\n)\n#--------------------------qml-plugin--------------------------\nadd_subdirectory(plugin)\n#--------------------------dde-control-center--------------------------\nset(Control_Center_Name dde-control-center)\nfile(GLOB Control_Center_SRCS\n    \"*.h\"\n    \"*.cpp\"\n)\n\nadd_executable(${Control_Center_Name}\n    ${Control_Center_SRCS}\n    qrc/dcc.qrc\n)\n\ntarget_compile_definitions(${Control_Center_Name} PRIVATE CVERSION=\"${CMAKE_PROJECT_VERSION}\")\n\ntarget_include_directories(${Control_Center_Name} PRIVATE\n    include\n    plugin\n)\n\nset(Control_Center_Libraries\n    ${DCC_FRAME_Library}\n    ${DTK_NS}::Gui\n    ${QT_NS}::Gui\n    ${QT_NS}::DBus\n    ${QT_NS}::Concurrent\n    ${QT_NS}::Quick\n    dde-control-center-lib\n)\n\ntarget_link_libraries(${Control_Center_Name} PRIVATE\n    ${Control_Center_Libraries}\n)\n\nif (HAVE_DDE_API_EVENTLOGGER)\n    target_compile_definitions(${Control_Center_Name} PRIVATE HAVE_DDE_API_EVENTLOGGER)\n    target_link_libraries(${Control_Center_Name} PRIVATE DDEAPI::EventLogger)\nendif()\n\nfile(GLOB_RECURSE DCC_Translation_QML_FILES ${DCC_PROJECT_ROOT_DIR}/qml/*.qml ${DCC_PROJECT_ROOT_DIR}/src/*.qml)\nfile(GLOB_RECURSE DCC_Translation_SOURCE_FILES ${DCC_PROJECT_ROOT_DIR}/src/*.cpp ${DCC_PROJECT_ROOT_DIR}/src/*.h)\ndcc_handle_plugin_translation(NAME ${Control_Center_Name} SOURCE_DIR ${DCC_PROJECT_ROOT_DIR} QML_FILES ${DCC_Translation_QML_FILES} SOURCE_FILES ${DCC_Translation_SOURCE_FILES})\n# bin\ninstall(TARGETS ${Control_Center_Name} DESTINATION ${CMAKE_INSTALL_BINDIR})\n#----------------------------install config------------------------------\n#desktop\ninstall(FILES ${DCC_PROJECT_ROOT_DIR}/misc/org.deepin.dde.control-center.desktop DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications)\n\n#service\nconfigure_file(\n    ${DCC_PROJECT_ROOT_DIR}/misc/org.deepin.dde.ControlCenter1.service.in\n    ${CMAKE_CURRENT_BINARY_DIR}/org.deepin.dde.ControlCenter1.service\n    @ONLY)\ninstall(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.deepin.dde.ControlCenter1.service\n        DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/dbus-1/services)\n\n# systemd service\nif (NOT DEFINED SYSTEMD_USER_UNIT_DIR)\n    find_package(PkgConfig REQUIRED)\n    pkg_check_modules(Systemd REQUIRED systemd)\n    pkg_get_variable(SYSTEMD_USER_UNIT_DIR systemd systemduserunitdir)\nendif()\n\nconfigure_file(\n    ${CMAKE_SOURCE_DIR}/misc/systemd/dde-control-center.service.in\n    ${CMAKE_CURRENT_BINARY_DIR}/org.deepin.dde.control-center.service\n    @ONLY)\n\ninstall(FILES ${CMAKE_CURRENT_BINARY_DIR}/org.deepin.dde.control-center.service\n        DESTINATION ${SYSTEMD_USER_UNIT_DIR})\n\n# dev files\nfile(GLOB HEADERS \"${DCC_PROJECT_ROOT_DIR}/include/*\")\nset(INCLUDE_INSTALL_DIR ${CMAKE_INSTALL_INCLUDEDIR}/dde-control-center)\ninstall(FILES ${HEADERS} DESTINATION ${INCLUDE_INSTALL_DIR})\nconfigure_package_config_file(${DCC_PROJECT_ROOT_DIR}/misc/DdeControlCenterConfig.cmake.in\n    ${CMAKE_CURRENT_BINARY_DIR}/DdeControlCenterConfig.cmake\n    INSTALL_DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/DdeControlCenter\n    PATH_VARS INCLUDE_INSTALL_DIR\n    INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX})\n\nwrite_basic_package_version_file(\n    \"${CMAKE_CURRENT_BINARY_DIR}/DdeControlCenterConfigVersion.cmake\"\n    VERSION ${PROJECT_VERSION}\n    COMPATIBILITY SameMajorVersion\n)\n\ninstall(FILES ${CMAKE_CURRENT_BINARY_DIR}/DdeControlCenterConfig.cmake\n              ${CMAKE_CURRENT_BINARY_DIR}/DdeControlCenterConfigVersion.cmake\n        DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/DdeControlCenter)\n\ninstall(FILES \"${DCC_PROJECT_ROOT_DIR}/misc/DdeControlCenterPluginMacros.cmake\" DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/DdeControlCenter)\n\ninstall(FILES ${DCC_PROJECT_ROOT_DIR}/misc/org.deepin.dde.controlcenter.metainfo.xml DESTINATION ${CMAKE_INSTALL_DATADIR}/metainfo)\n\n#dde-grand-search-daemon conf\ninstall(FILES ${DCC_PROJECT_ROOT_DIR}/misc/org.deepin.dde-grand-search.dde-control-center-setting.conf\n    DESTINATION ${CMAKE_INSTALL_LIBDIR}/dde-grand-search-daemon/plugins/searcher)\n\n# debug config file\ninstall(FILES ${DCC_PROJECT_ROOT_DIR}/misc/deepin-debug-config/org.deepin.dde.control-center.json\n    DESTINATION ${CMAKE_INSTALL_DATADIR}/deepin-debug-config/deepin-debug-config.d)\ninstall(FILES ${DCC_PROJECT_ROOT_DIR}/misc/deepin-log-config/org.deepin.dde.control-center.json\n    DESTINATION ${CMAKE_INSTALL_DATADIR}/deepin-log-viewer/deepin-log.conf.d)\n"
  },
  {
    "path": "src/dde-control-center/controlcenterdbusadaptor.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"controlcenterdbusadaptor.h\"\n\n#include \"dccmanager.h\"\n\n#include <QCoreApplication>\n#include <QDBusConnection>\n#include <QDBusMessage>\n#include <QDBusPendingCall>\n#include <QJsonArray>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QLoggingCategory>\n#include <QTimer>\n#include <QWindow>\n\nusing namespace dccV25;\nstatic Q_LOGGING_CATEGORY(dccLog, \"dde.dcc.DBusAdaptor\");\n\nconst QString DBusProperties = \"org.freedesktop.DBus.Properties\";\nconst QString DBusPropertiesChanged = \"PropertiesChanged\";\n\n/*\n * Implementation of adaptor class DBusControlCenter\n */\n\nControlCenterDBusAdaptor::ControlCenterDBusAdaptor(DccManager *parent)\n    : QDBusAbstractAdaptor(parent)\n{\n    parent->mainWindow()->installEventFilter(this);\n    connect(parent, &DccManager::activeObjectChanged, this, &ControlCenterDBusAdaptor::updatePage);\n}\n\nControlCenterDBusAdaptor::~ControlCenterDBusAdaptor() { }\n\nDccManager *ControlCenterDBusAdaptor::parent() const\n{\n    return static_cast<DccManager *>(QObject::parent());\n}\n\nconst QRect ControlCenterDBusAdaptor::rect() const\n{\n    return parent()->mainWindow()->geometry();\n}\n\nconst QString ControlCenterDBusAdaptor::page() const\n{\n    QStringList path;\n    for (auto obj : parent()->currentObjects()) {\n        path.append(obj->name());\n    }\n    path.takeFirst();\n    return path.join(\"/\");\n}\n\nconst QString ControlCenterDBusAdaptor::path() const\n{\n    QStringList path;\n    for (auto obj : parent()->currentObjects()) {\n        if (!obj->displayName().isEmpty()) {\n            path.append(obj->displayName());\n        }\n    }\n    return path.join(\"/\");\n}\n\nvoid ControlCenterDBusAdaptor::Exit()\n{\n    qCDebug(dccLog()) << \"exit pid:\" << QCoreApplication::applicationPid();\n    QCoreApplication::exit();\n}\n\nvoid ControlCenterDBusAdaptor::Hide()\n{\n    parent()->mainWindow()->hide();\n}\n\nvoid ControlCenterDBusAdaptor::Show()\n{\n    parent()->show();\n}\n\nvoid ControlCenterDBusAdaptor::ShowHome()\n{\n    parent()->showPage(QString());\n}\n\nvoid ControlCenterDBusAdaptor::ShowPage(const QString &url)\n{\n    parent()->showPage(url);\n}\n\nvoid ControlCenterDBusAdaptor::Toggle()\n{\n    QWindow *w = parent()->mainWindow();\n    w->setVisible(!w->isVisible());\n    if (w->isVisible())\n        w->requestActivate();\n}\n\nQString ControlCenterDBusAdaptor::GetAllModule()\n{\n    return parent()->GetAllModule();\n}\n\nvoid ControlCenterDBusAdaptor::ShowPage(const QString &module, const QString &page)\n{\n    page.isEmpty() ? ShowPage(module) : ShowPage(module + \"/\" + page);\n}\n\nvoid ControlCenterDBusAdaptor::ShowModule(const QString &module)\n{\n    ShowPage(module);\n}\n\nbool ControlCenterDBusAdaptor::eventFilter(QObject *obj, QEvent *event)\n{\n    switch (event->type()) {\n    case QEvent::Move:\n    case QEvent::Resize:\n        updateRect();\n        break;\n    default:\n        break;\n    }\n    return QDBusAbstractAdaptor::eventFilter(obj, event);\n}\n\nvoid ControlCenterDBusAdaptor::updatePage()\n{\n    QDBusMessage msg = QDBusMessage::createSignal(DccDBusPath, DBusProperties, DBusPropertiesChanged);\n    msg << DccDBusInterface << QVariantMap({ { \"Page\", page() }, { \"Path\", path() } }) << QStringList();\n    QDBusConnection::sessionBus().asyncCall(msg);\n}\n\nvoid ControlCenterDBusAdaptor::updateRect()\n{\n    QDBusMessage msg = QDBusMessage::createSignal(DccDBusPath, DBusProperties, DBusPropertiesChanged);\n    msg << DccDBusInterface << QVariantMap({ { \"Rect\", rect() } }) << QStringList();\n    QDBusConnection::sessionBus().asyncCall(msg);\n}\n\nDBusControlCenterGrandSearchService::DBusControlCenterGrandSearchService(DccManager *parent)\n    : QDBusAbstractAdaptor(parent)\n    , m_autoExitTimer(new QTimer(this))\n{\n    m_autoExitTimer->setInterval(10000);\n    m_autoExitTimer->setSingleShot(true);\n    connect(m_autoExitTimer, &QTimer::timeout, this, [this]() {\n        // 当主界面show出来之后不再执行自动退出\n        if (!this->parent()->mainWindow()->isVisible())\n            QCoreApplication::quit();\n    });\n    m_autoExitTimer->start();\n}\n\nDBusControlCenterGrandSearchService::~DBusControlCenterGrandSearchService() { }\n\nDccManager *DBusControlCenterGrandSearchService::parent() const\n{\n    return static_cast<DccManager *>(QObject::parent());\n}\n\n// 匹配搜索结果\nQString DBusControlCenterGrandSearchService::Search(const QString &json)\n{\n    if (json == m_jsonCache) {\n        return QString();\n    }\n    m_jsonCache = json;\n    const QString &val = parent()->searchProxy(json);\n    m_autoExitTimer->start();\n    return val;\n}\n\n// 停止搜索\nbool DBusControlCenterGrandSearchService::Stop(const QString &json)\n{\n    m_jsonCache.clear();\n    bool val = parent()->stop(json);\n    m_autoExitTimer->start();\n    return val;\n}\n\n// 执行搜索\nbool DBusControlCenterGrandSearchService::Action(const QString &json)\n{\n    m_jsonCache.clear();\n    bool val = parent()->action(json);\n    m_autoExitTimer->start();\n    return val;\n}\n"
  },
  {
    "path": "src/dde-control-center/controlcenterdbusadaptor.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#pragma once\n\n#include <QDBusAbstractAdaptor>\n#include <QRect>\n\nQT_BEGIN_NAMESPACE\nclass QTimer;\nQT_END_NAMESPACE\n\n/*\n * Adaptor class for interface com.deepin.dde.ControlCenter\n */\n#define DccDBusService \"org.deepin.dde.ControlCenter1\"\n#define DccDBusInterface \"org.deepin.dde.ControlCenter1\"\n#define DccDBusPath \"/org/deepin/dde/ControlCenter1\"\n\nnamespace dccV25 {\n\nclass DccManager;\n\nclass ControlCenterDBusAdaptor : public QDBusAbstractAdaptor\n{\n    Q_OBJECT\n    Q_CLASSINFO(\"D-Bus Interface\", DccDBusInterface)\n\npublic:\n    Q_PROPERTY(QRect Rect READ rect)\n    Q_PROPERTY(QString Page READ page)\n    Q_PROPERTY(QString Path READ path)\n    explicit ControlCenterDBusAdaptor(DccManager *parent);\n    virtual ~ControlCenterDBusAdaptor();\n\n    inline DccManager *parent() const;\n\npublic:\n    const QRect rect() const;\n    const QString page() const;\n    const QString path() const;\n\npublic Q_SLOTS: // METHODS\n    void Exit();\n    void Hide();\n    void Show();\n    void ShowHome();\n    void ShowPage(const QString &url);\n    void Toggle();\n    QString GetAllModule();\n    Q_DECL_DEPRECATED_X(\"Use ShowPage\") void ShowPage(const QString &module, const QString &page);\n    Q_DECL_DEPRECATED_X(\"Use ShowPage\") void ShowModule(const QString &module);\n\nprivate:\n    bool eventFilter(QObject *obj, QEvent *event) override;\n    void updatePage();\n    void updateRect();\n};\n\nclass DBusControlCenterGrandSearchService : public QDBusAbstractAdaptor\n{\n    Q_OBJECT\n    Q_CLASSINFO(\"D-Bus Interface\", DccDBusInterface \".GrandSearch\")\n\npublic:\n    explicit DBusControlCenterGrandSearchService(DccManager *parent);\n    virtual ~DBusControlCenterGrandSearchService();\n\n    inline DccManager *parent() const;\n\npublic Q_SLOTS: // METHODS\n    QString Search(const QString &json);\n    bool Stop(const QString &json);\n    bool Action(const QString &json);\n\nprivate:\n    QTimer *m_autoExitTimer;\n    QString m_jsonCache; // 缓存下对重复请求不处理(规避全局搜索会调两次Search)\n};\n\n} // namespace dccV25\n"
  },
  {
    "path": "src/dde-control-center/dccmanager.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"dccmanager.h\"\n\n#include \"dccapp.h\"\n#include \"dccimageprovider.h\"\n#include \"dccobject_p.h\"\n#include \"navigationmodel.h\"\n#include \"pluginmanager.h\"\n#include \"searchmodel.h\"\n\n#include <DGuiApplicationHelper>\n#include <DIconTheme>\n\n#include <QCoreApplication>\n#include <QDBusConnection>\n#include <QDBusPendingCall>\n#include <QElapsedTimer>\n#include <QFileInfo>\n#include <QGuiApplication>\n#include <QJsonArray>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QLocale>\n#include <QLoggingCategory>\n#include <QQmlApplicationEngine>\n#include <QQmlContext>\n#include <QQuickWindow>\n#include <QScreen>\n#include <QTimer>\n#include <QTranslator>\n#include <QWindow>\n\n#ifdef HAVE_DDE_API_EVENTLOGGER\n#include <dde-api/eventlogger.hpp>\n\n// Event ID for control center page stay (10-digit number)\nconstexpr qint64 EVENT_LOGGER_CONTROL_CENTER_STAY = 1000600012;\n#endif\n\nDCORE_USE_NAMESPACE\n\nnamespace dccV25 {\nstatic Q_LOGGING_CATEGORY(dccLog, \"dde.dcc.manager\");\n\nconst QString WidthConfig = QStringLiteral(\"width\");\nconst QString HeightConfig = QStringLiteral(\"height\");\nconst QString HideConfig = QStringLiteral(\"hideModule\");\nconst QString DisableConfig = QStringLiteral(\"disableModule\");\nconst QString ControlCenterIcon = QStringLiteral(\"preferences-system\");\nconst QString ControlCenterGroupName = \"com.deepin.dde-grand-search.group.dde-control-center-setting\";\n\nDccManager::DccManager(QObject *parent)\n    : DccApp(parent)\n    , m_root(new DccObject())\n    , m_activeObject(nullptr)\n    , m_hideObjects(new DccObject(this))\n    , m_noAddObjects(new DccObject(this))\n    , m_noParentObjects(new DccObject(this))\n    , m_plugins(new PluginManager(this))\n    , m_window(nullptr)\n    , m_dconfig(DConfig::create(\"org.deepin.dde.control-center\", \"org.deepin.dde.control-center\", QString(), this))\n    , m_engine(nullptr)\n    , m_navModel(new NavigationModel(this))\n    , m_searchModel(new SearchModel(this))\n    , m_imageProvider(nullptr)\n    , m_sidebarWidth(-1)\n    , m_showTimer(nullptr)\n    , m_showFallbackTimer(nullptr)\n#ifdef HAVE_DDE_API_EVENTLOGGER\n    , m_pageStayTimer(nullptr)\n#endif\n{\n    m_hideObjects->setName(\"_hide\");\n    m_noAddObjects->setName(\"_noAdd\");\n    m_noParentObjects->setName(\"_noParent\");\n\n    m_root->setName(\"root\");\n    m_root->setCanSearch(false);\n    m_currentObjects.append(m_root);\n    onObjectAdded(m_root);\n    m_objMap.insert(m_root->name(), { m_root });\n    QJSEngine::setObjectOwnership(m_root, QQmlEngine::CppOwnership);\n    QJSEngine::setObjectOwnership(m_hideObjects, QQmlEngine::CppOwnership);\n    QJSEngine::setObjectOwnership(m_noAddObjects, QQmlEngine::CppOwnership);\n    QJSEngine::setObjectOwnership(m_noParentObjects, QQmlEngine::CppOwnership);\n\n#ifdef HAVE_DDE_API_EVENTLOGGER\n    qCInfo(dccLog) << \"EventLogger initialized\";\n\n    m_pageStayTimer = new QTimer(this);\n    m_pageStayTimer->setSingleShot(true);\n    m_pageStayTimer->setInterval(2000); // 2 seconds\n    connect(m_pageStayTimer, &QTimer::timeout, this, &DccManager::onPageStayTimeout);\n#endif\n\n    initConfig();\n    connect(m_plugins, &PluginManager::addObject, this, &DccManager::addObject);\n    connect(m_plugins, &PluginManager::loadAllFinished, this, &DccManager::handleShowReady, Qt::QueuedConnection);\n    m_showTimer = new QTimer(this);\n    m_showTimer->setInterval(60);\n    m_showTimer->setSingleShot(true);\n    connect(m_showTimer, &QTimer::timeout, this, &DccManager::tryShow);\n    m_showFallbackTimer = new QTimer(this);\n    m_showFallbackTimer->setSingleShot(true);\n    connect(m_showFallbackTimer, &QTimer::timeout, this, &DccManager::tryShowFallback);\n    m_showFallbackTimer->start(5000); // 防止插件卡死不显示界面\n}\n\nDccManager::~DccManager()\n{\n    qCDebug(dccLog()) << \"delete dccManger\";\n    clearData();\n    delete m_plugins;\n    qCDebug(dccLog()) << \"delete dccManger end\";\n}\n\nbool DccManager::installTranslator(const QString &name)\n{\n    const QStringList translateDirs = { TRANSLATE_READ_DIR,\n                                        TRANSLATE_READ_DIR \"/../v1.0\", // 兼容旧版位置\n                                        TRANSLATE_READ_DIR \"/..\" };\n    return Dtk::Gui::DGuiApplicationHelper::loadTranslator(name, translateDirs, { QLocale() });\n}\n\nvoid DccManager::init()\n{\n    if (m_engine)\n        return;\n\n    QQmlEngine::setObjectOwnership(dccV25::DccApp::instance(), QQmlEngine::CppOwnership);\n    qmlRegisterSingletonInstance(\"org.deepin.dcc\", 1, 0, \"DccApp\", dccV25::DccApp::instance());\n\n    m_engine = new QQmlApplicationEngine(this);\n    m_imageProvider = new DccImageProvider();\n    m_engine->addImageProvider(\"DccImage\", m_imageProvider);\n}\n\nQQmlApplicationEngine *DccManager::engine()\n{\n    return m_engine;\n}\n\nvoid DccManager::setMainWindow(QWindow *window)\n{\n    m_window = window;\n    connect(m_window, &QWindow::widthChanged, this, &DccManager::saveSize);\n    connect(m_window, &QWindow::heightChanged, this, &DccManager::saveSize);\n    connect(m_window, &QWindow::windowStateChanged, this, &DccManager::saveSize);\n    connect(qGuiApp, &QGuiApplication::screenAdded, this, &DccManager::handleScreenAdded);\n    m_window->installEventFilter(this);\n}\n\nvoid DccManager::loadModules(bool async, const QStringList &dirs)\n{\n    // onAddModule(m_rootModule);\n    m_plugins->loadModules(m_root, async, dirs, m_engine);\n    // showModule(m_rootModule);\n}\n\nint DccManager::width() const\n{\n    auto w = m_dconfig->value(WidthConfig).toInt();\n    return w >= 520 ? w : 780;\n}\n\nint DccManager::height() const\n{\n    auto h = m_dconfig->value(HeightConfig).toInt();\n    return h >= 400 ? h : 530;\n}\n\nint DccManager::sidebarWidth() const\n{\n    return m_sidebarWidth;\n}\n\nvoid DccManager::setSidebarWidth(int width)\n{\n    if (width > 0 && m_sidebarWidth != width) {\n        m_sidebarWidth = width;\n        m_dconfig->setValue(\"sidebarWidth\", m_sidebarWidth);\n        Q_EMIT sidebarWidthChanged(m_sidebarWidth);\n    }\n}\n\nDccApp::UosEdition DccManager::uosEdition() const\n{\n    DSysInfo::UosEdition edition = DSysInfo::uosEditionType();\n    return DccApp::UosEdition(edition);\n}\n\nQ_INVOKABLE Dtk::Core::DSysInfo::ProductType DccManager::productType() const\n{\n    return DSysInfo::productType();\n}\n\nbool DccManager::isTreeland() const\n{\n    return Dtk::Gui::DGuiApplicationHelper::testAttribute(Dtk::Gui::DGuiApplicationHelper::IsWaylandPlatform);\n}\n\nDccObject *DccManager::object(const QString &name)\n{\n    return findObject(name);\n}\n\ninline void noRepeatAdd(QVector<DccObject *> &list, DccObject *obj)\n{\n    if (!list.contains(obj)) {\n        list.append(obj);\n    }\n}\n\nvoid DccManager::addObject(DccObject *obj)\n{\n    if (!obj)\n        return;\n    QVector<DccObject *> objs;\n    objs.append(obj);\n    while (!objs.isEmpty()) {\n        DccObject *o = objs.takeFirst();\n        if (!o->name().isEmpty()) {\n            m_objMap[o->name()].append(o);\n            connect(o, &DccObject::objectDestroyed, this, &DccManager::onDccObjectDestroyed, Qt::UniqueConnection);\n        }\n        connect(o, &DccObject::addObject, this, &DccManager::addObject);\n        connect(o, &DccObject::removeObject, this, qOverload<DccObject *>(&DccManager::removeObject));\n        if (o->parentName().isEmpty()) {\n            DccObject::Private::FromObject(m_noParentObjects)->addChild(o, false);\n        } else {\n            if (contains(m_hideModule, o)) {\n                DccObject::Private::FromObject(o)->setFlagState(DCC_CONFIG_HIDDEN, true);\n            }\n            if (contains(m_disableModule, o)) {\n                DccObject::Private::FromObject(o)->setFlagState(DCC_CONFIG_DISABLED, true);\n            }\n            if (!o->isVisibleToApp()) {\n                connect(o, &DccObject::visibleToAppChanged, this, &DccManager::onVisible, Qt::ConnectionType(Qt::QueuedConnection | Qt::UniqueConnection));\n                DccObject::Private::FromObject(m_hideObjects)->addChild(o, false);\n            } else if (!addObjectToParent(o)) {\n                DccObject::Private::FromObject(m_noAddObjects)->addChild(o, false);\n            }\n        }\n\n        objs.append(DccObject::Private::FromObject(o)->getObjects());\n    }\n    // 处理m_noAddObject\n    objs.append(m_noAddObjects->getChildren());\n    while (!objs.isEmpty()) {\n        DccObject *o = objs.takeFirst();\n        if (const DccObject *parentObj = findParent(o)) {\n            DccObject::Private::FromObject(m_noAddObjects)->removeChild(o);\n            DccObject::Private::FromObject(parentObj)->addChild(o);\n            objs = m_noAddObjects->getChildren();\n        }\n    }\n}\n\nvoid DccManager::removeObject(DccObject *obj)\n{\n    if (!obj)\n        return;\n    removeObjectFromParent(obj);\n}\n\nvoid DccManager::removeObject(const QString &name)\n{\n    removeObject(findObject(name));\n}\n\nvoid DccManager::showPage(const QString &url)\n{\n    if (this->calledFromDBus()) {\n        // show(); // 先查找再显示则注释掉此处\n        int i = url.indexOf('?');\n        QString cmd = i != -1 ? url.mid(i + 1) : QString();\n        if (cmd.isEmpty() || isIndicatorShown(cmd)) {\n            show();\n        }\n        auto message = this->message();\n        setDelayedReply(true);\n        QMetaObject::invokeMethod(this, &DccManager::waitShowPage, Qt::QueuedConnection, url, message);\n    } else {\n        QMetaObject::invokeMethod(this, &DccManager::waitShowPage, Qt::QueuedConnection, url, QDBusMessage());\n    }\n}\n\nvoid DccManager::showPage(DccObject *obj)\n{\n    QMetaObject::invokeMethod(this, \"doShowPage\", Qt::QueuedConnection, QPointer<DccObject>(obj), QString());\n}\n\nvoid DccManager::showPage(DccObject *obj, const QString &cmd)\n{\n    QMetaObject::invokeMethod(this, \"doShowPage\", Qt::QueuedConnection, QPointer<DccObject>(obj), cmd);\n}\n\nvoid DccManager::toBack()\n{\n    int row = m_navModel->rowCount() - 2;\n    if (row < 0) {\n        showPage(m_root);\n    } else {\n        QString url = m_navModel->data(m_navModel->index(row, 0), NavigationModel::NavUrlRole).toString();\n        if (!url.isEmpty()) {\n            showPage(url);\n        }\n    }\n}\n\nQWindow *DccManager::mainWindow() const\n{\n    return m_window;\n}\n\nvoid DccManager::showHelp()\n{\n    QString helpTitle;\n    if (1 < m_currentObjects.count())\n        helpTitle = m_currentObjects.last()->name();\n    if (helpTitle.isEmpty())\n        helpTitle = \"controlcenter\";\n\n    const QString &dmanInterface = \"com.deepin.Manual.Open\";\n    QDBusMessage message = QDBusMessage::createMethodCall(dmanInterface, \"/com/deepin/Manual/Open\", dmanInterface, \"OpenTitle\");\n    message << \"dde\" << helpTitle;\n    QDBusConnection::sessionBus().asyncCall(message);\n}\n\nQString DccManager::search(const QString &json) const\n{\n    QJsonDocument jsonDocument = QJsonDocument::fromJson(json.toLocal8Bit().data());\n    if (!jsonDocument.isNull()) {\n        QJsonObject jsonObject = jsonDocument.object();\n\n        // 处理搜索任务, 返回搜索结果\n        QJsonArray items;\n        m_searchModel->setFilterRegularExpression(jsonObject.value(\"cont\").toString());\n        qCDebug(dccLog()) << \"search key:\" << jsonObject.value(\"cont\").toString();\n        for (int i = 0; i < m_searchModel->rowCount(); ++i) {\n            QJsonObject jsonObj;\n            jsonObj.insert(\"item\", m_searchModel->data(m_searchModel->index(i, 0), SearchModel::SearchUrlRole).toString());\n            jsonObj.insert(\"name\", m_searchModel->data(m_searchModel->index(i, 0), SearchModel::SearchPlainTextRole).toString());\n            jsonObj.insert(\"icon\", ControlCenterIcon);\n            jsonObj.insert(\"type\", \"application/x-dde-control-center-xx\");\n            qCDebug(dccLog()) << \"search results:\" << jsonObj[\"name\"].toString();\n            items.insert(i, jsonObj);\n        }\n\n        QJsonObject objCont;\n        objCont.insert(\"group\", ControlCenterGroupName);\n        objCont.insert(\"items\", items);\n\n        QJsonArray arrConts;\n        arrConts.insert(0, objCont);\n\n        QJsonObject jsonResults;\n        jsonResults.insert(\"ver\", jsonObject.value(\"ver\"));\n        jsonResults.insert(\"mID\", jsonObject.value(\"mID\"));\n        jsonResults.insert(\"cont\", arrConts);\n\n        QJsonDocument document;\n        document.setObject(jsonResults);\n\n        return document.toJson(QJsonDocument::Compact);\n    }\n\n    return QString();\n}\n\nQString DccManager::searchProxy(const QString &json) const\n{\n    if (this->calledFromDBus()) {\n        if (!m_plugins->loadFinished()) {\n            qDebug(dccLog) << \"Delay to get searching due to plugins unloaded.\";\n            auto message = this->message();\n            setDelayedReply(true);\n            QObject::connect(\n                    m_plugins,\n                    &PluginManager::loadAllFinished,\n                    this,\n                    [this, json, message]() {\n                        const auto &ret = this->search(json);\n                        qDebug(dccLog) << \"Searching finished, result size:\" << ret.size();\n                        QDBusConnection::sessionBus().send(message.createReply(ret));\n                    },\n                    Qt::SingleShotConnection);\n\n            return {};\n        }\n    }\n    return search(json);\n}\n\nbool DccManager::stop(const QString &)\n{\n    return true;\n}\n\nbool DccManager::action(const QString &json)\n{\n    QString searchName;\n    QJsonDocument jsonDocument = QJsonDocument::fromJson(json.toLocal8Bit().data());\n    if (!jsonDocument.isNull()) {\n        QJsonObject jsonObject = jsonDocument.object();\n        if (jsonObject.value(\"action\") == \"openitem\") {\n            // 打开item的操作\n            searchName = jsonObject.value(\"item\").toString();\n        }\n    }\n\n    show();\n    showPage(searchName);\n    return true;\n}\n\nQString DccManager::GetAllModule()\n{\n    auto message = this->message();\n    setDelayedReply(true);\n    QMetaObject::invokeMethod(this, &DccManager::doGetAllModule, Qt::QueuedConnection, message);\n    return QString();\n}\n\nvoid DccManager::onDccObjectDestroyed(DccObject *obj)\n{\n    if (m_plugins->isDeleting()) {\n        return;\n    }\n    const QString &name = obj->name();\n    if (name.isEmpty()) {\n        return;\n    }\n    auto it = m_objMap.find(name);\n    if (it == m_objMap.end()) {\n        return;\n    }\n    it->removeOne(obj);\n    if (it->isEmpty()) {\n        m_objMap.erase(it);\n    }\n}\n\nQAbstractItemModel *DccManager::navModel() const\n{\n    return m_navModel;\n}\n\nQSortFilterProxyModel *DccManager::searchModel() const\n{\n    return m_searchModel;\n}\n\nvoid DccManager::cacheImage(const QString &id, const QSize &thumbnailSize)\n{\n    if (m_imageProvider) {\n        m_imageProvider->cacheImage(id, thumbnailSize);\n    }\n}\n\nvoid DccManager::show()\n{\n    QWindow *w = DccManager::mainWindow();\n    if (!w) {\n        return;\n    }\n\n    if (w->windowStates() == Qt::WindowMinimized || !w->isVisible()) {\n        w->showNormal();\n    }\n    w->requestActivate();\n}\n\nvoid DccManager::initConfig()\n{\n    if (!m_dconfig->isValid()) {\n        qCWarning(dccLog()) << QString(\"DConfig is invalide, name:[%1], subpath[%2].\").arg(m_dconfig->name(), m_dconfig->subpath());\n        return;\n    }\n\n    updateModuleConfig(HideConfig);\n    updateModuleConfig(DisableConfig);\n    m_sidebarWidth = m_dconfig->value(\"sidebarWidth\", -1).toInt();\n    if (m_sidebarWidth <= 0) {\n        // 英文环境做特殊处理，加宽侧边栏\n        QLocale locale;\n        m_sidebarWidth = locale.language() == QLocale::English ? 210 : 180;\n    }\n    connect(m_dconfig, &DConfig::valueChanged, this, &DccManager::updateModuleConfig);\n}\n\nbool DccManager::contains(const QSet<QString> &urls, const DccObject *obj)\n{\n    for (auto &&url : urls) {\n        if (url.contains(\"*\")) {\n            if (isMatch(url, obj)) {\n                return true;\n            }\n        } else {\n            if (isEqual(url, obj)) {\n                return true;\n            }\n        }\n    }\n    return false;\n}\n\nQStringList DccManager::splitUrl(const QString &url, QString &targetName)\n{\n    QStringList paths = url.split(\"/\", Qt::SkipEmptyParts);\n    if (!paths.isEmpty()) {\n        targetName = paths.takeLast();\n    }\n    return paths;\n}\n\nbool DccManager::isMatchByName(const QString &url, const QString &name)\n{\n    Q_ASSERT(!url.isEmpty());\n\n    QString objPath = \"/\" + name;\n    int urlPos = url.size() - 1;\n    int objPos = objPath.size() - 1;\n    bool inWildcard = false; //  包含*\n    while (urlPos >= 0 && objPos >= 0) {\n        if (url[urlPos] == objPath[objPos]) {\n            urlPos--;\n            objPos--;\n            inWildcard = false;\n        } else if (url[urlPos] == '*') {\n            inWildcard = true;\n            urlPos--;\n        } else if (inWildcard && objPath[objPos] != '/') {\n            objPos--;\n        } else {\n            return false;\n        }\n    }\n    if (inWildcard) {\n        return true;\n    }\n    if (urlPos >= 0) {\n        return true; // 等价于 objPath[0] == '/' || url[urlPos] == '/';\n    }\n    if (objPos >= 0) {\n        return objPath[objPos] == '/' || url[0] == '/';\n    }\n    return true;\n}\n\n// url需要在调用处保证非空\nbool DccManager::isMatch(const QString &url, const DccObject *obj)\n{\n    return isMatchByName(url, obj->parentName() + \"/\" + obj->name());\n}\n\nbool DccManager::isEqualByName(const QString &url, const QString &name)\n{\n    for (auto it = url.crbegin(), itObj = name.crbegin();; ++it, ++itObj) {\n        if (it == url.crend()) {\n            return itObj == name.crend() || (*itObj) == '/';\n        }\n        if (itObj == name.crend()) {\n            return (*it) == '/';\n        }\n        if (*it != *itObj) {\n            return false;\n        }\n    }\n    return true;\n}\n\nbool DccManager::isEqual(const QString &url, const DccObject *obj)\n{\n    return isEqualByName(url, obj->parentName() + \"/\" + obj->name());\n}\n\nDccObject *DccManager::findObject(const QString &url)\n{\n    if (!m_root || url.isEmpty()) {\n        return nullptr;\n    }\n    QString targetName;\n    QStringList paths = splitUrl(url, targetName);\n    if (targetName.isEmpty()) {\n        return nullptr;\n    }\n    auto it = m_objMap.find(targetName);\n    if (it == m_objMap.end()) {\n        return nullptr;\n    }\n    if (paths.isEmpty()) {\n        return it.value().first();\n    }\n    QString parentPath = paths.join(\"/\");\n    for (const auto &obj : it.value()) {\n        if (isEqualByName(parentPath, obj->parentName())) {\n            return obj;\n        }\n    }\n    return nullptr;\n}\n\nQVector<DccObject *> DccManager::findObjects(const QString &url, bool one)\n{\n    if (!m_root || url.isEmpty()) {\n        return {};\n    }\n    QString targetName;\n    QStringList paths = splitUrl(url, targetName);\n    if (targetName.isEmpty()) {\n        return {};\n    }\n    QVector<DccObject *> rets;\n    QVector<DccObject *> objs;\n    if (!targetName.contains(\"*\")) {\n        auto it = m_objMap.find(targetName);\n        if (it == m_objMap.end()) {\n            return {};\n        }\n        objs = it.value();\n    } else {\n        targetName = \"/\" + targetName;\n        for (auto it = m_objMap.begin(); it != m_objMap.end(); it++) {\n            if (isMatchByName(targetName, it.key())) {\n                objs.append(it.value());\n            }\n        }\n    }\n    if (paths.isEmpty()) {\n        return objs;\n    }\n    QString parentPath = \"/\" + paths.join(\"/\");\n    for (auto &&obj : objs) {\n        if (isMatchByName(parentPath, obj->parentName())) {\n            rets.append(obj);\n            if (one) {\n                break;\n            }\n        }\n    }\n    return rets;\n}\n\nconst DccObject *DccManager::findParent(const DccObject *obj)\n{\n    const QString &path = obj->parentName();\n    const DccObject *p = DccObject::Private::FromObject(obj)->getRecommendedParent();\n    const QObject *op = obj;\n    if (p && !p->name().isEmpty() && isEqual(path, p)) {\n        return p;\n    }\n    while (op) {\n        op = op->parent();\n        p = qobject_cast<const DccObject *>(op);\n        if (p && !p->name().isEmpty() && isEqual(path, p)) {\n            return p;\n        }\n    }\n    qCDebug(dccLog()) << obj->name() << \"find parent:\" << path << \".Parent-child position error, traverse all objects to find.\";\n    p = findObject(path);\n    return p;\n}\n\nbool DccManager::eventFilter(QObject *watched, QEvent *event)\n{\n    if (event->type() == QEvent::MouseButtonPress && watched == m_window && m_window) {\n        QMouseEvent *e = static_cast<QMouseEvent *>(event);\n        if (e->buttons() == Qt::LeftButton) {\n            QQuickWindow *w = static_cast<QQuickWindow *>(m_window.get());\n            if (w) {\n                QQuickItem *focusItem = w->activeFocusItem();\n                if (focusItem) {\n                    QObject *popup = focusItem->property(\"popup\").value<QObject *>();\n                    if (!popup || !popup->property(\"visible\").toBool()) {\n                        QPointF point = focusItem->mapFromGlobal(e->globalPosition());\n                        QRectF rect(0, 0, focusItem->width(), focusItem->height());\n                        if (!rect.contains(point)) {\n                            QQuickItem *item = w->property(\"sidebarPage\").value<QQuickItem *>();\n                            if (item) {\n                                item->forceActiveFocus();\n                            }\n                        }\n                    }\n                }\n            }\n        }\n    }\n    return DccApp::eventFilter(watched, event);\n}\n\nbool DccManager::isIndicatorShown(const QString &cmd) const\n{\n    return cmd == \"indicator=true\";\n}\n\nvoid DccManager::saveSize()\n{\n    if (!m_window)\n        return;\n    if (!m_dconfig->isValid())\n        return;\n\n    const auto states = m_window->windowStates();\n    const bool isMaximized = states.testFlag(Qt::WindowMaximized) || states.testFlag(Qt::WindowFullScreen);\n    const bool visible = m_window->isVisible();\n\n    // Only save normal size when visible and not maximized.\n    // During maximization, widthChanged/heightChanged may fire with screen\n    // dimensions before windowStateChanged updates the state.\n    // On some platforms (e.g. Wayland), hiding a window may reset its state,\n    // so we must not save the reset dimensions either.\n    if (!visible || isMaximized)\n        return;\n\n    m_dconfig->setValue(WidthConfig, m_window->width());\n    m_dconfig->setValue(HeightConfig, m_window->height());\n}\n\nvoid DccManager::handleScreenAdded(QScreen *screen)\n{\n    Q_UNUSED(screen)\n    if (!m_window)\n        return;\n\n    // Requirement: when HDMI re-connected, if the control center is maximized,\n    // restore it back to the default (normal) window size.\n    if (!m_window->windowStates().testFlag(Qt::WindowMaximized))\n        return;\n\n    m_window->showNormal();\n\n    QScreen *targetScreen = m_window->screen() ? m_window->screen() : qGuiApp->primaryScreen();\n    if (!targetScreen)\n        return;\n\n    QRect avail = targetScreen->availableGeometry();\n    int w = width();\n    int h = height();\n\n    // Clamp into the available area (avoid going off-screen)\n    // Keep consistent with `DccWindow.qml` minimum sizes.\n    constexpr int kMinW = 520;\n    constexpr int kMinH = 400;\n    w = qMax(kMinW, qMin(w, avail.width()));\n    h = qMax(kMinH, qMin(h, avail.height()));\n\n    m_window->resize(QSize(w, h));\n    const int x = avail.x() + (avail.width() - w) / 2;\n    const int y = avail.y() + (avail.height() - h) / 2;\n    m_window->setPosition(QPoint(x, y));\n    m_window->requestActivate();\n}\n\nQString DccManager::parseShowPageUrl(const QString &url, QString &cmd) const\n{\n    const int i = url.indexOf('?');\n    cmd = i != -1 ? url.mid(i + 1) : QString();\n    return url.mid(0, i).split('/', Qt::SkipEmptyParts).join('/'); // 移除多余的/\n}\n\nvoid DccManager::replyShowPageRequest(const QString &url, const QDBusMessage &message, bool found) const\n{\n    if (message.type() == QDBusMessage::InvalidMessage) {\n        return;\n    }\n\n    if (found) {\n        QDBusConnection::sessionBus().send(message.createReply());\n    } else {\n        QDBusConnection::sessionBus().send(message.createErrorReply(QDBusError::InvalidArgs, QString(\"not found url:\") + url));\n    }\n}\n\nvoid DccManager::startPendingShow(const QString &url, const QDBusMessage &message)\n{\n    m_showUrl = url;\n    m_showMessage = message;\n    m_showTimer->start();\n}\n\nvoid DccManager::waitShowPage(const QString &url, const QDBusMessage message)\n{\n    qCInfo(dccLog()) << \"show page:\" << url;\n    clearShowParam();\n    m_showFallbackTimer->stop();\n    if (m_plugins->isDeleting()) {\n        return;\n    }\n\n    DccObject *obj = nullptr;\n    QString cmd;\n    if (url.isEmpty()) {\n        obj = m_root;\n        showPage(obj, QString());\n    } else {\n        const QString path = parseShowPageUrl(url, cmd);\n        const auto objs = findObjects(path, true);\n        obj = objs.isEmpty() ? nullptr : objs.first();\n        if (obj) {\n            showPage(obj, cmd);\n        } else if (!m_plugins->loadFinished()) {\n            startPendingShow(url, message);\n            return;\n        }\n    }\n\n    replyShowPageRequest(url, message, obj);\n}\n\nvoid DccManager::clearShowParam()\n{\n    m_showTimer->stop();\n    if (!m_showUrl.isEmpty()) {\n        m_showUrl.clear();\n        m_showMessage = QDBusMessage();\n    }\n}\n\nvoid DccManager::handleShowReady()\n{\n    if (!m_showUrl.isEmpty()) {\n        tryShow();\n    } else if (m_showFallbackTimer->isActive() && !m_activeObject) {\n        tryShowFallback();\n    }\n}\n\nvoid DccManager::tryShow()\n{\n    if (m_showUrl.isEmpty()) {\n        return;\n    }\n\n    QString cmd;\n    const QString path = parseShowPageUrl(m_showUrl, cmd);\n    DccObject *obj = findObject(path);\n    if (obj) {\n        const QString url = m_showUrl;\n        const QDBusMessage message = m_showMessage;\n        clearShowParam();\n        showPage(obj, cmd);\n        replyShowPageRequest(url, message, true);\n    } else if (m_plugins->loadFinished()) {\n        const QString url = m_showUrl;\n        const QDBusMessage message = m_showMessage;\n        clearShowParam();\n        replyShowPageRequest(url, message, false);\n        if (!m_activeObject) {\n            showPage(m_root, QString());\n        }\n    } else if (!m_plugins->isDeleting()) {\n        m_showTimer->start();\n    }\n}\n\nvoid DccManager::tryShowFallback()\n{\n    if (m_plugins->isDeleting() || !m_showUrl.isEmpty() || m_activeObject) {\n        return;\n    }\n\n    m_showFallbackTimer->stop();\n    showPage(m_root, QString());\n}\n\nvoid DccManager::doShowPage(QPointer<DccObject> obj, const QString &cmd)\n{\n    if (m_plugins->isDeleting() || !obj) {\n        return;\n    }\n    m_showFallbackTimer->stop();\n    qCInfo(dccLog) << \"ShowPage:\" << obj << \" have cmd:\" << !cmd.isEmpty();\n    // 禁用首页\n    if (obj == m_root) {\n        if (m_root->getChildren().isEmpty()) {\n            return;\n        }\n        obj = m_root->getChildren().first();\n    }\n    if (m_activeObject == obj && cmd.isEmpty()) {\n        return;\n    }\n    bool indicatorShown = isIndicatorShown(cmd);\n    if (!cmd.isEmpty() && !indicatorShown) {\n        Q_EMIT obj->active(cmd);\n        return;\n    }\n    DccObject *parent = obj;\n    while (parent && parent != m_root) {\n        parent = DccObject::Private::FromObject(parent)->getParent();\n    }\n    if (parent != m_root) {\n        return;\n    }\n    QVector<DccObject *> modules;\n    QVector<DccObject *> triggeredObjs;\n    DccObject *triggeredObj = obj;\n    if (triggeredObj->pageType() == DccObject::MenuEditor && !triggeredObj->getChildren().isEmpty()) {\n        triggeredObj = triggeredObj->getChildren().first();\n    }\n    DccObject *tmpObj = triggeredObj;\n    tmpObj->setCurrentObject(nullptr);\n    tmpObj->active(QString());\n    while (tmpObj && (tmpObj->pageType() != DccObject::Menu)) { // 页面中的控件，则激活项为父项\n        triggeredObjs.append(tmpObj);\n        DccObject *tmpObjParent = DccObject::Private::FromObject(tmpObj)->getParent();\n        if (tmpObjParent) {\n            tmpObjParent->setCurrentObject(tmpObj);\n            tmpObjParent->active(QString());\n        }\n        tmpObj = tmpObjParent;\n    }\n    if (!tmpObj) {\n        return;\n    }\n    modules.append(tmpObj);\n    DccObject *p = DccObject::Private::FromObject(tmpObj)->getParent();\n    while (p) {\n        p->setCurrentObject(tmpObj);\n        Q_EMIT p->active(QString());\n        modules.append(p);\n        tmpObj = p;\n        p = DccObject::Private::FromObject(p)->getParent();\n    }\n    triggeredObjs.append(modules);\n    std::reverse(modules.begin(), modules.end());\n    std::reverse(triggeredObjs.begin(), triggeredObjs.end());\n    auto animationMode = DccApp::AnimationPush;\n\n    // 处理旧对象\n    for (auto *oldObj : std::as_const(m_triggeredObjects)) {\n        if (!triggeredObjs.contains(oldObj)) {\n            oldObj->setCurrentObject(nullptr);\n            animationMode = DccApp::AnimationPop;\n        }\n        if (oldObj != m_root && oldObj != triggeredObjs.last()) {\n            Q_EMIT oldObj->deactive();\n        }\n    }\n    setAnimationMode(animationMode);\n\n    // 更新当前对象\n    m_currentObjects = modules;\n    m_triggeredObjects = triggeredObjs;\n    Q_EMIT triggeredObjectsChanged(m_triggeredObjects);\n    if (auto *lastObj = m_currentObjects.last(); lastObj != m_activeObject) {\n        m_activeObject = lastObj;\n        Q_EMIT activeObjectChanged(m_activeObject);\n    }\n\n    // 更新导航模型和日志\n    m_navModel->setNavigationObject(m_currentObjects);\n    qCInfo(dccLog) << \"trigger object:\" << triggeredObj->name() << \" active object:\" << m_activeObject->name() << \" parent:\" << (void *)triggeredObj->parentItem();\n\n#ifdef HAVE_DDE_API_EVENTLOGGER\n    // Reset and start page stay timer when page changes\n    if (m_pageStayTimer) {\n        m_pageStayTimer->stop();\n        // Build page tags directly from current objects\n        m_lastPageTags.clear();\n        for (auto *obj : m_currentObjects) {\n            if (obj != m_root) {\n                m_lastPageTags.append(obj->name());\n            }\n        }\n        m_pageStayTimer->start();\n    }\n#endif\n\n    // 触发父项变更\n    if (auto *parentItem = triggeredObj->parentItem(); !(triggeredObj->pageType() & DccObject::Menu) && parentItem) {\n        Q_EMIT activeItemChanged(parentItem, indicatorShown);\n    }\n}\n\nQSet<QString> findAddItems(QSet<QString> *oldSet, QSet<QString> *newSet)\n{\n    QSet<QString> addSet;\n    for (auto &&key : *newSet) {\n        if (!oldSet->contains(key)) {\n            addSet.insert(key);\n        }\n    }\n    return addSet;\n}\n\nvoid DccManager::updateModuleConfig(const QString &key)\n{\n    QSet<QString> oldModuleConfig;\n    QSet<QString> *newModuleConfig = nullptr;\n    uint32_t type = DCC_CONFIG_HIDDEN;\n    if (key == HideConfig) {\n        type = DCC_CONFIG_HIDDEN;\n        oldModuleConfig = m_hideModule;\n        newModuleConfig = &m_hideModule;\n    } else if (key == DisableConfig) {\n        type = DCC_CONFIG_DISABLED;\n        oldModuleConfig = m_disableModule;\n        newModuleConfig = &m_disableModule;\n    } else {\n        return;\n    }\n    const auto &list = m_dconfig->value(key).toStringList();\n    // 预处理，去掉首尾空格项，去多通配符项\n    newModuleConfig->clear();\n    for (auto &&config : list) {\n        bool isValid = false;\n        // 有效字符为：字母、数字、'/'、'*'\n        for (auto &c : config) {\n            isValid = c == '/' || c == '*' || c.isLetterOrNumber();\n            if (!isValid) {\n                break;\n            }\n        }\n        if (isValid) {\n            newModuleConfig->insert(config);\n        }\n    }\n    QSet<QString> addModuleConfig = findAddItems(&oldModuleConfig, newModuleConfig);\n    QSet<QString> removeModuleConfig = findAddItems(newModuleConfig, &oldModuleConfig);\n    for (auto &&url : addModuleConfig) {\n        QVector<DccObject *> objs = findObjects(url);\n        for (auto &&obj : objs) {\n            DccObject::Private::FromObject(obj)->setFlagState(type, true);\n        }\n    }\n    for (auto &&url : removeModuleConfig) {\n        QVector<DccObject *> objs = findObjects(url);\n        for (auto &&obj : objs) {\n            DccObject::Private::FromObject(obj)->setFlagState(type, false);\n        }\n    }\n    if (newModuleConfig == &m_hideModule && (!addModuleConfig.isEmpty() || !removeModuleConfig.isEmpty())) {\n        Q_EMIT hideModuleChanged(m_hideModule);\n    }\n}\n\nvoid DccManager::onVisible(bool visible)\n{\n    if (!m_root) {\n        return;\n    }\n    DccObject *obj = qobject_cast<DccObject *>(sender());\n    if (!obj) {\n        return;\n    }\n    if (visible) {\n        QVector<DccObject *> objs;\n        objs.append(obj->getChildren());\n        while (!objs.isEmpty()) {\n            auto o = objs.takeFirst();\n            if (o->isVisibleToApp()) {\n                objs.append(o->getChildren());\n            } else {\n                connect(o, &DccObject::visibleToAppChanged, this, &DccManager::onVisible, Qt::ConnectionType(Qt::QueuedConnection | Qt::UniqueConnection));\n                removeObjectFromParent(o);\n                DccObject::Private::FromObject(m_hideObjects)->addChild(o, false);\n            }\n        }\n        DccObject::Private::FromObject(m_hideObjects)->removeChild(obj);\n        if (!addObjectToParent(obj)) {\n            DccObject::Private::FromObject(m_noAddObjects)->addChild(obj, false);\n        }\n    } else {\n        removeObjectFromParent(obj);\n        DccObject::Private::FromObject(m_hideObjects)->addChild(obj, false);\n    }\n}\n\nvoid DccManager::onObjectAdded(DccObject *obj)\n{\n    if (!m_root) {\n        return;\n    }\n    m_searchModel->addSearchData(obj, QString(), QString());\n    QVector<DccObject *> objs;\n    objs.append(obj);\n    while (!objs.isEmpty()) {\n        auto o = objs.takeFirst();\n        connect(o, &DccObject::childAdded, this, &DccManager::onObjectAdded);\n        connect(o, &DccObject::childRemoved, this, &DccManager::onObjectRemoved);\n        connect(o, &DccObject::displayNameChanged, this, &DccManager::onObjectDisplayChanged);\n        connect(o, &DccObject::visibleToAppChanged, this, &DccManager::onVisible, Qt::ConnectionType(Qt::QueuedConnection | Qt::UniqueConnection));\n        objs.append(o->getChildren());\n    }\n}\n\nvoid DccManager::onObjectRemoved(DccObject *obj)\n{\n    if (!m_root) {\n        return;\n    }\n    QVector<DccObject *> objs;\n    objs.append(obj);\n    while (!objs.isEmpty()) {\n        auto o = objs.takeFirst();\n        disconnect(o, &DccObject::childAdded, this, nullptr);\n        disconnect(o, &DccObject::childRemoved, this, nullptr);\n        disconnect(o, &DccObject::displayNameChanged, this, nullptr);\n        m_searchModel->removeSearchData(o, QString());\n        objs.append(o->getChildren());\n    }\n    auto it = std::find(m_triggeredObjects.begin(), m_triggeredObjects.end(), obj);\n    if (it != m_triggeredObjects.end()) {\n        m_triggeredObjects.erase(it, m_triggeredObjects.end());\n    }\n    DccObject *parentObj = m_root;\n    for (auto &&o : m_currentObjects) {\n        if (o == obj) {\n            doShowPage(QPointer<DccObject>(parentObj), QString());\n            break;\n        }\n        parentObj = o;\n    }\n}\n\nvoid DccManager::onObjectDisplayChanged()\n{\n    if (!m_root) {\n        return;\n    }\n    DccObject *obj = qobject_cast<DccObject *>(sender());\n    if (obj) {\n        m_searchModel->removeSearchData(obj, QString());\n        m_searchModel->addSearchData(obj, QString(), QString());\n    }\n}\n\nbool DccManager::addObjectToParent(DccObject *obj)\n{\n    if (const DccObject *parentObj = findParent(obj)) {\n        DccObject::Private::FromObject(parentObj)->addChild(obj);\n        return true;\n    }\n    return false;\n}\n\nbool DccManager::removeObjectFromParent(DccObject *obj)\n{\n    DccObject *parentObj = DccObject::Private::FromObject(obj)->getParent();\n    if (parentObj) {\n        DccObject::Private::FromObject(parentObj)->removeChild(obj);\n        return true;\n    }\n    return false;\n}\n\nvoid DccManager::clearData()\n{\n    if (m_plugins->isDeleting()) {\n        return;\n    }\n    m_imageProvider = nullptr;\n    m_plugins->beginDelete();\n    clearShowParam();\n\n    m_window->hide();\n    m_window->close();\n    m_objMap.clear();\n    // doShowPage(m_root, QString());\n\n#ifdef DCC_ENABLE_MEMORY_MANAGEMENT\n    // TODO: delete m_engine会有概率崩溃\n    m_window = nullptr;\n    qCDebug(dccLog()) << \"delete root begin\";\n    DccObject *root = m_root;\n    m_root = nullptr;\n    Q_EMIT rootChanged(m_root);\n    qCDebug(dccLog()) << \"delete root end\";\n\n    qCDebug(dccLog()) << \"delete clearData hide:\" << m_hideObjects->getChildren().size() << \"noAdd:\" << m_noAddObjects->getChildren().size() << \"noParent\" << m_noParentObjects->getChildren().size();\n    delete m_noParentObjects;\n    delete m_noAddObjects;\n    delete m_hideObjects;\n    qCDebug(dccLog()) << \"delete dccobject\";\n    qCDebug(dccLog()) << \"delete QmlEngine\";\n    delete m_engine;\n    qCDebug(dccLog()) << \"clear QmlEngine\";\n    m_engine = nullptr;\n    delete root;\n#endif\n}\n\nvoid DccManager::waitLoadFinished() const\n{\n    if (!m_plugins->loadFinished()) {\n        QEventLoop loop;\n        QTimer timer;\n        connect(&timer, &QTimer::timeout, &loop, &QEventLoop::quit);\n        connect(m_plugins, &PluginManager::loadAllFinished, &loop, &QEventLoop::quit);\n        timer.start(5000);\n        loop.exec();\n    }\n}\n\nvoid DccManager::doGetAllModule(const QDBusMessage message) const\n{\n    waitLoadFinished();\n    DccObject *root = m_root;\n    QList<QPair<DccObject *, QStringList>> modules;\n    for (auto &&child : root->getChildren()) {\n        modules.append({ child, { child->name(), child->displayName() } });\n    }\n    for (auto &&child : m_hideObjects->getChildren()) {\n        modules.append({ child, { child->name(), child->displayName() } });\n    }\n\n    QJsonArray arr;\n    while (!modules.isEmpty()) {\n        const auto &urlInfo = modules.takeFirst();\n        QJsonObject obj;\n        obj.insert(\"url\", urlInfo.second.at(0));\n        obj.insert(\"displayName\", urlInfo.second.at(1));\n        obj.insert(\"weight\", (int)(urlInfo.first->weight()));\n        arr.append(obj);\n        const QList<DccObject *> &children = urlInfo.first->getChildren();\n        for (auto it = children.crbegin(); it != children.crend(); ++it)\n            modules.prepend({ *it, { urlInfo.second.at(0) + \"/\" + (*it)->name(), urlInfo.second.at(1) + \"/\" + (*it)->displayName() } });\n    }\n\n    QJsonDocument doc;\n    doc.setArray(arr);\n    QString json = doc.toJson(QJsonDocument::Compact);\n    QDBusConnection::sessionBus().send(message.createReply(json));\n}\n\nvoid DccManager::onPageStayTimeout()\n{\n#ifdef HAVE_DDE_API_EVENTLOGGER\n    qCInfo(dccLog) << \"onPageStayTimeout triggered, m_lastPageTags:\" << m_lastPageTags;\n    if (m_lastPageTags.isEmpty()) {\n        qCWarning(dccLog) << \"onPageStayTimeout: m_lastPageTags is empty, skipping log\";\n        return;\n    }\n\n    QJsonArray tagArray;\n    for (const auto &tag : m_lastPageTags) {\n        tagArray.append(tag);\n    }\n\n    DDE_EventLogger::EventLogger::instance().writeEventLog(\n        DDE_EventLogger::EventLoggerData(EVENT_LOGGER_CONTROL_CENTER_STAY, \"control_center_config\", {\n            {\"control_center_tag\", tagArray}\n        }));\n\n    qCInfo(dccLog) << \"EventLogger: page stay - tags:\" << QJsonDocument(tagArray).toJson(QJsonDocument::Compact);\n#endif\n}\n\n} // namespace dccV25\n"
  },
  {
    "path": "src/dde-control-center/dccmanager.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCCMANAGER_H\n#define DCCMANAGER_H\n#include \"dccapp.h\"\n#include \"dccobject.h\"\n\n#include <DConfig>\n#include <DSysInfo>\n\n#include <QDBusContext>\n#include <QDBusMessage>\n#include <QObject>\n\nQT_BEGIN_NAMESPACE\nclass QWindow;\nclass QQmlApplicationEngine;\nclass QAbstractItemModel;\nclass QScreen;\nQT_END_NAMESPACE\n\nnamespace dccV25 {\nclass NavigationModel;\nclass SearchModel;\nclass PluginManager;\nclass DccImageProvider;\n\nclass DccManager : public DccApp, protected QDBusContext\n{\n    Q_OBJECT\npublic:\n    explicit DccManager(QObject *parent = nullptr);\n    ~DccManager() override;\n\n    static bool installTranslator(const QString &name);\n    void init();\n    QQmlApplicationEngine *engine();\n    void setMainWindow(QWindow *window);\n    void loadModules(bool async, const QStringList &dirs);\n\n    int width() const override;\n    int height() const override;\n    int sidebarWidth() const override;\n    void setSidebarWidth(int width) override;\n\n    inline DccObject *root() const override { return m_root; }\n\n    inline DccObject *activeObject() const override { return m_activeObject; }\n\n    inline const QVector<DccObject *> &currentObjects() const override { return m_currentObjects; }\n\n    inline const QVector<DccObject *> &triggeredObjects() const override { return m_triggeredObjects; }\n\n    Q_INVOKABLE DccApp::UosEdition uosEdition() const;\n    Q_INVOKABLE Dtk::Core::DSysInfo::ProductType productType() const;\n\n    Q_INVOKABLE bool isTreeland() const;\n\n    inline const QSet<QString> &hideModule() const { return m_hideModule; }\n\npublic Q_SLOTS:\n    DccObject *object(const QString &name) override;\n    void addObject(DccObject *obj) override;\n    void removeObject(DccObject *obj) override;\n    void removeObject(const QString &name) override;\n    void showPage(const QString &url) override;\n    void showPage(DccObject *obj);\n    void showPage(DccObject *obj, const QString &cmd) override;\n    void toBack();\n    QWindow *mainWindow() const override;\n    QAbstractItemModel *navModel() const override;\n    QSortFilterProxyModel *searchModel() const override;\n    void cacheImage(const QString &id, const QSize &thumbnailSize = QSize());\n\n    void show();\n    void showHelp();\n    // DBus Search\n    QString search(const QString &json) const;\n    QString searchProxy(const QString &json) const;\n    bool stop(const QString &json);\n    bool action(const QString &json);\n    QString GetAllModule();\n    void onDccObjectDestroyed(DccObject *obj);\n\nQ_SIGNALS:\n    void activeItemChanged(QQuickItem *item, bool isIndicatorShown);\n    void hideModuleChanged(const QSet<QString> &hideModule);\n\nprivate:\n    void initConfig();\n    bool contains(const QSet<QString> &urls, const DccObject *obj);\n    QStringList splitUrl(const QString &url, QString &targetName);\n    bool isMatchByName(const QString &url, const QString &name);\n    bool isMatch(const QString &url, const DccObject *obj);\n    bool isEqualByName(const QString &url, const QString &name);\n    bool isEqual(const QString &url, const DccObject *obj);\n    DccObject *findObject(const QString &url);\n    QVector<DccObject *> findObjects(const QString &url, bool one = false);\n    const DccObject *findParent(const DccObject *obj);\n    bool eventFilter(QObject *watched, QEvent *event) override;\n    bool isIndicatorShown(const QString &cmd) const;\n    QString parseShowPageUrl(const QString &url, QString &cmd) const;\n    void replyShowPageRequest(const QString &url, const QDBusMessage &message, bool found) const;\n    void startPendingShow(const QString &url, const QDBusMessage &message);\n\nprivate Q_SLOTS:\n    void saveSize();\n    void handleScreenAdded(QScreen *screen);\n    void waitShowPage(const QString &url, const QDBusMessage message);\n    void clearShowParam();\n    void handleShowReady();\n    void tryShow();\n    void tryShowFallback();\n    void doShowPage(QPointer<DccObject> obj, const QString &cmd);\n    void updateModuleConfig(const QString &key);\n    void onVisible(bool visible);\n    void onObjectAdded(DccObject *obj);\n    void onObjectRemoved(DccObject *obj);\n    void onObjectDisplayChanged();\n    bool addObjectToParent(DccObject *obj);\n    bool removeObjectFromParent(DccObject *obj);\n    void clearData();\n    void waitLoadFinished() const;\n    void doGetAllModule(const QDBusMessage message) const;\n    void onPageStayTimeout();\n\nprivate:\n    DccObject *m_root;\n    DccObject *m_activeObject;    // 当前定位的项\n    DccObject *m_hideObjects;     // 隐藏的项\n    DccObject *m_noAddObjects;    // 未找到父对象的\n    DccObject *m_noParentObjects; // 没有父对象的\n\n    QVector<DccObject *> m_currentObjects;   // 当前显示的页面路径，从根页面到当前页面\n    QVector<DccObject *> m_triggeredObjects; // 用户交互触发的对象路径，从根菜单到当前子控件\n\n    PluginManager *m_plugins;\n    QPointer<QWindow> m_window;\n    Dtk::Core::DConfig *m_dconfig;\n    QSet<QString> m_hideModule;\n    QSet<QString> m_disableModule;\n    QQmlApplicationEngine *m_engine;\n    NavigationModel *m_navModel;\n    SearchModel *m_searchModel;\n    DccImageProvider *m_imageProvider;\n    int m_sidebarWidth;\n    // DBus调用时，对应项还没加载完成，此处保存跳转参数\n    QTimer *m_showTimer;\n    QTimer *m_showFallbackTimer;\n    QString m_showUrl;\n    QDBusMessage m_showMessage;\n\n    QHash<QString, QVector<DccObject *>> m_objMap; // 映射对象名称到对象指针列表，用于快速查找\n\n#ifdef HAVE_DDE_API_EVENTLOGGER\n    QTimer *m_pageStayTimer;\n    QStringList m_lastPageTags;\n#endif\n};\n} // namespace dccV25\n#endif // DCCMANAGER_H\n"
  },
  {
    "path": "src/dde-control-center/main.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"controlcenterdbusadaptor.h\"\n#include \"dccmanager.h\"\n\n#include <DDBusSender>\n#include <DIconTheme>\n#include <DLog>\n\n#include <QCommandLineOption>\n#include <QCommandLineParser>\n#include <QDBusConnection>\n#include <QGuiApplication>\n#include <QIcon>\n#include <QQmlApplicationEngine>\n#include <QQmlContext>\n#include <QScreen>\n#include <QStandardPaths>\n#include <QStringList>\n#include <QWindow>\n#include <QDir>\n\nDGUI_USE_NAMESPACE\nDCORE_USE_NAMESPACE\n\nQString loggingRules(const QString &loggingModule)\n{\n    if (loggingModule.isEmpty())\n        return \"\";\n\n    static const QStringList levels = { \"warning\", \"info\", \"debug\" };\n    const auto &list = loggingModule.split(\",\");\n    const auto &moduleName = list.at(0);\n    const auto &level = list.size() > 1 ? list.at(1) : \"info\";\n    const int levelIndex = levels.indexOf(level);\n    if (-1 == levelIndex)\n        return \"\";\n\n    QString rules = \"*.debug=false\\n*.info=false\\n*.warning=false\\n\";\n    for (int i = 0; i <= levelIndex; ++i) {\n        auto rule = QString(\"org.deepin.dde.control-center.\").append(moduleName).append(\".\").append(levels.at(i)).append(\"=true\\n\");\n        rules.append(std::move(rule));\n    }\n    return rules;\n}\n\nQStringList defaultpath()\n{\n    QString pluginsDir(DefaultModuleDirectory);\n    const QStringList path{ pluginsDir + \"/plugins_v1.1\", pluginsDir + \"/plugins_v1.0\" };\n    // , QStringLiteral(\"/usr/lib/dde-control-center/modules/\") };\n    return path;\n}\n\nstatic void refreshQmlCache(const QString &version)\n{\n    if (version.isEmpty())\n        return;\n    static const QByteArray envCachePath = qgetenv(\"QML_DISK_CACHE_PATH\");\n\n    QString directory = envCachePath.isEmpty()\n            ? QStandardPaths::writableLocation(QStandardPaths::CacheLocation)\n                    + QLatin1String(\"/qmlcache/\")\n            : QString::fromLocal8Bit(envCachePath) + QLatin1String(\"/\");\n\n    QDir dir(directory);\n    if (dir.exists()) {\n        if (dir.exists(version))\n            return;\n        const auto ret = dir.removeRecursively();\n        qDebug() << \"Remove old QML cache:\" << directory << \"result:\" << ret;\n    }\n    dir.mkpath(version);\n}\n\nint main(int argc, char *argv[])\n{\n    QGuiApplication *app = new QGuiApplication(argc, argv);\n#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)\n    app.setAttribute(Qt::AA_UseHighDpiPixmaps);\n#endif // (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))\n\n    app->setOrganizationName(\"deepin\");\n    app->setApplicationName(\"dde-control-center\");\n#ifdef CVERSION\n    QString verstr(CVERSION);\n    if (verstr.isEmpty())\n        verstr = \"6.0\";\n    app->setApplicationVersion(verstr);\n#else\n    app->setApplicationVersion(\"6.0\");\n#endif\n    app->setQuitOnLastWindowClosed(false);\n\n    refreshQmlCache(app->applicationVersion());\n\n    // take care of command line options\n    QCommandLineOption showOption(QStringList() << \"s\" << \"show\", \"show control center(hide for default).\");\n    QCommandLineOption toggleOption(QStringList() << \"t\" << \"toggle\", \"toggle control center visible.\");\n    QCommandLineOption dbusOption(QStringList() << \"d\" << \"dbus\", \"startup on dbus\");\n    QCommandLineOption moduleOption(\"m\", \"the module' id of which to be shown.\", \"module\");\n    QCommandLineOption pageOption(\"p\", \"specified module page\", \"page\");\n    QCommandLineOption showTime(QStringList() << \"z\" << \"time\", \"show control center exe time.\"); // 新增time参数自动测试启动速度\n    QCommandLineOption loggingModuleOption(QStringList() << \"l\" << \"logging-module\", \"Only output logs for the specified module\", \"loggingModule\");\n    QCommandLineOption pluginDir(\"spec\", \"load plugins from specialdir\", \"plugindir\");\n\n    QCommandLineParser parser;\n    parser.setApplicationDescription(\"DDE Control Center\");\n    parser.addHelpOption();\n    parser.addVersionOption();\n    parser.addOption(showOption);\n    parser.addOption(toggleOption);\n    parser.addOption(dbusOption);\n    parser.addOption(moduleOption);\n    parser.addOption(pageOption);\n    parser.addOption(showTime);\n    parser.addOption(loggingModuleOption);\n    parser.addOption(pluginDir);\n    parser.process(*app);\n\n    QString reqPage = parser.value(pageOption);\n    const QString &reqModule = parser.value(moduleOption);\n    if (!reqModule.isEmpty()) {\n        reqPage = reqModule + \"/\" + reqPage;\n    }\n    const QStringList &refPluginDirs = parser.values(pluginDir);\n\n    QDBusConnection conn = QDBusConnection::sessionBus();\n    if (!conn.registerService(DccDBusService)) {\n        qDebug() << \"dbus service already registered!\"\n                 << \"pid is:\" << qApp->applicationPid();\n        if (parser.isSet(toggleOption)) {\n            DDBusSender().service(DccDBusService).interface(DccDBusInterface).path(DccDBusPath).method(\"Toggle\").call();\n        }\n\n        if (!reqPage.isEmpty()) {\n            DDBusSender().service(DccDBusService).interface(DccDBusInterface).path(DccDBusPath).method(\"ShowPage\").arg(reqPage).call();\n        } else if (parser.isSet(showOption) && !parser.isSet(dbusOption)) {\n            DDBusSender().service(DccDBusService).interface(DccDBusInterface).path(DccDBusPath).method(\"Show\").call();\n        }\n\n        return -1;\n    }\n\n    if (parser.isSet(loggingModuleOption)) {\n        const auto &rules = loggingRules(parser.value(loggingModuleOption));\n        if (!rules.isEmpty())\n            QLoggingCategory::setFilterRules(rules);\n    }\n\n    DLogManager::setLogFormat(\"%{time}{yy-MM-ddTHH:mm:ss.zzz} [%{type}] [%{category}] <%{function}:%{line}> %{message}\");\n\n    DLogManager::registerJournalAppender();\n    DLogManager::registerConsoleAppender();\n    DLogManager::registerFileAppender();\n\n    auto dirs = QStandardPaths::standardLocations(QStandardPaths::GenericDataLocation);\n    QStringList fallbacks = QIcon::fallbackSearchPaths();\n    for (const auto &fb : dirs) {\n        fallbacks << fb + QLatin1String(\"/icons\");\n    }\n    // To Fix Qt6 find icons will ignore ${GenericDataLocation}/icons/xxx\n    QIcon::setFallbackSearchPaths(fallbacks);\n\n    app->setWindowIcon(DIconTheme::findQIcon(\"preferences-system\"));\n    dccV25::DccManager::installTranslator(\"dde-control-center\");\n    app->setApplicationDisplayName(QObject::tr(\"Control Center\"));\n    // app->setApplicationDescription(QApplication::translate(\"main\", \"Control Center provides the options for system settings.\"));\n\n    // QAccessible::installFactory(accessibleFactory);\n\n    dccV25::DccManager *dccManager = new dccV25::DccManager(app);\n    dccManager->init();\n    QQmlApplicationEngine *engine = dccManager->engine();\n    // connect quit signal to qApp->exit, to make sure the app can quit when the main window is closed\n    QObject::connect(engine, &QQmlApplicationEngine::quit, app, [] {\n        qApp->exit();\n    });\n    engine->loadFromModule(\"org.deepin.dcc\", \"DccWindow\");\n    QList<QObject *> objs = engine->rootObjects();\n    for (auto &&obj : objs) {\n        QWindow *w = qobject_cast<QWindow *>(obj);\n        if (w) {\n            dccManager->setMainWindow(w);\n            break;\n        }\n    }\n    if (!dccManager->mainWindow()) {\n        qWarning() << \"Failed to create window\";\n        return 1;\n    }\n\n    dccV25::ControlCenterDBusAdaptor *adaptor = new dccV25::ControlCenterDBusAdaptor(dccManager);\n    dccV25::DBusControlCenterGrandSearchService *grandSearchadAptor = new dccV25::DBusControlCenterGrandSearchService(dccManager);\n    Q_UNUSED(grandSearchadAptor)\n    if (!conn.registerObject(DccDBusPath, dccManager)) {\n        qDebug() << \"dbus service already registered!\" << \"pid is:\" << qApp->applicationPid();\n        return -1;\n    }\n    if (!refPluginDirs.isEmpty()) {\n        dccManager->loadModules(true, refPluginDirs);\n        adaptor->Show();\n    } else {\n        dccManager->loadModules(!parser.isSet(dbusOption), defaultpath());\n        if (!reqPage.isEmpty()) {\n            adaptor->ShowPage(reqPage);\n            adaptor->Show();\n        } else if (parser.isSet(showOption) && !parser.isSet(dbusOption)) {\n            adaptor->Show();\n        } else if (parser.isSet(showTime)) {\n            adaptor->Show();\n            return 0;\n        }\n\n#ifdef QT_DEBUG\n        // debug时会直接show\n        // 发布版本，不会直接显示，为了满足在被dbus调用时，\n        // 如果dbus参数错误，不会有任何UI上的变化\n        if (1 == argc) {\n            DDBusSender().service(DccDBusService).interface(DccDBusInterface).path(DccDBusPath).method(\"Show\").call();\n        }\n#endif\n    }\n    int exitCode = app->exec();\n    conn.unregisterService(DccDBusService);\n#ifdef DCC_ENABLE_MEMORY_MANAGEMENT\n    delete dccManager;\n    delete app;\n#endif\n    return exitCode;\n}\n"
  },
  {
    "path": "src/dde-control-center/navigationmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"navigationmodel.h\"\n\n#include \"dccobject.h\"\n\n#include <QLoggingCategory>\n\nnamespace dccV25 {\n// static Q_LOGGING_CATEGORY(dccLog, \"dde.dcc.NavigationModel\");\n\nenum NavType {\n    Separator,\n    Middle,\n    End,\n};\n\nNavigationModel::NavigationModel(QObject *parent)\n    : QAbstractItemModel(parent)\n{\n}\n\nvoid NavigationModel::setNavigationObject(const QVector<DccObject *> &objs)\n{\n    beginResetModel();\n    m_data.clear();\n    for (auto &&obj : objs) {\n        if ((obj->pageType() & DccObject::PageType::Menu) && !obj->displayName().isEmpty()) {\n            m_data.append(obj);\n        }\n    }\n    endResetModel();\n}\n\nQHash<int, QByteArray> NavigationModel::roleNames() const\n{\n    QHash<int, QByteArray> names = QAbstractItemModel::roleNames();\n    names[NavTypeRole] = \"type\";\n    names[NavUrlRole] = \"url\";\n    return names;\n}\n\nQModelIndex NavigationModel::index(int row, int column, const QModelIndex &) const\n{\n    if (row < 0 || row >= rowCount()) {\n        return QModelIndex();\n    }\n    return createIndex(row, column);\n}\n\nQModelIndex NavigationModel::parent(const QModelIndex &) const\n{\n    return QModelIndex();\n}\n\nint NavigationModel::rowCount(const QModelIndex &) const\n{\n    if (m_data.isEmpty())\n        return 0;\n    return m_data.size();\n}\n\nint NavigationModel::columnCount(const QModelIndex &) const\n{\n    return 1;\n}\n\nQVariant NavigationModel::data(const QModelIndex &index, int role) const\n{\n    if (!index.isValid()) {\n        return QVariant();\n    }\n    int i = index.row();\n    if (i < 0 || i >= m_data.size()) {\n        return QVariant();\n    }\n    const DccObject *item = m_data.at(i);\n    switch (role) {\n    case Qt::DisplayRole:\n        return item->displayName();\n    case NavTypeRole:\n        return (i == (m_data.size() - 1)) ? End : Middle;\n    case NavUrlRole:\n        return item->parentName() + \"/\" + item->name();\n    default:\n        break;\n    }\n    return QVariant();\n}\n} // namespace dccV25\n"
  },
  {
    "path": "src/dde-control-center/navigationmodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef NAVIGATIONMODEL_H\n#define NAVIGATIONMODEL_H\n\n#include <QAbstractItemModel>\n\nnamespace dccV25 {\nclass DccObject;\n\nclass NavigationModel : public QAbstractItemModel\n{\n    Q_OBJECT\npublic:\n    explicit NavigationModel(QObject *parent = nullptr);\n    void setNavigationObject(const QVector<DccObject *> &objs);\n\n    enum DccModelRole { NavTypeRole = Qt::UserRole + 300, NavUrlRole };\n\n    QHash<int, QByteArray> roleNames() const override;\n    // Basic functionality:\n    QModelIndex index(int row, int column, const QModelIndex &parentIndex = QModelIndex()) const override;\n    QModelIndex parent(const QModelIndex &index) const override;\n\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n    int columnCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n\nprivate:\n    QVector<DccObject *> m_data;\n};\n} // namespace dccV25\n\n#endif // NAVIGATIONMODEL_H\n"
  },
  {
    "path": "src/dde-control-center/plugin/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\n\nset(DCCQmlPlugin_Name dde-control-center-lib)\n\nfile(GLOB DCCQmlPlugin_SRCS\n    \"*.h\"\n    \"*.cpp\"\n)\n\nfile(GLOB QML_PATHS\n    \"*.qml\"\n    \"*.js\"\n)\n\nforeach(FILE_PATH ${QML_PATHS})\n    file(RELATIVE_PATH FILE_NAME ${CMAKE_CURRENT_SOURCE_DIR} ${FILE_PATH})\n    list(APPEND DCCQmlPlugin_CONTROLS ${FILE_NAME})\nendforeach(FILE_PATH)\n\nfile(GLOB RES_PATHS\n    \"*.svg\"\n    \"*.png\"\n    \"*.jpg\"\n)\n\nforeach(FILE_PATH ${RES_PATHS})\n    file(RELATIVE_PATH FILE_NAME ${CMAKE_CURRENT_SOURCE_DIR} ${FILE_PATH})\n    list(APPEND DCCQmlPlugin_RES ${FILE_NAME})\nendforeach(FILE_PATH)\n\nfile(GLOB DCI_PATHS\n    \"*.dci\"\n)\n\nforeach(FILE_PATH ${DCI_PATHS})\n    file(RELATIVE_PATH FILE_NAME ${CMAKE_CURRENT_SOURCE_DIR} ${FILE_PATH})\n    list(APPEND DCCDciPlugin_RES ${FILE_NAME})\nendforeach(FILE_PATH)\n\nqt_policy(SET QTP0001 NEW)\nqt_add_qml_module(${DCCQmlPlugin_Name}\n    PLUGIN_TARGET ${DCCQmlPlugin_Name}\n    URI org.deepin.dcc\n    VERSION 1.0\n    STATIC\n    RESOURCES ${DCCQmlPlugin_RES}\n    QML_FILES ${DCCQmlPlugin_CONTROLS}\n    SOURCES ${DCCQmlPlugin_SRCS}\n    OUTPUT_DIRECTORY org/deepin/dcc\n)\n\nqt_add_resources(${DCCQmlPlugin_Name} \"dci\"\n    PREFIX \"/dsg/built-in-icons\"\n    FILES ${DCCDciPlugin_RES}\n)\n\nset(DCCQmlPlugin_Libraries\n    ${QT_NS}::DBus\n    ${QT_NS}::Gui\n    ${QT_NS}::Quick\n    ${QT_NS}::QuickPrivate\n)\n\ntarget_link_libraries(${DCCQmlPlugin_Name} PRIVATE\n    ${DCCQmlPlugin_Libraries}\n)\n"
  },
  {
    "path": "src/dde-control-center/plugin/Crumb.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick\nimport QtQuick.Controls 2.3\nimport QtQml.Models //Delegatechoice for Qt >= 6.9\nimport Qt.labs.qmlmodels //DelegateChooser\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\n\nFocusScope {\n    id: root\n    property alias model: repeater.model\n    property bool layoutPending: false\n    signal clicked(var model)\n\n    palette: D.DTK.palette\n    function updateLayout() {\n        if (layoutPending) return\n        layoutPending = true\n        Qt.callLater(doUpdateLayout)\n    }\n    function doUpdateLayout() {\n        layoutPending = false\n        let totalWidth = width\n        let i\n        let child\n        for (i = children.length - 1; i >= 0; --i) {\n            child = children[i]\n            if (totalWidth <= 0) {\n                child.visible = false\n            } else {\n                totalWidth -= child.implicitWidth\n                child.visible = true\n                if (totalWidth < 0) {\n                    child.width = child.implicitWidth + totalWidth\n                } else {\n                    child.width = child.implicitWidth\n                }\n            }\n        }\n\n        let x = 0\n        for (i = 0; i < children.length; ++i) {\n            child = children[i]\n            if (child.visible) {\n                child.x = x\n                x += child.width\n            }\n        }\n    }\n    activeFocusOnTab: repeater.count > 1\n    onWidthChanged: updateLayout()\n    onVisibleChanged: updateLayout()\n\n    Repeater {\n        id: repeater\n\n        function nextItemFocus(forward) {\n            var focusIndex = -1\n            for (var i = 0; i < repeater.count; i++) {\n                var item = repeater.itemAt(i)\n                if (item.focus) {\n                    focusIndex = i\n                    break\n                }\n            }\n            focusIndex = forward ? focusIndex - 1 : focusIndex + 1\n            if (focusIndex >= 0 && focusIndex < repeater.count - 1) {\n                repeater.itemAt(focusIndex).forceActiveFocus()\n            }\n        }\n\n        delegate: DelegateChooser {\n            role: \"type\"\n            DelegateChoice {\n                roleValue: 1\n                delegate: Control {\n                    property alias pressed: ma.pressed\n                    property D.Palette textColor: DS.Style.button.text\n                    palette.windowText: D.ColorSelector.textColor\n                    anchors.verticalCenter: parent.verticalCenter\n                    bottomPadding: 3\n                    topPadding: 3\n                    leftPadding: 4\n                    rightPadding: 4\n                    focus: true\n                    hoverEnabled: enabled\n                    onImplicitWidthChanged: root.updateLayout()\n                    contentItem: RowLayout {\n                        spacing: 6\n                        DccLabel {\n                            Layout.fillWidth: true\n                            text: model.display\n                            elide: Text.ElideLeft\n                            color: parent.palette.windowText\n                        }\n                        Label {\n                            text: \"/\"\n                            color: parent.palette.windowText\n                            visible: background.width > DS.Style.control.padding * 2\n                        }\n                    }\n                    background: Rectangle {\n                        id: background\n                        property D.Palette backgroundColor: D.Palette {\n                            normal: Qt.rgba(0, 0, 0, 0)\n                            normalDark: Qt.rgba(0, 0, 0, 0)\n                            hovered: Qt.rgba(0, 0, 0, 0.1)\n                            hoveredDark: Qt.rgba(1, 1, 1, 0.1)\n                            pressed: Qt.rgba(0, 0, 0, 0.06)\n                            pressedDark: Qt.rgba(1, 1, 1, 0.06)\n                        }\n                        radius: 6\n                        color: D.ColorSelector.backgroundColor\n                        border {\n                            color: parent.palette.highlight\n                            width: parent.activeFocus ? DS.Style.control.focusBorderWidth : 0\n                        }\n                    }\n                    Keys.onPressed: event => {\n                                        switch (event.key) {\n                                            case Qt.Key_Space:\n                                            case Qt.Key_Enter:\n                                            case Qt.Key_Return:\n                                            root.clicked(model)\n                                            break\n                                            case Qt.Key_Left:\n                                            case Qt.Key_Up:\n                                            repeater.nextItemFocus(true)\n                                            break\n                                            case Qt.Key_Right:\n                                            case Qt.Key_Down:\n                                            repeater.nextItemFocus(false)\n                                            break\n                                        }\n                                    }\n\n                    MouseArea {\n                        id: ma\n                        anchors.fill: parent\n                        onClicked: {\n                            root.clicked(model)\n                        }\n                    }\n                }\n            }\n            DelegateChoice {\n                roleValue: 2\n                delegate: Control {\n                    bottomPadding: 3\n                    topPadding: 3\n                    leftPadding: 4\n                    rightPadding: 4\n                    anchors.verticalCenter: parent.verticalCenter\n                    onImplicitWidthChanged: root.updateLayout()\n                    contentItem: DccLabel {\n                        text: model.display\n                        elide: Text.ElideLeft\n                        color: parent.palette.highlight\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccCheckIcon.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick\nimport QtQuick.Controls\nimport org.deepin.dtk 1.0 as D\n\nD.ActionButton {\n    property real size: 16\n    checked: true\n    activeFocusOnTab: false\n    icon {\n        width: size\n        height: size\n        name: checked ? \"item_checked\" : \"item_unchecked\"\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccEditorItem.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nD.ItemDelegate {\n    id: control\n    property alias separatorVisible: background.separatorVisible\n    property alias backgroundType: background.backgroundType\n    property var item: model.item\n    property Component rightItem: null\n    property real iconRadius: model.item.iconRadius ? model.item.iconRadius : 0\n    property real iconSize: model.item.iconSize ? model.item.iconSize : 0\n    property real leftPaddingSize: model.item.leftPaddingSize ? model.item.leftPaddingSize : 14\n    property real rightItemTopMargin: 5\n    property real rightItemBottomMargin: 5\n\n    implicitHeight: Math.max(model.item.description.length !== 0 ? 48 : 40, implicitContentHeight) + topInset + bottomInset\n    backgroundVisible: false\n    checkable: false\n    topPadding: topInset\n    bottomPadding: bottomInset\n    leftPadding: control.leftPaddingSize\n    rightPadding: 8\n    hoverEnabled: model.item.enabledToApp\n    checked: backgroundType & 0x08\n    cascadeSelected: !checked\n    font: D.DTK.fontManager.t6\n    activeFocusOnTab: false\n\n    Keys.onUpPressed: function(event) {\n        var p = control.parent\n        while (p && !p.navigateToItem) { p = p.parent }\n        if (p) {\n            p.navigateToItem(false)\n        } else {\n            nextItemInFocusChain(false)?.forceActiveFocus(Qt.BacktabFocusReason)\n        }\n    }\n    Keys.onDownPressed: function(event) {\n        var p = control.parent\n        while (p && !p.navigateToItem) { p = p.parent }\n        if (p) {\n            p.navigateToItem(true)\n        } else {\n            nextItemInFocusChain(true)?.forceActiveFocus(Qt.TabFocusReason)\n        }\n    }\n    Keys.onReturnPressed: control.clicked()\n    Keys.onEnterPressed: control.clicked()\n\n    icon {\n        name: model.item.icon\n        source: model.item.iconSource\n        width: control.iconSize > 0 ? control.iconSize : DS.Style.itemDelegate.iconSize\n        height: control.iconSize > 0 ? control.iconSize : DS.Style.itemDelegate.iconSize\n    }\n    contentItem: RowLayout {\n        Layout.fillWidth: true\n        Layout.fillHeight: true\n\n        D.IconLabel {\n            visible: model.item.icon && model.item.icon.length > 0\n            spacing: control.spacing\n            mirrored: control.mirrored\n            display: control.display\n            alignment: control.display === D.IconLabel.IconOnly || control.display === D.IconLabel.TextUnderIcon ? Qt.AlignCenter : Qt.AlignLeft | Qt.AlignVCenter\n            color: control.palette.windowText\n            icon {\n                name: control.icon.name\n                source: control.icon.source\n                width: control.icon.width\n                height: control.icon.height\n                palette: D.DTK.makeIconPalette(control.palette)\n                theme: control.D.ColorSelector.controlTheme\n            }\n        }\n        ColumnLayout {\n            Layout.leftMargin: model.item.icon.length === 0 ? 0 : 8\n            Layout.fillWidth: true\n            Layout.alignment: Qt.AlignVCenter\n            spacing: 2\n            opacity: model.item.enabledToApp ? 1 : 0.4\n            DccLabel {\n                Layout.fillWidth: true\n                text: model.display\n                font: control.font\n            }\n            DccLabel {\n                Layout.fillWidth: true\n                visible: text !== \"\"\n                font: D.DTK.fontManager.t10\n                text: model.item.description\n                opacity: 0.5\n            }\n        }\n        DccLoader {\n            id: rightLoader\n            Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n            Layout.topMargin: control.rightItemTopMargin\n            Layout.bottomMargin: control.rightItemBottomMargin\n            enabled: model.item.enabledToApp\n            opacity: enabled ? 1 : 0.4\n            active: !rightItem\n            dccObj: model.item\n            dccObjItem: control\n        }\n        Loader {\n            Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n            Layout.topMargin: control.rightItemTopMargin\n            Layout.bottomMargin: control.rightItemBottomMargin\n            enabled: model.item.enabledToApp\n            opacity: enabled ? 1 : 0.4\n            active: rightItem\n            sourceComponent: rightItem\n        }\n    }\n\n    Loader {\n        id: loader\n        active: control.iconRadius > 0\n        sourceComponent: D.ItemViewport {\n            parent: control\n            sourceItem: contentItem.children[0]\n            radius: control.iconRadius\n            fixed: true\n            width: control.icon.width\n            height: control.icon.height\n            hideSource: true\n            antialiasing: true\n            x: 15\n            y: (control.height - icon.height) / 2\n        }\n    }\n\n    background: DccItemBackground {\n        id: background\n        separatorVisible: false\n    }\n    onClicked: {\n        if ((backgroundType & 0x04) && model.item.enabledToApp) {\n            model.item.active(\"\")\n        }\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccGroupView.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Layouts 1.15\nimport Qt.labs.platform 1.1\nimport QtQml.Models //Delegatechoice for Qt >= 6.9\nimport Qt.labs.qmlmodels //DelegateChooser\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc 1.0\n\nRectangle {\n    id: control\n    property bool isGroup: true\n    property alias spacing: layoutView.spacing\n    property int currentFocusIndex: -1  // 追踪当前焦点在可交互项中的索引\n    property var model: DccModel {\n        root: dccObj\n    }\n\n    // 判断当前项是否是第一个可交互的菜单项（Menu或MenuEditor类型）\n    function isFirstInteractiveItem(idx) {\n        for (var i = 0; i < idx; i++) {\n            var obj = control.model.getObject(i)\n            if (obj && (obj.pageType === DccObject.Menu || obj.pageType === DccObject.MenuEditor)) {\n                return false\n            }\n        }\n        var currentObj = control.model.getObject(idx)\n        return currentObj && (currentObj.pageType === DccObject.Menu || currentObj.pageType === DccObject.MenuEditor)\n    }\n\n    function getInteractiveRepeaterIndices() {\n        var indices = []\n        for (var i = 0; i < repeater.count; i++) {\n            var obj = control.model.getObject(i)\n            if (obj && (obj.pageType === DccObject.Menu || obj.pageType === DccObject.MenuEditor))\n                indices.push(i)\n        }\n        return indices\n    }\n\n    function onMenuItemFocused(repeaterIndex) {\n        control.currentFocusIndex = getInteractiveRepeaterIndices().indexOf(repeaterIndex)\n    }\n\n    function navigateToItem(forward) {\n        var indices = getInteractiveRepeaterIndices()\n        if (indices.length === 0) return\n\n        var next = control.currentFocusIndex < 0 ? 0\n            : (forward ? control.currentFocusIndex + 1 : control.currentFocusIndex - 1)\n        if (next < 0) next = indices.length - 1\n        if (next >= indices.length) next = 0\n\n        var item = repeater.itemAt(indices[next])\n        if (item) item.forceActiveFocus(forward ? Qt.TabFocusReason : Qt.BacktabFocusReason)\n    }\n\n    objectName: \"noPadding\"\n    color: \"transparent\"\n    implicitHeight: layoutView.height\n    Layout.fillWidth: true\n    ColumnLayout {\n        id: layoutView\n        width: parent.width\n        spacing: 0\n        Repeater {\n            id: repeater\n            model: control.model\n\n            delegate: DelegateChooser {\n                role: \"pageType\"\n                DelegateChoice {\n                    roleValue: DccObject.Menu\n                    delegate: DccMenuItem {\n                        topInset: control.isGroup ? 0 : 3\n                        bottomInset: control.isGroup ? 0 : 3\n                        separatorVisible: control.isGroup\n                        backgroundType: model.item.backgroundType | DccObject.ClickStyle\n                        Layout.fillWidth: true\n                        activeFocusOnTab: control.isFirstInteractiveItem(index)\n                        corners: control.isGroup ? getCornersForBackground(index, repeater.count) : D.RoundRectangle.TopLeftCorner | D.RoundRectangle.TopRightCorner | D.RoundRectangle.BottomLeftCorner | D.RoundRectangle.BottomRightCorner\n                        onActiveFocusChanged: {\n                            if (activeFocus) control.onMenuItemFocused(index)\n                        }\n                    }\n                }\n                DelegateChoice {\n                    roleValue: DccObject.Editor\n                    delegate: DccEditorItem {\n                        topInset: control.isGroup ? 0 : 3\n                        bottomInset: control.isGroup ? 0 : 3\n                        separatorVisible: control.isGroup\n                        backgroundType:model.item.backgroundType | (control.isGroup ? 1 : 0)\n                        Layout.fillWidth: true\n                        activeFocusOnTab: false\n                        corners: control.isGroup ? getCornersForBackground(index, repeater.count) : D.RoundRectangle.TopLeftCorner | D.RoundRectangle.TopRightCorner | D.RoundRectangle.BottomLeftCorner | D.RoundRectangle.BottomRightCorner\n                    }\n                }\n                DelegateChoice {\n                    roleValue: DccObject.Item\n                    delegate: DccItem {\n                        topInset: control.isGroup ? 0 : 3\n                        bottomInset: control.isGroup ? 0 : 3\n                        separatorVisible: control.isGroup\n                        backgroundType: model.item.backgroundType | (control.isGroup ? 1 : 0)\n                        Layout.fillWidth: true\n                        activeFocusOnTab: false\n                        corners: control.isGroup ? getCornersForBackground(index, repeater.count) : D.RoundRectangle.TopLeftCorner | D.RoundRectangle.TopRightCorner | D.RoundRectangle.BottomLeftCorner | D.RoundRectangle.BottomRightCorner\n                    }\n                }\n                DelegateChoice {\n                    roleValue: DccObject.MenuEditor\n                    delegate: DccMenuEditorItem {\n                        topInset: control.isGroup ? 0 : 3\n                        bottomInset: control.isGroup ? 0 : 3\n                        separatorVisible: control.isGroup\n                        backgroundType: model.item.backgroundType | DccObject.ClickStyle\n                        Layout.fillWidth: true\n                        activeFocusOnTab: control.isFirstInteractiveItem(index)\n                        corners: control.isGroup ? getCornersForBackground(index, repeater.count) : D.RoundRectangle.TopLeftCorner | D.RoundRectangle.TopRightCorner | D.RoundRectangle.BottomLeftCorner | D.RoundRectangle.BottomRightCorner\n                        onActiveFocusChanged: {\n                            if (activeFocus) control.onMenuItemFocused(index)\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccItem.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0 as D\n\nD.ItemDelegate {\n    id: control\n    property alias separatorVisible: background.separatorVisible\n    property alias backgroundType: background.backgroundType\n    property var item: model.item\n\n    backgroundVisible: backgroundType & 0x01\n    enabled: model.item.enabledToApp\n    hoverEnabled: true\n    checkable: false\n    topPadding: topInset\n    bottomPadding: bottomInset\n    implicitHeight: contentItem.implicitHeight + topPadding + bottomPadding\n    padding: 0\n    font: D.DTK.fontManager.t6\n    activeFocusOnTab: false\n\n    contentItem: DccLoader {\n        dccObj: model.item\n        dccObjItem: control\n    }\n    background: DccItemBackground {\n        id: background\n        separatorVisible: false\n    }\n    Component.onCompleted: {\n        if (contentItem.item && contentItem.item.objectName === \"noPadding\") {\n            leftPadding = 0\n            rightPadding = 0\n        }\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccItemBackground.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Layouts 1.15\nimport Qt.labs.platform 1.1\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nItem {\n    id: bgItem\n    implicitWidth: DS.Style.itemDelegate.width\n    implicitHeight: DS.Style.itemDelegate.height\n    property bool separatorVisible: false // 分隔线\n    property bool shadowVisible: true // 阴影\n    property alias control: bgItem.parent\n    property real radius: DS.Style.control.radius\n    property real bgMargins: 3\n    property bool focusBorderVisible: true\n    property bool externalFocus: false\n    property bool isKeyboardNavigating: false\n\n    property real backgroundType: 0\n    property D.Palette backgroundColor: D.Palette {\n        normal: Qt.rgba(1, 1, 1, 1)\n        normalDark: Qt.rgba(1, 1, 1, 0.05)\n        hovered: Qt.rgba(0, 0, 0, 0.1)\n        hoveredDark: Qt.rgba(1, 1, 1, 0.1)\n        pressed: Qt.rgba(0, 0, 0, 0.15)\n        pressedDark: Qt.rgba(1, 1, 1, 0.15)\n    }\n    property D.Palette bgColor: D.Palette {\n        normal: backgroundColor.normal\n        normalDark: backgroundColor.normalDark\n    }\n    property D.Palette shadowColor: D.Palette {\n        normal: Qt.rgba(0, 0, 0, 0.05)\n        normalDark: Qt.rgba(0, 0, 0, 0.3)\n    }\n    property D.Palette separatorColor: D.Palette {\n        normal: Qt.rgba(0, 0, 0, 0.05)\n        normalDark: Qt.rgba(1, 1, 1, 0.05)\n    }\n\n    D.ColorSelector.pressed: control.pressed && backgroundType & DccObject.Clickable\n\n    // 阴影\n    Loader {\n        id: shadow\n        y: 0\n        z: 3\n        width: parent.width\n        height: parent.height\n        active: shadowVisible && (!control.checked) && (backgroundType & 0x01) && (control.corners & D.RoundRectangle.BottomCorner)\n        sourceComponent: Canvas {\n            id: canvas\n            property var color: bgItem.D.ColorSelector.shadowColor\n            property real h: 1\n            anchors.fill: parent\n            renderTarget: Canvas.FramebufferObject\n            onPaint: {\n                var ctx = getContext(\"2d\")\n                ctx.clearRect(0, 0, canvas.width, canvas.height)\n                ctx.fillStyle = canvas.color\n                ctx.beginPath()\n                ctx.moveTo(0, canvas.height / 2)\n                ctx.lineTo(0, canvas.height - bgItem.radius)\n                ctx.quadraticCurveTo(0, canvas.height, bgItem.radius, canvas.height)\n                ctx.lineTo(canvas.width - bgItem.radius, canvas.height)\n                ctx.quadraticCurveTo(canvas.width, canvas.height, canvas.width, canvas.height - bgItem.radius)\n                ctx.lineTo(canvas.width, canvas.height / 2)\n                ctx.closePath()\n                ctx.fill()\n                ctx.globalCompositeOperation = \"destination-out\"\n                ctx.fillStyle = \"black\"\n                ctx.beginPath()\n                ctx.moveTo(0, canvas.height / 2 - canvas.h)\n                ctx.lineTo(0, canvas.height - bgItem.radius - canvas.h)\n                ctx.quadraticCurveTo(0, canvas.height - canvas.h, bgItem.radius, canvas.height - canvas.h)\n                ctx.lineTo(canvas.width - bgItem.radius, canvas.height - canvas.h)\n                ctx.quadraticCurveTo(canvas.width, canvas.height - canvas.h, canvas.width, canvas.height - bgItem.radius - canvas.h)\n                ctx.lineTo(canvas.width, canvas.height / 2 - canvas.h)\n                ctx.closePath()\n                ctx.fill()\n                ctx.globalCompositeOperation = \"source-over\"\n            }\n            Component.onCompleted: {\n                canvas.requestPaint()\n            }\n            onColorChanged: {\n                canvas.requestPaint()\n            }\n        }\n    }\n\n    // 背景\n    Loader {\n        z: 1\n        anchors.fill: parent\n        active: (backgroundType & 0x01) || ((backgroundType & 0x02) && control.hovered)\n        // active: backgroundType !== 0 // (backgroundType & 0xFF) && !(backgroundType & 0x08)\n        anchors.topMargin: 0\n        anchors.bottomMargin: 0\n        sourceComponent: D.RoundRectangle {\n            // 高亮时，hovered状态HighlightPanel有处理,无阴影时，hovered状态使用半透明\n            color: ((backgroundType & 0x08) || (backgroundType & 0x02) === 0 || !control.hoverEnabled) ? bgItem.D.ColorSelector.bgColor : bgItem.D.ColorSelector.backgroundColor\n            radius: bgItem.radius\n            corners: control.corners\n        }\n    }\n    Loader {\n        z: 2\n        anchors {\n            fill: parent\n            topMargin: bgMargins\n            bottomMargin: bgMargins\n            leftMargin: bgMargins\n            rightMargin: bgMargins\n        }\n\n        active: focusBorderVisible && (control.visualFocus || externalFocus || isKeyboardNavigating)\n        sourceComponent: D.FocusBoxBorder {\n            radius: bgItem.radius\n            color: control.palette.highlight\n        }\n    }\n    // 高亮\n    Loader {\n        z: 2\n        anchors {\n            fill: parent\n            topMargin: bgMargins\n            bottomMargin: bgMargins\n            leftMargin: bgMargins\n            rightMargin: bgMargins\n        }\n        active: control.checked && !control.cascadeSelected\n        sourceComponent: D.HighlightPanel {}\n    }\n    // Warning\n    Loader {\n        z: 2\n        anchors.fill: parent\n        anchors.topMargin: 1\n        anchors.bottomMargin: 1\n        active: (backgroundType & 0x10)\n        sourceComponent: Rectangle {\n            radius: bgItem.radius\n            color: Qt.rgba(0.95, 0.22, 0.20, 0.15)\n        }\n    }\n    // 分隔线\n    Loader {\n        active: separatorVisible && (!(control.corners & D.RoundRectangle.BottomCorner))\n        height: 1\n        z: 3\n        anchors {\n            bottom: parent.bottom\n            bottomMargin: 0\n            // bottomMargin: (control.ListView.view.spacing - 1) / 2\n            left: parent.left\n            leftMargin: 10\n            right: parent.right\n            rightMargin: 10\n        }\n        sourceComponent: Rectangle {\n            color: bgItem.D.ColorSelector.separatorColor\n        }\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccLabel.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport org.deepin.dtk 1.0\n\nLabel {\n    id: control\n    property alias hovered: mouseArea.containsMouse\n\n    elide: Text.ElideRight\n    font: DTK.fontManager.t6\n    ToolTip {\n        visible: control.width < control.implicitWidth && control.hovered\n        text: control.text\n        delay: 500\n        timeout: 3000\n    }\n    // 使用Attached方式退出时会崩溃\n    // ToolTip.visible: width < implicitWidth && hovered\n    // ToolTip.text: text\n    MouseArea {\n        id: mouseArea\n        anchors.fill: parent\n        hoverEnabled: true\n        acceptedButtons: Qt.NoButton\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccLoader.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick\n\nLoader {\n    property var dccObj: null\n    property Item dccObjItem: null\n\n    function updateDccObjItem() {\n        if (dccObj) {\n            dccObj.parentItem = dccObjItem\n        }\n    }\n    enabled: dccObj && dccObj.enabledToApp\n    // asynchronous: true\n    sourceComponent: dccObj ? dccObj.page : null\n    onDccObjChanged: updateDccObjItem()\n    onDccObjItemChanged: updateDccObjItem()\n    Component.onCompleted: updateDccObjItem()\n    onStatusChanged: {\n        if (status === Loader.Error) {\n            console.warn(\"Failed to load component for dccObj:\", dccObj)\n        }\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccMenuEditorItem.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0 as D\n\nDccEditorItem {\n    id: control\n    property Component editor: null\n    leftPadding: 14\n    rightPadding: 10\n    topPadding: topInset\n    bottomPadding: bottomInset\n    activeFocusOnTab: false\n    rightItem: RowLayout {\n        spacing: 10\n        DccLoader {\n            active: !editor\n            dccObj: model.item\n            dccObjItem: control\n        }\n        Loader {\n            active: editor\n            sourceComponent: editor\n        }\n        D.IconLabel {\n            icon {\n                width: 12\n                height: 12\n                name: \"arrow_ordinary_right\"\n                palette: D.DTK.makeIconPalette(control.palette)\n                mode: control.D.ColorSelector.controlState\n                theme: control.D.ColorSelector.controlTheme\n            }\n        }\n    }\n    onClicked: {\n        if (model.item.children.length > 0) {\n            DccApp.showPage(model.item.children[0])\n        } else {\n            console.warn(model.item.name, \" MenuEditor nust include children\", model.item.children.length)\n        }\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccMenuItem.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\n\nimport org.deepin.dtk 1.0 as D\n\nDccEditorItem {\n    topInset: 5\n    leftPadding: 14\n    rightPadding: 10\n    bottomInset: 5\n    topPadding: topInset\n    bottomPadding: bottomInset\n    activeFocusOnTab: false\n    rightItem: D.IconLabel {\n        icon {\n            name: \"arrow_ordinary_right\"\n            palette: D.DTK.makeIconPalette(palette)\n        }\n    }\n    onClicked: DccApp.showPage(model.item)\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccRightView.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport Qt.labs.qmlmodels 1.2\nimport QtQuick.Layouts 1.15\nimport \"DccUtils.js\" as DccUtils\n\nFlickable {\n    id: control\n    property alias spacing: groupView.spacing\n    property alias isGroup: groupView.isGroup\n    property real margin: DccUtils.getMargin(width)\n    property bool scrollBarVisible: false\n\n    contentHeight: groupView.height\n    ScrollBar.vertical: ScrollBar {\n        id: vbar\n        width: 10\n        opacity: control.scrollBarVisible ? 1 : 0\n        Behavior on opacity {\n            NumberAnimation { duration: 150 }\n        }\n    }\n    DccGroupView {\n        id: groupView\n        isGroup: false\n        height: implicitHeight + 10\n        anchors {\n            left: parent.left\n            right: parent.right\n            leftMargin: control.margin\n            rightMargin: control.margin\n        }\n    }\n    Timer {\n        id: showScrollBarTimer\n        interval: 300\n        repeat: false\n        onTriggered: control.scrollBarVisible = true\n    }\n    Component.onCompleted: {\n        showScrollBarTimer.start()\n    }\n    Rectangle {\n        id: panel\n        property var item: undefined\n        property int cnt: 0\n        property bool isIndicatorShown: true\n        z: 10\n        radius: 8\n        color: \"transparent\"\n        visible: false\n        border.color: this.palette.highlight\n        border.width: 2\n    }\n    Timer {\n        interval: 100\n        repeat: true\n        running: panel.item !== undefined\n        onTriggered: {\n            if (!panel.item || !panel.item.visible || !control.visible || panel.cnt > 6) {\n                panel.visible = false\n                panel.cnt = 0\n                panel.item = undefined\n                panel.isIndicatorShown = false\n                stop()\n            } else {\n                let itemY = panel.item.mapToItem(control, 0, 0).y\n                if ((itemY + panel.item.height) > control.height) {\n                    control.contentY = itemY + panel.item.height - control.height + control.contentY\n                }\n                itemY = panel.item.mapToItem(control, 0, 0).y\n                if (itemY < 0) {\n                    control.contentY = -itemY\n                }\n                if (panel.isIndicatorShown) {\n                    panel.x = panel.item.mapToItem(control, 0, 0).x\n                    panel.y = panel.item.mapToItem(control, 0, 0).y + control.contentY\n                    panel.height = panel.item.height\n                    panel.width = panel.item.width\n                    panel.visible = panel.cnt & 1\n                }\n                panel.cnt++\n            }\n        }\n    }\n    Connections {\n        target: DccApp\n        function onActiveItemChanged(item, isIndicatorShown) {\n            panel.item = item\n            panel.isIndicatorShown = isIndicatorShown\n        }\n    }\n    Connections {\n        target: DccApp.mainWindow()\n        function onActiveFocusItemChanged() {\n            var focusItem = target.activeFocusItem\n            var parentItem = focusItem\n            while (parentItem && parentItem !== groupView) {\n                parentItem = parentItem.parent\n            }\n            if (!parentItem || parentItem !== groupView) {\n                return\n            }\n\n            let itemY = focusItem.mapToItem(control, 0, 0).y\n            if ((itemY + focusItem.height) > control.height) {\n                control.contentY = itemY + focusItem.height - control.height + control.contentY\n            } else if (itemY < 0) {\n                control.contentY = focusItem.mapToItem(groupView, 0, 0).y\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccRowView.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Layouts 1.15\nimport Qt.labs.platform 1.1\nimport Qt.labs.qmlmodels 1.2\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc 1.0\n\nRowLayout {\n    objectName: \"noPadding\"\n    Layout.fillWidth: true\n    spacing: 10\n    Repeater {\n        id: repeater\n        model: DccModel {\n            root: dccObj\n        }\n        delegate: DccLoader {\n            Layout.fillWidth: item ? item.Layout.fillWidth : false\n            Layout.fillHeight: item ? item.Layout.fillHeight : false\n            Layout.alignment: item ? item.Layout.alignment : Qt.AlignLeft\n            dccObj: model.item\n            dccObjItem: this\n        }\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccSettingsObject.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\n\nDccObject {\n    id: root\n    readonly property string bodyUrl: root.parentName + \"/\" + root.name + \"/body\"\n    readonly property string footerUrl: root.parentName + \"/\" + root.name + \"/footer\"\n    page: DccSettingsView {}\n    DccObject {\n        id: bodyObj\n        name: \"body\"\n        parentName: root.parentName + \"/\" + root.name\n        weight: 10\n        pageType: DccObject.Item\n    }\n    DccObject {\n        id: footerObj\n        name: \"footer\"\n        parentName: root.parentName + \"/\" + root.name\n        weight: 20\n        pageType: DccObject.Item\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccSettingsView.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport Qt.labs.qmlmodels 1.2\nimport QtQuick.Layouts 1.15\nimport \"DccUtils.js\" as DccUtils\n\nFlickable {\n    id: control\n    property real spacing: 0\n    property bool isGroup: false\n    property real margin: DccUtils.getMargin(width)\n    property bool initItem: false\n    property bool scrollBarVisible: false\n\n    contentHeight: centralItem.height + bottomItem.height - (bottomItem.height > 0 ? bottomItem.anchors.topMargin : 0)\n    ScrollBar.vertical: ScrollBar {\n        id: vbar\n        width: 10\n        opacity: control.scrollBarVisible ? 1 : 0\n        Behavior on opacity {\n            NumberAnimation { duration: 150 }\n        }\n    }\n    Component {\n        id: groupView\n        DccGroupView {\n            isGroup: control.isGroup\n            spacing: control.spacing\n        }\n    }\n    Component {\n        id: footer\n        DccRowView {}\n    }\n    Item {\n        y: control.contentY\n        height: control.height - bottomItem.height\n        width: parent.width\n        clip: true\n        DccLoader {\n            id: centralItem\n            y: -control.contentY\n            focus: true\n            dccObjItem: parent\n            anchors {\n                left: parent.left\n                right: parent.right\n                leftMargin: control.margin\n                rightMargin: control.margin\n            }\n        }\n    }\n    DccLoader {\n        id: bottomItem\n        height: item ? (item.implicitHeight + 20) : 0\n        focus: true\n        dccObjItem: parent\n        anchors {\n            left: parent.left\n            right: parent.right\n            topMargin: 5\n            bottomMargin: 5\n            leftMargin: control.margin\n            rightMargin: control.margin\n        }\n        y: (control.contentHeight - control.contentY > control.height ? control.height - this.height + control.contentY : control.contentHeight - this.height)\n    }\n    Rectangle {\n        id: panel\n        property var item: undefined\n        property int cnt: 1\n        property bool isIndicatorShown: true\n        z: 10\n        radius: 8\n        color: \"transparent\"\n        visible: false\n        border.color: this.palette.highlight\n        border.width: 2\n    }\n    Timer {\n        interval: 100\n        repeat: true\n        running: panel.item !== undefined\n        onTriggered: {\n            if (!panel.item || !panel.item.visible || !control.visible || panel.cnt > 5) {\n                panel.visible = false\n                panel.cnt = 1\n                panel.item = undefined\n                stop()\n            } else {\n                panel.cnt++\n                let itemY = panel.item.mapToItem(control, 0, 0).y\n                let rHeight = control.height - bottomItem.height\n                if ((itemY + panel.item.height) > rHeight) {\n                    control.contentY = itemY + panel.item.height - rHeight + control.contentY\n                } else if (itemY < 0 && centralItem.item) {\n                    control.contentY = panel.item.mapToItem(centralItem.item, 0, 0).y\n                }\n                if (panel.isIndicatorShown) {\n                    panel.x = panel.item.mapToItem(control, 0, 0).x\n                    panel.y = panel.item.mapToItem(control, 0, 0).y + control.contentY\n                    panel.height = panel.item.height\n                    panel.width = panel.item.width\n                    panel.visible = panel.cnt & 1\n                }\n            }\n        }\n    }\n    Connections {\n        target: DccApp\n        function onActiveItemChanged(item, isIndicatorShown) {\n            panel.item = item\n            panel.isIndicatorShown = isIndicatorShown\n        }\n    }\n    Connections {\n        target: DccApp.mainWindow()\n        function onActiveFocusItemChanged() {\n            var focusItem = target.activeFocusItem\n            var parentItem = focusItem\n            while (parentItem && parentItem !== centralItem.item) {\n                parentItem = parentItem.parent\n            }\n            if (!parentItem || parentItem !== centralItem.item) {\n                return\n            }\n\n            let itemY = focusItem.mapToItem(control, 0, 0).y\n            let rHeight = control.height - bottomItem.height\n            if ((itemY + focusItem.height) > rHeight) {\n                control.contentY = itemY + focusItem.height - rHeight + control.contentY\n            } else if (itemY < 0 && centralItem.item) {\n                control.contentY = focusItem.mapToItem(centralItem.item, 0, 0).y\n            }\n        }\n    }\n    function updateItem() {\n        if (!initItem && dccObj.children.length === 2) {\n            if (!dccObj.children[0].page) {\n                dccObj.children[0].page = groupView\n            }\n            centralItem.dccObj = dccObj.children[0]\n            if (!dccObj.children[1].page) {\n                dccObj.children[1].page = footer\n            }\n            bottomItem.dccObj = dccObj.children[1]\n            initItem = true\n        }\n    }\n    Timer {\n        id: showScrollBarTimer\n        interval: 300\n        repeat: false\n        onTriggered: control.scrollBarVisible = true\n    }\n    Component.onCompleted: {\n        updateItem()\n        showScrollBarTimer.start()\n    }\n    Connections {\n        target: dccObj\n        function onChildrenChanged() {\n            updateItem()\n        }\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccTimeRange.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nD.SpinBox {\n    id: control\n    wrap: true\n    readonly property string timeString: textFromValue(value)\n    property int hour: 0\n    property int minute: 0\n    property int initialValue: 0\n    signal timeChanged\n\n    Layout.maximumWidth: 110\n    rightPadding: control.down.indicator.width\n    \n    Timer {\n        id: valueChangeTimer\n        interval: 500  // 500ms 防抖，用户停止操作后才发送\n        onTriggered: {\n            if (control.value !== control.initialValue) {\n                control.timeChanged()\n                control.initialValue = control.value  // 更新初始值\n            }\n        }\n    }\n    from: 0\n    to: 1380 // 23 hours * 60 minutes\n    stepSize: 60\n    value: hour * 60 + minute\n    editable: true\n    font: D.DTK.fontManager.t7\n    inputMethodHints: Qt.ImhDigitsOnly\n\n    function formatText(value) {\n        return value < 10 ? \"0\" + value : value\n    }\n    onHourChanged: {\n        var m = value % 60\n        var newValue = hour * 60 + m\n        if (stepSize === 1) {\n            from = hour * 60\n            to = hour * 60 + 59\n        }\n        if (value !== newValue)\n            value = newValue\n    }\n    onMinuteChanged: {\n        var h = Math.floor(value / 60)\n        var newValue = h * 60 + minute\n        if (stepSize === 60) {\n            from = minute\n            to = 23 * 60 + minute\n        }\n        if (value !== newValue)\n            value = newValue\n    }\n\n    textFromValue: function (value) {\n        var hours = Math.floor(value / 60)\n        var minutes = value % 60\n        return (hours < 10 ? \"0\" + hours : hours) + \":\" + (minutes < 10 ? \"0\" + minutes : minutes)\n    }\n    valueFromText: function (text) {\n        var parts = text.split(\":\")\n        var hours = parseInt(parts[0], 10)\n        var minutes = parseInt(parts[1], 10)\n        switch (stepSize) {\n        case 1:\n            control.from = hours * 60\n            control.to = hours * 60 + 59\n            break\n        case 60:\n            control.from = minutes\n            control.to = 23 * 60 + minutes\n            break\n        }\n        return hours * 60 + minutes\n    }\n    contentItem: RowLayout {\n        property string text: hourInput.text + \":\" + minuteInput.text\n        spacing: 0\n        opacity: enabled ? 1 : 0.4\n        TextInput {\n            id: hourInput\n            property bool typingDigit: false\n            Layout.fillWidth: true\n            Layout.fillHeight: true\n            Layout.preferredWidth: 20\n            Layout.alignment: Qt.AlignHCenter\n            text: control.formatText(Math.floor(value / 60))\n            font: control.font\n            color: control.palette.text\n            selectionColor: control.palette.highlight\n            selectedTextColor: control.palette.highlightedText\n            horizontalAlignment: Qt.AlignHCenter\n            verticalAlignment: Qt.AlignVCenter\n            readOnly: !control.editable\n            validator: RegularExpressionValidator {\n                regularExpression: /^(?:[0-1]?[0-9]|2[0-3])$/\n            }\n            maximumLength: 2\n            inputMethodHints: control.inputMethodHints\n            selectByMouse: true\n            mouseSelectionMode: TextInput.SelectCharacters\n            onFocusChanged: {\n                if (focus) {\n                    control.stepSize = 60\n                    var minutes = value % 60\n                    control.from = minutes\n                    control.to = 23 * 60 + minutes\n                } else {\n                    typingDigit = false\n                }\n            }\n            Keys.onPressed: function(event) {\n                if (event.key >= Qt.Key_0 && event.key <= Qt.Key_9) {\n                    typingDigit = true\n                }\n            }\n            onTextChanged: {\n                if (focus && typingDigit) {\n                    if (text.length === 1) {\n                        var firstDigit = parseInt(text, 10)\n                        if (firstDigit >= 3) {\n                            typingDigit = false\n                            minuteInput.forceActiveFocus()\n                            minuteInput.selectAll()\n                        }\n                    }\n                    else if (text.length === 2) {\n                        typingDigit = false\n                        minuteInput.forceActiveFocus()\n                        minuteInput.selectAll()\n                    }\n                }\n            }\n            Keys.onRightPressed: function(event) {\n                if (cursorPosition === length) {\n                    minuteInput.forceActiveFocus()\n                    minuteInput.selectAll()\n                    event.accepted = true\n                } else {\n                    event.accepted = false\n                }\n            }\n        }\n        Label {\n            Layout.preferredWidth: 10\n            Layout.alignment: Qt.AlignHCenter\n            text: \":\"\n            font: control.font\n            color: control.palette.text\n            horizontalAlignment: Qt.AlignHCenter\n            verticalAlignment: Qt.AlignVCenter\n        }\n        TextInput {\n            id: minuteInput\n            Layout.fillWidth: true\n            Layout.fillHeight: true\n            Layout.preferredWidth: 20\n            Layout.alignment: Qt.AlignHCenter\n            text: control.formatText(Math.floor(value % 60))\n            font: control.font\n            color: control.palette.text\n            selectionColor: control.palette.highlight\n            selectedTextColor: control.palette.highlightedText\n            horizontalAlignment: Qt.AlignHCenter\n            verticalAlignment: Qt.AlignVCenter\n            readOnly: !control.editable\n            validator: RegularExpressionValidator {\n                regularExpression: /^(?:[0-5]?[0-9])$/\n            }\n            maximumLength: 2\n            inputMethodHints: control.inputMethodHints\n            selectByMouse: true\n            mouseSelectionMode: TextInput.SelectCharacters\n            onFocusChanged: {\n                if (focus) {\n                    control.stepSize = 1\n                    var hours = Math.floor(value / 60)\n                    control.from = hours * 60\n                    control.to = hours * 60 + 59\n                }\n            }\n            Keys.onLeftPressed: function(event) {\n                if (cursorPosition === 0) {\n                    hourInput.forceActiveFocus()\n                    hourInput.selectAll()\n                    event.accepted = true\n                } else {\n                    event.accepted = false\n                }\n            }\n        }\n    }\n    onValueChanged: {\n        valueChangeTimer.restart()\n    }\n    onActiveFocusChanged: {\n        if (activeFocus) {\n            valueChangeTimer.stop()\n            initialValue = value\n        } else {\n            valueChangeTimer.restart()\n        }\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccTitleObject.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick.Controls 2.15\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport \"DccUtils.js\" as DccUtils\n\nDccObject {\n    pageType: DccObject.Item\n    page: ColumnLayout {\n        DccLabel {\n            Layout.fillWidth: true\n            property D.Palette textColor: D.Palette {\n                normal: Qt.rgba(0, 0, 0, 0.9)\n                normalDark: Qt.rgba(1, 1, 1, 0.9)\n            }\n            font: DccUtils.copyFont(D.DTK.fontManager.t5, {\n                                        \"weight\": 500\n                                    })\n            text: dccObj.displayName\n            color: D.ColorSelector.textColor\n        }\n        DccLabel {\n            Layout.fillWidth: true\n            visible: text !== \"\"\n            font: D.DTK.fontManager.t8\n            text: dccObj.description\n            opacity: 0.5\n        }\n    }\n    onParentItemChanged: {\n        if (parentItem) {\n            parentItem.leftPadding = 14\n        }\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccUtils.js",
    "content": ".pragma library\n// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nfunction copyFont(srcFont, propertys) {\n    return Qt.font({\n                       \"family\": propertys.hasOwnProperty(\"family\") ? propertys.family : srcFont.family,\n                       \"bold\": propertys.hasOwnProperty(\"bold\") ? propertys.bold : srcFont.bold,\n                       \"weight\": propertys.hasOwnProperty(\"weight\") ? propertys.weight : propertys.hasOwnProperty(\"bold\") && propertys.bold ? 700 : srcFont.weight,\n                       \"italic\": propertys.hasOwnProperty(\"italic\") ? propertys.italic : srcFont.italic,\n                       \"underline\": propertys.hasOwnProperty(\"underline\") ? propertys.underline : srcFont.underline,\n                       \"pointSize\": propertys.hasOwnProperty(\"pointSize\") ? propertys.pointSize : srcFont.pointSize,\n                       \"pixelSize\": propertys.hasOwnProperty(\"pixelSize\") ? propertys.pixelSize : srcFont.pixelSize\n                   })\n}\n\nfunction getMargin(w) {\n    if (w > 1300) {\n        return Math.round((w - 1200) / 2)\n    }\n    if (w >= 600) {\n        return 50\n    }\n    return Math.round((w - 500) / 2)\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/DccWindow.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nimport org.deepin.dcc 1.0\n\nD.ApplicationWindow {\n    id: mainWindow\n    enum PageIndex {\n        LoadIndex,\n        HomeIndex,\n        SecondIndex\n    }\n\n    property string appProductName: Qt.application.displayName\n    property string appLicense: \"GPL-3.0-or-later\"\n    property int currentIndex: DccWindow.PageIndex.LoadIndex\n    property var sidebarPage: null\n\n    minimumWidth: 520\n    minimumHeight: 400\n    visible: false\n    flags: Qt.Window | Qt.WindowCloseButtonHint | Qt.WindowTitleHint | Qt.WindowMinimizeButtonHint | Qt.WindowMaximizeButtonHint\n    color: \"transparent\"\n    D.DWindow.enabled: true\n    onClosing: {\n        Qt.callLater(function () {\n            console.info(\"DccWindow closed\")\n            Qt.quit()\n        })\n    }\n    MouseArea {\n        anchors.fill: parent\n        enabled: false\n        cursorShape: Qt.ArrowCursor\n    }\n\n    D.StyledBehindWindowBlur {\n        anchors.fill: parent\n        control: mainWindow\n        blendColor: {\n            if (valid) {\n                return DS.Style.control.selectColor(control ? control.palette.window : undefined, Qt.rgba(1, 1, 1, 0.8), Qt.rgba(0.06, 0.06, 0.06, 0.8))\n            }\n            return DS.Style.control.selectColor(undefined, DS.Style.behindWindowBlur.lightNoBlurColor, DS.Style.behindWindowBlur.darkNoBlurColor)\n        }\n    }\n    Shortcut {\n        context: Qt.ApplicationShortcut\n        sequences: [StandardKey.HelpContents, \"F1\"]\n        onActivated: DccApp.showHelp()\n        onActivatedAmbiguously: DccApp.showHelp()\n    }\n    D.TitleBar {\n        id: titleBar\n        icon.name: \"preferences-system\"\n        implicitHeight: 40\n        menu: Menu {\n            D.ThemeMenu {}\n            D.MenuSeparator {}\n            D.HelpAction {\n                onTriggered: DccApp.showHelp()\n            }\n            D.AboutAction {\n                aboutDialog: D.AboutDialog {\n                    D.DWindow.enabled: true\n                    productIcon: \"preferences-system\"\n                    modality: Qt.WindowModal\n                    productName: appProductName\n                    websiteName: D.DTK.deepinWebsiteName\n                    websiteLink: D.DTK.deepinWebsiteLink\n                    description: qsTr(\"Control Center provides the options for system settings.\")\n                    onClosing: destroy(10)\n                }\n            }\n            D.QuitAction {}\n        }\n        embedMode: false\n        autoHideOnFullscreen: true\n        focus: true\n        leftContent: D.ActionButton {\n            id: sidebarButton\n            opacity: Window.window.active ? 1 : (D.DTK.themeType === D.ApplicationHelper.DarkType ? 0.6 : 0.4)\n            palette.windowText: D.ColorSelector.textColor\n            anchors {\n                verticalCenter: parent.verticalCenter\n                leftMargin: 20\n                left: parent.left\n            }\n            implicitHeight: 30\n            implicitWidth: 30\n            hoverEnabled: enabled\n            activeFocusOnTab: true\n            visible: mainWindow.currentIndex === DccWindow.PageIndex.SecondIndex\n            icon {\n                name: \"sidebar\"\n                height: 16\n                width: 16\n            }\n            Component.onCompleted: {\n                if (contentItem) {\n                    contentItem.smooth = false\n                }\n            }\n            background: Rectangle {\n                property D.Palette pressedColor: D.Palette {\n                    normal: Qt.rgba(0, 0, 0, 0.2)\n                    normalDark: Qt.rgba(1, 1, 1, 0.25)\n                }\n                property D.Palette hoveredColor: D.Palette {\n                    normal: Qt.rgba(0, 0, 0, 0.1)\n                    normalDark: Qt.rgba(1, 1, 1, 0.1)\n                }\n                radius: DS.Style.control.radius\n                color: parent.pressed ? D.ColorSelector.pressedColor : (parent.hovered ? D.ColorSelector.hoveredColor : \"transparent\")\n                border {\n                    color: parent.palette.highlight\n                    width: parent.visualFocus ? DS.Style.control.focusBorderWidth : 0\n                }\n            }\n            onClicked: {\n                if (mainWindow.sidebarPage) {\n                    mainWindow.sidebarPage.targetSidebar()\n                }\n            }\n        }\n        content: Item {\n            anchors {\n                fill: parent\n                leftMargin: mainWindow.currentIndex === DccWindow.PageIndex.HomeIndex ? 0 : -200\n            }\n            SearchBar {\n                anchors {\n                    horizontalCenter: parent.horizontalCenter\n                    verticalCenter: parent.verticalCenter\n                }\n                visible: mainWindow.currentIndex === DccWindow.PageIndex.HomeIndex\n                model: DccApp.searchModel()\n                onClicked: function (model) {\n                    DccApp.showPage(model.url)\n                }\n            }\n            D.ActionButton {\n                id: breakBut\n                palette.windowText: D.ColorSelector.textColor\n                implicitHeight: 30\n                implicitWidth: 30\n                x: ((mainWindow.sidebarPage && mainWindow.sidebarPage.splitterX > 110) ? mainWindow.sidebarPage.splitterX : 110) - 1\n                anchors.verticalCenter: parent.verticalCenter\n                visible: mainWindow.currentIndex === DccWindow.PageIndex.SecondIndex\n                hoverEnabled: enabled\n                activeFocusOnTab: enabled\n                enabled: DccApp.activeObject && DccApp.activeObject.parentName.length !== 0 && DccApp.activeObject.parentName !== \"root\"\n                onClicked: DccApp.toBack()\n                icon {\n                    name: \"arrow_ordinary_left\"\n                    height: 12\n                    width: 12\n                }\n                background: Rectangle {\n                    property D.Palette pressedColor: D.Palette {\n                        normal: Qt.rgba(0, 0, 0, 0.2)\n                        normalDark: Qt.rgba(1, 1, 1, 0.25)\n                    }\n                    property D.Palette hoveredColor: D.Palette {\n                        normal: Qt.rgba(0, 0, 0, 0.1)\n                        normalDark: Qt.rgba(1, 1, 1, 0.1)\n                    }\n                    radius: DS.Style.control.radius\n                    color: parent.pressed ? D.ColorSelector.pressedColor : (parent.hovered ? D.ColorSelector.hoveredColor : \"transparent\")\n                    border {\n                        color: parent.palette.highlight\n                        width: parent.visualFocus ? DS.Style.control.focusBorderWidth : 0\n                    }\n                }\n            }\n            Crumb {\n                width: parent.width - x\n                anchors {\n                    left: breakBut.right\n                    leftMargin: 8\n                    verticalCenter: parent.verticalCenter\n                }\n                visible: mainWindow.currentIndex === DccWindow.PageIndex.SecondIndex\n                model: DccApp.navModel()\n                onClicked: function (model) {\n                    DccApp.showPage(model.url)\n                    centralView.forceActiveFocus()\n                }\n            }\n        }\n    }\n\n    DccLoader {\n        id: centralView\n        anchors.fill: parent\n        dccObj: DccApp.root\n    }\n\n\n    /*  焦点切换调试，暂不删\n    onActiveFocusItemChanged: {\n        console.log(\"root onActiveFocusItemChanged:  \", mainWindow.activeFocusItem, mainWindow.activeFocusControl)\n        if (mainWindow.activeFocusItem && mainWindow.activeFocusControl) {\n            console.log(\"root activeFocusOnTab:  \", mainWindow.activeFocusItem.activeFocusOnTab, mainWindow.activeFocusControl.activeFocusOnTab)\n        }\n    }\n    D.FocusBoxBorder {\n        id: focusIn\n        z: 98\n        x: {\n            if (visible) {\n                var p1 = mainWindow.activeFocusItem.parent.mapToGlobal(mainWindow.activeFocusItem.x, mainWindow.activeFocusItem.y)\n                console.log(\"p1:\", p1)\n                var p2 = mapFromItem(mainWindow.activeFocusItem, mainWindow.activeFocusItem.x, mainWindow.activeFocusItem.y)\n                console.log(\"p2:\", p2)\n                var p3 = parent.mapFromGlobal(p1.x, p1.y)\n                console.log(\"p3:\", p3)\n                return p3.x\n                // mapFromGlobal(root, mainWindow.activeFocusItem.mapToGlobal(\n                //                   mainWindow.activeFocusItem.x,\n                //                   mainWindow.activeFocusItem.y)).x\n            } else {\n                return 0\n            }\n        }\n        y: visible ? parent.mapFromGlobal(mainWindow.activeFocusItem.parent.mapToGlobal(mainWindow.activeFocusItem.x, mainWindow.activeFocusItem.y)).y : 0\n        width: visible ? mainWindow.activeFocusItem.width : 0\n        height: visible ? mainWindow.activeFocusItem.height : 0\n        // anchors.topMargin:\n        visible: mainWindow.activeFocusItem\n\n        radius: DS.Style.control.radius\n        color: \"#80FF0000\"\n    }\n    */\n    Component {\n        id: rootLayout\n        SwipeView {\n            id: stackView\n            hoverEnabled: false\n            currentIndex: DccWindow.PageIndex.LoadIndex\n            interactive: false\n            activeFocusOnTab: false\n            Rectangle {\n                id: loadPage\n                color: palette.window\n                D.DciIcon {\n                    anchors.centerIn: parent\n                    name: \"control-loading\"\n                    mode: D.DTK.NormalState\n                    theme: D.DTK.themeType\n                }\n                visible: stackView.currentIndex === DccWindow.PageIndex.LoadIndex\n            }\n            HomePage {\n                id: homePage\n                visible: stackView.currentIndex === DccWindow.PageIndex.HomeIndex\n            }\n            SecondPage {\n                id: secondPage\n                visible: stackView.currentIndex === DccWindow.PageIndex.SecondIndex\n                Component.onCompleted: mainWindow.sidebarPage = this\n            }\n            Connections {\n                target: DccApp\n                function onActiveObjectChanged(activeObject) {\n                    Qt.callLater(function () {\n                        if (stackView.currentIndex !== DccWindow.PageIndex.LoadIndex && null === DccApp.activeObject) {\n                            mainWindow.sidebarPage = null\n                            stackView.currentIndex = DccWindow.PageIndex.LoadIndex\n                            mainWindow.currentIndex = DccWindow.PageIndex.LoadIndex\n                        } else if (stackView.currentIndex !== DccWindow.PageIndex.HomeIndex && DccApp.root === DccApp.activeObject) {\n                            mainWindow.sidebarPage = null\n                            stackView.currentIndex = DccWindow.PageIndex.HomeIndex\n                            mainWindow.currentIndex = DccWindow.PageIndex.HomeIndex\n                        } else if (stackView.currentIndex !== DccWindow.PageIndex.SecondIndex && DccApp.root !== DccApp.activeObject) {\n                            mainWindow.sidebarPage = secondPage\n                            stackView.currentIndex = DccWindow.PageIndex.SecondIndex\n                            mainWindow.currentIndex = DccWindow.PageIndex.SecondIndex\n                        }\n                    })\n                }\n            }\n            Component.onCompleted: {\n                if (contentItem) {\n                    contentItem.highlightMoveDuration = 0\n                }\n            }\n        }\n    }\n\n    Component.onCompleted: {\n        mainWindow.width = DccApp.width\n        mainWindow.height = DccApp.height\n        mainWindow.x = Screen.virtualX + (Screen.width - mainWindow.width) / 2\n        mainWindow.y = Screen.virtualY + (Screen.height - mainWindow.height) / 2\n        DccApp.root.page = rootLayout\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/HomePage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nimport org.deepin.dcc 1.0\n\nControl {\n    id: root\n    property bool contentVisible: true\n\n    property real cellWidth: 240\n    property real cellHeight: 64\n    property real cellSpacing: 10\n\n    Item {\n        id: header\n        implicitHeight: 50\n        anchors {\n            // bottom: parent.bottom\n            top: parent.top\n            left: parent.left\n            right: parent.right\n        }\n        Rectangle {\n            id: separator\n            visible: contentVisible\n            anchors {\n                bottom: parent.bottom\n                left: parent.left\n                right: parent.right\n            }\n\n            color: palette.shadow // \"#F2F2F2\"\n            // color: palette.placeholderText\n            height: 2\n        }\n    }\n\n    function updateMargin() {\n        if (width > grid.cellWidth) {\n            var count = parseInt((width - root.cellSpacing) / (grid.cellWidth))\n            var length = dccObj.children.length\n            if (length < count) {\n                count = length\n            }\n            grid.anchors.leftMargin = (width - count * (grid.cellWidth)) / 2 + (root.cellSpacing / 2)\n        } else {\n            grid.anchors.leftMargin = root.cellSpacing\n        }\n    }\n    onWidthChanged: updateMargin()\n    Connections {\n        target: dccObj\n        function onChildrenChanged() {\n            updateMargin()\n        }\n    }\n\n    Rectangle {\n        id: background\n        z: -1\n        anchors.fill: parent\n        color: palette.window\n    }\n\n    GridView {\n        id: grid\n\n        anchors {\n            fill: parent\n            topMargin: root.cellSpacing + header.height\n            leftMargin: root.cellSpacing\n        }\n\n        clip: true\n        cellWidth: root.cellWidth + root.cellSpacing\n        cellHeight: root.cellHeight + root.cellSpacing\n\n        visible: contentVisible\n\n        activeFocusOnTab: true\n\n        Keys.enabled: true\n        Keys.onPressed: function (event) {\n            switch (event.key) {\n            case Qt.Key_Enter:\n            case Qt.Key_Return:\n                var obj = dccModel.getObject(currentIndex)\n                if (obj) {\n                    DccApp.showPage(obj)\n                }\n                break\n            default:\n                return\n            }\n            event.accepted = true\n        }\n\n        highlight: Item {\n            z: 2\n            D.FocusBoxBorder {\n                anchors {\n                    fill: parent\n                    margins: 5\n                }\n                radius: 8\n                color: parent.palette.highlight\n                visible: grid.activeFocus\n            }\n        }\n        focus: true\n        model: DccModel {\n            id: dccModel\n            root: dccObj\n        }\n        delegate: D.ItemDelegate {\n            width: root.cellWidth\n            height: root.cellHeight\n            padding: 12\n            icon {\n                name: model.item.icon\n                source: model.item.iconSource\n                width: 32\n                height: 32\n            }\n            contentFlow: true\n            hoverEnabled: true\n            background: DccItemBackground {\n                separatorVisible: false\n                backgroundType: DccObject.ClickStyle\n            }\n\n            content: RowLayout {\n                Layout.fillWidth: true\n                Layout.fillHeight: true\n                ColumnLayout {\n                    Layout.leftMargin: 5\n                    Layout.maximumWidth: 160\n                    Label {\n                        id: display\n                        Layout.maximumWidth: 160\n                        text: model.display\n                        color: palette.brightText\n                        elide: Text.ElideRight\n                    }\n                    Label {\n                        id: description\n                        Layout.maximumWidth: 160\n                        visible: text !== \"\"\n                        font: D.DTK.fontManager.t10\n                        text: updateDescription()\n                        color: palette.brightText\n                        opacity: 0.5\n                        elide: Text.ElideRight\n                        function updateDescription() {\n                            if (model.item.description === \"\" && model.item.children.length > 0) {\n                                var len = model.item.children.length\n                                var descs = []\n                                for (var i = 0; i < len && descs.length < 3; ++i) {\n                                    if (model.item.children[i].pageType & DccObject.Menu) {\n                                        descs.push(model.item.children[i].displayName)\n                                    }\n                                }\n                                return descs.join(qsTr(\",\")) + (len <= 3 ? \"\" : qsTr(\"...\"))\n                            }\n                            return model.item.description\n                        }\n                        Connections {\n                            target: model.item\n                            function onChildrenChanged(children) {\n                                description.text = description.updateDescription()\n                            }\n                        }\n                    }\n                }\n                D.DciIcon {\n                    Layout.alignment: Qt.AlignRight\n                    Layout.rightMargin: -2\n                    visible: model.item.badge !== 0\n                    name: \"reddot\"\n                    sourceSize:  Qt.size(16, 16)\n                }\n            }\n            onClicked: {\n                DccApp.showPage(model.item)\n                console.log(model.item.name, model.display, model.item.icon)\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/SearchBar.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport org.deepin.dtk 1.0\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nRectangle {\n    id: control\n    property alias model: view.model\n    property alias edit: searchEdit\n    signal clicked(var model)\n\n    implicitHeight: 32\n    implicitWidth: (parent.width / 2) > 240 ? 240 : (parent.width / 2)\n    color: \"transparent\"\n    radius: DS.Style.control.radius\n    border.color: palette.light // \"#E1E7EB\" #D2E4F2\n    border.width: 1\n    opacity: 0.7\n\n    onVisibleChanged: {\n        searchEdit.text = \"\"\n        popup.close()\n    }\n\n    SearchEdit {\n        id: searchEdit\n        function setViewIndex(viewIndex) {\n            if (viewIndex < 0) {\n                viewIndex = view.count - 1\n                view.positionViewAtEnd()\n            } else if (viewIndex >= view.count) {\n                viewIndex = 0\n                view.positionViewAtBeginning()\n            }\n            view.currentIndex = viewIndex\n        }\n\n        anchors.fill: parent\n        anchors.margins: 1\n        activeFocusOnTab: true\n\n        // focus: true\n        placeholderTextColor: palette.brightText\n        padding: 1\n\n        DropArea {\n            anchors.fill: parent\n            onDropped: function(drop) {\n                if (drop.hasText) {\n                    searchEdit.text = drop.text\n                    drop.acceptProposedAction()\n                }\n            }\n        }\n\n        property Palette nomalPalette: Palette {\n            normal: (\"#FCFCFC\")\n            normalDark: (\"#0C0C0C\")\n        }\n\n        backgroundColor: nomalPalette\n        onTextChanged: {\n            if (text === \"\") {\n                popup.close()\n            } else {\n                model.setFilterRegularExpression(text)\n                if (view.count > 0) {\n                    popup.open()\n                } else {\n                    popup.close()\n                }\n            }\n        }\n        Keys.enabled: true\n        Keys.onPressed: function (event) {\n            switch (event.key) {\n            case Qt.Key_Escape:\n                popup.close()\n                break\n            case Qt.Key_Down:\n                setViewIndex(view.currentIndex + 1)\n                break\n            case Qt.Key_Up:\n                setViewIndex(view.currentIndex - 1)\n                break\n            case Qt.Key_Return:\n            case Qt.Key_Enter:\n                if (view.currentItem) {\n                    view.currentItem.clicked()\n                }\n                break\n            default:\n                return\n            }\n            event.accepted = true\n        }\n    }\n    Popup {\n        id: popup\n        y: 35\n        width: searchEdit.width > 308 ? searchEdit.width : 308\n        height: (view.count > 7 ? 7 : view.count) * 32 + 15\n        padding: 5\n        ListView {\n            id: view\n            clip: true\n            anchors.fill: parent\n            spacing: 0\n            delegate: D.ItemDelegate {\n                implicitWidth: parent ? parent.width : 0\n                implicitHeight: 32\n                topInset: 0\n                bottomInset: 0\n                topPadding: 0\n                bottomPadding: 0\n                backgroundVisible: true\n                corners: getCornersForBackground(index, view.count)\n                icon.name: model.decoration\n                // text: model.display\n                checked: ListView.isCurrentItem\n                contentFlow: true\n                content: DccLabel {\n                    text: model.display ? model.display : \"\"\n                }\n                onClicked: {\n                    control.clicked(model)\n                    popup.close()\n                }\n                background: DccItemBackground {\n                    separatorVisible: false\n                    bgMargins: 0\n                    backgroundType: DccObject.Hover\n                }\n            }\n            ScrollBar.vertical: ScrollBar {}\n        }\n        enter: Transition {\n            NumberAnimation {\n                property: \"opacity\"\n                from: 0.0\n                to: 1.0\n                duration: 150\n            }\n            NumberAnimation {\n                property: \"scale\"\n                from: 0.0\n                to: 1.0\n                duration: 150\n            }\n        }\n\n        exit: Transition {\n            NumberAnimation {\n                property: \"opacity\"\n                to: 0.0\n                duration: 150\n            }\n            NumberAnimation {\n                property: \"scale\"\n                to: 0.0\n                duration: 150\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/SecondPage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nimport org.deepin.dcc 1.0\n\nItem {\n    id: root\n    property real oldX: 180 // 用于调整宽度时，自动调整侧边栏宽度\n    property real oldSplitterX: 180 // 记录上次位置，用于恢复\n    property alias splitterX: splitter.x\n    property bool isKeyboardNavigating: false // 标记是否正在键盘导航\n\n    function updateSidebarWidth(sidebarWidth) {\n        if (!rightView.empty) {\n            DccApp.sidebarWidth = sidebarWidth\n        }\n    }\n    function targetSidebar() {\n        if (splitter.x < 110) {\n            var newX = root.oldSplitterX\n            if (root.width - newX > 520) {\n                splitter.x = newX\n            } else if (root.width - 180 > 520) {\n                splitter.x = 180\n            } else if (root.width - 110 > 520) {\n                splitter.x = 110\n            } else {\n                let dx = 630 - root.width\n                DccApp.mainWindow().x -= dx\n                DccApp.mainWindow().width = 630\n                splitter.x = 110\n            }\n        } else {\n            root.oldSplitterX = splitter.x\n            splitter.x = 0\n            root.oldX = 0\n        }\n        updateSidebarWidth(splitter.x)\n    }\n\n    activeFocusOnTab: false\n\n    Item {\n        id: leftView\n        anchors {\n            top: parent.top\n            bottom: parent.bottom\n            left: parent.left\n            right: splitter.left\n        }\n        visible: width > 20\n\n        SearchBar {\n            id: searchEdit\n            anchors {\n                left: parent.left\n                right: parent.right\n                top: parent.top\n                margins: 10\n                topMargin: 50\n            }\n\n            model: DccApp.searchModel()\n            onClicked: function (model) {\n                DccApp.showPage(model.url)\n            }\n        }\n        ListView {\n            id: list\n            visible: true\n            anchors.top: searchEdit.bottom\n            anchors.bottom: parent.bottom\n            anchors.left: parent.left\n            anchors.right: parent.right\n            anchors.topMargin: 3\n            leftMargin: 10\n            rightMargin: 10\n            topMargin: 6\n            bottomMargin: 10\n            clip: true\n            focus: true\n            activeFocusOnTab: true\n            currentIndex: dccObj ? dccObj.children.indexOf(dccObj.currentObject) : -1\n            palette: D.DTK.palette\n            opacity: Window.window.active ? 1 : (D.DTK.themeType === D.ApplicationHelper.DarkType ? 0.6 : 0.4)\n            MouseArea {\n                anchors.fill: parent\n                z: 999\n                acceptedButtons: Qt.LeftButton\n                propagateComposedEvents: true\n                onPressed: function (mouse) {\n                    list.forceActiveFocus()\n                    mouse.accepted = false\n                }\n            }\n\n            ScrollBar.vertical: ScrollBar {\n                width: 10\n            }\n\n            Keys.enabled: true\n            Keys.onPressed: function (event) {\n                switch (event.key) {\n                case Qt.Key_Up:\n                    if (count <= 0 || !dccObj)\n                        break\n                    var upIdx = currentIndex\n                    if (upIdx < 0)\n                        upIdx = 0\n                    else if (upIdx > 0)\n                        upIdx--\n                    var upObj = dccModel.getObject(upIdx)\n                    if (upObj) {\n                        root.isKeyboardNavigating = true\n                        dccObj.currentObject = upObj\n                        DccApp.showPage(upObj)\n                    }\n                    forceActiveFocus()\n                    break\n                case Qt.Key_Down:\n                    if (count <= 0 || !dccObj)\n                        break\n                    var downIdx = currentIndex\n                    if (downIdx < 0)\n                        downIdx = 0\n                    else if (downIdx < count - 1)\n                        downIdx++\n                    var downObj = dccModel.getObject(downIdx)\n                    if (downObj) {\n                        root.isKeyboardNavigating = true\n                        dccObj.currentObject = downObj\n                        DccApp.showPage(downObj)\n                    }\n                    forceActiveFocus()\n                    break\n                case Qt.Key_Enter:\n                case Qt.Key_Return:\n                    var obj = dccModel.getObject(currentIndex)\n                    if (obj)\n                        DccApp.showPage(obj)\n                    forceActiveFocus()\n                    break\n                default:\n                    return\n                }\n                event.accepted = true\n            }\n\n            model: DccModel {\n                id: dccModel\n                root: dccObj\n            }\n\n            delegate: D.ItemDelegate {\n                implicitHeight: 40\n                width: parent ? parent.width : 300\n                font: D.DTK.fontManager.t6\n                activeFocusOnTab: false\n                focusPolicy: Qt.ClickFocus\n\n                property bool isKeyboardNavigating: false\n\n                checked: dccObj.currentObject === model.item\n                cascadeSelected: false\n\n                icon {\n                    name: model.item.icon\n                    source: model.item.iconSource\n                    width: 24\n                    height: 24\n                }\n\n                onActiveFocusChanged: {\n                    if (activeFocus) {\n                        // 通过键盘导航获得焦点时设置标记\n                        if (root.isKeyboardNavigating) {\n                            isKeyboardNavigating = true\n                        }\n                    } else {\n                        // 失去焦点时重置标记\n                        isKeyboardNavigating = false\n                    }\n                }\n                contentFlow: true\n                content: RowLayout {\n                    DccLabel {\n                        Layout.fillWidth: true\n                        text: model.display\n                    }\n                    D.DciIcon {\n                        visible: model.item.badge !== 0\n                        name: \"reddot\"\n                        sourceSize: Qt.size(16, 16)\n                    }\n                }\n                hoverEnabled: true\n\n                background: DccItemBackground {\n                    focusBorderVisible: true\n                    isKeyboardNavigating: parent.isKeyboardNavigating\n                    externalFocus: ListView.view && ListView.view.activeFocus && ListView.isCurrentItem\n                    separatorVisible: false\n                    bgMargins: 0\n                    backgroundType: DccObject.Hover | DccObject.Clickable\n                    backgroundColor: D.Palette {\n                        normal: Qt.rgba(1, 1, 1, 1)\n                        normalDark: Qt.rgba(1, 1, 1, 0.05)\n                        hovered: Qt.rgba(0, 0, 0, 0.1)\n                        hoveredDark: Qt.rgba(1, 1, 1, 0.1)\n                        pressed: Qt.rgba(0, 0, 0, 0.2)\n                        pressedDark: Qt.rgba(1, 1, 1, 0.25)\n                    }\n                }\n                onClicked: {\n                    // 鼠标点击时重置键盘导航标记\n                    isKeyboardNavigating = false\n                    list.forceActiveFocus()\n                    DccApp.showPage(model.item)\n                }\n            }\n        }\n    }\n    Rectangle {\n        property D.Palette bgColor: D.Palette {\n            normal: Qt.rgba(0.97, 0.97, 0.97, 0.95)\n            normalDark: Qt.rgba(0.09, 0.09, 0.09, 0.85)\n        }\n        palette: D.DTK.palette\n        anchors {\n            top: parent.top\n            bottom: parent.bottom\n            left: splitter.right\n            right: parent.right\n        }\n        color: D.ColorSelector.bgColor\n        StackView {\n            id: rightView\n            clip: true\n            hoverEnabled: true\n            focus: true\n            activeFocusOnTab: true\n            anchors {\n                fill: parent\n                topMargin: 50\n            }\n            onCurrentItemChanged: {\n                if (currentItem && !root.isKeyboardNavigating) {\n                    rightView.forceActiveFocus()\n                }\n                root.isKeyboardNavigating = false\n            }\n        }\n    }\n    Rectangle {\n        id: splitter\n        property D.Palette bgColor: D.Palette {\n            normal: Qt.rgba(0, 0, 0, 0.05)\n            normalDark: Qt.rgba(0, 0, 0, 0.5)\n        }\n        implicitWidth: 1\n        x: 180\n        height: root.height\n        color: D.ColorSelector.bgColor\n    }\n    MouseArea {\n        x: splitter.x - 2\n        width: 5\n        anchors.top: parent.top\n        anchors.bottom: parent.bottom\n        cursorShape: Qt.SizeHorCursor\n        onPositionChanged: function (mouse) {\n            var newX = mouse.x + splitter.x\n            if (newX >= 0 && newX < root.width - splitter.width) {\n                if (root.width - newX < 520) {\n                    return\n                }\n                if (newX < 110) {\n                    newX = 0\n                }\n\n                splitter.x = newX\n                root.oldX = newX\n            }\n            updateSidebarWidth(splitter.x)\n        }\n    }\n\n    onWidthChanged: {\n        var newX = width - 510\n        if (width - splitter.x < 510) {\n            if (newX < 0) {\n                return\n            }\n            if (newX < 110) {\n                newX = 0\n            }\n            splitter.x = newX\n        } else if (splitter.x < oldX) {\n            newX = width - 510\n            if (newX < 0) {\n                return\n            }\n            if (newX < 110) {\n                newX = 0\n            }\n            if (newX > oldX) {\n                newX = oldX\n            }\n            splitter.x = newX\n        }\n        updateSidebarWidth(splitter.x)\n    }\n    Component {\n        id: rightLayout\n        DccRightView {}\n    }\n    Component {\n        id: mainView\n        DccLoader {}\n    }\n    function updateRightView() {\n        var activeObj = DccApp.activeObject\n        if (!activeObj || activeObj === dccObj) {\n            return\n        }\n        if (activeObj.page === null) {\n            activeObj.page = rightLayout\n        }\n        rightView.replace(mainView, {\n                              \"dccObj\": activeObj\n                          }, DccApp.animationMode === DccApp.AnimationPush ? StackView.PushTransition : StackView.PopTransition)\n    }\n    Connections {\n        target: DccApp\n        function onActiveObjectChanged() {\n            updateRightView()\n        }\n    }\n    Component.onCompleted: {\n        oldX = DccApp.sidebarWidth\n        updateRightView()\n    }\n}\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccapp.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"dccapp.h\"\n\nnamespace dccV25 {\nstatic DccApp *dccApp = nullptr;\n\nDccApp *DccApp::instance()\n{\n    return dccApp;\n}\n\nDccApp::DccApp(QObject *parent)\n    : QObject(parent)\n    , m_animationMode(AnimationPop)\n{\n    Q_ASSERT(!dccApp);\n    dccApp = this;\n}\n\nDccApp::~DccApp() { }\n\nvoid DccApp::setAnimationMode(AnimationMode mode)\n{\n    if (m_animationMode != mode) {\n        m_animationMode = mode;\n        Q_EMIT animationModeChanged(mode);\n    }\n}\n\nint DccApp::width() const\n{\n    return 0;\n}\n\nint DccApp::height() const\n{\n    return 0;\n}\n\nDccObject *DccApp::root() const\n{\n    return nullptr;\n}\n\nDccObject *DccApp::activeObject() const\n{\n    return nullptr;\n}\n\nint DccApp::sidebarWidth() const\n{\n    return 180;\n}\n\nvoid DccApp::setSidebarWidth(int) { }\n\nDccObject *DccApp::object(const QString &)\n{\n    return nullptr;\n}\n\nvoid DccApp::addObject(DccObject *) { }\n\nvoid DccApp::removeObject(DccObject *) { }\n\nvoid DccApp::removeObject(const QString &) { }\n\nvoid DccApp::showPage(const QString &) { }\n\nvoid DccApp::showPage(DccObject *, const QString &) { }\n\nQWindow *DccApp::mainWindow() const\n{\n    return nullptr;\n}\n\nQAbstractItemModel *DccApp::navModel() const\n{\n    return nullptr;\n}\n\nQSortFilterProxyModel *DccApp::searchModel() const\n{\n    return nullptr;\n}\n\n} // namespace dccV25\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccapp.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCCAPP_H\n#define DCCAPP_H\n#include \"dccobject.h\"\n\n#include <QObject>\n\nQT_BEGIN_NAMESPACE\nclass QWindow;\nclass QAbstractItemModel;\nclass QSortFilterProxyModel;\nQT_END_NAMESPACE\n\nnamespace dccV25 {\nclass DccApp : public QObject\n{\n    Q_OBJECT\npublic:\n    enum UosEdition {\n        UosEditionUnknown,\n        UosProfessional,\n        UosHome,\n        UosCommunity,\n        UosMilitary,\n        UosEnterprise,\n        UosEnterpriseC,\n        UosEuler,\n        UosMilitaryS, // for Server\n        UosDeviceEdition,\n        UosEducation,\n\n        UosEditionCount // must at last\n    };\n    Q_ENUM(UosEdition)\n\n    enum AnimationMode { AnimationPush, AnimationPop };\n    Q_ENUM(AnimationMode)\n\n    static DccApp *instance();\n\n    Q_PROPERTY(int width READ width FINAL)\n    Q_PROPERTY(int height READ height FINAL)\n    Q_PROPERTY(int sidebarWidth READ sidebarWidth WRITE setSidebarWidth NOTIFY sidebarWidthChanged)\n    Q_PROPERTY(DccObject * root READ root NOTIFY rootChanged)\n    Q_PROPERTY(DccObject * activeObject READ activeObject NOTIFY activeObjectChanged)\n    Q_PROPERTY(QVector<DccObject *> currentObjects READ currentObjects NOTIFY currentObjectsChanged)\n    Q_PROPERTY(QVector<DccObject *> triggeredObjects READ triggeredObjects NOTIFY triggeredObjectsChanged)\n    Q_PROPERTY(AnimationMode animationMode READ animationMode WRITE setAnimationMode NOTIFY animationModeChanged)\n\n    virtual int width() const;\n    virtual int height() const;\n    virtual DccObject *root() const;\n    virtual DccObject *activeObject() const;\n    virtual const QVector<DccObject *> &currentObjects() const = 0;\n    virtual const QVector<DccObject *> &triggeredObjects() const = 0;\n\n    virtual AnimationMode animationMode() const { return m_animationMode; }\n\n    virtual int sidebarWidth() const;\n    virtual void setSidebarWidth(int width);\n    virtual void setAnimationMode(AnimationMode mode);\n\npublic Q_SLOTS:\n    virtual DccObject *object(const QString &name);\n    virtual void addObject(DccObject *obj);\n    virtual void removeObject(DccObject *obj);\n    virtual void removeObject(const QString &name);\n    virtual void showPage(const QString &url);\n    virtual void showPage(DccObject *obj, const QString &cmd);\n    virtual QWindow *mainWindow() const;\n    virtual QAbstractItemModel *navModel() const;\n    virtual QSortFilterProxyModel *searchModel() const;\n\nQ_SIGNALS:\n    void sidebarWidthChanged(int width);\n    void rootChanged(DccObject *root);\n    void activeObjectChanged(DccObject *activeObject);\n    void currentObjectsChanged(QVector<DccObject *> currentObjects);\n    void triggeredObjectsChanged(QVector<DccObject *> triggeredObjects);\n    void activeItemChanged(QQuickItem *item);\n    void animationModeChanged(AnimationMode mode);\n\nprotected:\n    explicit DccApp(QObject *parent = nullptr);\n    ~DccApp() override;\n\nprivate:\n    AnimationMode m_animationMode;\n};\n} // namespace dccV25\n\n#endif // DCCAPP_H\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccimageprovider.cpp",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"dccimageprovider.h\"\n\n#include <QImageReader>\n#include <QMetaObject>\n#include <QThread>\n#include <QThreadPool>\n#include <QUrl>\n\nnamespace dccV25 {\n// 4x of 84x54 => 336x216, used as a high-res base thumbnail size\nconst QSize THUMBNAIL_ICON_SIZE(336, 216);\n// Separator for cache key to include size information\nconst QString CACHE_KEY_SIZE_SEPARATOR = \"::SIZE::\";\n\nstatic QSize resolveSize(const QSize &size)\n{\n    return (size.isValid() && size.width() > 0 && size.height() > 0)\n               ? size\n               : THUMBNAIL_ICON_SIZE;\n}\n\n// ---------------------------------------------------------------------------\n// CacheImageResponse – pure QML response container, no loading logic.\n// ---------------------------------------------------------------------------\nclass CacheImageResponse : public QQuickImageResponse\n{\n    Q_OBJECT\npublic:\n    CacheImageResponse() = default;\n\n    void setImage(const QImage &image) { m_image = image; }\n    void emitFinished() { Q_EMIT finished(); }\n\n    QQuickTextureFactory *textureFactory() const override\n    {\n        return QQuickTextureFactory::textureFactoryForImage(m_image);\n    }\n\nprivate:\n    QImage m_image;\n};\n\n// ---------------------------------------------------------------------------\n// ImageTask – async image loader, runs on thread pool.\n// ---------------------------------------------------------------------------\nclass ImageTask : public QObject, public QRunnable\n{\n    Q_OBJECT\n\nQ_SIGNALS:\n    void imageLoaded(const QString &cacheKey, const QImage &image);\n\npublic:\n    ImageTask(const QString &id, const QSize &requestedSize, const QString &cacheKey)\n        : m_id(id)\n        , m_requestedSize(requestedSize)\n        , m_cacheKey(cacheKey)\n    {\n        setAutoDelete(false);\n    }\n\n    void run() override\n    {\n        QUrl url(m_id);\n        const QString scheme = url.scheme().toLower();\n        QString path;\n        if (scheme == \"qrc\")\n            path = \":\" + url.path();\n        else if (scheme == \"file\" || url.isLocalFile())\n            path = url.toLocalFile();\n        else\n            path = url.toString();\n\n        QImageReader reader(path);\n        if (!reader.canRead()) {\n            Q_EMIT imageLoaded(m_cacheKey, QImage());\n            return;\n        }\n\n        const QSize nativeSize = reader.size();\n        if (nativeSize.isValid() && m_requestedSize.isValid()) {\n            QSize scaledSize = nativeSize.scaled(m_requestedSize, Qt::KeepAspectRatioByExpanding);\n            scaledSize = scaledSize.boundedTo(nativeSize);\n            reader.setScaledSize(scaledSize);\n        }\n\n        QImage img;\n        if (!reader.read(&img)) {\n            Q_EMIT imageLoaded(m_cacheKey, QImage());\n            return;\n        }\n\n        if (img.width() > m_requestedSize.width() || img.height() > m_requestedSize.height()) {\n            const QRect dest(QPoint(0, 0), m_requestedSize);\n            const QRect src(img.rect().center() - dest.center(), m_requestedSize);\n            img = img.copy(src);\n        }\n\n        Q_EMIT imageLoaded(m_cacheKey, img);\n    }\n\nprivate:\n    QString m_id;\n    QSize m_requestedSize;\n    QString m_cacheKey;\n};\n\n// ---------------------------------------------------------------------------\n// DccImageProvider\n// ---------------------------------------------------------------------------\n\nDccImageProvider::DccImageProvider()\n    : QQuickAsyncImageProvider()\n    , m_cache(80)\n{\n}\n\nDccImageProvider::~DccImageProvider()\n{\n}\n\n// static\nQString DccImageProvider::makeCacheKey(const QString &id, const QSize &size)\n{\n    const QSize s = resolveSize(size);\n    return QString(\"%1%2%3x%4\").arg(id, CACHE_KEY_SIZE_SEPARATOR).arg(s.width()).arg(s.height());\n}\n\nvoid DccImageProvider::submitTask(const QString &id, const QSize &resolvedSize,\n                                  const QString &cacheKey, CacheImageResponse *response)\n{\n    Q_ASSERT(thread() == QThread::currentThread());\n\n    if (m_pendingResponses.contains(cacheKey)) {\n        // Task already in flight – just register this response for notification\n        if (response)\n            m_pendingResponses.insert(cacheKey, response);\n        return;\n    }\n\n    // Insert the response pointer, or an empty QPointer as an in-flight marker.\n    m_pendingResponses.insert(cacheKey, QPointer<CacheImageResponse>(response));\n\n    auto task = new ImageTask(id, resolvedSize, cacheKey);\n    connect(task, &ImageTask::imageLoaded, this, &DccImageProvider::onImageLoaded, Qt::QueuedConnection);\n    connect(task, &ImageTask::imageLoaded, task, &QObject::deleteLater, Qt::QueuedConnection);\n    QThreadPool::globalInstance()->start(task);\n}\n\nvoid DccImageProvider::cacheImage(const QString &id, const QSize &thumbnailSize)\n{\n    const QString cacheKey = makeCacheKey(id, thumbnailSize);\n    const QSize resolved = resolveSize(thumbnailSize);\n\n    const auto work = [this, id, resolved, cacheKey]() {\n        if (m_cache.object(cacheKey))\n            return;\n        submitTask(id, resolved, cacheKey, nullptr);\n    };\n\n    QMetaObject::invokeMethod(this, work);\n}\n\nQQuickImageResponse *DccImageProvider::requestImageResponse(const QString &id, const QSize &requestedSize)\n{\n    const QString cacheKey = makeCacheKey(id, requestedSize);\n    const QSize resolved = resolveSize(requestedSize);\n    auto response = new CacheImageResponse();\n    response->moveToThread(thread());\n    QPointer<CacheImageResponse> guardedResponse(response);\n\n    const auto work = [this, guardedResponse, id, resolved, cacheKey]() {\n        if (!guardedResponse)\n            return;\n\n        if (const QImage *cached = m_cache.object(cacheKey)) {\n            // Cache hit: set image and emit finished asynchronously on the provider thread.\n            guardedResponse->setImage(*cached);\n            guardedResponse->emitFinished();\n        } else {\n            // Cache miss: submit a loading task. The response will be notified when loading is done.\n            submitTask(id, resolved, cacheKey, guardedResponse);\n        }\n    };\n\n    QMetaObject::invokeMethod(this, work);\n\n    return response;\n}\n\nvoid DccImageProvider::onImageLoaded(const QString &cacheKey, const QImage &image)\n{\n    Q_ASSERT(thread() == QThread::currentThread());\n\n    if (!image.isNull())\n        m_cache.insert(cacheKey, new QImage(image));\n\n    if (!m_pendingResponses.contains(cacheKey))\n        return;\n\n    const auto responses = m_pendingResponses.values(cacheKey);\n    m_pendingResponses.remove(cacheKey);\n\n    for (const auto &resp : responses) {\n        if (resp) {\n            if (!image.isNull())\n                resp->setImage(image);\n            resp->emitFinished();\n        }\n    }\n}\n\n} // namespace dccV25\n\n#include \"dccimageprovider.moc\"\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccimageprovider.h",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCCIMAGEPROVIDER_H\n#define DCCIMAGEPROVIDER_H\n#include <QCache>\n#include <QImage>\n#include <QMultiMap>\n#include <QObject>\n#include <QPointer>\n#include <QQuickAsyncImageProvider>\n\nnamespace dccV25 {\nclass CacheImageResponse;\n\nclass DccImageProvider : public QQuickAsyncImageProvider\n{\n    Q_OBJECT\npublic:\n    explicit DccImageProvider();\n    ~DccImageProvider() override;\n\n    void cacheImage(const QString &id, const QSize &thumbnailSize);\n    QQuickImageResponse *requestImageResponse(const QString &id, const QSize &requestedSize) override;\n\nprivate Q_SLOTS:\n    void onImageLoaded(const QString &cacheKey, const QImage &image);\n    \nprivate:\n    static QString makeCacheKey(const QString &id, const QSize &size);\n    void submitTask(const QString &id, const QSize &resolvedSize, const QString &cacheKey,\n                    CacheImageResponse *response);\n\n    QCache<QString, QImage> m_cache;\n    QMultiMap<QString, QPointer<CacheImageResponse>> m_pendingResponses;\n};\n} // namespace dccV25\n#endif // DCCIMAGEPROVIDER_H\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"dccmodel.h\"\n\n#include \"dccobject.h\"\n#include \"dccobject_p.h\"\n\n#include <QIcon>\n#include <QLoggingCategory>\n\nnamespace dccV25 {\n// static Q_LOGGING_CATEGORY(dccLog, \"dde.dcc.model\");\n\nenum DccModelRole {\n    DccItemRole = Qt::UserRole + 300,\n    DccPageTypeRole,\n    DccViewItemPositionRole,\n};\n\nenum DccItemPostition {\n    Invalid,\n    Beginning,\n    Middle,\n    End,\n    OnlyOne,\n};\n\nDccModel::DccModel(QObject *parent)\n    : QAbstractItemModel(parent)\n    , m_root(nullptr)\n{\n}\n\nDccModel::~DccModel() { }\n\nDccObject *DccModel::root() const\n{\n    return m_root;\n}\n\nvoid DccModel::setRoot(DccObject *root)\n{\n    beginResetModel();\n    m_root = root;\n    endResetModel();\n    Q_EMIT rootChanged(m_root);\n    if (!m_root)\n        return;\n    connect(m_root, &DccObject::childAboutToBeAdded, this, &DccModel::AboutToAddObject);\n    connect(m_root, &DccObject::childAdded, this, &DccModel::addObject);\n    connect(m_root, &DccObject::childAboutToBeRemoved, this, &DccModel::AboutToRemoveObject);\n    connect(m_root, &DccObject::childRemoved, this, &DccModel::removeObject);\n    connect(m_root, &DccObject::childAboutToBeMoved, this, &DccModel::AboutToMoveObject);\n    connect(m_root, &DccObject::childMoved, this, &DccModel::moveObject);\n    for (auto &&obj : DccObject::Private::FromObject(m_root)->getChildren()) {\n        connectObject(obj);\n    }\n}\n\nDccObject *DccModel::getObject(int row)\n{\n    if (row < 0 || row >= m_root->getChildren().size()) {\n        return nullptr;\n    }\n    return m_root->getChildren().at(row);\n}\n\nQHash<int, QByteArray> DccModel::roleNames() const\n{\n    QHash<int, QByteArray> names;\n    names[Qt::DisplayRole] = \"display\";\n    names[Qt::StatusTipRole] = \"description\";\n    names[Qt::DecorationRole] = \"decoration\";\n    names[DccItemRole] = \"item\";\n    names[DccPageTypeRole] = \"pageType\";\n    names[DccViewItemPositionRole] = \"position\";\n    return names;\n}\n\nQModelIndex DccModel::index(const DccObject *object)\n{\n    if (object == m_root) {\n        return QModelIndex();\n    }\n\n    DccObject *parent = DccObject::Private::FromObject(object)->getParent();\n    if (!parent) {\n        // DGM: actually, it can happen (for instance if the entity is displayed in the local DB of a 3D view)\n        // ccLog::Error(QString(\"An error occurred while creating DB tree index: object '%1' has no parent\").arg(object->getName()));\n        return QModelIndex();\n    }\n\n    int pos = DccObject::Private::FromObject(parent)->getChildIndex(object);\n    assert(pos >= 0);\n\n    return createIndex(pos, 0, (void *)object);\n}\n\nQModelIndex DccModel::index(int row, int column, const QModelIndex &parentIndex) const\n{\n    // qWarning() << __FUNCTION__ << __LINE__ << row << column << parentIndex;\n    if (row < 0 || row >= m_root->getChildren().size()) {\n        return QModelIndex();\n    }\n    return createIndex(row, column, (void *)m_root->getChildren().at(row));\n\n    if (!hasIndex(row, column, parentIndex)) {\n        return QModelIndex();\n    }\n    DccObject *parent = (parentIndex.isValid() ? static_cast<DccObject *>(parentIndex.internalPointer()) : m_root);\n    const DccObject *child = DccObject::Private::FromObject(parent)->getChild(row);\n    return child ? createIndex(row, column, (void *)child) : QModelIndex();\n}\n\nQModelIndex DccModel::parent(const QModelIndex &index) const\n{\n    if (!index.isValid()) {\n        return QModelIndex();\n    }\n    DccObject *childItem = static_cast<DccObject *>(index.internalPointer());\n    if (!childItem) {\n        assert(false);\n        return QModelIndex();\n    }\n    DccObject *parentItem = DccObject::Private::FromObject(childItem)->getParent();\n\n    assert(parentItem);\n    if (!parentItem || parentItem == m_root) {\n        return QModelIndex();\n    }\n\n    return createIndex(DccObject::Private::FromObject(parentItem)->getIndex(), 0, parentItem);\n}\n\nint DccModel::rowCount(const QModelIndex &) const\n{\n    if (!m_root)\n        return 0;\n\n    return DccObject::Private::FromObject(m_root)->getChildren().size();\n}\n\nint DccModel::columnCount(const QModelIndex &parent) const\n{\n    // qCWarning(dccLog) << __FUNCTION__ << __LINE__;\n    if (!parent.isValid())\n        return 0;\n\n    return 1;\n}\n\nQVariant DccModel::data(const QModelIndex &index, int role) const\n{\n    // qCWarning(dccLog) << __FUNCTION__ << index << role;\n    if (!index.isValid())\n        return QVariant();\n    DccObject *item = static_cast<DccObject *>(index.internalPointer());\n    switch (role) {\n    case DccItemRole:\n        return QVariant::fromValue(item);\n    case DccPageTypeRole:\n        return QVariant::fromValue(item->pageType());\n    case DccViewItemPositionRole: {\n        int count = rowCount();\n        if (index.row() == 0) {\n            return count == 1 ? OnlyOne : Beginning;\n        } else if (index.row() == count - 1) {\n            return End;\n        } else {\n            return Middle;\n        }\n    }\n        return Invalid;\n    case Qt::DisplayRole:\n        return item->displayName();\n    case Qt::StatusTipRole:\n        return item->description();\n    case Qt::DecorationRole:\n        return QIcon::fromTheme(item->icon());\n    }\n    return QVariant();\n}\n\nvoid DccModel::updateObject()\n{\n    DccObject *obj = qobject_cast<DccObject *>(sender());\n    if (obj) {\n        QModelIndex i = index(obj);\n        emit dataChanged(i, i);\n    }\n}\n\nvoid DccModel::AboutToAddObject(const DccObject *, int pos)\n{\n    beginInsertRows(QModelIndex(), pos, pos);\n}\n\nvoid DccModel::addObject(const DccObject *child)\n{\n    endInsertRows();\n    connectObject(child);\n}\n\nvoid DccModel::AboutToRemoveObject(const DccObject *, int pos)\n{\n    beginRemoveRows(QModelIndex(), pos, pos);\n}\n\nvoid DccModel::removeObject(const DccObject *child)\n{\n    endRemoveRows();\n    disconnectObject(child);\n}\n\nvoid DccModel::AboutToMoveObject(const DccObject *, int pos, int oldPos)\n{\n    beginMoveRows(QModelIndex(), oldPos, oldPos, QModelIndex(), pos);\n}\n\nvoid DccModel::moveObject(const DccObject *)\n{\n    endMoveRows();\n}\n\nvoid DccModel::connectObject(const DccObject *obj)\n{\n    connect(obj, &DccObject::objectNameChanged, this, &DccModel::updateObject);\n    connect(obj, &DccObject::displayNameChanged, this, &DccModel::updateObject);\n    connect(obj, &DccObject::descriptionChanged, this, &DccModel::updateObject);\n    connect(obj, &DccObject::iconChanged, this, &DccModel::updateObject);\n    connect(obj, &DccObject::badgeChanged, this, &DccModel::updateObject);\n}\n\nvoid DccModel::disconnectObject(const DccObject *obj)\n{\n    disconnect(obj, nullptr, this, nullptr);\n}\n} // namespace dccV25\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccmodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCCMODEL_H\n#define DCCMODEL_H\n\n#include <QAbstractItemModel>\n#include <QQmlEngine>\n\nnamespace dccV25 {\nclass DccObject;\n\nclass DccModel : public QAbstractItemModel\n{\n    Q_OBJECT\n    Q_PROPERTY(DccObject * root READ root WRITE setRoot NOTIFY rootChanged)\n    QML_ELEMENT\npublic:\n    explicit DccModel(QObject *parent = nullptr);\n    ~DccModel() override;\n\n    DccObject *root() const;\n    QHash<int, QByteArray> roleNames() const override;\n    QModelIndex index(const DccObject *object);\n    // Basic functionality:\n    QModelIndex index(int row, int column, const QModelIndex &parentIndex = QModelIndex()) const override;\n    QModelIndex parent(const QModelIndex &index) const override;\n\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n    int columnCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\npublic Q_SLOTS:\n    void setRoot(DccObject *root);\n    DccObject *getObject(int row);\n\nprivate Q_SLOTS:\n    void updateObject();\n    void AboutToAddObject(const DccObject *parent, int pos);\n    void addObject(const DccObject *child);\n    void AboutToRemoveObject(const DccObject *parent, int pos);\n    void removeObject(const DccObject *child);\n    void AboutToMoveObject(const DccObject *parent, int pos, int oldPos);\n    void moveObject(const DccObject *child);\n\nQ_SIGNALS:\n    void rootChanged(DccObject *root);\n\nprivate:\n    void connectObject(const DccObject *obj);\n    void disconnectObject(const DccObject *obj);\n\nprivate:\n    DccObject *m_root;\n};\n} // namespace dccV25\n#endif // DCCMODEL_H\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccobject.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"dccobject.h\"\n\n#include \"dccobject_p.h\"\n\n#include <QLoggingCategory>\n#include <QQmlContext>\n#include <QQmlEngine>\n#include <QQuickItem>\n#include <QQuickWindow>\n#include <QTimer>\n\nnamespace dccV25 {\nstatic Q_LOGGING_CATEGORY(dccLog, \"dde.dcc.object\");\n\nDccObject::Private *DccObject::Private::FromObject(const DccObject *obj)\n{\n    return obj ? obj->p_ptr : nullptr;\n}\n\nDccObject::Private::Private(DccObject *obj)\n    : m_badge(0)\n    , m_pageType(Menu)\n    , m_weight(-1)\n    , m_flags(0)\n    , m_componentComplete(true)\n    , q_ptr(obj)\n    , m_parent(nullptr)\n    , m_recommendedParent(nullptr)\n    , m_currentObject(nullptr)\n    , m_page(nullptr)\n    , m_parentItem(nullptr)\n{\n}\n\nDccObject::Private::~Private()\n{\n    q_ptr->setPage(nullptr);\n    if (m_parent) {\n        m_parent->p_ptr->removeChild(q_ptr);\n    }\n    while (!m_children.isEmpty()) {\n        removeChild(m_children.size() - 1);\n    }\n}\n\nbool DccObject::Private::getFlagState(uint32_t flag) const\n{\n    return (m_flags & flag);\n}\n\nbool DccObject::Private::setFlagState(uint32_t flag, bool state)\n{\n    if (getFlagState(flag) != state) {\n        bool hidden = getFlagState(DCC_ALL_HIDDEN);\n        bool disabled = getFlagState(DCC_ALL_DISABLED);\n        if (state)\n            m_flags |= flag;\n        else\n            m_flags &= (~flag);\n        if (hidden != getFlagState(DCC_ALL_HIDDEN)) {\n            Q_EMIT q_ptr->visibleToAppChanged(hidden);\n        }\n        bool allDisabled = getFlagState(DCC_ALL_DISABLED);\n        if (disabled != allDisabled) {\n            Q_EMIT q_ptr->enabledToAppChanged(disabled);\n        }\n        return true;\n    }\n    return false;\n}\n\nuint32_t DccObject::Private::getFlag() const\n{\n    return m_flags;\n}\n\nbool DccObject::Private::addChild(DccObject::Private *child)\n{\n    return addChild(child->q_ptr);\n}\n\nbool DccObject::Private::addChild(DccObject *child, bool updateParent)\n{\n    if (!child) {\n        return false;\n    }\n    int index = 0;\n    for (auto &&it = m_children.cbegin(); it != m_children.cend(); it++) {\n        if (*it == child)\n            return false;\n        if (child->weight() >= (*it)->weight()) {\n            index++;\n        }\n    }\n\n    Q_EMIT q_ptr->childAboutToBeAdded(q_ptr, index);\n    m_children.insert(m_children.cbegin() + index, child);\n    DccObject::Private::FromObject(child)->SetParent(q_ptr);\n    if (updateParent) {\n        DccObject::Private::FromObject(child)->SetRecommendedParent(q_ptr);\n    }\n    Q_EMIT q_ptr->childAdded(child);\n    Q_EMIT q_ptr->childrenChanged(m_children);\n    return true;\n}\n\nvoid DccObject::Private::removeChild(int index)\n{\n    if (index < 0 || index >= m_children.size()) {\n        // Q_ASSERT(false);\n        return;\n    }\n\n    DccObject *child = m_children.at(index);\n    Q_EMIT q_ptr->childAboutToBeRemoved(q_ptr, index);\n    m_children.erase(m_children.cbegin() + index);\n    DccObject::Private::FromObject(child)->SetParent(nullptr);\n    if (child == m_currentObject) {\n        q_ptr->setCurrentObject(nullptr);\n    }\n    Q_EMIT q_ptr->childRemoved(child);\n    Q_EMIT q_ptr->childrenChanged(m_children);\n}\n\nvoid DccObject::Private::removeChild(DccObject *child)\n{\n    int pos = getChildIndex(child);\n    if (pos >= 0)\n        removeChild(pos);\n}\n\nvoid DccObject::Private::updatePos(DccObject *child)\n{\n    int oldPos = -1;\n    int modelPos = 0;\n    int index = 0;\n    for (auto &&it = m_children.cbegin(); it != m_children.cend(); it++, index++) {\n        if (*it == child) {\n            oldPos = index;\n        } else if (child->weight() >= (*it)->weight()) {\n            modelPos = index + 1;\n        }\n    }\n\n    int newPos = oldPos < modelPos ? modelPos - 1 : modelPos;\n    if (oldPos < 0 || oldPos == newPos) {\n        return;\n    }\n    Q_EMIT q_ptr->childAboutToBeMoved(q_ptr, modelPos, oldPos);\n    m_children.move(oldPos, newPos);\n    Q_EMIT q_ptr->childMoved(child);\n    Q_EMIT q_ptr->childrenChanged(m_children);\n}\n\nconst QVector<DccObject *> &DccObject::Private::getChildren() const\n{\n    return m_children;\n}\n\nint DccObject::Private::getIndex() const\n{\n    return m_parent ? m_parent->p_ptr->getChildren().indexOf(q_ptr) : -1;\n}\n\nDccObject *DccObject::Private::getChild(int childPos) const\n{\n    return (childPos >= 0 && childPos < m_children.size() ? m_children[childPos] : nullptr);\n}\n\nint DccObject::Private::getChildIndex(const DccObject *child) const\n{\n    return m_children.indexOf(const_cast<DccObject *>(child));\n}\n\nvoid DccObject::Private::addObject(DccObject *child)\n{\n    if (child && !m_objects.contains(child)) {\n        m_objects.append(child);\n        DccObject::Private::FromObject(child)->SetRecommendedParent(q_ptr);\n        connect(child, &DccObject::objectDestroyed, q_ptr, [this](DccObject *obj) {\n            m_objects.removeAll(obj);\n            Q_EMIT q_ptr->removeObject(obj);\n        });\n        Q_EMIT q_ptr->addObject(child);\n    }\n}\n\nvoid DccObject::Private::removeObject(DccObject *child)\n{\n    if (child) {\n        DccObject::Private::FromObject(child)->SetRecommendedParent(nullptr);\n        m_objects.removeAll(child);\n        Q_EMIT q_ptr->removeObject(child);\n    }\n}\n\nvoid DccObject::Private::removeObjectFromParent()\n{\n    if (m_recommendedParent) {\n        m_recommendedParent->removeObject(q_ptr);\n    }\n}\n\nvoid DccObject::Private::clearObject()\n{\n    for (auto obj : m_objects) {\n        DccObject::Private::FromObject(obj)->SetRecommendedParent(nullptr);\n        Q_EMIT q_ptr->removeObject(obj);\n    }\n    m_objects.clear();\n}\n\nvoid DccObject::Private::data_append(QQmlListProperty<QObject> *data, QObject *o)\n{\n    if (!o)\n        return;\n    DccObject::Private *that = reinterpret_cast<DccObject::Private *>(data->data);\n    that->m_data.append(o);\n    o->setParent(that->q_ptr);\n\n    if (DccObject *obj = qobject_cast<DccObject *>(o)) {\n        reinterpret_cast<DccObject::Private *>(data->data)->addObject(obj);\n    }\n}\n\nqsizetype DccObject::Private::data_count(QQmlListProperty<QObject> *data)\n{\n    return reinterpret_cast<DccObject::Private *>(data->data)->m_data.count();\n}\n\nQObject *DccObject::Private::data_at(QQmlListProperty<QObject> *data, qsizetype i)\n{\n    QObjectList &d = reinterpret_cast<DccObject::Private *>(data->data)->m_data;\n    if (i < 0 || i >= d.size())\n        return nullptr;\n    return d.at(i);\n}\n\nvoid DccObject::Private::data_clear(QQmlListProperty<QObject> *data)\n{\n    reinterpret_cast<DccObject::Private *>(data->data)->clearObject();\n    reinterpret_cast<DccObject::Private *>(data->data)->m_data.clear();\n}\n\n///////////////////////////////////////////////////////\nDccObject::DccObject(QObject *parent)\n    : QObject(parent)\n    , p_ptr(new DccObject::Private(this))\n{\n}\n\nDccObject::~DccObject()\n{\n    Q_EMIT objectDestroyed(this);\n    delete p_ptr;\n}\n\nQString DccObject::name() const\n{\n    return objectName();\n}\n\nvoid DccObject::setName(const QString &name)\n{\n    setObjectName(name);\n    Q_EMIT nameChanged(name);\n}\n\nQString DccObject::parentName() const\n{\n    return p_ptr->m_parentName;\n}\n\nvoid DccObject::setParentName(const QString &parentName)\n{\n    if (p_ptr->m_parentName != parentName) {\n        p_ptr->m_parentName = parentName;\n        Q_EMIT parentNameChanged(p_ptr->m_parentName);\n    }\n}\n\nquint32 DccObject::weight() const\n{\n    return p_ptr->m_weight;\n}\n\nvoid DccObject::setWeight(quint32 weight)\n{\n    if (p_ptr->m_weight != weight) {\n        p_ptr->m_weight = weight;\n        if (p_ptr->m_parent) {\n            p_ptr->m_parent->p_ptr->updatePos(this);\n        }\n        Q_EMIT weightChanged(p_ptr->m_weight);\n    }\n}\n\nQString DccObject::displayName() const\n{\n    return p_ptr->m_displayName;\n}\n\nvoid DccObject::setDisplayName(const QString &displayName)\n{\n    if (p_ptr->m_displayName != displayName) {\n        p_ptr->m_displayName = displayName;\n        Q_EMIT displayNameChanged(p_ptr->m_displayName);\n    }\n}\n\nQString DccObject::description() const\n{\n    return p_ptr->m_description;\n}\n\nvoid DccObject::setDescription(const QString &description)\n{\n    if (p_ptr->m_description != description) {\n        p_ptr->m_description = description;\n        Q_EMIT descriptionChanged(p_ptr->m_description);\n    }\n}\n\nQString DccObject::icon() const\n{\n    return p_ptr->m_icon;\n}\n\nvoid DccObject::setIcon(const QString &icon)\n{\n    if (p_ptr->m_icon != icon) {\n        p_ptr->m_icon = icon;\n        Q_EMIT iconChanged(p_ptr->m_icon);\n        // 只在组件完成后才解析 URL\n        if (p_ptr->m_componentComplete) {\n            updateIconSource();\n        }\n    }\n}\n\nvoid DccObject::updateIconSource()\n{\n    if (!p_ptr->m_icon.isEmpty()) {\n        QQmlContext *context = qmlContext(this);\n        p_ptr->m_iconSource = context ? context->resolvedUrl(p_ptr->m_icon) : p_ptr->m_icon;\n    } else {\n        p_ptr->m_iconSource.clear();\n    }\n    Q_EMIT iconSourceChanged(p_ptr->m_iconSource);\n}\n\nQUrl DccObject::iconSource() const\n{\n    return p_ptr->m_iconSource;\n}\n\nqint8 DccObject::badge() const\n{\n    return p_ptr->m_badge;\n}\n\nvoid DccObject::setBadge(qint8 badge)\n{\n    if (p_ptr->m_badge != badge) {\n        p_ptr->m_badge = badge;\n        Q_EMIT badgeChanged(p_ptr->m_badge);\n    }\n}\n\nbool DccObject::isVisible() const\n{\n    return !p_ptr->getFlagState(DCC_HIDDEN);\n}\n\nvoid DccObject::setVisible(bool isVisible)\n{\n    if (p_ptr->setFlagState(DCC_HIDDEN, !isVisible)) {\n        Q_EMIT visibleChanged(isVisible);\n    }\n}\n\nbool DccObject::isVisibleToApp() const\n{\n    return !p_ptr->getFlagState(DCC_ALL_HIDDEN);\n}\n\nbool DccObject::isEnabled() const\n{\n    return !p_ptr->getFlagState(DCC_DISABLED);\n}\n\nvoid DccObject::setEnabled(bool enabled)\n{\n    if (p_ptr->setFlagState(DCC_DISABLED, !enabled)) {\n        Q_EMIT enabledChanged(enabled);\n    }\n}\n\nbool DccObject::isEnabledToApp() const\n{\n    return !p_ptr->getFlagState(DCC_ALL_DISABLED);\n}\n\nbool DccObject::canSearch() const\n{\n    return !p_ptr->getFlagState(DCC_CANSEARCH);\n}\n\nvoid DccObject::setCanSearch(bool canSearch)\n{\n    if (p_ptr->setFlagState(DCC_CANSEARCH, !canSearch)) {\n        Q_EMIT canSearchChanged(canSearch);\n    }\n}\n\nDccObject::BackgroundTypes DccObject::backgroundType() const\n{\n    return BackgroundTypes(p_ptr->m_flags & DCC_MASK_BGTYPE);\n}\n\nvoid DccObject::setBackgroundType(BackgroundTypes type)\n{\n    if (backgroundType() != type) {\n        p_ptr->m_flags &= DCC_MASK_NOBGTYPE;\n        p_ptr->m_flags |= type;\n        Q_EMIT backgroundTypeChanged(type);\n    }\n}\n\nDccObject *DccObject::currentObject()\n{\n    return p_ptr->m_currentObject;\n}\n\nvoid DccObject::setCurrentObject(DccObject *obj)\n{\n    if (p_ptr->m_currentObject != obj) {\n        if (p_ptr->m_currentObject) {\n            Q_EMIT p_ptr->m_currentObject->deactive();\n        }\n        p_ptr->m_currentObject = obj;\n        Q_EMIT currentObjectChanged(p_ptr->m_currentObject);\n    }\n}\n\nquint8 DccObject::pageType() const\n{\n    return p_ptr->m_pageType;\n}\n\nvoid DccObject::setPageType(quint8 type)\n{\n    if (p_ptr->m_pageType != type) {\n        p_ptr->m_pageType = type;\n        Q_EMIT pageTypeChanged(p_ptr->m_pageType);\n    }\n}\n\nQQuickItem *DccObject::parentItem()\n{\n    return p_ptr->m_parentItem.get();\n}\n\nvoid DccObject::setParentItem(QQuickItem *item)\n{\n    if (item != p_ptr->m_parentItem.get()) {\n        p_ptr->m_parentItem = item;\n        Q_EMIT parentItemChanged(p_ptr->m_parentItem.get());\n    }\n}\n\nQQmlComponent *DccObject::page() const\n{\n    return p_ptr->m_page;\n}\n\nvoid DccObject::setPage(QQmlComponent *page)\n{\n    if (p_ptr->m_page.get() != page) {\n        p_ptr->m_page = page;\n        Q_EMIT pageChanged(p_ptr->m_page.get());\n    }\n}\n\nQQmlListProperty<QObject> DccObject::data()\n{\n    return QQmlListProperty<QObject>(this, p_ptr, &DccObject::Private::data_append, &DccObject::Private::data_count, &DccObject::Private::data_at, &DccObject::Private::data_clear);\n}\n\nconst QVector<DccObject *> &DccObject::getChildren() const\n{\n    return p_ptr->getChildren();\n}\n\nvoid DccObject::classBegin()\n{\n    p_ptr->m_componentComplete = false;\n}\n\nvoid DccObject::componentComplete()\n{\n    p_ptr->m_componentComplete = true;\n    if (!p_ptr->m_icon.isEmpty()) {\n        updateIconSource();\n    }\n}\n\nbool DccObject::isComponentComplete() const\n{\n    return p_ptr->m_componentComplete;\n}\n\n} // namespace dccV25\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccobject.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCCOBJECT_H\n#define DCCOBJECT_H\n\n#include <QObject>\n#include <QQmlComponent>\n#include <QQmlListProperty>\n#include <QQmlParserStatus>\n#include <QQuickItem>\n\nnamespace dccV25 {\nclass DccModel;\n\nclass DccObject : public QObject, public QQmlParserStatus\n{\n    Q_OBJECT\n    Q_INTERFACES(QQmlParserStatus)\n    QML_ELEMENT\npublic:\n    Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged)\n    Q_PROPERTY(QString parentName READ parentName WRITE setParentName NOTIFY parentNameChanged)\n    Q_PROPERTY(quint32 weight READ weight WRITE setWeight NOTIFY weightChanged)\n\n    Q_PROPERTY(QString displayName READ displayName WRITE setDisplayName NOTIFY displayNameChanged)\n    Q_PROPERTY(QString description READ description WRITE setDescription NOTIFY descriptionChanged)\n    Q_PROPERTY(QString icon READ icon WRITE setIcon NOTIFY iconChanged)\n    Q_PROPERTY(QUrl iconSource READ iconSource NOTIFY iconSourceChanged)\n    Q_PROPERTY(qint8 badge READ badge WRITE setBadge NOTIFY badgeChanged DESIGNABLE false)\n\n    Q_PROPERTY(bool visible READ isVisible WRITE setVisible NOTIFY visibleChanged DESIGNABLE false)\n    Q_PROPERTY(bool enabled READ isEnabled WRITE setEnabled NOTIFY enabledChanged DESIGNABLE false)\n    Q_PROPERTY(bool visibleToApp READ isVisibleToApp NOTIFY visibleToAppChanged) // 未设置隐藏且未被配置隐藏则为true\n    Q_PROPERTY(bool enabledToApp READ isEnabledToApp NOTIFY enabledToAppChanged) // 未设置禁用且未被配置禁用则为true\n    Q_PROPERTY(bool canSearch READ canSearch WRITE setCanSearch NOTIFY canSearchChanged DESIGNABLE false)\n\n    Q_PROPERTY(BackgroundTypes backgroundType READ backgroundType WRITE setBackgroundType NOTIFY backgroundTypeChanged DESIGNABLE false)\n\n    Q_PROPERTY(DccObject* currentObject READ currentObject WRITE setCurrentObject NOTIFY currentObjectChanged DESIGNABLE false)\n    Q_PROPERTY(QVector<DccObject *> children READ getChildren NOTIFY childrenChanged DESIGNABLE false)\n\n    Q_PROPERTY(quint8 pageType READ pageType WRITE setPageType NOTIFY pageTypeChanged)\n    Q_PROPERTY(QQmlComponent* page READ page WRITE setPage NOTIFY pageChanged)\n    Q_PROPERTY(QQuickItem* parentItem READ parentItem WRITE setParentItem NOTIFY parentItemChanged)\n\n    Q_PROPERTY(QQmlListProperty<QObject> data READ data DESIGNABLE false)\n    Q_CLASSINFO(\"DefaultProperty\", \"data\")\n\n    explicit DccObject(QObject *parent = nullptr);\n    ~DccObject() override;\n\n    QString name() const;\n    void setName(const QString &name);\n    QString parentName() const;\n    void setParentName(const QString &parentName);\n    quint32 weight() const;\n    void setWeight(quint32 weight);\n\n    QString displayName() const;\n    void setDisplayName(const QString &displayName);\n    QString description() const;\n    void setDescription(const QString &description);\n    QString icon() const;\n    void setIcon(const QString &icon);\n    QUrl iconSource() const;\n    qint8 badge() const;\n    void setBadge(qint8 badge);\n\n    bool isVisible() const;\n    void setVisible(bool isVisible);\n    bool isVisibleToApp() const;\n\n    bool isEnabled() const;\n    void setEnabled(bool enabled);\n    bool isEnabledToApp() const;\n\n    // 是否参与搜索，默认参与搜索\n    bool canSearch() const;\n    void setCanSearch(bool canSearch);\n\n    enum BackgroundType {\n        AutoBg = 0,                              // 自动，Menu为Normal|Hover，Group为Normal，其他无背景，默认\n        Normal = 0x01,                           // 正常base背景\n        Hover = 0x02,                            // 鼠标悬浮背景\n        Clickable = 0x04,                        // 点击触发active信号\n        Highlight = 0x08,                        // 高亮背景，通常表示选中状态\n        Warning = 0x10,                          // 红色\n        ClickStyle = Normal | Hover | Clickable, // 有悬浮背景并可点击\n    };\n    Q_DECLARE_FLAGS(BackgroundTypes, BackgroundType)\n    Q_FLAG(BackgroundTypes)\n    BackgroundTypes backgroundType() const;\n    void setBackgroundType(BackgroundTypes type);\n\n    DccObject *currentObject();\n    void setCurrentObject(DccObject *obj);\n\n    enum PageType {\n        EditorPage = 1, // 编辑控件,page为右则的编辑控件，左则为displayName和description\n        ItemPage,       // 控件，page为整个控件\n\n        Menu = 0x40, // 菜单项，子页面是page，默认\n        MenuEditor,  // 菜单加编辑控件,子项是一个菜单项\n\n        Control = 0x20,                // 页面中的一个控件，与其他组合使用\n        Editor = EditorPage | Control, // 编辑控件\n        Item = ItemPage | Control,     // 控件\n\n        UserType = 0x80, // 0x80及以上: 用户自定义使用\n    };\n    Q_ENUM(PageType)\n    quint8 pageType() const;\n    void setPageType(quint8 type);\n    // QT_DEPRECATED_X(\"use DccLoader\")\n    // Q_INVOKABLE QQuickItem *getSectionItem(QObject *parent);\n    QQuickItem *parentItem();\n    void setParentItem(QQuickItem *item);\n    QQmlComponent *page() const;\n    void setPage(QQmlComponent *page);\n\n    QQmlListProperty<QObject> data();\n    const QVector<DccObject *> &getChildren() const;\n\n    // QQmlParserStatus interface\n    void classBegin() override;\n    void componentComplete() override;\n\n    class Private;\n\nprotected:\n    bool isComponentComplete() const;\n\nQ_SIGNALS:\n    // 激活信号\n    void active(const QString &cmd);\n    void deactive();\n    // 子项变化信号\n    void childAboutToBeAdded(const DccObject *parent, int pos);\n    void childAdded(DccObject *child);\n    void childAboutToBeRemoved(const DccObject *parent, int pos);\n    void childRemoved(DccObject *child);\n    void childAboutToBeMoved(const DccObject *parent, int pos, int oldPos);\n    void childMoved(DccObject *child);\n    void childrenChanged(const QVector<DccObject *> &children);\n    // 属性变化信号\n    void nameChanged(const QString &name);\n    void parentNameChanged(const QString &parentName);\n    void weightChanged(quint32 weight);\n\n    void displayNameChanged(const QString &displayName);\n    void descriptionChanged(const QString &description);\n    void iconChanged(const QString &icon);\n    void iconSourceChanged(const QUrl &iconSource);\n    void badgeChanged(qint8 badge);\n\n    void visibleChanged(bool visible);\n    void enabledChanged(bool enabled);\n    void visibleToAppChanged(bool visibleToApp);\n    void enabledToAppChanged(bool enabledToApp);\n    void canSearchChanged(bool canSearch);\n\n    void backgroundTypeChanged(BackgroundTypes type);\n\n    void currentObjectChanged(DccObject *obj);\n\n    void pageTypeChanged(quint8 type);\n    void pageChanged(QQmlComponent *page);\n    void parentItemChanged(QQuickItem *item);\n\n    void addObject(DccObject *obj);\n    void removeObject(DccObject *obj);\n    void objectDestroyed(DccObject *obj);\n\nprotected:\n    DccObject::Private *p_ptr;\n\nprivate:\n    void updateIconSource();\n};\n} // namespace dccV25\n#endif // DCCOBJECT_H\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccobject_p.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCCOBJECT_P_H\n#define DCCOBJECT_P_H\n\n#include \"dccobject.h\"\n\n#include <QVector>\n#define DCC_HIDDEN 0x80000000\n#define DCC_DISABLED 0x40000000\n#define DCC_CONFIG_HIDDEN 0x20000000\n#define DCC_CONFIG_DISABLED 0x10000000\n// 0xA0000000 = 0x80000000|0x20000000 0x80000000为用户设置位 0x20000000为配置设置位\n// 0x50000000 = 0x40000000|0x10000000 0x4000000为用户设置位 0x10000000为配置设置位\n#define DCC_ALL_HIDDEN 0xA0000000\n#define DCC_ALL_DISABLED 0x50000000\n\n#define DCC_MASK_BGTYPE 0x000000FF   // 背景类型\n#define DCC_MASK_NOBGTYPE 0xFFFFFF00 // 背景类型\n\n#define DCC_CUSTOM_DEFULT 0x08000000\n\n#define DCC_CANSEARCH 0x04000000 // 不参与搜索\n\nnamespace dccV25 {\nclass DccObject::Private\n{\npublic:\n    static DccObject::Private *FromObject(const DccObject *obj);\n\n    bool getFlagState(uint32_t flag) const;\n    bool setFlagState(uint32_t flag, bool state);\n    uint32_t getFlag() const;\n\n    bool addChild(DccObject::Private *child);\n    bool addChild(DccObject *child, bool updateParent = true);\n    void removeChild(int index);\n    void removeChild(DccObject *child);\n    void updatePos(DccObject *child);\n    const QVector<DccObject *> &getChildren() const;\n    int getIndex() const;\n\n    inline DccObject *getParent() const { return m_parent; }\n\n    inline DccObject *getRecommendedParent() const { return m_recommendedParent; }\n\n    inline const QVector<DccObject *> &getObjects() const { return m_objects; }\n\n    DccObject *getChild(int childPos) const;\n    int getChildIndex(const DccObject *child) const;\n\n    void addObject(DccObject *child);\n    void removeObject(DccObject *child);\n    void removeObjectFromParent();\n    void clearObject();\n\nprotected:\n    explicit Private(DccObject *obj);\n    virtual ~Private();\n\n    virtual inline void SetParent(DccObject *anObject) { m_parent = anObject; }\n\n    virtual inline void SetRecommendedParent(DccObject *parent) { m_recommendedParent = parent; }\n\nprivate:\n    // data property\n    static void data_append(QQmlListProperty<QObject> *data, QObject *o);\n    static qsizetype data_count(QQmlListProperty<QObject> *data);\n    static QObject *data_at(QQmlListProperty<QObject> *data, qsizetype i);\n    static void data_clear(QQmlListProperty<QObject> *data);\n\nprotected:\n    qint8 m_badge;\n    quint8 m_pageType;\n    quint16 m_weight;\n    quint32 m_flags;\n    bool m_componentComplete;\n\n    DccObject *q_ptr;                        // q指针\n    DccObject *m_parent;                     // 父项\n    QPointer<DccObject> m_recommendedParent; // 推荐父项\n    DccObject *m_currentObject;\n    QVector<DccObject *> m_children; // 子项\n    QVector<DccObject *> m_objects;  // m_data中DccObject\n    QObjectList m_data;              // data属性，为qml能加子项\n    QPointer<QQmlComponent> m_page;\n    QPointer<QQuickItem> m_parentItem; // Item父项\n\n    QString m_parentName;\n    QString m_displayName;\n    QString m_description;\n    QString m_icon;    // 属性\n    QUrl m_iconSource; // icon带相对路径处理\n    friend class DccObject;\n};\n} // namespace dccV25\n#endif // DCCOBJECT_P_H\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccquickdbusinterface.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"dccquickdbusinterface.h\"\n\n#include \"dccquickdbusinterface_p.h\"\n\n#include <QDBusArgument>\n#include <QDBusConnection>\n#include <QDBusMessage>\n#include <QDBusMetaType>\n#include <QDBusPendingCall>\n#include <QDBusUnixFileDescriptor>\n#include <QDBusVariant>\n#include <QJSPrimitiveValue>\n#include <QLoggingCategory>\n\nnamespace dccV25 {\nstatic Q_LOGGING_CATEGORY(dccLog, \"dde.dcc.quickDBus\");\nstatic const QString &PropertiesInterface = QStringLiteral(\"org.freedesktop.DBus.Properties\");\nstatic const QString &PropertiesChanged = QStringLiteral(\"PropertiesChanged\");\n\nDccQuickDBusCallback::DccQuickDBusCallback(QJSValue member, QJSValue errorSlot, QObject *parent)\n    : QObject(parent)\n    , m_member(member)\n    , m_errorSlot(errorSlot)\n{\n}\n\nDccQuickDBusCallback::~DccQuickDBusCallback() { }\n\nstatic QVariant DBusBasicToValue(const QDBusArgument &arg)\n{\n    switch (arg.currentSignature().at(0).unicode()) {\n    case 'b': {\n        bool v;\n        arg >> v;\n        return v;\n    } break;\n    case 'y': {\n        unsigned char v;\n        arg >> v;\n        return v;\n    } break;\n    case 'n': {\n        short v;\n        arg >> v;\n        return v;\n    } break;\n    case 'q': {\n        unsigned short v;\n        arg >> v;\n        return v;\n    } break;\n    case 'i': {\n        int v;\n        arg >> v;\n        return v;\n    } break;\n    case 'u': {\n        unsigned int v;\n        arg >> v;\n        return v;\n    } break;\n    case 'x': {\n        qint64 v;\n        arg >> v;\n        return v;\n    } break;\n    case 't': {\n        quint64 v;\n        arg >> v;\n        return v;\n    } break;\n    case 'd': {\n        double v;\n        arg >> v;\n        return v;\n    } break;\n    case 's': {\n        QString v;\n        arg >> v;\n        return v;\n    } break;\n    case 'o': {\n        QDBusObjectPath v;\n        arg >> v;\n        return v.path();\n    } break;\n    case 'g': {\n        QDBusSignature v;\n        arg >> v;\n        return v.signature();\n    } break;\n    case 'h': {\n        QDBusUnixFileDescriptor v;\n        arg >> v;\n        return v.fileDescriptor();\n    } break;\n    case 'v': {\n        QDBusVariant v;\n        arg >> v;\n        return v.variant();\n    } break;\n    default:\n        qCWarning(dccLog()) << \"error basic type:\" << arg.currentType();\n        break;\n    }\n    return QVariant();\n}\n\nstatic QVariant DBusArgumentToValue(const QDBusArgument &arg)\n{\n    switch (arg.currentType()) {\n    case QDBusArgument::BasicType:\n        return DBusBasicToValue(arg);\n        break;\n    case QDBusArgument::VariantType: {\n        QDBusVariant v;\n        arg >> v;\n        return v.variant();\n    } break;\n    case QDBusArgument::ArrayType: {\n        QList<QVariant> ret;\n        arg.beginArray();\n        while (!arg.atEnd()) {\n            ret.append(DBusArgumentToValue(arg));\n        }\n        arg.endStructure();\n        return ret;\n\n    } break;\n    case QDBusArgument::StructureType: {\n        QVariantList ret;\n        arg.beginStructure();\n        while (!arg.atEnd()) {\n            ret.append(DBusArgumentToValue(arg));\n        }\n        arg.endStructure();\n        return ret;\n    } break;\n    case QDBusArgument::MapType: {\n        QVariantMap map;\n        arg.beginMap();\n        while (!arg.atEnd()) {\n            arg.beginMapEntry();\n            QVariant key = DBusBasicToValue(arg);\n            QVariant value = DBusArgumentToValue(arg);\n            map.insert(key.toString(), value);\n            arg.endMapEntry();\n        }\n        arg.endMap();\n        return QVariant::fromValue(map);\n    } break;\n    default:\n        qCWarning(dccLog()) << \"error type:\" << arg.currentType();\n        break;\n    }\n    return QVariant();\n}\n\nQVariant DccQuickDBusCallback::toValue(const QVariant &value)\n{\n    return value.canConvert<QDBusArgument>() ? DBusArgumentToValue(qvariant_cast<QDBusArgument>(value)) : value;\n}\n\nvoid DccQuickDBusCallback::returnMethod(const QDBusMessage &msg)\n{\n    QJSValueList arglist;\n    for (auto &&v : msg.arguments()) {\n        arglist.append(QJSValue(QJSPrimitiveValue(DccQuickDBusCallback::toValue(v))));\n    }\n    if (m_member.isCallable()) {\n        m_member.call(arglist);\n    }\n    deleteLater();\n}\n\nvoid DccQuickDBusCallback::errorMethod(const QDBusError &error, const QDBusMessage &)\n{\n    QJSValueList arglist;\n    arglist.append(QJSValue(error.name() + \":\" + error.message()));\n    if (m_member.isCallable()) {\n        m_errorSlot.call(arglist);\n    }\n    deleteLater();\n}\n\nDccDBusSignalCallback::DccDBusSignalCallback(const QMetaMethod &method, QObject *parent)\n    : QObject(parent)\n    , m_method(method)\n    , m_target(parent)\n{\n}\n\nDccDBusSignalCallback::~DccDBusSignalCallback() { }\n\nvoid DccDBusSignalCallback::returnMethod(const QDBusMessage &msg)\n{\n    QVariantList arglist(m_method.parameterCount());\n    int i = 0;\n    for (auto &&v : msg.arguments()) {\n        arglist[i] = DccQuickDBusCallback::toValue(v);\n        i++;\n        if (i > arglist.size()) {\n            break;\n        }\n    }\n\n    switch (arglist.size()) {\n    case 0:\n        m_method.invoke(m_target);\n        break;\n    case 1:\n        m_method.invoke(m_target, arglist.at(0));\n        break;\n    case 2:\n        m_method.invoke(m_target, arglist.at(0), arglist.at(1));\n        break;\n    case 3:\n        m_method.invoke(m_target, arglist.at(0), arglist.at(1), arglist.at(2));\n        break;\n    case 4:\n        m_method.invoke(m_target, arglist.at(0), arglist.at(1), arglist.at(2), arglist.at(3));\n        break;\n    case 5:\n        m_method.invoke(m_target, arglist.at(0), arglist.at(1), arglist.at(2), arglist.at(3), arglist.at(4));\n        break;\n    case 6:\n        m_method.invoke(m_target, arglist.at(0), arglist.at(1), arglist.at(2), arglist.at(3), arglist.at(4), arglist.at(5));\n        break;\n    case 7:\n        m_method.invoke(m_target, arglist.at(0), arglist.at(1), arglist.at(2), arglist.at(3), arglist.at(4), arglist.at(5), arglist.at(6));\n        break;\n    case 8:\n        m_method.invoke(m_target, arglist.at(0), arglist.at(1), arglist.at(2), arglist.at(3), arglist.at(4), arglist.at(5), arglist.at(6), arglist.at(7));\n        break;\n    default:\n        m_method.invoke(m_target, arglist.at(0), arglist.at(1), arglist.at(2), arglist.at(3), arglist.at(4), arglist.at(5), arglist.at(6), arglist.at(7), arglist.at(8));\n        break;\n    }\n}\n\nclass DBusPropertySignalSpy : public QObject\n{\npublic:\n    typedef std::function<void(const char *name, const QVariant &value)> PropertyCallbackFunc;\n\n    explicit DBusPropertySignalSpy(PropertyCallbackFunc fun, QObject *parent = nullptr)\n        : QObject(parent)\n        , m_propertyCallbackFunc(fun)\n    {\n    }\n\n    int qt_metacall(QMetaObject::Call c, int id, void **arguments) override\n    {\n        QObject *target = sender();\n        int signalIndex = id;\n        id = QObject::qt_metacall(c, id, arguments);\n        if (id < 0 || c != QMetaObject::InvokeMetaMethod)\n            return id;\n        const QMetaProperty prop = target->metaObject()->property(signalIndex);\n        m_propertyCallbackFunc(prop.name(), prop.read(target));\n        return id;\n    }\n\nprotected:\n    PropertyCallbackFunc m_propertyCallbackFunc;\n};\n\n//////////////////////////////////////\nDccQuickDBusInterface::Private::Private(DccQuickDBusInterface *q)\n    : q_ptr(q)\n    , m_propertySpy(new DBusPropertySignalSpy(std::bind(&DccQuickDBusInterface::Private::onPropertySpy, this, std::placeholders::_1, std::placeholders::_2), this))\n    , m_connectionType(SessionBus)\n    , m_connection(QDBusConnection::connectToBus(QDBusConnection::SessionBus, QString::number((quintptr)q)))\n{\n}\n\nDccQuickDBusInterface::Private::~Private() { }\n\nvoid DccQuickDBusInterface::Private::getAllPropertys()\n{\n    QDBusMessage msg = QDBusMessage::createMethodCall(m_service, m_path, PropertiesInterface, \"GetAll\");\n    msg << m_interface;\n    m_connection.callWithCallback(msg, this, SLOT(onAllProperties(QVariantMap)), SLOT(onGetPropertiesErr(QDBusError)));\n}\n\nvoid DccQuickDBusInterface::Private::onAllProperties(const QVariantMap &changedProperties)\n{\n    for (QVariantMap::const_iterator it = changedProperties.cbegin(); it != changedProperties.cend(); ++it) {\n        QString propName;\n        if (m_suffix.isEmpty()) {\n            propName = it.key();\n            propName[0] = propName.at(0).toLower();\n        } else {\n            propName = m_suffix + it.key();\n        }\n        if (m_mapProperties.contains(propName)) {\n            if (m_mapProperties.value(propName).isEmpty()) {\n                m_mapProperties[propName] = it.key();\n            }\n            QVariant v = DccQuickDBusCallback::toValue(it.value());\n            m_propertyMap.insert(propName, v);\n            // setProperty会触发属性变化信号\n            q_ptr->setProperty(propName.toLatin1(), v);\n        }\n    }\n}\n\nvoid DccQuickDBusInterface::Private::onGetPropertiesErr(const QDBusError &e)\n{\n    qCWarning(dccLog()) << e << m_service << m_path << m_interface;\n}\n\nvoid DccQuickDBusInterface::Private::onPropertiesChanged(const QString &interfaceName, const QVariantMap &changedProperties, const QStringList &invalidatedProperties)\n{\n    Q_UNUSED(interfaceName)\n    Q_UNUSED(invalidatedProperties)\n    onAllProperties(changedProperties);\n}\n\nQVariant DccQuickDBusInterface::Private::getProperty(const QString &propname)\n{\n    return m_propertyMap.value(propname, QVariant());\n}\n\nvoid DccQuickDBusInterface::Private::setProperty(const QString &propname, const QVariant &value)\n{\n    const QString prop = m_mapProperties.value(propname, propname);\n    QDBusMessage msg = QDBusMessage::createMethodCall(m_service, m_path, PropertiesInterface, QStringLiteral(\"Set\"));\n    msg << m_interface << prop << QVariant::fromValue(QDBusVariant(value));\n    m_connection.asyncCall(msg);\n}\n\nvoid DccQuickDBusInterface::Private::onPropertySpy(const char *propname, const QVariant &value)\n{\n    QVariant v = value;\n    if (v.canConvert<QJSValue>()) {\n        v = value.value<QJSValue>().toVariant();\n    }\n    if (m_propertyMap.value(propname) != v) {\n        setProperty(propname, v);\n    }\n}\n\n////////////////////////////////////////////////\nDccQuickDBusInterface::DccQuickDBusInterface(QObject *parent)\n    : QObject(parent)\n    , p_ptr(new DccQuickDBusInterface::Private(this))\n{\n}\n\nDccQuickDBusInterface::~DccQuickDBusInterface()\n{\n    delete p_ptr;\n}\n\nQString DccQuickDBusInterface::service() const\n{\n    return p_ptr->m_service;\n}\n\nvoid DccQuickDBusInterface::setService(const QString &service)\n{\n    if (p_ptr->m_service != service) {\n        p_ptr->m_service = service;\n        Q_EMIT serviceChanged(p_ptr->m_service);\n    }\n}\n\nQString DccQuickDBusInterface::path() const\n{\n    return p_ptr->m_path;\n}\n\nvoid DccQuickDBusInterface::setPath(const QString &path)\n{\n    if (p_ptr->m_path != path) {\n        p_ptr->m_path = path;\n        Q_EMIT pathChanged(p_ptr->m_path);\n    }\n}\n\nQString DccQuickDBusInterface::interface() const\n{\n    return p_ptr->m_interface;\n}\n\nvoid DccQuickDBusInterface::setInterface(const QString &interface)\n{\n    if (p_ptr->m_interface != interface) {\n        p_ptr->m_interface = interface;\n        Q_EMIT interfaceChanged(p_ptr->m_interface);\n    }\n}\n\nDccQuickDBusInterface::BusType DccQuickDBusInterface::connection() const\n{\n    return p_ptr->m_connectionType;\n}\n\nvoid DccQuickDBusInterface::setConnection(const BusType &connection)\n{\n    if (p_ptr->m_connectionType != connection) {\n        p_ptr->m_connectionType = connection;\n        QDBusConnection::disconnectFromBus(p_ptr->m_connection.name());\n        p_ptr->m_connection = QDBusConnection::connectToBus(QDBusConnection::BusType(p_ptr->m_connectionType), p_ptr->m_connection.name());\n        Q_EMIT connectionChanged(p_ptr->m_connectionType);\n    }\n}\n\nQString DccQuickDBusInterface::suffix() const\n{\n    return p_ptr->m_suffix;\n}\n\nvoid DccQuickDBusInterface::setSuffix(const QString &suffix)\n{\n    if (p_ptr->m_suffix != suffix) {\n        p_ptr->m_suffix = suffix;\n        Q_EMIT suffixChanged(p_ptr->m_suffix);\n    }\n}\n\nbool DccQuickDBusInterface::callWithCallback(const QString &method, const QList<QVariant> &args, const QJSValue member, const QJSValue errorSlot)\n{\n    DccQuickDBusCallback *callback = new DccQuickDBusCallback(member, errorSlot, this);\n    QDBusMessage msg = QDBusMessage::createMethodCall(p_ptr->m_service, p_ptr->m_path, p_ptr->m_interface, method);\n    msg.setArguments(args);\n    return p_ptr->m_connection.callWithCallback(msg, callback, SLOT(returnMethod(QDBusMessage)), SLOT(errorMethod(QDBusError, QDBusMessage)));\n}\n\nvoid DccQuickDBusInterface::connectNotify(const QMetaMethod &signal)\n{\n    QObject::connectNotify(signal);\n}\n\nvoid DccQuickDBusInterface::disconnectNotify(const QMetaMethod &signal)\n{\n    QObject::disconnectNotify(signal);\n}\n\nvoid DccQuickDBusInterface::classBegin() { }\n\nvoid DccQuickDBusInterface::componentComplete()\n{\n    static const QStringList ReservedPropertyNames{ \"service\", \"path\", \"inter\", \"connection\", \"suffix\" };\n    const QMetaObject *mo = this->metaObject();\n    const int count = mo->propertyCount();\n    for (int i = mo->propertyOffset(); i < count; ++i) {\n        const QMetaProperty &property = mo->property(i);\n        if (!ReservedPropertyNames.contains(property.name())) {\n            p_ptr->m_mapProperties.insert(property.name(), QString());\n            if (property.hasNotifySignal()) {\n                QMetaObject::connect(this, property.notifySignalIndex(), p_ptr->m_propertySpy, i);\n            }\n        }\n    }\n    const int mcount = mo->methodCount();\n    for (int i = mo->methodOffset(); i < mcount; ++i) {\n        const QMetaMethod &m = mo->method(i);\n        if (m.methodType() == 2 && m.name().startsWith(\"on\")) {\n            DccDBusSignalCallback *callback = new DccDBusSignalCallback(m, this);\n            p_ptr->m_connection.connect(p_ptr->m_service, p_ptr->m_path, p_ptr->m_interface, m.name().mid(2), callback, SLOT(returnMethod(QDBusMessage)));\n        }\n    }\n    if (!p_ptr->m_mapProperties.isEmpty()) {\n        p_ptr->getAllPropertys();\n        p_ptr->m_connection.connect(p_ptr->m_service,\n                                    p_ptr->m_path,\n                                    PropertiesInterface,\n                                    PropertiesChanged,\n                                    { p_ptr->m_interface },\n                                    QString(),\n                                    p_ptr,\n                                    SLOT(onPropertiesChanged(QString, QVariantMap, QStringList)));\n    }\n}\n\n} // namespace dccV25\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccquickdbusinterface.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCCQUICKDBUSINTERFACE_H\n#define DCCQUICKDBUSINTERFACE_H\n\n#include <QObject>\n#include <QQmlParserStatus>\n#include <QtQml/qqml.h>\n\nnamespace dccV25 {\nclass DccQuickDBusInterface : public QObject, public QQmlParserStatus\n{\n    Q_OBJECT\n    QML_NAMED_ELEMENT(DccDBusInterface)\n\n    Q_PROPERTY(QString service READ service WRITE setService NOTIFY serviceChanged)\n    Q_PROPERTY(QString path READ path WRITE setPath NOTIFY pathChanged)\n    Q_PROPERTY(QString inter READ interface WRITE setInterface NOTIFY interfaceChanged)\n    Q_PROPERTY(BusType connection READ connection WRITE setConnection NOTIFY connectionChanged)\n    Q_PROPERTY(QString suffix READ suffix WRITE setSuffix NOTIFY suffixChanged)\npublic:\n    explicit DccQuickDBusInterface(QObject *parent = nullptr);\n    ~DccQuickDBusInterface() override;\n\n    enum BusType {\n        SessionBus,\n        SystemBus,\n    };\n    Q_ENUM(BusType)\n\n    QString service() const;\n    void setService(const QString &service);\n    QString path() const;\n    void setPath(const QString &path);\n    QString interface() const;\n    void setInterface(const QString &interface);\n    BusType connection() const;\n    void setConnection(const BusType &connection);\n    // 属性前缀，防止属性与关键字冲突\n    QString suffix() const;\n    void setSuffix(const QString &suffix);\n\npublic Q_SLOTS:\n    bool callWithCallback(const QString &method, const QList<QVariant> &args, const QJSValue member, const QJSValue errorSlot);\n\nQ_SIGNALS:\n    void serviceChanged(const QString &service);\n    void pathChanged(const QString &path);\n    void interfaceChanged(const QString &interface);\n    void connectionChanged(const BusType &connection);\n    void suffixChanged(const QString &suffix);\n\nprotected:\n    void connectNotify(const QMetaMethod &signal) override;\n    void disconnectNotify(const QMetaMethod &signal) override;\n    void classBegin() override;\n    void componentComplete() override;\n\nprotected:\n    class Private;\n    Private *p_ptr;\n};\n} // namespace dccV25\n#endif // DCCQUICKDBUSINTERFACE_H\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccquickdbusinterface_p.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCCQUICKDBUSINTERFACE_P_H\n#define DCCQUICKDBUSINTERFACE_P_H\n#include \"dccquickdbusinterface.h\"\n\n#include <QDBusConnection>\n#include <QJSValue>\n#include <QObject>\n\nnamespace dccV25 {\nclass DBusPropertySignalSpy;\n\nclass DccQuickDBusCallback : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit DccQuickDBusCallback(QJSValue member, QJSValue errorSlot, QObject *parent);\n    ~DccQuickDBusCallback() override;\n\n    static QVariant toValue(const QVariant &value);\n\npublic Q_SLOTS:\n    void returnMethod(const QDBusMessage &msg);\n    void errorMethod(const QDBusError &error, const QDBusMessage &msg);\n\nprotected:\n    QJSValue m_member;\n    QJSValue m_errorSlot;\n};\n\nclass DccDBusSignalCallback : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit DccDBusSignalCallback(const QMetaMethod &method, QObject *parent);\n    ~DccDBusSignalCallback() override;\npublic Q_SLOTS:\n    void returnMethod(const QDBusMessage &msg);\n\nprotected:\n    QMetaMethod m_method;\n    QObject *m_target;\n};\n\nclass DccQuickDBusInterface::Private : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit Private(DccQuickDBusInterface *q);\n    ~Private() override;\n\n    void getAllPropertys();\n\nprivate Q_SLOTS:\n    void onAllProperties(const QVariantMap &changedProperties);\n    void onGetPropertiesErr(const QDBusError &e);\n    void onPropertiesChanged(const QString &interfaceName, const QVariantMap &changedProperties, const QStringList &invalidatedProperties);\n    QVariant getProperty(const QString &propname);\n    void setProperty(const QString &propname, const QVariant &value);\n    void onPropertySpy(const char *propname, const QVariant &value);\n\npublic:\n    DccQuickDBusInterface *q_ptr;\n    DBusPropertySignalSpy *m_propertySpy;\n    QString m_service;\n    QString m_path;\n    QString m_interface;\n    QMap<QString, QString> m_mapProperties; // 保存属性名对照表，qml要求属性名首字母小写\n    QString m_suffix;\n    BusType m_connectionType;\n    QDBusConnection m_connection;\n    QVariantMap m_propertyMap; // DBus属性值\n\n    friend class DccQuickDBusCallback;\n};\n} // namespace dccV25\n#endif // DCCQUICKDBUSINTERFACE_P_H\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccrepeater.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"dccrepeater.h\"\n\n#include \"dccobject_p.h\"\n\n#include <private/qqmldelegatemodel_p.h>\n#include <private/qqmlobjectmodel_p.h>\n\n#include <QtQml>\n\n// 参考QQuickRepeater实现，非必须不修改\nnamespace dccV25 {\n\nclass DccRepeaterPrivate\n{\npublic:\n    DccRepeaterPrivate(DccRepeater *qq)\n        : q_ptr(qq)\n        , model(nullptr)\n        , ownModel(false)\n        , dataSourceIsObject(false)\n        , delegateValidated(false)\n        , itemCount(0)\n    {\n    }\n\n    ~DccRepeaterPrivate()\n    {\n        if (ownModel)\n            delete model;\n    }\n\n    void requestItems()\n    {\n        if (!model)\n            return;\n\n        for (int i = 0; i < itemCount; i++) {\n            QObject *object = model->object(i, QQmlIncubator::AsynchronousIfNested);\n            if (object)\n                model->release(object);\n        }\n    }\n\npublic:\n    DccRepeater *q_ptr = nullptr;\n    QPointer<QQmlInstanceModel> model;\n    QVariant dataSource;\n    QPointer<QObject> dataSourceAsObject;\n    bool ownModel : 1;\n    bool dataSourceIsObject : 1;\n    bool delegateValidated : 1;\n    int itemCount = 0;\n\n    QVector<QPointer<DccObject> > deletables;\n\n    Q_DECLARE_PUBLIC(DccRepeater)\n};\n\nDccRepeater::DccRepeater(QObject *parent)\n    : DccObject(parent)\n    , d_ptr(new DccRepeaterPrivate(this))\n{\n}\n\nDccRepeater::~DccRepeater()\n{\n    Q_D(DccRepeater);\n    if (d->model) {\n        // clang-format off\n        qmlobject_disconnect(d->model, QQmlInstanceModel, SIGNAL(modelUpdated(QQmlChangeSet,bool)), this, DccRepeater, SLOT(modelUpdated(QQmlChangeSet,bool)));\n        qmlobject_disconnect(d->model, QQmlInstanceModel, SIGNAL(createdItem(int,QObject*)), this, DccRepeater, SLOT(createdItem(int,QObject*)));\n        qmlobject_disconnect(d->model, QQmlInstanceModel, SIGNAL(initItem(int,QObject*)), this, DccRepeater, SLOT(initItem(int,QObject*)));\n        // clang-format on\n    }\n}\n\nQVariant DccRepeater::model() const\n{\n    Q_D(const DccRepeater);\n    if (d->dataSourceIsObject) {\n        QObject *o = d->dataSourceAsObject;\n        return QVariant::fromValue(o);\n    }\n\n    return d->dataSource;\n}\n\nvoid DccRepeater::setModel(const QVariant &m)\n{\n    Q_D(DccRepeater);\n    QVariant model = m;\n    if (model.userType() == qMetaTypeId<QJSValue>())\n        model = model.value<QJSValue>().toVariant();\n\n    if (d->dataSource == model)\n        return;\n\n    clear();\n    if (d->model) {\n        // clang-format off\n        qmlobject_disconnect(d->model, QQmlInstanceModel, SIGNAL(modelUpdated(QQmlChangeSet,bool)), this, DccRepeater, SLOT(modelUpdated(QQmlChangeSet,bool)));\n        qmlobject_disconnect(d->model, QQmlInstanceModel, SIGNAL(createdItem(int,QObject*)), this, DccRepeater, SLOT(createdItem(int,QObject*)));\n        qmlobject_disconnect(d->model, QQmlInstanceModel, SIGNAL(initItem(int,QObject*)), this, DccRepeater, SLOT(initItem(int,QObject*)));\n        // clang-format on\n    }\n    d->dataSource = model;\n    QObject *object = qvariant_cast<QObject *>(model);\n    d->dataSourceAsObject = object;\n    d->dataSourceIsObject = object != nullptr;\n    QQmlInstanceModel *vim = nullptr;\n    if (object && (vim = qobject_cast<QQmlInstanceModel *>(object))) {\n        if (d->ownModel) {\n            delete d->model;\n            d->ownModel = false;\n        }\n        d->model = vim;\n    } else {\n        if (!d->ownModel) {\n            d->model = new QQmlDelegateModel(qmlContext(this));\n            d->ownModel = true;\n            if (isComponentComplete())\n                static_cast<QQmlDelegateModel *>(d->model.data())->componentComplete();\n        }\n        if (QQmlDelegateModel *dataModel = qobject_cast<QQmlDelegateModel *>(d->model)) {\n            dataModel->setModel(model);\n        }\n    }\n    if (d->model) {\n        // clang-format off\n        qmlobject_connect(d->model, QQmlInstanceModel, SIGNAL(modelUpdated(QQmlChangeSet,bool)), this, DccRepeater, SLOT(modelUpdated(QQmlChangeSet,bool)));\n        qmlobject_connect(d->model, QQmlInstanceModel, SIGNAL(createdItem(int,QObject*)), this, DccRepeater, SLOT(createdItem(int,QObject*)));\n        qmlobject_connect(d->model, QQmlInstanceModel, SIGNAL(initItem(int,QObject*)), this, DccRepeater, SLOT(initItem(int,QObject*)));\n        // clang-format on\n        regenerate();\n    }\n    Q_EMIT modelChanged();\n    Q_EMIT countChanged();\n}\n\nQQmlComponent *DccRepeater::delegate() const\n{\n    Q_D(const DccRepeater);\n    if (d->model) {\n        if (QQmlDelegateModel *dataModel = qobject_cast<QQmlDelegateModel *>(d->model))\n            return dataModel->delegate();\n    }\n\n    return nullptr;\n}\n\nvoid DccRepeater::setDelegate(QQmlComponent *delegate)\n{\n    Q_D(DccRepeater);\n    if (QQmlDelegateModel *dataModel = qobject_cast<QQmlDelegateModel *>(d->model))\n        if (delegate == dataModel->delegate())\n            return;\n\n    if (!d->ownModel) {\n        d->model = new QQmlDelegateModel(qmlContext(this));\n        d->ownModel = true;\n    }\n\n    if (QQmlDelegateModel *dataModel = qobject_cast<QQmlDelegateModel *>(d->model)) {\n        dataModel->setDelegate(delegate);\n        regenerate();\n        Q_EMIT delegateChanged();\n        d->delegateValidated = false;\n    }\n}\n\nint DccRepeater::count() const\n{\n    Q_D(const DccRepeater);\n    if (d->model)\n        return d->model->count();\n    return 0;\n}\n\nvoid DccRepeater::resetModel()\n{\n    modelUpdated(QQmlChangeSet(), true);\n}\n\nDccObject *DccRepeater::objectAt(int index) const\n{\n    Q_D(const DccRepeater);\n    if (index >= 0 && index < d->deletables.size())\n        return d->deletables[index];\n    return nullptr;\n}\n\nvoid DccRepeater::componentComplete()\n{\n    Q_D(DccRepeater);\n    if (d->model && d->ownModel)\n        static_cast<QQmlDelegateModel *>(d->model.data())->componentComplete();\n    DccObject::componentComplete();\n    regenerate();\n    if (d->model && d->model->count())\n        Q_EMIT countChanged();\n}\n\nbool DccRepeater::event(QEvent *event)\n{\n    if (event->type() == QEvent::ParentChange && parent()) {\n        regenerate();\n    }\n    return DccObject::event(event);\n}\n\nvoid DccRepeater::clear()\n{\n    Q_D(DccRepeater);\n    bool complete = isComponentComplete();\n\n    if (d->model) {\n        for (int i = d->deletables.size() - 1; i >= 0; --i) {\n            if (DccObject *obj = d->deletables.at(i)) {\n                if (complete) {\n                    // reomve from dccApp\n                    DccObject::Private::FromObject(obj)->removeObjectFromParent();\n                    Q_EMIT objRemoved(i, obj);\n                }\n                d->model->release(obj);\n            }\n        }\n        for (DccObject *obj : std::as_const(d->deletables)) {\n            if (obj)\n                obj->setParent(nullptr);\n        }\n    }\n    d->deletables.clear();\n    d->itemCount = 0;\n}\n\nvoid DccRepeater::regenerate()\n{\n    Q_D(DccRepeater);\n    if (!isComponentComplete()) {\n        return;\n    }\n    clear();\n\n    if (!d->model || !d->model->count() || !d->model->isValid() || !parent() || !isComponentComplete())\n        return;\n\n    d->itemCount = count();\n    d->deletables.resize(d->itemCount);\n    d->requestItems();\n}\n\nvoid DccRepeater::createdItem(int index, QObject *)\n{\n    Q_D(DccRepeater);\n    QObject *object = d->model->object(index, QQmlIncubator::AsynchronousIfNested);\n\n    DccObject *dccObj = qmlobject_cast<DccObject *>(object);\n    DccObject *targetParent = this;\n    for (QObject *pQObj = this; pQObj; pQObj = pQObj->parent()) {\n        DccObject *pObj = qmlobject_cast<DccObject *>(pQObj);\n        if (pObj && !pObj->name().isEmpty()) {\n            targetParent = pObj;\n            break;\n        }\n    }\n    DccObject::Private::FromObject(targetParent)->addObject(dccObj);\n\n    Q_EMIT objAdded(index, object);\n}\n\nvoid DccRepeater::initItem(int index, QObject *object)\n{\n    Q_D(DccRepeater);\n    if (index >= d->deletables.size()) {\n        // this can happen when Package is used\n        // calling regenerate does too much work, all we need is to call resize\n        // so that d->deletables[index] = item below works\n        d->deletables.resize(d->model->count() + 1);\n    }\n    DccObject *dccObj = qmlobject_cast<DccObject *>(object);\n    if (!d->deletables.at(index)) {\n        if (!dccObj) {\n            if (object) {\n                d->model->release(object);\n                if (!d->delegateValidated) {\n                    d->delegateValidated = true;\n                    QObject *delegate = this->delegate();\n                    qmlWarning(delegate ? delegate : this) << \"Delegate must be of `DccObject` type\";\n                }\n            }\n            return;\n        }\n        d->deletables[index] = dccObj;\n        dccObj->setParent(this);\n    }\n}\n\nvoid DccRepeater::modelUpdated(const QQmlChangeSet &changeSet, bool reset)\n{\n    Q_D(DccRepeater);\n    if (!isComponentComplete()) {\n        return;\n    }\n    if (reset) {\n        regenerate();\n        if (changeSet.difference() != 0)\n            Q_EMIT countChanged();\n        return;\n    }\n\n    int difference = 0;\n    QHash<int, QVector<QPointer<DccObject> > > moved;\n    for (const QQmlChangeSet::Change &remove : changeSet.removes()) {\n        int index = qMin(remove.index, d->deletables.size());\n        int count = qMin(remove.index + remove.count, d->deletables.size()) - index;\n        if (remove.isMove()) {\n            moved.insert(remove.moveId, d->deletables.mid(index, count));\n            d->deletables.erase(d->deletables.begin() + index, d->deletables.begin() + index + count);\n        } else {\n            while (count--) {\n                DccObject *item = d->deletables.at(index);\n                d->deletables.remove(index);\n                Q_EMIT objRemoved(index, item);\n                if (item) {\n                    DccObject::Private::FromObject(item)->removeObjectFromParent();\n                    d->model->release(item);\n                    item->setParent(nullptr);\n                }\n                --d->itemCount;\n            }\n        }\n        difference -= remove.count;\n    }\n\n    for (const QQmlChangeSet::Change &insert : changeSet.inserts()) {\n        int index = qMin(insert.index, d->deletables.size());\n        if (insert.isMove()) {\n            QVector<QPointer<DccObject> > items = moved.value(insert.moveId);\n            d->deletables = d->deletables.mid(0, index) + items + d->deletables.mid(index);\n\n        } else {\n            for (int i = 0; i < insert.count; ++i) {\n                int modelIndex = index + i;\n                ++d->itemCount;\n                d->deletables.insert(modelIndex, nullptr);\n                QObject *object = d->model->object(modelIndex, QQmlIncubator::AsynchronousIfNested);\n                if (object)\n                    d->model->release(object);\n            }\n        }\n        difference += insert.count;\n    }\n\n    if (difference != 0)\n        Q_EMIT countChanged();\n}\n\n} // namespace dccV25\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccrepeater.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef DCCREPEATER_H\n#define DCCREPEATER_H\n\n#include \"dccobject.h\"\n\n#include <private/qqmlchangeset_p.h>\n\n#include <QObject>\n#include <QQmlComponent>\nclass QQmlChangeSet;\n\nnamespace dccV25 {\nclass DccRepeaterPrivate;\n\nclass DccRepeater : public DccObject\n{\n    Q_OBJECT\n    Q_PROPERTY(QVariant model READ model WRITE setModel NOTIFY modelChanged FINAL)\n    Q_PROPERTY(QQmlComponent *delegate READ delegate WRITE setDelegate NOTIFY delegateChanged FINAL)\n    Q_PROPERTY(int count READ count NOTIFY countChanged FINAL)\n    QML_ELEMENT\n\npublic:\n    explicit DccRepeater(QObject *parent = nullptr);\n    ~DccRepeater() override;\n\n    QVariant model() const;\n    void setModel(const QVariant &newModel);\n\n    QQmlComponent *delegate() const;\n    void setDelegate(QQmlComponent *newDelegate);\n\n    int count() const;\n\n    Q_INVOKABLE void resetModel();\n    Q_INVOKABLE DccObject *objectAt(int index) const;\n\nQ_SIGNALS:\n    void modelChanged();\n    void delegateChanged();\n    void countChanged();\n\n    void objAdded(int index, QObject *obj);\n    void objRemoved(int index, QObject *obj);\n\nprotected:\n    void clear();\n    void regenerate();\n    void componentComplete() override;\n    bool event(QEvent *event) override;\n\nprivate Q_SLOTS:\n    void createdItem(int index, QObject *item);\n    void initItem(int index, QObject *item);\n    void modelUpdated(const QQmlChangeSet &changeSet, bool reset);\n\nprivate:\n    QScopedPointer<DccRepeaterPrivate> d_ptr;\n    Q_DECLARE_PRIVATE_D(qGetPtrHelper(d_ptr), DccRepeater)\n};\n} // namespace dccV25\n#endif // DCCREPEATER_H\n"
  },
  {
    "path": "src/dde-control-center/pluginmanager.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"pluginmanager.h\"\n\n#include \"dccfactory.h\"\n#include \"dccmanager.h\"\n\n#include <DIconTheme>\n\n#include <QDebug>\n#include <QDir>\n#include <QElapsedTimer>\n#include <QFileInfo>\n#include <QLoggingCategory>\n#include <QPluginLoader>\n#include <QQmlApplicationEngine>\n#include <QQmlComponent>\n#include <QQmlContext>\n#include <QQmlFile>\n#include <QRunnable>\n#include <QSet>\n#include <QSettings>\n#include <QtConcurrent>\n#include <QtConcurrentRun>\n\nnamespace dccV25 {\nstatic Q_LOGGING_CATEGORY(dccLog, \"dde.dcc.plugin\");\n\nconst static QString TranslateReadDir = QStringLiteral(TRANSLATE_READ_DIR);\n\nenum PluginStatus {\n    // metaData 0xFF000000\n    PluginBegin = 0x10000000,\n    PluginEnd = 0x20000000,\n    MetaDataLoad = 0x02000000,\n    MetaDataEnd = 0x04000000,\n    MetaDataErr = 0x08000000,\n    // module 0x00FF0000\n    ModuleLoad = 0x00010000,\n    ModuleCreate = 0x00020000,\n    ModuleEnd = 0x00400000,\n    ModuleErr = 0x00800000,\n    // data 0x0000FF00\n    DataBegin = 0x00000100,\n    DataLoad = 0x00000200,\n    DataEnd = 0x00004000,\n    DataErr = 0x00008000,\n    // mainObj 0x000000FF\n    MainObjLoad = 0x00000001,\n    MainObjCreate = 0x00000002,\n    MainObjAdd = 0x00000004,\n    MainObjEnd = 0x00000040,\n    MainObjErr = 0x00000080,\n\n    PluginErrMask = MetaDataErr | ModuleErr | DataErr | MainObjErr,\n    PluginEndMask = PluginEnd | MetaDataEnd | ModuleEnd | DataEnd | MainObjEnd,\n};\n\nenum PluginType {\n    T_Unknown = 0,\n    T_V1_0 = 0x01000000,\n    T_V1_1 = 0x02000000,\n    T_V_MASK = 0xFF000000,\n\n    T_HasMoudule = 0x00000001,\n    T_HasMain = 0x00000002,\n    T_DataMask = 0x00000003,\n    T_ShortMain = 0x00000004, // main模块名为main.qml\n};\n\nstruct PluginData\n{\n    QString name;\n    QString path;\n    uint type;\n    DccFactory *factory;\n\n    DccObject *module;\n    DccObject *mainObj;\n    DccObject *soObj;\n    QObject *data;\n    QThread *thread;\n    uint status;\n\n    PluginData(const QString &_name, const QString &_path)\n        : name(_name)\n        , path(_path)\n        , type(T_Unknown)\n        , factory(nullptr)\n        , module(nullptr)\n        , mainObj(nullptr)\n        , soObj(nullptr)\n        , data(nullptr)\n        , thread(nullptr)\n        , status(PluginBegin)\n    {\n    }\n\n    inline uint version() { return type & T_V_MASK; }\n};\n\nclass LoadPluginTask : public QRunnable\n{\npublic:\n    explicit LoadPluginTask(PluginData *data, PluginManager *pManager)\n        : QRunnable()\n        , m_pManager(pManager)\n        , m_data(data)\n    {\n    }\n\nprotected:\n    void run() override;\n    void createData();\n\nprotected:\n    PluginManager *m_pManager;\n    PluginData *m_data;\n};\n\nvoid LoadPluginTask::run()\n{\n    m_data->thread = QThread::currentThread();\n    createData();\n    m_data->thread = nullptr;\n}\n\nvoid LoadPluginTask::createData()\n{\n    Q_EMIT m_pManager->updatePluginStatus(m_data, DataBegin, \"create data begin\");\n    QElapsedTimer timer;\n    timer.start();\n    QObject *dataObj = nullptr;\n    DccObject *soObj = nullptr;\n    if (m_pManager->isDeleting()) {\n        return;\n    }\n    if (!m_data->factory) {\n        Q_EMIT m_pManager->updatePluginStatus(m_data, DataEnd, \": create data skipped\");\n        return;\n    } else {\n        Q_EMIT m_pManager->updatePluginStatus(m_data, DataLoad, QString());\n        dataObj = m_data->factory->create();\n        if (dataObj && dataObj->parent()) {\n            dataObj->setParent(nullptr);\n        }\n        soObj = m_data->factory->dccObject();\n        if (soObj && soObj->parent()) {\n            soObj->setParent(nullptr);\n        }\n    }\n    if (dataObj) {\n        m_data->data = dataObj;\n    }\n    if (soObj) {\n        m_data->soObj = soObj;\n    }\n    if (m_data->data) {\n        m_data->data->moveToThread(m_pManager->thread());\n    }\n    if (m_data->soObj) {\n        m_data->soObj->moveToThread(m_pManager->thread());\n    }\n    Q_EMIT m_pManager->updatePluginStatus(m_data, DataEnd, \": create data finished. elapsed time :\" + QString::number(timer.elapsed()));\n}\n\nPluginManager::PluginManager(DccManager *parent)\n    : QObject(parent)\n    , m_manager(parent)\n    , m_rootModule(nullptr)\n    , m_threadPool(nullptr)\n    , m_isDeleting(false)\n    , m_modulePhaseFinished(false)\n{\n    qRegisterMetaType<PluginData>(\"PluginData\");\n    connect(this, &PluginManager::pluginEndStatusChanged, this, &PluginManager::loadPlugin);\n    connect(this, &PluginManager::updatePluginStatus, this, &PluginManager::onUpdatePluginStatus);\n    connect(this, &PluginManager::modulePhaseFinished, this, &PluginManager::onModulePhaseFinished);\n    connect(m_manager, &DccManager::hideModuleChanged, this, &PluginManager::onHideModuleChanged);\n}\n\nPluginManager::~PluginManager()\n{\n    for (auto &&data : m_plugins) {\n        if (data->data && !data->thread) {\n            qCDebug(dccLog()) << \"delete so\" << data->name;\n            delete data->data;\n            data->data = nullptr;\n        }\n    }\n    cancelLoad();\n    for (auto &&data : m_plugins) {\n        if (data->data) {\n            qCDebug(dccLog()) << \"delete so\" << data->name;\n            delete data->data;\n            data->data = nullptr;\n        }\n        data->factory = nullptr;\n        delete data;\n    }\n    m_plugins.clear();\n}\n\nbool PluginManager::compareVersion(const QString &targetVersion, const QString &baseVersion)\n{\n    QStringList version1 = baseVersion.split(\".\");\n    QStringList version2 = targetVersion.split(\".\");\n\n    if (version1.size() != version2.size()) {\n        return false;\n    }\n\n    for (int i = 0; i < version1.size(); ++i) {\n        // 相等判断下一个子版本号\n        if (version1[i] == version2[i])\n            continue;\n\n        // 转成整形比较\n        if (version1[i].toInt() > version2[i].toInt()) {\n            return false;\n        } else {\n            return true;\n        }\n    }\n\n    return true;\n}\n\nbool PluginManager::updatePluginType(PluginData *plugin)\n{\n    QString qrcPath;\n    switch (plugin->type) {\n    case T_V1_1: {\n        if (QFile::exists(plugin->path + \"/qmldir\")) {\n            plugin->type |= T_HasMoudule | T_HasMain;\n            qrcPath = \":/qt/qml/\" + plugin->name;\n            auto paths = m_engine->importPathList();\n            QDir pluginDir(plugin->path);\n            pluginDir.cdUp();\n            QString qmlPlugin = pluginDir.absolutePath();\n            if (!paths.contains(qmlPlugin)) {\n                m_engine->addImportPath(qmlPlugin);\n            }\n        }\n    } break;\n    case T_V1_0: {\n        QDir dir(plugin->path);\n        if (dir.exists(\"main.qml\")) {\n            plugin->type |= T_ShortMain | T_HasMain;\n        } else if (dir.exists(plugin->name + \"Main.qml\")) {\n            plugin->type |= T_HasMain;\n        }\n        if (dir.exists(plugin->name + \".qml\")) {\n            plugin->type |= T_HasMoudule;\n        }\n        qrcPath = plugin->path;\n    } break;\n    default: { // 尝试枚举版本\n        plugin->type = T_V1_1;\n        if (updatePluginType(plugin)) {\n            return true;\n        }\n        plugin->type = T_V1_0;\n        if (updatePluginType(plugin)) {\n            return true;\n        }\n        plugin->type = T_Unknown;\n        return false;\n    } break;\n    }\n    if (plugin->type & T_DataMask) {\n        QStringList paths = Dtk::Gui::DIconTheme::dciThemeSearchPaths();\n        paths.append(qrcPath);\n        Dtk::Gui::DIconTheme::setDciThemeSearchPaths(paths);\n        return true;\n    }\n    return false;\n}\n\nbool PluginManager::preparePluginFactory(PluginData *plugin)\n{\n    if (!plugin || plugin->factory) {\n        return plugin && plugin->factory;\n    }\n\n    const QString soPath = plugin->path + \"/\" + plugin->name + \".so\";\n    if (!QFile::exists(soPath)) {\n        return true;\n    }\n\n    QPluginLoader loader(soPath);\n    if (!loader.load()) {\n        qCWarning(dccLog()) << plugin->name << \": prepare factory load failed\" << loader.errorString();\n        return false;\n    }\n\n    const auto &meta = loader.metaData();\n    const auto iid = meta[\"IID\"].toString();\n    if (iid.isEmpty() || iid != QString(qobject_interface_iid<DccFactory *>())) {\n        qCWarning(dccLog()) << plugin->name << \": prepare factory iid error\" << iid;\n        loader.unload();\n        return false;\n    }\n\n    QObject *instance = loader.instance();\n    if (!instance) {\n        qCWarning(dccLog()) << plugin->name << \": prepare factory instance failed\" << loader.errorString();\n        loader.unload();\n        return false;\n    }\n\n    DccFactory *factory = qobject_cast<DccFactory *>(instance);\n    if (!factory) {\n        qCWarning(dccLog()) << plugin->name << \": prepare factory cast failed\";\n        loader.unload();\n        return false;\n    }\n\n    plugin->factory = factory;\n    return true;\n}\n\nbool PluginManager::allModulesFinished() const\n{\n    for (auto &&plugin : m_plugins) {\n        uint status = plugin->status;\n        bool moduleFinished = (status & ModuleEnd) || (status & ModuleErr) || (status & PluginEnd);\n        if (!moduleFinished) {\n            return false;\n        }\n    }\n    return !m_plugins.isEmpty();\n}\n\nQThreadPool *PluginManager::threadPool()\n{\n    if (!m_threadPool) {\n        m_threadPool = new QThreadPool(this);\n    }\n    return m_threadPool;\n}\n\nvoid PluginManager::loadPlugin(PluginData *plugin)\n{\n    if (isDeleting()) {\n        return;\n    }\n    if (plugin->status & PluginEnd) {\n        if (loadFinished()) {\n            Q_EMIT loadAllFinished();\n            cancelLoad();\n        }\n    } else if (plugin->status & MainObjEnd) {\n        addMainObject(plugin);\n        Q_EMIT updatePluginStatus(plugin, PluginEnd, QString());\n    } else if ((plugin->status & (DataEnd | MainObjLoad)) == DataEnd) {\n        if (plugin->data) {\n            plugin->data->setParent(this);\n        }\n        if (plugin->soObj) {\n            plugin->soObj->setParent(this);\n        }\n        loadMain(plugin);\n    } else if ((plugin->status & (ModuleEnd | DataBegin)) == ModuleEnd) {\n        if (!m_modulePhaseFinished && allModulesFinished()) {\n            Q_EMIT modulePhaseFinished();\n            return;\n        }\n        if (m_modulePhaseFinished) {\n            loadPluginData(plugin);\n        }\n    } else if ((plugin->status & (MetaDataEnd | ModuleLoad)) == MetaDataEnd) {\n        if (!preparePluginFactory(plugin)) {\n            Q_EMIT updatePluginStatus(plugin, DataErr | PluginEnd, \": factory preparation failed, plugin skipped\");\n            return;\n        }\n        DccManager::installTranslator(plugin->name);\n        loadModule(plugin);\n    } else {\n        loadMetaData(plugin);\n    }\n}\n\nvoid PluginManager::onUpdatePluginStatus(PluginData *plugin, uint status, const QString &log)\n{\n    if (isDeleting()) {\n        return;\n    }\n    uint oldStatus = plugin->status;\n    plugin->status |= status;\n    if (status & PluginErrMask) {\n        qCWarning(dccLog()) << plugin->name << \": status\" << QString::number(plugin->status, 16) << log;\n    } else {\n        qCDebug(dccLog()) << plugin->name << \": status\" << QString::number(plugin->status, 16) << log;\n    }\n    if ((oldStatus != plugin->status) && (status & PluginEndMask)) {\n        Q_EMIT pluginEndStatusChanged(plugin);\n    }\n}\n\nvoid PluginManager::loadMetaData(PluginData *plugin)\n{\n    if (isDeleting()) {\n        return;\n    }\n    updatePluginType(plugin);\n    if (m_manager->hideModule().contains(plugin->name)) {\n        // 跳过隐藏的模块,需要动态加载回来\n        Q_EMIT updatePluginStatus(plugin, PluginEnd | MetaDataEnd, QString());\n        return;\n    }\n    // metadata\n#if 0 // 文件夹有版本信息，不需要用metadata.json判断\n    const QString metadataPath = plugin->path + \"/metadata.json\";\n    QFile metadataFile(metadataPath);\n    if (!metadataFile.open(QIODevice::ReadOnly)) {\n        Q_EMIT updatePluginStatus(plugin, MetaDataErr | PluginEnd, \"Couldn't open \" + metadataFile.fileName());\n        return;\n    }\n    QJsonParseError error;\n    const QJsonObject metaData = QJsonDocument::fromJson(metadataFile.readAll()).object();\n    metadataFile.close();\n    if (error.error) {\n        Q_EMIT updatePluginStatus(plugin, MetaDataErr | PluginEnd, \"error parsing json data:\" + error.errorString());\n        return;\n    }\n    if (!compareVersion(metaData.value(\"Version\").toString(), \"1.0\")) {\n        Q_EMIT updatePluginStatus(plugin, MetaDataErr | PluginEnd, \"plugin's version is too low:\" + metaData.value(\"Version\").toString());\n        return;\n    }\n#endif\n    Q_EMIT updatePluginStatus(plugin, MetaDataEnd, QString());\n}\n\nvoid PluginManager::loadModule(PluginData *plugin)\n{\n    if (isDeleting()) {\n        return;\n    }\n    if (!(plugin->type & T_HasMoudule)) {\n        Q_EMIT updatePluginStatus(plugin, ModuleErr | ModuleEnd, \"module qml not exists\");\n        return;\n    }\n    QQmlComponent *component = new QQmlComponent(m_manager->engine(), m_manager->engine());\n    switch (plugin->version()) {\n    case T_V1_0: {\n        const QString qmlPath = plugin->path + \"/\" + plugin->name + \".qml\";\n        Q_EMIT updatePluginStatus(plugin, ModuleLoad, \": load module \" + qmlPath);\n        component->loadUrl(qmlPath);\n    } break;\n    case T_V1_1:\n    default: {\n        QString typeName = plugin->name;\n        typeName[0] = typeName[0].toUpper();\n        Q_EMIT updatePluginStatus(plugin, ModuleLoad, \": load module \" + typeName);\n        component->loadFromModule(plugin->name, typeName);\n    } break;\n    }\n    createModule(component, plugin);\n}\n\nvoid PluginManager::loadPluginData(PluginData *plugin)\n{\n    if (isDeleting()) {\n        return;\n    }\n    if (plugin->module) {\n        disconnect(plugin->module, nullptr, this, nullptr);\n        if (plugin->module->isVisibleToApp()) {\n            threadPool()->start(new LoadPluginTask(plugin, this));\n        } else {\n            connect(plugin->module, &DccObject::visibleToAppChanged, this, &PluginManager::onVisibleToAppChanged);\n            Q_EMIT updatePluginStatus(plugin, PluginEnd, QString());\n        }\n    } else {\n        threadPool()->start(new LoadPluginTask(plugin, this));\n    }\n}\n\nvoid PluginManager::loadMain(PluginData *plugin)\n{\n    if (isDeleting()) {\n        return;\n    }\n    if (!(plugin->type & T_HasMain)) {\n        Q_EMIT updatePluginStatus(plugin, MainObjErr | MainObjEnd, \"main qml not exists\");\n        return;\n    }\n    QQmlComponent *component = new QQmlComponent(m_manager->engine(), m_manager->engine());\n    switch (plugin->version()) {\n    case T_V1_0: {\n        const QString qmlPath = plugin->path + \"/\" + ((plugin->type & T_ShortMain) ? \"main.qml\" : plugin->name + \"Main.qml\");\n        Q_EMIT updatePluginStatus(plugin, MainObjLoad, \": load Main \" + qmlPath);\n        component->loadUrl(qmlPath);\n    } break;\n    case T_V1_1:\n    default: {\n        QString typeName = plugin->name + \"Main\";\n        typeName[0] = typeName[0].toUpper();\n        Q_EMIT updatePluginStatus(plugin, MainObjLoad, \": load Main \" + typeName);\n        component->loadFromModule(plugin->name, typeName);\n    } break;\n    }\n    createMain(component, plugin);\n}\n\nvoid PluginManager::createModule(QQmlComponent *component, PluginData *plugin)\n{\n    if (isDeleting()) {\n        return;\n    }\n    Q_EMIT updatePluginStatus(plugin, ModuleCreate, \"create module\");\n    switch (component->status()) {\n    case QQmlComponent::Ready: {\n        QObject *object = component->create();\n        component->deleteLater();\n        if (!object) {\n            Q_EMIT updatePluginStatus(plugin, ModuleErr | ModuleEnd, \" component create module object is null:\" + component->errorString());\n            return;\n        }\n        object->setParent(m_rootModule);\n        plugin->module = qobject_cast<DccObject *>(object);\n        Q_EMIT updatePluginStatus(plugin, ModuleEnd, \"create module finished\");\n        m_manager->addObject(plugin->module);\n    } break;\n    case QQmlComponent::Error: {\n        component->deleteLater();\n        Q_EMIT updatePluginStatus(plugin, ModuleErr | ModuleEnd, \" component create module object error:\" + component->errorString());\n    } break;\n    default:\n        break;\n    }\n}\n\nvoid PluginManager::createMain(QQmlComponent *component, PluginData *plugin)\n{\n    if (isDeleting()) {\n        return;\n    }\n    Q_EMIT updatePluginStatus(plugin, MainObjCreate, \"create main\");\n    switch (component->status()) {\n    case QQmlComponent::Ready: {\n        QQmlContext *context = new QQmlContext(component->engine());\n        context->setContextProperties({ { \"dccData\", QVariant::fromValue(plugin->data) }, { \"dccModule\", QVariant::fromValue(plugin->module) } });\n        QObject *object = component->create(context);\n        component->deleteLater();\n        if (!object) {\n            delete context;\n            Q_EMIT updatePluginStatus(plugin, MainObjErr | MainObjEnd, \" component create main object is null:\" + component->errorString());\n            return;\n        }\n        context->setParent(object);\n        object->setParent(plugin->module ? plugin->module : m_rootModule);\n        plugin->mainObj = qobject_cast<DccObject *>(object);\n        Q_EMIT updatePluginStatus(plugin, MainObjEnd, \": create main finished\");\n    } break;\n    case QQmlComponent::Error: {\n        Q_EMIT updatePluginStatus(plugin, MainObjErr | MainObjEnd, \" component create main object error:\" + component->errorString());\n        component->deleteLater();\n    } break;\n    default:\n        break;\n    }\n}\n\nvoid PluginManager::addMainObject(PluginData *plugin)\n{\n    if (isDeleting()) {\n        return;\n    }\n    Q_EMIT updatePluginStatus(plugin, MainObjAdd, \"add main object\");\n    if (!plugin->mainObj) {\n        plugin->mainObj = plugin->soObj;\n    }\n    if (plugin->mainObj) {\n        if (plugin->mainObj->name().isEmpty() || (plugin->module && plugin->mainObj->name() == plugin->module->name())) {\n            // 插件根项name为空时，关联{name}.qml,不加树\n            if (plugin->module) {\n                QQmlComponent *page = plugin->mainObj->page();\n                if (page) {\n                    plugin->module->setPage(page);\n                }\n                connect(plugin->mainObj, &DccObject::pageChanged, plugin->module, &DccObject::setPage);\n                connect(plugin->mainObj, &DccObject::displayNameChanged, plugin->module, &DccObject::setDisplayName);\n                connect(plugin->mainObj, &DccObject::descriptionChanged, plugin->module, &DccObject::setDescription);\n                connect(plugin->mainObj, &DccObject::iconChanged, plugin->module, &DccObject::setIcon);\n                connect(plugin->mainObj, &DccObject::badgeChanged, plugin->module, &DccObject::setBadge);\n                connect(plugin->mainObj, &DccObject::visibleChanged, plugin->module, &DccObject::setVisible);\n                connect(plugin->mainObj, &DccObject::active, plugin->module, &DccObject::active);\n                connect(plugin->mainObj, &DccObject::deactive, plugin->module, &DccObject::deactive);\n            }\n        } else {\n        }\n    } else {\n        Q_EMIT updatePluginStatus(plugin, MainObjErr, \"The plugin isn't main DccObject\");\n    }\n    if (plugin->mainObj) {\n        Q_EMIT addObject(plugin->mainObj);\n    }\n    if (plugin->soObj) {\n        Q_EMIT addObject(plugin->soObj);\n    }\n    Q_EMIT updatePluginStatus(plugin, MainObjEnd | PluginEnd, \"add main object finished\");\n}\n\nvoid PluginManager::onModulePhaseFinished()\n{\n    if (isDeleting()) {\n        return;\n    }\n    m_modulePhaseFinished = true;\n    for (auto &&plugin : m_plugins) {\n        if (plugin->status & ModuleEnd) {\n            loadPlugin(plugin);\n        }\n    }\n}\n\nvoid PluginManager::onHideModuleChanged(const QSet<QString> &hideModule)\n{\n    for (auto &&plugin : m_plugins) {\n        if ((plugin->status & PluginEnd) && (((plugin->status & (MetaDataEnd | MetaDataErr | ModuleLoad)) == MetaDataEnd) && (!hideModule.contains(plugin->name)))) {\n            // 加载完成，没检查MetaData也没错误，不在hideModule中，则需要重新加载\n            plugin->status &= ~PluginEnd;\n            loadPlugin(plugin);\n        }\n    }\n}\n\nvoid PluginManager::onVisibleToAppChanged(bool visibleToApp)\n{\n    if (!visibleToApp) {\n        return;\n    }\n    DccObject *obj = qobject_cast<DccObject *>(sender());\n    if (!obj) {\n        return;\n    }\n    for (auto &&plugin : m_plugins) {\n        if (plugin->module == obj && (plugin->status & PluginEnd) && (!(plugin->status & (DataEnd | DataErr)))) {\n            // 加载完成，没检查MetaData也没错误，不在hideModule中，则需要重新加载\n            plugin->status &= ~PluginEnd;\n            loadPlugin(plugin);\n        }\n    }\n}\n\nvoid PluginManager::loadModules(DccObject *root, bool async, const QStringList &dirs, QQmlEngine *engine)\n{\n    Q_UNUSED(async)\n    if (!root)\n        return;\n    m_rootModule = root;\n    qCDebug(dccLog()) << \"plugin dir:\" << dirs;\n    m_engine = engine;\n    QFileInfoList pluginList;\n    for (const auto &dir : dirs) {\n        QDir plugindir(dir);\n        if (plugindir.exists()) {\n            if (!plugindir.isEmpty(QDir::Files)) {\n                pluginList += QFileInfo(plugindir.absolutePath());\n            }\n            pluginList += plugindir.entryInfoList(QDir::Dirs | QDir::NoDotAndDotDot);\n        }\n    }\n    const QStringList groupPlugins({ \"system\", \"device\" }); // 优先加载只是组的插件\n    for (auto &lib : pluginList) {\n        const QString &filepath = lib.absoluteFilePath();\n        auto filename = lib.fileName();\n        PluginData *plugin = new PluginData(lib.baseName(), filepath);\n        if (filepath.contains(\"_v1.1\")) {\n            plugin->type = T_V1_1;\n        } else if (filepath.contains(\"_v1.0\")) {\n            plugin->type = T_V1_0;\n        } else {\n            plugin->type = T_Unknown;\n        }\n        if (groupPlugins.contains(filename)) {\n            m_plugins.prepend(plugin);\n        } else {\n            m_plugins.append(plugin);\n        }\n    }\n    for (const auto &plugin : m_plugins) {\n        loadPlugin(plugin);\n    }\n}\n\nvoid PluginManager::cancelLoad()\n{\n    if (m_threadPool) {\n        m_threadPool->clear();\n        // 等待所有正在运行的任务完成,避免析构时的竞态条件\n        m_threadPool->waitForDone();\n        for (auto &&plugin : m_plugins) {\n            if (plugin->thread) {\n                qCWarning(dccLog()) << plugin->name << \": status\" << QString::number(plugin->status, 16) << \"thread exit timeout\";\n            }\n        }\n        qCWarning(dccLog()) << \"delete threadPool\";\n        delete m_threadPool;\n        qCWarning(dccLog()) << \"delete threadPool finish\";\n        m_threadPool = nullptr;\n    }\n}\n\nbool PluginManager::loadFinished() const\n{\n    uint status = PluginEnd;\n    for (auto &&plugin : m_plugins) {\n        status &= plugin->status;\n    }\n\n    return (status & PluginEnd) && (!m_plugins.isEmpty());\n}\n\nvoid PluginManager::beginDelete()\n{\n    m_isDeleting = true;\n}\n}; // namespace dccV25\nQ_DECLARE_METATYPE(dccV25::PluginData *)\n"
  },
  {
    "path": "src/dde-control-center/pluginmanager.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#pragma once\n\n#include <QObject>\n#include <QQmlContext>\n#include <QStringList>\n#include <QVector>\n\nclass QQmlComponent;\nclass QThreadPool;\n\nnamespace dccV25 {\nclass DccObject;\nclass DccManager;\nstruct PluginData;\n\nclass PluginManager : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit PluginManager(DccManager *parent);\n    ~PluginManager();\n    void loadModules(DccObject *root, bool async, const QStringList &dirs, QQmlEngine *engine);\n    bool loadFinished() const;\n    void beginDelete();\n\n    inline bool isDeleting() const { return m_isDeleting; }\n\npublic Q_SLOTS:\n    void cancelLoad();\n\nQ_SIGNALS:\n    void addObject(DccObject *obj);\n    void loadAllFinished();\n    void modulePhaseFinished();\n\n    void pluginEndStatusChanged(PluginData *plugin);\n    void updatePluginStatus(PluginData *plugin, uint status, const QString &log);\n\nprivate:\n    bool compareVersion(const QString &targetVersion, const QString &baseVersion);\n    bool updatePluginType(PluginData *plugin);\n    bool preparePluginFactory(PluginData *plugin);\n    bool allModulesFinished() const;\n    QThreadPool *threadPool();\n\nprivate Q_SLOTS:\n    void loadPlugin(PluginData *plugin);\n    void loadMetaData(PluginData *plugin);\n    void loadModule(PluginData *plugin);\n    void loadPluginData(PluginData *plugin);\n    void loadMain(PluginData *plugin);\n    void createModule(QQmlComponent *component, PluginData *plugin);\n    void createMain(QQmlComponent *component, PluginData *plugin);\n    void addMainObject(PluginData *plugin);\n\n    void onModulePhaseFinished();\n    void onHideModuleChanged(const QSet<QString> &hideModule);\n    void onVisibleToAppChanged(bool visibleToApp);\n    void onUpdatePluginStatus(PluginData *plugin, uint status, const QString &log);\n\nprivate:\n    DccManager *m_manager;\n    QList<PluginData *> m_plugins; // cache for other plugin\n    DccObject *m_rootModule;       // root module from MainWindow\n    QThreadPool *m_threadPool;\n    bool m_isDeleting;\n    bool m_modulePhaseFinished;\n    QQmlEngine *m_engine;\n};\n\n} // namespace dccV25\n"
  },
  {
    "path": "src/dde-control-center/qrc/dcc.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_accounts_42px.svg</file>\n        <file>icons/dcc_nav_accounts_84px.svg</file>\n        <file>icons/dcc_nav_mouse_42px.svg</file>\n        <file>icons/dcc_nav_mouse_84px.svg</file>\n        <file>icons/dcc_nav_notification_42px.svg</file>\n        <file>icons/dcc_nav_notification_84px.svg</file>\n        <file>icons/dcc_nav_personalization_42px.svg</file>\n        <file>icons/dcc_nav_personalization_84px.svg</file>\n        <file>icons/dcc_nav_power_42px.svg</file>\n        <file>icons/dcc_nav_power_84px.svg</file>\n        <file>icons/dcc_nav_privacy_42px.svg</file>\n        <file>icons/dcc_nav_privacy_84px.svg</file>\n        <file>icons/dcc_nav_sound_42px.svg</file>\n        <file>icons/dcc_nav_sound_84px.svg</file>\n        <file>icons/dcc_nav_systeminfo_42px.svg</file>\n        <file>icons/dcc_nav_systeminfo_84px.svg</file>\n        <file>icons/dcc_nav_touchscreen_42px.svg</file>\n        <file>icons/dcc_nav_touchscreen_84px.svg</file>\n        <file>icons/dcc_nav_update_42px.svg</file>\n        <file>icons/dcc_nav_update_84px.svg</file>\n        <file>icons/dcc_nav_wacom_42px.svg</file>\n        <file>icons/dcc_nav_wacom_84px.svg</file>\n        <file>icons/dcc_none_dark.svg</file>\n        <file>icons/dcc_none_light.svg</file>\n        <file>icons/dcc_privacy_policy_32px.svg</file>\n        <file>icons/dcc_protocol_32px.svg</file>\n        <file>icons/dcc_safe_update.svg</file>\n        <file>icons/dcc_unknown_update.svg</file>\n        <file>icons/dcc_using_electric_32px.svg</file>\n        <file>icons/dcc_version_32px.svg</file>\n        <file>icons/dcc_volume1_32px.svg</file>\n        <file>icons/dcc_volume2_32px.svg</file>\n        <file>icons/dcc_volume3_32px.svg</file>\n        <file>icons/dcc_system_update_48px.svg</file>\n        <file>icons/dcc_nav_datetime_42px.svg</file>\n        <file>icons/dcc_nav_datetime_84px.svg</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/dde-control-center/searchmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"searchmodel.h\"\n\n#include \"dccobject.h\"\n#include \"dccobject_p.h\"\n\n#include <DPinyin>\n\n#include <QIcon>\n#include <QTextDocument>\n\nnamespace dccV25 {\n\nstruct SearchData\n{\n    QString display;\n    QString text;\n    QString plainText;\n    QString url;\n    QList<QStringList> searchTexts;\n    const DccObject *obj;\n    const DccObject *ancestors;\n    QList<int> weight;\n    unsigned int matchScore; // 匹配度，越小匹配度越高，排序越靠前\n\n    explicit SearchData(const DccObject *o)\n        : obj(o)\n        , matchScore(0)\n    {\n        ancestors = o;\n        while (ancestors) {\n            weight.prepend(ancestors->weight());\n            const DccObject *objParent = DccObject::Private::FromObject(ancestors)->getParent();\n            if (!objParent || objParent->name() == \"root\") {\n                break;\n            }\n            ancestors = objParent;\n        }\n    }\n\n    inline const QString sourceText() const { return text.isEmpty() ? obj->displayName() : text; }\n\n    inline const QString sourceUrl() const { return url.isEmpty() ? obj->parentName() + \"/\" + obj->name() : url; }\n};\n\n//////////////////////////////////////////////////////\nclass SearchSourceModel : public QAbstractItemModel\n{\npublic:\n    explicit SearchSourceModel(QObject *parent = nullptr);\n    ~SearchSourceModel() override;\n\n    void addSearchData(DccObject *obj, const QString &text, const QString &url);\n    void removeSearchData(const DccObject *obj, const QString &text);\n\nprotected:\n    void addObject(DccObject *obj, const QString &text, const QString &url);\n    // Basic functionality:\n    QModelIndex index(int row, int column, const QModelIndex &parentIndex = QModelIndex()) const override;\n    QModelIndex parent(const QModelIndex &index) const override;\n\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n    int columnCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n    bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;\n\nprivate:\n    QList<SearchData *> m_data;\n    QTextDocument m_doc;\n};\n\nSearchSourceModel::SearchSourceModel(QObject *parent)\n    : QAbstractItemModel(parent)\n{\n}\n\nSearchSourceModel::~SearchSourceModel()\n{\n    qDeleteAll(m_data);\n}\n\nvoid SearchSourceModel::addSearchData(DccObject *obj, const QString &text, const QString &url)\n{\n    if (!obj) {\n        return;\n    }\n    addObject(obj, text, url);\n    if (text.isEmpty() && url.isEmpty()) {\n        QVector<DccObject *> objs(obj->getChildren());\n        while (!objs.isEmpty()) {\n            DccObject *o = objs.takeFirst();\n            addObject(o, QString(), QString());\n            objs.append(o->getChildren());\n        }\n    }\n}\n\nvoid SearchSourceModel::removeSearchData(const DccObject *obj, const QString &text)\n{\n    if (!obj) {\n        return;\n    }\n    auto beginIt = m_data.begin();\n    for (auto it = beginIt; it != m_data.end();) {\n        if ((*it)->obj == obj && (text.isEmpty() || (*it)->text == text)) {\n            int i = it - beginIt;\n            beginRemoveRows(QModelIndex(), i, i);\n            delete (*it);\n            it = m_data.erase(it);\n            endRemoveRows();\n        } else {\n            ++it;\n        }\n    }\n}\n\nvoid SearchSourceModel::addObject(DccObject *obj, const QString &text, const QString &url)\n{\n    if (!obj || !obj->canSearch()) {\n        return;\n    }\n    m_doc.setHtml(text.isEmpty() ? obj->displayName() : text);\n    const QString &sText = m_doc.toPlainText().toLower();\n    if (sText.isEmpty()) {\n        return;\n    }\n    SearchData *data = new SearchData(obj);\n    data->text = sText;\n    data->url = url;\n    bool ok = false;\n    for (auto &&c : sText) {\n        data->searchTexts << Dtk::Core::pinyin(c, Dtk::Core::TS_NoneTone, &ok);\n    }\n    if (!ok) {\n        data->searchTexts.clear();\n    }\n    // 排序规则不会变，添加时排序，避免在显示时处理\n    int index = 0;\n    bool findOk = false;\n    for (auto d : m_data) {\n        for (int i = 0; i < d->weight.size() && i < data->weight.size(); ++i) {\n            if (d->weight.at(i) < data->weight.at(i)) {\n                break;\n            } else if (d->weight.at(i) > data->weight.at(i)) {\n                findOk = true;\n                break;\n            }\n        }\n        if (findOk) {\n            break;\n        }\n        index++;\n    }\n    beginInsertRows(QModelIndex(), index, index);\n    m_data.insert(index, data);\n    endInsertRows();\n}\n\nQModelIndex SearchSourceModel::index(int row, int column, const QModelIndex &) const\n{\n    if (row < 0 || row >= rowCount()) {\n        return QModelIndex();\n    }\n    return createIndex(row, column);\n}\n\nQModelIndex SearchSourceModel::parent(const QModelIndex &) const\n{\n    return QModelIndex();\n}\n\nint SearchSourceModel::rowCount(const QModelIndex &) const\n{\n    return m_data.size();\n}\n\nint SearchSourceModel::columnCount(const QModelIndex &) const\n{\n    return 1;\n}\n\nQVariant SearchSourceModel::data(const QModelIndex &index, int role) const\n{\n    if (!index.isValid()) {\n        return QVariant();\n    }\n    int i = index.row();\n    if (i < 0 || i >= m_data.size()) {\n        return QVariant();\n    }\n    const SearchData *data = m_data.at(i);\n    switch (role) {\n    case Qt::DisplayRole:\n        return data->display.isEmpty() ? data->sourceText() : data->display;\n    case Qt::DecorationRole: {\n        return data->ancestors->icon();\n    } break;\n    case SearchModel::SearchPlainTextRole:\n        return data->plainText;\n    case SearchModel::SearchDataRole:\n        return QVariant::fromValue(data);\n    case SearchModel::SearchUrlRole:\n        return data->sourceUrl() + \"?indicator=true\";\n    case SearchModel::SearchTextRole:\n        return data->sourceText();\n    case SearchModel::SearchWeightRole:\n        return QVariant::fromValue(data->weight);\n    case SearchModel::SearchMatchScoreRole:\n        return QVariant::fromValue(data->matchScore);\n    default:\n        break;\n    }\n    return QVariant();\n}\n\nbool SearchSourceModel::setData(const QModelIndex &index, const QVariant &value, int role)\n{\n    int i = index.row();\n    if (i < 0 || i >= m_data.size()) {\n        return false;\n    }\n    SearchData *data = m_data.at(i);\n    switch (role) {\n    case Qt::DisplayRole:\n    case Qt::EditRole: {\n        const QString &v = value.toString();\n        if (v != data->display) {\n            data->display = value.toString();\n        }\n        return true;\n    }\n    case SearchModel::SearchPlainTextRole:\n        data->plainText = value.toString();\n        return true;\n    case SearchModel::SearchMatchScoreRole:\n        data->matchScore = value.toUInt();\n        return true;\n    default:\n        break;\n    }\n    return false;\n}\n\n//////////////////////////////////////////////////////\nSearchModel::SearchModel(QObject *parent)\n    : QSortFilterProxyModel(parent)\n    , m_timer(new QTimer(this))\n{\n    setFilterRole(SearchTextRole);\n    setSortRole(SearchMatchScoreRole);\n    setDynamicSortFilter(false);\n    sort(0);\n\n    setSourceModel(new SearchSourceModel(this));\n    connect(m_timer, &QTimer::timeout, this, &SearchModel::doSort);\n    m_timer->setSingleShot(true);\n    m_timer->setInterval(100);\n}\n\nQHash<int, QByteArray> SearchModel::roleNames() const\n{\n    QHash<int, QByteArray> names = QAbstractItemModel::roleNames();\n    names[SearchUrlRole] = \"url\";\n    names[SearchPlainTextRole] = \"plainText\";\n    return names;\n}\n\nvoid SearchModel::addSearchData(DccObject *obj, const QString &text, const QString &url)\n{\n    static_cast<SearchSourceModel *>(sourceModel())->addSearchData(obj, text, url);\n}\n\nvoid SearchModel::removeSearchData(const DccObject *obj, const QString &text)\n{\n    static_cast<SearchSourceModel *>(sourceModel())->removeSearchData(obj, text);\n}\n\nvoid SearchModel::doSort()\n{\n    sort(0);\n}\n\nbool SearchModel::filterAcceptsRow(int source_row, const QModelIndex &source_parent) const\n{\n    QModelIndex sourceIndex = sourceModel()->index(source_row, 0, source_parent);\n    if (!sourceIndex.isValid())\n        return false;\n\n    const SearchData *data = sourceModel()->data(sourceIndex, SearchDataRole).value<const SearchData *>();\n    QString text = data->sourceText();\n    QString filterText = filterRegularExpression().pattern().trimmed();\n    if (filterText.isEmpty()) {\n        return false;\n    }\n    filterText = filterText.toLower();\n    QList<int> findIndex;\n    int from = 0;\n    bool findOk = true;\n    for (QChar &c : filterText) {\n        from = text.indexOf(c, from, Qt::CaseInsensitive);\n        if (from < 0) {\n            findOk = false;\n            break;\n        }\n        findIndex.append(from++);\n    }\n    if (!findOk) {\n        bool isAllLetter = true;\n        for (QChar &c : filterText) {\n            isAllLetter &= c.unicode() < 127;\n        }\n        if (isAllLetter) {\n            QList<QStringList> texts = data->searchTexts;\n            findIndex.clear();\n            int wordsIndex = -1;\n\n            auto cIt = filterText.cbegin();\n            for (auto &&words : texts) {\n                ++wordsIndex;\n                for (auto &&py : words) {\n                    from = 0;\n                    while (from < py.size() && cIt != filterText.cend() && py.at(from) == (*cIt)) {\n                        ++cIt;\n                        ++from;\n                    }\n                    if (from > 0) {\n                        findIndex.append(wordsIndex);\n                        break;\n                    }\n                }\n                if (cIt == filterText.cend()) {\n                    findOk = true;\n                    break;\n                }\n            }\n        }\n        if (!findOk) {\n            return false;\n        }\n    }\n    unsigned int leftCnt = 0;  // 开头未匹配字符\n    unsigned int midCnt = 0;   // 中间未匹配字符，相关度影响最大\n    unsigned int rightCnt = 0; // 末尾未匹配字符，相关度影响最小\n    if (!findIndex.isEmpty()) {\n        leftCnt = findIndex.first();\n        rightCnt = text.length() - findIndex.last() - 1;\n        for (auto it = findIndex.begin() + 1; it != findIndex.end(); ++it) {\n            midCnt = midCnt * 10 + ((*it) - (*(it - 1))) - 1;\n        }\n        if (midCnt > 0x0000FFFF) {\n            midCnt = 0x0000FFFF;\n        }\n    }\n    unsigned int matchScore = rightCnt + leftCnt * 0x00000100 + midCnt * 0x00010000;\n\n    QString display;\n    int i = 0;\n    bool noEnd = false;\n    for (auto &&sub : text) {\n        if (!findIndex.isEmpty() && i == findIndex.first()) {\n            if (!noEnd) {\n                display.append(\"<font color='red'>\");\n                noEnd = true;\n            }\n            display.append(sub);\n            findIndex.takeFirst();\n        } else {\n            if (noEnd) {\n                display.append(\"</font>\");\n                noEnd = false;\n            }\n            display.append(sub);\n        }\n        ++i;\n    }\n    if (noEnd) {\n        display.append(\"</font>\");\n    }\n    QStringList displays(display);\n    const DccObject *p = DccObject::Private::FromObject(data->obj)->getParent();\n    while (p && p->name() != \"root\") {\n        if (!p->displayName().isEmpty()) {\n            displays.prepend(p->displayName());\n        }\n        p = DccObject::Private::FromObject(p)->getParent();\n    }\n\n    sourceModel()->setData(sourceIndex, displays.join(\"/\"));\n    displays.takeLast();\n    displays.append(text);\n    sourceModel()->setData(sourceIndex, displays.join(\"/\"), SearchPlainTextRole);\n    sourceModel()->setData(sourceIndex, matchScore, SearchMatchScoreRole);\n\n    auto currentIndex = mapFromSource(sourceIndex);\n    if (currentIndex.isValid()) {\n        Q_EMIT const_cast<SearchModel *>(this)->dataChanged(currentIndex, currentIndex, { Qt::DisplayRole });\n        m_timer->start(); // 数据库更新后延时排序并防抖\n    }\n    return true;\n}\n\nbool SearchModel::lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const\n{\n    unsigned int left = source_left.data(SearchMatchScoreRole).toUInt();\n    unsigned int right = source_right.data(SearchMatchScoreRole).toUInt();\n    if (left == right) {\n        return source_left.data(SearchPlainTextRole).toString() < source_right.data(SearchPlainTextRole).toString();\n    }\n    return left < right;\n}\n\n} // namespace dccV25\n"
  },
  {
    "path": "src/dde-control-center/searchmodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef SEARCHMODEL_H\n#define SEARCHMODEL_H\n\n#include <QAbstractItemModel>\n#include <QSortFilterProxyModel>\n#include <QTimer>\n\nnamespace dccV25 {\nclass DccObject;\n\nclass SearchModel : public QSortFilterProxyModel\n{\n    Q_OBJECT\npublic:\n    explicit SearchModel(QObject *parent = nullptr);\n\n    enum DccSearchRole { SearchUrlRole = Qt::UserRole + 300, SearchPlainTextRole, SearchTextRole, SearchWeightRole, SearchDataRole, SearchMatchScoreRole };\n\n    QHash<int, QByteArray> roleNames() const override;\n\npublic Q_SLOTS:\n    void addSearchData(DccObject *obj, const QString &text, const QString &url);\n    void removeSearchData(const DccObject *obj, const QString &text);\n    void doSort();\n\nprotected:\n    bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const override;\n    bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const override;\n\nprotected:\n    QTimer *m_timer;\n};\n\n} // namespace dccV25\n#endif // SEARCHMODEL_H\n"
  },
  {
    "path": "src/plugin-accounts/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\nset(pluginName accounts)\nfile(GLOB_RECURSE accounts_SRCS\n    \"operation/*.cpp\"\n    \"operation/*.h\"\n    \"operation/qrc/${pluginName}.qrc\"\n)\n\nadd_library(${pluginName} MODULE\n    ${accounts_SRCS}\n)\n\npkg_check_modules(DEEPIN_PW_CHECK REQUIRED libdeepin_pw_check)\n\nfind_package(PolkitQt6-1)\nset(accounts_Libraries\n    ${DCC_FRAME_Library}\n    ${QT_NS}::DBus\n    ${DTK_NS}::Core\n    ${DTK_NS}::Gui\n    ${QT_NS}::Concurrent\n    PolkitQt6-1::Agent\n    ${DEEPIN_PW_CHECK_LIBRARIES}\n)\n\ntarget_link_libraries(${pluginName} PRIVATE\n    ${accounts_Libraries}\n)\n\ndcc_install_plugin(NAME ${pluginName} TARGET ${pluginName})\n"
  },
  {
    "path": "src/plugin-accounts/operation/accountlistmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"accountlistmodel.h\"\n#include \"accountscontroller.h\"\n\nusing namespace dccV25;\nAccountListModel::AccountListModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n}\n\nvoid AccountListModel::reset()\n{\n    beginResetModel();\n    endResetModel();\n}\n\nint AccountListModel::rowCount(const QModelIndex &) const\n{\n    AccountsController *controller = dynamic_cast<AccountsController *>(parent());\n    if (!controller)\n        return 0;\n\n    return controller->userIdList().count();\n}\n\nQVariant AccountListModel::data(const QModelIndex &index, int role) const\n{\n    AccountsController *controller = dynamic_cast<AccountsController *>(parent());\n    if (!controller)\n        return QVariant();\n\n    const QStringList &ids = controller->userIdList();\n    const QString &id = ids.value(index.row());\n    QString name = controller->fullName(id);\n    if (name.isEmpty())\n        name = controller->userName(id);\n\n    switch (role) {\n    case Qt::DisplayRole:\n        return name;\n    case UserIdRole:\n        return id;\n    case UserTypeRole:\n        return controller->userTypeName(id);\n    case AvatarRole:\n        return controller->avatar(id);\n    case OnlineRole:\n        return controller->isOnline(id);\n    default:\n        break;\n    }\n\n    return QVariant();\n}\n\nQHash<int, QByteArray> AccountListModel::roleNames() const\n{\n    auto names = QAbstractListModel::roleNames();\n    names[UserIdRole] = \"userId\";\n    names[UserTypeRole] = \"userType\";\n    names[AvatarRole] = \"avatar\";\n    names[OnlineRole] = \"online\";\n    return names;\n}\n\n//////////////////\n/// GroupListModel\nGroupListModel::GroupListModel(const QString &id, QObject *parent)\n    :QAbstractListModel(parent)\n    , m_userId(id)\n{\n\n    AccountsController *controller = dynamic_cast<AccountsController *>(parent);\n    if (controller) {\n        m_groups = controller->groups(m_userId);\n        connect(controller, &AccountsController::groupsUpdateFailed, this, [this](const QString &groupName) {\n            int idx = m_groups.indexOf(groupName);\n            if (idx > 0)\n                Q_EMIT dataChanged(index(idx), index(idx));\n        });\n        connect(controller, &AccountsController::groupsChanged, this, [this, controller](const QString &userId, const QStringList &) {\n            if (userId == m_userId)\n                updateGroups(controller->groups(userId));\n        });\n        connect(controller, &AccountsController::groupsUpdate, this, [this, controller]() {\n            updateGroups(controller->groups(m_userId));\n        });\n        connect(controller, &AccountsController::requestCreateGroup, this, [this, controller](const QString &userId) {\n            if (userId != m_userId)\n                return;\n\n            if (m_groups.count() > 1 && m_groups.last().isEmpty())\n                return;\n\n            m_isCreatingGroup = true;\n            int index = m_groups.count();\n            beginInsertRows(QModelIndex(), index, index);\n            m_groups << \"\";\n            endInsertRows();\n            Q_EMIT groupsUpdated();\n        });\n        connect(controller, &AccountsController::requestClearEmptyGroup, this, [this, controller](const QString &userId) {\n            if (userId != m_userId)\n                return;\n\n            if (m_groups.isEmpty())\n                return;\n\n            if (!m_groups.last().isEmpty())\n                return;\n\n            int index = m_groups.count() - 1;\n            beginRemoveRows(QModelIndex(), index, index);\n            m_groups.removeLast();\n            endRemoveRows();\n        });\n    }\n}\n\nvoid GroupListModel::setUserId(const QString &id)\n{\n    if (m_userId == id)\n        return;\n\n    AccountsController *controller = dynamic_cast<AccountsController *>(parent());\n    if (!controller)\n        return;\n\n    m_userId = id;\n\n    updateGroups(controller->groups(id));\n}\n\nvoid GroupListModel::updateGroups(const QStringList &groups) {\n    if (m_groups == groups)\n        return;\n\n    beginResetModel();\n    m_groups = groups;\n    endResetModel();\n\n    Q_EMIT groupsUpdated();\n}\n\nint GroupListModel::rowCount(const QModelIndex &) const\n{\n    if (m_userId.isEmpty())\n        return 0;\n\n    return m_groups.count();\n}\n\nQVariant GroupListModel::data(const QModelIndex &index, int role) const\n{\n    AccountsController *controller = dynamic_cast<AccountsController *>(parent());\n    if (!controller)\n        return QVariant();\n\n    const QString groupName = m_groups.value(index.row());\n\n    switch (role) {\n    case Qt::DisplayRole:\n        return groupName;\n    case UserIdRole:\n        return m_userId;\n    case EditAbleRole:\n        return controller->groupEditAble(m_userId, groupName);\n    case EnableRole:\n        return controller->groupEnabled(m_userId, groupName);\n    default:\n        break;\n    }\n\n    return QVariant();\n}\n\nQHash<int, QByteArray> GroupListModel::roleNames() const\n{\n    auto names = QAbstractListModel::roleNames();\n    names[UserIdRole] = \"userId\";\n    names[EditAbleRole] = \"groupEditAble\";\n    names[EnableRole] = \"groupEnabled\";\n    return names;\n}\n"
  },
  {
    "path": "src/plugin-accounts/operation/accountlistmodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef ACCOUNTLISTMODEL_H\n#define ACCOUNTLISTMODEL_H\n\n#include <QAbstractListModel>\nnamespace dccV25 {\nclass AccountListModel : public QAbstractListModel\n{\npublic:\n    explicit AccountListModel(QObject *parent = nullptr);\n    enum AccountListRole {\n        UserIdRole = Qt::UserRole + 1,\n        UserTypeRole,\n        AvatarRole,\n        OnlineRole\n    };\n\npublic:\n    void reset();\n    virtual int rowCount(const QModelIndex &parent) const override;\n    virtual QVariant data(const QModelIndex &index, int role) const override;\n    virtual QHash<int, QByteArray> roleNames() const override;\n};\n\nclass GroupListModel : public QAbstractListModel\n{\n    Q_OBJECT\n    Q_PROPERTY(bool isCreatingGroup READ isCreatingGroup WRITE setCreatingGroup)\npublic:\n    explicit GroupListModel(const QString &id, QObject *parent = nullptr);\n    enum GroupListRole {\n        UserIdRole = Qt::UserRole + 1,\n        EditAbleRole,\n        EnableRole\n    };\n\npublic:\n    inline QString userId() const {\n        return m_userId;\n    }\n    void setUserId(const QString &id);\n    void updateGroups(const QStringList &groups);\n\n    virtual int rowCount(const QModelIndex &parent) const override;\n    virtual QVariant data(const QModelIndex &index, int role) const override;\n    virtual QHash<int, QByteArray> roleNames() const override;\n    \n    bool isCreatingGroup() const { return m_isCreatingGroup; }\n    Q_INVOKABLE void setCreatingGroup(const bool &isCreatingGroup) { m_isCreatingGroup = isCreatingGroup; }\n\nsignals:\n    void groupsUpdated();\nprivate:\n    QString m_userId;\n    QStringList m_groups;\n    bool m_isCreatingGroup = false;\n};\n\n}\n#endif // ACCOUNTLISTMODEL_H\n"
  },
  {
    "path": "src/plugin-accounts/operation/accountscontroller.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"accountscontroller.h\"\n#include \"pwqualitymanager.h\"\n#include \"avatarlistmodel.h\"\n#include \"dccfactory.h\"\n#include \"accountlistmodel.h\"\n#include <qlogging.h>\n\n#include <QFileInfo>\n#include <QDir>\n#include <QStandardPaths>\n#include <QPainter>\n#include <QUrl>\n#include <QVariantMap>\n#include <QRegularExpression>\n#include <QPainterPath>\n#include <QBuffer>\n#include <QTimer>\n\n#include <DSysInfo>\n\n#include <grp.h>\n\n#define FACEID_NUM    5\n#define Faceimg_SIZE 200\n\nDCORE_USE_NAMESPACE\nnamespace dccV25 {\n\nDCC_FACTORY_CLASS(AccountsController)\n\nstatic bool isUserGroupName(int gid, const QString &name)\n{\n    QString groupName;\n    const group *curGroup = getgrgid(static_cast<__gid_t>(gid));\n    if (nullptr != curGroup && nullptr != curGroup->gr_name)\n        groupName = QString(curGroup->gr_name);\n\n    return groupName == name;\n}\n\nAccountsController::AccountsController(QObject *parent)\n    : QObject{ parent }\n{\n    qmlRegisterType<CreationResult>(\"AccountsController\", 1, 0, \"CreationResult\");\n    \n    m_model = new UserModel(this);\n    m_worker = new AccountsWorker(m_model, this);\n\n    connect(m_model, &UserModel::userAdded, this, [this]() {\n        Q_EMIT userIdListChanged();\n    });\n    connect(m_model, &UserModel::userRemoved, this, [this](User *user) {\n        Q_EMIT userRemoved(user->id());\n        Q_EMIT userIdListChanged();\n    });\n\n    connect(m_model, &UserModel::avatarChanged, this, &AccountsController::avatarChanged);\n    connect(m_model, &UserModel::autoLoginChanged, this, &AccountsController::autoLoginChanged);\n    connect(m_model, &UserModel::quickLoginChanged, this, &AccountsController::quickLoginChanged);\n    connect(m_model, &UserModel::nopasswdLoginChanged, this, &AccountsController::nopasswdLoginChanged);\n    connect(m_model, &UserModel::groupsChanged, this, [this](const QString &userId, const QStringList &groups) {\n        updateSingleUserGroups(userId);\n        Q_EMIT groupsChanged(userId, groups);\n    });\n    connect(m_model, &UserModel::passwordModifyFinished, this, &AccountsController::passwordModifyFinished);\n    connect(m_model, &UserModel::userTypeChanged, this, &AccountsController::userTypeChanged);\n    connect(m_model, &UserModel::fullnameChanged, this, &AccountsController::fullnameChanged);\n    connect(m_model, &UserModel::passwordAgeChanged, this, &AccountsController::passwordAgeChanged);\n\n    connect(m_worker, &AccountsWorker::showSafetyPage, this, &AccountsController::showSafetyPage);\n    connect(m_model, &UserModel::allGroupsChange, this, [this]() {\n        if (!m_isCreatingUser) {\n            updateAllGroups();\n        }\n        this->groupsUpdate();\n    });\n    connect(m_worker, &AccountsWorker::updateGroupFailed, this, &AccountsController::groupsUpdateFailed);\n    connect(m_worker, &AccountsWorker::createGroupFailed, this, [this]() {\n        requestClearEmptyGroup(currentUserId());\n    });\n    connect(m_worker, &AccountsWorker::updateGroupFinished, this, [this]() {\n        updateAllGroups();\n        this->groupsUpdate();\n    });\n    \n    connect(m_worker, &AccountsWorker::accountCreationFinished, this, [this](CreationResult *result) {\n        m_isCreatingUser = false;\n        Q_EMIT accountCreationFinished(result->type(), result->message());\n        \n        if (result->type() == CreationResult::NoError) {\n            QTimer::singleShot(100, this, [this]() {\n                if (!m_model->userList().isEmpty()) {\n                    updateSingleUserGroups(m_model->userList().last()->id());\n                }\n            });\n        }\n    });\n\n    connect(m_model, &UserModel::quickLoginVisibleChanged, this, &AccountsController::quickLoginVisibleChanged);\n\n    QMetaObject::invokeMethod(m_worker, \"active\", Qt::QueuedConnection);\n}\n\nAccountsController::~AccountsController() { }\n\nQString AccountsController::avatar(const QString &id) const\n{\n    User *user = m_model->getUser(id);\n    if (!user)\n        return QString();\n    const QString cur = user->currentAvatar();\n    if (QFileInfo(cur).isAbsolute())\n        return QUrl::fromLocalFile(cur).toString();\n    return cur;\n}\n\nvoid AccountsController::setAvatar(const QString &id, const QString &url)\n{\n    if (User *user = m_model->getUser(id))\n        m_worker->setAvatar(user, QUrl::fromUserInput(url).toLocalFile());\n}\n\nQStringList AccountsController::avatars(const QString &id, const QString &filter, const QString &section)\n{\n    User *user = m_model->getUser(id);\n    if (!user)\n        return {};\n\n    if (filter.contains(\"icons/local\")) {\n        QStringList res;\n        const QString addBtn = \"add\";\n\n        const QString cacheDir = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);\n        if (!cacheDir.isEmpty()) {\n            const QString avatarsDir = cacheDir + QDir::separator() + \"avatars\";\n            QDir dir(avatarsDir);\n            if (dir.exists()) {\n                QStringList files = dir.entryList(QStringList() << \"*.png\" << \"*.jpg\" << \"*.jpeg\" << \"*.bmp\", QDir::Files, QDir::Time);\n                for (const QString &f : files) {\n                    const QString full = dir.absoluteFilePath(f);\n                    const QFileInfo fi(full);\n                    res << (QUrl::fromLocalFile(full).toString());\n                }\n            }\n        }\n\n        res.removeDuplicates();\n        res.prepend(addBtn);\n        return res;\n    }\n\n    QStringList res;\n    const auto &list = user->avatars();\n    std::copy_if(list.begin(), list.end(), std::back_inserter(res),\n                 [filter, section](const QString &iconFile) {\n        bool exists = QFileInfo::exists(QUrl(iconFile).toLocalFile());\n        const QString subPath = section.isEmpty() ? \"\" : section + \"/\";\n        return exists && iconFile.contains(filter + \"/\" + subPath);\n    });\n    std::sort(res.begin(), res.end(), [=](const QString &path1, const QString &path2){ return path1 < path2; });\n    return res;\n}\n\nQString AccountsController::saveCustomAvatar(const QString &id, const QString &tempFile, const QString &originalFile)\n{\n    User *user = m_model->getUser(id);\n    if (!user)\n        return QString();\n    return m_worker->saveCustomAvatar(tempFile, originalFile);\n}\n\nvoid AccountsController::deleteUserIcon(const QString &id, const QString &iconFile)\n{\n    User *user = m_model->getUser(id);\n    if (!user)\n        return;\n    const QString local = QUrl(iconFile).toLocalFile();\n    if (local.isEmpty())\n        return;\n    m_worker->deleteUserIcon(user, local);\n    Q_EMIT avatarChanged(id, user->currentAvatar());\n}\n\nvoid AccountsController::cleanupTempPreviewFiles(const QStringList &files)\n{\n    for (const QString &file : files) {\n        QFile::remove(file);\n    }\n}\n\nQString AccountsController::userName(const QString &id) const\n{\n    User *user = m_model->getUser(id);\n    return user ? user->name() : QString();\n}\n\nQString AccountsController::customAvatarFromCache() const\n{\n    const QString cacheDir = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);\n    if (cacheDir.isEmpty()) return QString();\n    const QString marker = cacheDir + QDir::separator() + \"avatars\" + QDir::separator() + \"current\";\n    QFile mf(marker);\n    if (!mf.exists()) return QString();\n    if (!mf.open(QIODevice::ReadOnly | QIODevice::Text)) return QString();\n    const QString fileName = QString::fromUtf8(mf.readAll()).trimmed();\n    mf.close();\n    if (fileName.isEmpty()) return QString();\n    const QString abs = cacheDir + QDir::separator() + \"avatars\" + QDir::separator() + fileName;\n    QFileInfo fi(abs);\n    if (!fi.exists()) return QString();\n    return QUrl::fromLocalFile(abs).toString();\n}\n\nQString AccountsController::fullName(const QString &id) const\n{\n    User *user = m_model->getUser(id);\n    return user ? user->fullname() : QString();\n}\n\nvoid AccountsController::setFullname(const QString &id, const QString &name)\n{\n    if (User *user = m_model->getUser(id))\n        if (name.simplified() != user->fullname())\n            m_worker->setFullname(user, name.simplified()); // 去除空白字符\n}\n\nint AccountsController::userType(const QString &id) const\n{\n    User *user = m_model->getUser(id);\n    return user ? user->userType() : 0;\n}\n\nvoid AccountsController::setUserType(const QString &id, int index)\n{\n    if (User *user = m_model->getUser(id))\n        if (index != user->userType())\n            m_worker->setAdministrator(user, User::Administrator == index);\n}\n\nQString AccountsController::userTypeName(const QString &id) const\n{\n    auto ut = userTypes();\n    return ut.value(userType(id));\n}\n\nbool AccountsController::isSystemAdmin(const User *user) const\n{\n    if (!user)\n        return false;\n\n    // 本地管理员账户不一定是等保三级的管理员账户，要区分判断\n    if (m_model->getIsSecurityHighLever())\n        return user->securityLever() == SecurityLever::Sysadm;\n\n    return user->userType() == User::UserType::Administrator;\n}\n\nint AccountsController::adminCount() const\n{\n    int cnt = 0;\n    // 等保三级系统模式下\n    if (m_model->getIsSecurityHighLever())\n        return 1;\n\n    for (auto user : m_model->userList()) {\n        if (user->userType() == User::UserType::Administrator)\n            cnt++;\n    }\n    return cnt;\n}\n\nvoid AccountsController::checkPwdLimitLevel(int lvl)\n{\n    // 企业版控制中心用户创建屏蔽安全中心登录安全的接口需求\n    if ((DSysInfo::uosEditionType() == DSysInfo::UosEnterprise) ||\n        (DSysInfo::uosEditionType() == DSysInfo::UosEnterpriseC))\n        return ;\n\n    // needShowSafetyPage\n    m_worker->checkPwdLimitLevel(lvl);\n}\n\nbool AccountsController::isDeleteAble(const QString &id) const\n{\n    User *editUser = m_model->getUser(id);\n    if (!editUser)\n        return false;\n\n    User *curLoginUser = m_model->currentUser();\n    auto isOnlyAdmin = [this, editUser] {         // 是最后一个管理员\n        return isSystemAdmin(editUser)            // 是管理员\n                && adminCount() == 1;             // 管理员只有一个\n    };\n\n    if (m_model->getIsSecurityHighLever()) {\n        return curLoginUser && curLoginUser->securityLever() == SecurityLever::Sysadm\n                && !editUser->isCurrentUser();\n    }\n    return !editUser->isCurrentUser() // 不是当前用户\n            && !editUser->online()    // 未登录\n            && !isOnlyAdmin();        // 不是最后一个管理员\n}\n\nbool AccountsController::isAutoLoginVisable() const\n{\n    return m_model->isAutoLoginVisable();\n}\n\nbool AccountsController::isQuickLoginVisible() const\n{\n    return m_model->isQuickLoginVisible();\n}\n\nbool AccountsController::autoLogin(const QString &id) const\n{\n    User *user = m_model->getUser(id);\n    return user ? user->autoLogin() : false;\n}\n\nbool AccountsController::quickLogin(const QString &id) const\n{\n    User *user = m_model->getUser(id);\n    return user ? user->quickLogin() : false;\n}\n\nvoid AccountsController::setAutoLogin(const QString &id, const bool enable)\n{\n    if (User *user = m_model->getUser(id))\n        if (user->autoLogin() != enable)\n            m_worker->setAutoLogin(user, enable);\n}\n\nvoid AccountsController::setQuickLogin(const QString &id, const bool enable)\n{\n    if (User *user = m_model->getUser(id))\n        if (user->quickLogin() != enable)\n            m_worker->setQuickLogin(user, enable);\n}\n\nQString AccountsController::getOtherUserAutoLogin() const\n{\n    for (auto user : m_model->userList()) {\n        if (user->name() != currentUserName() && user->autoLogin()) {\n            return user->name();\n        }\n    }\n    return \"\";\n}\n\nbool AccountsController::isNoPassWordLoginVisable() const\n{\n    return m_model->isNoPassWordLoginVisable();\n}\n\nbool AccountsController::nopasswdLogin(const QString &id)\n{\n    User *user = m_model->getUser(id);\n    return user ? user->nopasswdLogin() : false;\n}\n\nvoid AccountsController::setNopasswdLogin(const QString &id, const bool enable)\n{\n    if (User *user = m_model->getUser(id))\n        if (user->nopasswdLogin() != enable)\n            m_worker->setNopasswdLogin(user, enable);\n}\n\nbool AccountsController::isOnline(const QString &id)\n{\n    User *user = m_model->getUser(id);\n    return user ? user->online() : false;\n}\n\nbool AccountsController::needShowGroups()\n{\n#ifdef QT_DEBUG\n    // alwayls show groups for test\n    return true;\n#endif\n\n    return !DSysInfo::isCommunityEdition();\n}\n\nQStringList AccountsController::allGroups() const\n{\n    return m_model->getAllGroups();\n}\n\nQStringList AccountsController::groups(const QString &id)\n{\n    if (!needShowGroups())\n        return QStringList();\n\n    if (m_groups.contains(id))\n        return m_groups.value(id);\n\n    updateGroups(id);\n\n    return m_groups.value(id);\n}\n\nvoid AccountsController::updateGroups(const QString &id)\n{\n    QStringList ag = allGroups();\n    \n    QHash<QString, bool> containsCache;\n    for (const QString &group : ag) {\n        containsCache[group] = groupContains(id, group);\n    }\n    \n    std::sort(ag.begin(), ag.end(), [&containsCache](const QString &left, const QString &right){\n        bool isLeftContains = containsCache.value(left);\n        bool isRightContains = containsCache.value(right);\n\n        if (!(isLeftContains ^ isRightContains)) { // both true or both false\n            return left.compare(right, Qt::CaseInsensitive) < 0;\n        } else {\n            return isLeftContains ? true : false;\n        }\n    });\n    m_groups[id] = ag;\n}\n\nvoid AccountsController::updateAllGroups()\n{\n    if (!m_model)\n        return;\n    \n    QSet<QString> existingUserIds;\n    QList<User *> userList = m_model->userList();\n    \n    QStringList allGroupsList = allGroups();\n    \n    for (const auto user : userList) {\n        QString id = user->id();\n        existingUserIds.insert(id);\n        \n        QHash<QString, bool> containsCache;\n        for (const QString &group : allGroupsList) {\n            containsCache[group] = groupContains(id, group);\n        }\n        \n        QStringList containedGroups;\n        QStringList notContainedGroups;\n        \n        for (const QString &group : allGroupsList) {\n            if (containsCache.value(group)) {\n                containedGroups.append(group);\n            } else {\n                notContainedGroups.append(group);\n            }\n        }\n        \n        std::sort(containedGroups.begin(), containedGroups.end(), [](const QString &a, const QString &b) {\n            return a.compare(b, Qt::CaseInsensitive) < 0;\n        });\n        \n        std::sort(notContainedGroups.begin(), notContainedGroups.end(), [](const QString &a, const QString &b) {\n            return a.compare(b, Qt::CaseInsensitive) < 0;\n        });\n        \n        QStringList sortedGroups = containedGroups;\n        sortedGroups.append(notContainedGroups);\n        \n        m_groups[id] = sortedGroups;\n    }\n    \n    QStringList keysToRemove;\n    for (const auto &id : m_groups.keys()) {\n        if (!existingUserIds.contains(id)) {\n            keysToRemove.append(id);\n        }\n    }\n    \n    for (const auto &id : keysToRemove) {\n        m_groups.remove(id);\n    }\n}\n\nvoid AccountsController::updateSingleUserGroups(const QString &id)\n{\n    if (!m_model || !m_model->getUser(id))\n        return;\n        \n    updateGroups(id);\n}\n\nbool AccountsController::groupContains(const QString &id, const QString &name) const\n{\n    User *user = m_model->getUser(id);\n    if (!user)\n        return false;\n\n    if (isUserGroupName(user->gid().toInt(), name))\n        return true;\n\n    auto presetGroups = user->groups();\n    return presetGroups.contains(name);\n}\n\nbool AccountsController::groupEnabled(const QString &id, const QString &name) const\n{\n    User *user = m_model->getUser(id);\n    if (!user)\n        return false;\n\n    const QString Sudo = \"sudo\";\n    const QString SysadmGroup = \"sysadm\";\n    const QString SecadmGroup = \"secadm\";\n    const QString AudadmGroup = \"audadm\";\n    const QList <QString> IgoreGroups= {Sudo, \"root\", SecadmGroup, AudadmGroup};\n\n    if (isUserGroupName(user->gid().toInt(), name))\n        return false;\n\n    // 对于sysadm组，不管有没有加入等保，都需要将其置灰\n    if (name == SysadmGroup) {\n        return false;\n    }\n    // 等保三级系统模式下，置灰sudo, root, secadm, audadm组\n    if (m_model->getIsSecurityHighLever()) {\n        for (auto &group : IgoreGroups) {\n            if (name == group)\n                return false;\n        }\n    }\n\n    bool ret = (name != Sudo) ? true : false;\n    bool isLastAdmin = adminCount() == 1 && user->userType() == User::Administrator;\n    if (!ret && !user->online() && !isLastAdmin) {\n        ret = true;\n    }\n\n    return ret;\n}\n\nbool AccountsController::groupEditAble(const QString &id, const QString &name) const\n{\n    User *user = m_model->getUser(id);\n    if (!user) {\n        return false;\n    }\n\n    bool ok;\n    int iGid = user->gid().toInt(&ok, 10);\n    if (!ok)\n      return false;\n\n    if (isUserGroupName(iGid, name))\n        return false;\n\n    // gid < 1000\n    if (m_model->isDisabledGroup(name))\n        return false;\n\n    return true;\n}\n\nbool AccountsController::groupExists(const QString &name) const\n{\n    QStringList existingGroups = allGroups();\n    return existingGroups.contains(name);\n}\n\nvoid AccountsController::createGroup(const QString &name)\n{\n    m_worker->createGroup(name, 0, false);\n}\n\nvoid AccountsController::deleteGroup(const QString &name)\n{\n    m_worker->deleteGroup(name);\n}\n\nvoid AccountsController::modifyGroup(const QString &oldName, const QString &newName)\n{\n    m_worker->modifyGroup(oldName, newName, 0);\n}\n\nvoid AccountsController::setGroup(const QString &id, const QString &group, bool on)\n{\n    if (User *user = m_model->getUser(id)) {\n        QStringList groups = user->groups();\n\n        if (on && !groups.contains(group)) {\n            groups.append(group);\n        } else if (!on && groups.contains(group)) {\n            groups.removeOne(group);\n        } else {\n            qWarning() << \"setGroups\" << user->name() << groups << group << on;\n            return;\n        }\n\n        m_worker->setGroups(user, groups);\n    }\n}\n\nvoid AccountsController::addUser(const QVariantMap &info)\n{\n    m_isCreatingUser = true;\n    \n    const int type = info[\"type\"].toInt();\n    const QString name = info[\"name\"].toString().simplified();\n    const QString fullname = info[\"fullname\"].toString().simplified();\n    const QString pwd = info[\"pwd\"].toString();\n    const QString pwdRepeat = info[\"pwdRepeat\"].toString();\n    const QString pwdHint = info[\"pwdHint\"].toString();\n\n    User *user = new User(this);\n    m_worker->randomUserIcon(user);\n    user->setName(name.simplified());\n    user->setFullname(fullname.simplified());\n    user->setPassword(pwd);\n    user->setRepeatPassword(pwdRepeat);\n    user->setPasswordHint(pwdHint);\n\n    /* 设置用户组 */\n    if (type == 1) {\n        user->setUserType(User::UserType::Administrator);\n    } else if (type == 0) {\n        user->setUserType(User::UserType::StandardUser);\n    } else {\n        Q_ASSERT_X(0, __FUNCTION__, \"invalide userType \" + type);\n        // user->setGroups(\"custom\");\n        // user->setUserType(User::UserType::StandardUser);\n    }\n\n    m_worker->createAccount(user);\n}\n\nvoid AccountsController::removeUser(const QString &id, const bool deleteHome)\n{\n    if (User *user = m_model->getUser(id))\n        m_worker->deleteAccount(user, deleteHome);\n}\n\nvoid AccountsController::setPassword(const QString &id, const QVariantMap &info)\n{\n    if (User *user = m_model->getUser(id)) {\n        const QString oldPwd = info[\"oldPwd\"].toString();\n        const QString newPwd = info[\"pwd\"].toString();\n        const QString pwdRepeat = info[\"pwdRepeat\"].toString();\n\n        if (user->isCurrentUser())\n            m_worker->setPassword(user, oldPwd, newPwd, pwdRepeat);\n        else\n            m_worker->resetPassword(user, newPwd);\n    }\n}\n\nvoid AccountsController::setPasswordHint(const QString &id, const QString &pwdHint)\n{\n    if (User *user = m_model->getUser(id)) {\n        if (!pwdHint.simplified().isEmpty())\n            m_worker->setPasswordHint(user, pwdHint);\n    }\n}\n\nint AccountsController::passwordAge(const QString &id) const\n{\n    User *user = m_model->getUser(id);\n    qDebug() << \"passwordAge\" << (user ? user->passwordAge() : -1);\n    return user ? user->passwordAge() : -1;\n}\n\nvoid AccountsController::setPasswordAge(const QString &id, const int age)\n{\n    if (User *user = m_model->getUser(id)) {\n        if (user->passwordAge() != age)\n            m_worker->setMaxPasswordAge(user, age);\n    }\n}\n\nQSortFilterProxyModel *AccountsController::avatarFilterModel()\n{\n    if (m_avatarFilterModel)\n        return m_avatarFilterModel;\n\n    m_avatarFilterModel = new QSortFilterProxyModel(this);\n    User *user = m_model->currentUser();\n    AvatarListModel *sourceModel = new AvatarListModel(user, this);\n    m_avatarFilterModel->setSourceModel(sourceModel);\n\n    m_avatarFilterModel->setFilterCaseSensitivity(Qt::CaseInsensitive);\n    return m_avatarFilterModel;\n}\n\nQAbstractListModel *AccountsController::avatarTypesModel()\n{\n    if (m_avatarTypesModel)\n        return m_avatarTypesModel;\n\n    m_avatarTypesModel = new AvatarTypesModel(this);\n    return m_avatarTypesModel;\n}\n\nQAbstractListModel *AccountsController::accountsModel()\n{\n    if (m_accountsModel)\n        return m_accountsModel;\n\n    m_accountsModel = new AccountListModel(this);\n    connect(this, &AccountsController::avatarChanged, m_accountsModel, [this](const QString &userId, const QString &) {\n        int idIdx = userIdList().indexOf(userId);\n        if (idIdx < 0)\n            return;\n        auto index = m_accountsModel->index(idIdx);\n        m_accountsModel->dataChanged(index, index, {AccountListModel::AvatarRole});\n    });\n    connect(this, &AccountsController::groupsChanged, m_accountsModel, [this](const QString &userId, const QStringList &) {\n        int idIdx = userIdList().indexOf(userId);\n        if (idIdx < 0)\n            return;\n        auto index = m_accountsModel->index(idIdx);\n        m_accountsModel->dataChanged(index, index, {AccountListModel::UserTypeRole});\n    });\n    connect(m_model, &UserModel::onlineChanged, m_accountsModel, [this](const QString &userId, const bool&) {\n        int idIdx = userIdList().indexOf(userId);\n        if (idIdx < 0)\n            return;\n        auto index = m_accountsModel->index(idIdx);\n        m_accountsModel->dataChanged(index, index, {AccountListModel::OnlineRole});\n        emit onlineUserListChanged();\n    });\n\n    connect(this, &AccountsController::userIdListChanged, static_cast<AccountListModel *>(m_accountsModel), &AccountListModel::reset);\n\n    return m_accountsModel;\n}\n\nQAbstractListModel *AccountsController::groupsModel(const QString &id)\n{\n    if (m_groupsModel) {\n        static_cast<GroupListModel*>(m_groupsModel)->setUserId(id);\n        return m_groupsModel;\n    }\n\n    auto groupsModel = new GroupListModel(id, this);\n    m_groupsModel = groupsModel;\n    return m_groupsModel;\n}\n\nint AccountsController::passwordLevel(const QString &pwd)\n{\n    return PwqualityManager::instance()->GetNewPassWdLevel(pwd);\n}\n\nQString AccountsController::checkUsername(const QString &name)\n{\n    QString alertMsg;\n    do {\n        if (name.size() < 3 || name.size() > 32) {\n            alertMsg = tr(\"Username must be between 3 and 32 characters\");\n            break;\n        }\n\n        QRegularExpression letterOrNum(\"^[A-Za-z0-9]+\");\n        if (!letterOrNum.match(name).hasMatch()) {\n            alertMsg = tr(\"The first character must be a letter or number\");\n            break;\n        }\n\n        QRegularExpression onlyNums(\"^\\\\d+$\");\n        if (onlyNums.match(name).hasMatch()) {\n            alertMsg = tr(\"Your username should not only have numbers\");\n            break;\n        }\n#define ErrCodeExist 4\n       // username existed check, not check fullname!\n       // reply ==> (false, \"the username existed\", 4)\n        QDBusPendingReply<bool, QString, int> reply = m_worker->isUsernameValid(name);\n        if (!reply.argumentAt(0).toBool() && ErrCodeExist == reply.argumentAt(2).toInt()) {\n            alertMsg = tr(\"The username has been used by other user accounts\");\n            break;\n        }\n\n        // check fullname\n        QList<User *> userList = m_model->userList();\n        auto ret = std::any_of(userList.begin(), userList.end(), [name](const User * user) {\n            return name == user->fullname();\n        });\n\n        if (ret) {\n            alertMsg = tr(\"The username has been used by other user accounts\");\n            break;\n        }\n\n    } while (false);\n\n    return alertMsg;\n}\n\nQString AccountsController::checkFullname(const QString &name)\n{\n    QString alertMsg;\n    QString trimmedName = name.simplified(); // 与 setFullname 保持一致，去除首尾空格\n    do {\n        if (trimmedName.isEmpty()) {\n            break;\n        }\n\n        if (trimmedName.size() > 32) {\n            alertMsg = tr(\"The full name is too long\");\n            break;\n        }\n#define ErrCodeSystemUsed 6\n        // 欧拉版会自己创建 shutdown 等 root 组账户且不会添加到 userList 中，导致无法重复性算法无效，\n        // 先通过 isUsernameValid 校验这些账户再通过重复性算法校验\n        // vaild == false && code == 6 是用户名已存在\n        QDBusPendingReply<bool, QString, int> reply = m_worker->isUsernameValid(trimmedName);\n        if (!reply.argumentAt(0).toBool() &&\n            ErrCodeSystemUsed == reply.argumentAt(2).toInt()) {\n            alertMsg = tr(\"The full name has been used by other user accounts\");\n            break;\n        }\n\n        QList<User *> userList = m_model->userList();\n        auto ret = std::any_of(userList.begin(), userList.end(), [trimmedName](User *user) {\n            return trimmedName == user->fullname() || trimmedName == user->name();\n        });\n        /* 与已有的用户全名和用户名进行重复性校验 */\n        if (ret) {\n            alertMsg = tr(\"The full name has been used by other user accounts\");\n            break;\n        }\n\n        QList<QString> groupList = m_model->getAllGroups();\n        ret = std::any_of(groupList.begin(), groupList.end(), [trimmedName](const QString &group) {\n            return trimmedName == group;\n        });\n        if (ret) {\n            alertMsg = tr(\"The full name has been used by other user accounts\");\n            break;\n        }\n    } while (false);\n\n    return alertMsg;\n}\n\nQString AccountsController::checkPassword(const QString &name, const QString &pwd)\n{\n    auto error = PwqualityManager::instance()->verifyPassword(name, pwd);\n    if (error != PwqualityManager::ERROR_TYPE::PW_NO_ERR) {\n        QString msg = PwqualityManager::instance()->getErrorTips(error);\n\n        checkPwdLimitLevel(passwordLevel(pwd));\n        return msg;\n    }\n\n    return QString();\n}\n\nQString AccountsController::checkPasswordSilently(const QString &name, const QString &pwd)\n{\n    auto error = PwqualityManager::instance()->verifyPassword(name, pwd);\n    if (error != PwqualityManager::ERROR_TYPE::PW_NO_ERR) {\n        return PwqualityManager::instance()->getErrorTips(error);\n    }\n\n    return QString();\n}\n\nQVariantMap AccountsController::checkPasswordResult(int code, const QString &msg, const QString &name, const QString &pwd)\n{\n    if (code == 0)\n        return QVariantMap();\n\n    QVariantMap res;\n    // reset password error\n    if (code < 0) {\n        res[\"pwd\"] = QVariant::fromValue(msg);\n        return res;\n    }\n\n    auto error = PwqualityManager::instance()->verifyPassword(name, pwd);\n    QString errMsg =  PwqualityManager::instance()->getErrorTips(error);\n\n    // new password error\n    if (error != PW_NO_ERR) {\n        res[\"pwd\"] = QVariant::fromValue(errMsg);\n        return res;\n    }\n\n    // current password error\n    if (msg.startsWith(\"Current Password: passwd:\", Qt::CaseInsensitive)) {\n        res[\"oldPwd\"] = QVariant::fromValue(tr(\"Wrong password\"));\n        return res;\n    }\n\n    checkPwdLimitLevel(passwordLevel(pwd));\n\n    // new password err\n    res[\"pwd\"] = QVariant::fromValue(errMsg);\n    return res;\n}\n\nvoid AccountsController::showDefender()\n{\n    m_worker->showDefender();\n}\n\nvoid AccountsController::playSystemSound(int soundType)\n{\n    m_worker->playSystemSound(soundType);\n}\n\nQString AccountsController::currentUserName() const\n{\n    return m_model->getCurrentUserName();\n}\n\nQStringList AccountsController::userIdList() const\n{\n    QStringList ids;\n    for (const auto user : m_model->userList()) {\n        if (user->name() == currentUserName())\n            continue;\n\n        ids << user->id();\n    }\n    return ids;\n}\n\nQStringList AccountsController::onlineUserList() const\n{\n    return m_model->getOnlineUsers();\n}\n\nQString AccountsController::currentUserId() const\n{\n    for (const auto user : m_model->userList()) {\n        if (user->name() == m_model->getCurrentUserName())\n            return user->id();\n    }\n    return QString();\n}\n\nbool AccountsController::curUserIsSysAdmin() const\n{\n    User *curUser = m_model->currentUser();\n    if (curUser)\n        return isSystemAdmin(curUser);\n\n    return false;\n}\n\nQStringList AccountsController::userTypes(bool createUser /* = false*/) const\n{\n    QStringList types{ tr(\"Standard User\"), tr(\"Administrator\") };\n    if (createUser && DSysInfo::UosServer == DSysInfo::uosType()) {\n        types << tr(\"Customized\");\n    }\n    return types;\n}\n\n} // namespace dccV25\n\n#include \"accountscontroller.moc\"\n"
  },
  {
    "path": "src/plugin-accounts/operation/accountscontroller.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef ACCOUNTSCONTROLLER_H\n#define ACCOUNTSCONTROLLER_H\n\n#include \"usermodel.h\"\n#include \"accountsworker.h\"\n#include \"creationresult.h\"\n\n#include <QObject>\n#include <QSortFilterProxyModel>\n#include <QHash>\n#include <QtQml/qqml.h>\n\nnamespace dccV25 {\n\nclass AccountsController : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(QString currentUserName READ currentUserName NOTIFY currentUserNameChanged FINAL)\n    Q_PROPERTY(QStringList userIdList READ userIdList NOTIFY userIdListChanged FINAL)\n    Q_PROPERTY(QStringList onlineUserList READ onlineUserList NOTIFY onlineUserListChanged FINAL)\n    Q_PROPERTY(bool isQuickLoginVisible READ isQuickLoginVisible NOTIFY quickLoginVisibleChanged FINAL)\npublic:\n    explicit AccountsController(QObject *parent = nullptr);\n    virtual ~AccountsController();\n\n    QString currentUserName() const;\n    QStringList userIdList() const;\n    QStringList onlineUserList() const;\n\npublic slots:\n    QString currentUserId() const;\n    bool curUserIsSysAdmin() const;\n\n    QString avatar(const QString &id) const;\n    void setAvatar(const QString &id, const QString &url);\n    QStringList avatars(const QString &id, const QString &filter, const QString &section);\n    QString saveCustomAvatar(const QString &id, const QString &tempFile, const QString &originalFile = QString());\n    QString userName(const QString &id) const;\n    QString fullName(const QString &id) const;\n    void setFullname(const QString &id, const QString &name);\n    int userType(const QString &id) const;\n    void setUserType(const QString &id, int index);\n    QString userTypeName(const QString &id) const;\n    QStringList userTypes(bool createUser = false) const;\n    bool isDeleteAble(const QString &id) const;\n\n    bool isAutoLoginVisable() const;\n    bool autoLogin(const QString &id) const;\n    void setAutoLogin(const QString &id, const bool enable);\n    QString getOtherUserAutoLogin() const;\n    bool isQuickLoginVisible() const;\n    bool quickLogin(const QString &id) const;\n    void setQuickLogin(const QString &id, const bool enable);\n    bool isNoPassWordLoginVisable() const;\n    bool nopasswdLogin(const QString &id);\n    void setNopasswdLogin(const QString &id, const bool enable);\n    bool isOnline(const QString &id);\n    bool needShowGroups();\n\n    QStringList allGroups() const;\n    QStringList groups(const QString &id);\n    void updateGroups(const QString &id);\n    void updateAllGroups();\n    void setGroup(const QString &id, const QString &group, bool on);\n    bool groupContains(const QString &id, const QString &name) const;\n    bool groupEnabled(const QString &id, const QString &name) const;\n    bool groupEditAble(const QString &id, const QString &name) const;\n    bool groupExists(const QString &name) const;\n    void createGroup(const QString &name);\n    void deleteGroup(const QString &name);\n    void modifyGroup(const QString &oldName, const QString &newName);\n\n    void addUser(const QVariantMap &userInfo);\n    void removeUser(const QString &id, const bool deleteHome);\n    void setPassword(const QString &id, const QVariantMap &info);\n    void setPasswordHint(const QString &id, const QString &pwdHint);\n    int passwordAge(const QString &id) const;\n    void setPasswordAge(const QString &id, const int age);\n\n    QSortFilterProxyModel *avatarFilterModel();\n    QAbstractListModel *avatarTypesModel();\n    QAbstractListModel *accountsModel();\n    QAbstractListModel *groupsModel(const QString &id);\n\n    int passwordLevel(const QString &pwd);\n    QString checkUsername(const QString &name);\n    QString checkFullname(const QString &name);\n    QString checkPassword(const QString &name, const QString &pwd);\n    // Used by UI realtime validation (no safety-page popup side effects).\n    QString checkPasswordSilently(const QString &name, const QString &pwd);\n    QVariantMap checkPasswordResult(int code, const QString &msg, const QString &name, const QString &pwd);\n    void showDefender();\n    void playSystemSound(int soundType);\n\n    void updateSingleUserGroups(const QString &id);\n\n    QString customAvatarFromCache() const;\n    void deleteUserIcon(const QString &id, const QString &iconFile);\n    void cleanupTempPreviewFiles(const QStringList &files);\n\nsignals:\n    void currentUserNameChanged();\n    void userIdListChanged();\n    void userRemoved(const QString &userId);\n    void onlineUserListChanged();\n    void avatarChanged(const QString &userId, const QString &avatar);\n    void userTypeChanged(const QString &userId, const int userType);\n    void fullnameChanged(const QString &userId, const QString &fullname);\n    void autoLoginChanged(const QString &userId, bool enable);\n    void quickLoginChanged(const QString &userId, bool enable);\n    void nopasswdLoginChanged(const QString &userId, bool enable);\n    void passwordAgeChanged(const QString &userId, const int age);\n    void passwordModifyFinished(const QString &userId, const int exitCode, const QString &msg);\n    void groupsChanged(const QString &userId, const QStringList &groups);\n    void groupsUpdate(); // create/delete/modify\n    void groupsUpdateFailed(const QString &groupName);\n    void requestCreateGroup(const QString &userId);\n    void requestClearEmptyGroup(const QString &userId);\n    void showSafetyPage(const QString &errorTips);\n    void accountCreationFinished(CreationResult::ResultType resultType, const QString &message);\n    void quickLoginVisibleChanged();\nprotected:\n    bool isSystemAdmin(const User *user) const;\n    int adminCount() const;\n    void checkPwdLimitLevel(int lvl);\nprivate:\n    AccountsWorker *m_worker = nullptr;\n    UserModel      *m_model = nullptr;\n    QSortFilterProxyModel *m_avatarFilterModel = nullptr;\n    QAbstractListModel    *m_avatarTypesModel = nullptr;\n    QAbstractListModel    *m_accountsModel = nullptr;\n    QHash<QString, QStringList> m_groups;\n    QAbstractListModel    *m_groupsModel = nullptr;\n    bool m_isCreatingUser = false;\n};\n\n}\n\n#endif // ACCOUNTSCONTROLLER_H\n"
  },
  {
    "path": "src/plugin-accounts/operation/accountsdbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"accountsdbusproxy.h\"\n\n#include <QMetaObject>\n#include <QDBusConnection>\n#include <QDBusPendingReply>\n#include <QDBusMetaType>\n#include <QDebug>\n\nAccountsDBusProxy::AccountsDBusProxy(QObject *parent)\n    : QObject(parent)\n{\n    init();\n}\n\nvoid AccountsDBusProxy::init()\n{\n    const QString accountsService = \"org.deepin.dde.Accounts1\";\n    const QString accountsPath = \"/org/deepin/dde/Accounts1\";\n    const QString accountsInterface = \"org.deepin.dde.Accounts1\";\n    const QString propertiesInterface = \"org.freedesktop.DBus.Properties\";\n    const QString propertiesChanged = \"PropertiesChanged\";\n\n    const QString displayManagerService = \"org.freedesktop.DisplayManager\";\n    const QString displayManagerPath = \"/org/freedesktop/DisplayManager\";\n    const QString displayManagerInterface = \"org.freedesktop.DisplayManager\";\n\n    m_dBusAccountsInter = new DDBusInterface(accountsService, accountsPath, accountsInterface, QDBusConnection::systemBus(), this);\n    m_dBusDisplayManagerInter = new DDBusInterface(displayManagerService, displayManagerPath, displayManagerInterface, QDBusConnection::systemBus(), this);\n\n    QDBusConnection dbusConnection = m_dBusAccountsInter->connection();\n    dbusConnection.connect(accountsService, accountsPath, propertiesInterface, propertiesChanged, this, SLOT(onPropertiesChanged(QDBusMessage)));\n}\n\nvoid AccountsDBusProxy::onPropertiesChanged(const QDBusMessage &message)\n{\n    if (message.arguments().size() < 2)\n        return;\n    QVariantMap changedProps = qdbus_cast<QVariantMap>(message.arguments().at(1).value<QDBusArgument>());\n    if (changedProps.contains(\"QuickLoginEnabled\")) {\n        bool value = changedProps.value(\"QuickLoginEnabled\").toBool();\n        Q_EMIT QuickLoginEnabledChanged(value);\n    }\n}\n\n// Accounts\nQStringList AccountsDBusProxy::userList()\n{\n    return qvariant_cast<QStringList>(m_dBusAccountsInter->property(\"UserList\"));\n}\n\nQStringList AccountsDBusProxy::groupList()\n{\n    return qvariant_cast<QStringList>(m_dBusAccountsInter->property(\"GroupList\"));\n}\n\nQList<QDBusObjectPath> AccountsDBusProxy::sessions()\n{\n    return qvariant_cast<QList<QDBusObjectPath>>(m_dBusDisplayManagerInter->property(\"Sessions\"));\n}\n\nQDBusPendingReply<QDBusObjectPath> AccountsDBusProxy::CreateUser(const QString &in0, const QString &in1, int in2)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1) << QVariant::fromValue(in2);\n    return m_dBusAccountsInter->asyncCallWithArgumentList(QStringLiteral(\"CreateUser\"), argumentList);\n}\n\nQDBusPendingReply<> AccountsDBusProxy::DeleteUser(const QString &in0, bool in1)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n    return m_dBusAccountsInter->asyncCallWithArgumentList(QStringLiteral(\"DeleteUser\"), argumentList);\n}\n\nQDBusPendingReply<QString> AccountsDBusProxy::FindUserById(const qint64 &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusAccountsInter->asyncCallWithArgumentList(QStringLiteral(\"FindUserById\"), argumentList);\n}\n\nQDBusPendingReply<QString> AccountsDBusProxy::FindUserByName(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusAccountsInter->asyncCallWithArgumentList(QStringLiteral(\"FindUserByName\"), argumentList);\n}\n\nQDBusPendingReply<QStringList> AccountsDBusProxy::GetGroups()\n{\n    QList<QVariant> argumentList;\n    return m_dBusAccountsInter->asyncCallWithArgumentList(QStringLiteral(\"GetGroups\"), argumentList);\n}\n\nQDBusPendingReply<QStringList> AccountsDBusProxy::GetPresetGroups(int in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusAccountsInter->asyncCallWithArgumentList(QStringLiteral(\"GetPresetGroups\"), argumentList);\n}\n\nQDBusPendingReply<bool, QString, int> AccountsDBusProxy::IsPasswordValid(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusAccountsInter->asyncCallWithArgumentList(QStringLiteral(\"IsPasswordValid\"), argumentList);\n}\n\nQDBusPendingReply<bool, QString, int> AccountsDBusProxy::IsUsernameValid(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusAccountsInter->asyncCallWithArgumentList(QStringLiteral(\"IsUsernameValid\"), argumentList);\n}\n\nQDBusPendingReply<QString> AccountsDBusProxy::RandUserIcon()\n{\n    QList<QVariant> argumentList;\n    return m_dBusAccountsInter->asyncCallWithArgumentList(QStringLiteral(\"RandUserIcon\"), argumentList);\n}\n\nQDBusPendingReply<QString> AccountsDBusProxy::GetGroupInfoByName(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusAccountsInter->asyncCallWithArgumentList(QStringLiteral(\"GetGroupInfoByName\"), argumentList);\n}\n\nQDBusPendingReply<> AccountsDBusProxy::deleteGroup(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(true); // force = true\n    return m_dBusAccountsInter->asyncCallWithArgumentList(QStringLiteral(\"DeleteGroup\"), argumentList);\n}\n\nQDBusPendingReply<> AccountsDBusProxy::createGroup(const QString &in0, uint32_t in1, bool in2)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1) << QVariant::fromValue(in2);\n    return m_dBusAccountsInter->asyncCallWithArgumentList(QStringLiteral(\"CreateGroup\"), argumentList);\n}\n\nQDBusPendingReply<> AccountsDBusProxy::modifyGroup(const QString &in0, const QString &in1, uint32_t in2)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1) << QVariant::fromValue(in2);\n    return m_dBusAccountsInter->asyncCallWithArgumentList(QStringLiteral(\"ModifyGroup\"), argumentList);\n}\n\nbool AccountsDBusProxy::quickLoginEnabled()\n{\n    QVariant value = m_dBusAccountsInter->property(\"QuickLoginEnabled\");\n    return value.isValid() ? value.toBool() : true; // 默认为true\n}\n"
  },
  {
    "path": "src/plugin-accounts/operation/accountsdbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef ACCOUNTSDBUSPROXY_H\n#define ACCOUNTSDBUSPROXY_H\n\n#include <QObject>\n#include <QDBusPendingReply>\n#include <DDBusInterface>\n\nusing Dtk::Core::DDBusInterface;\n\nclass QDBusMessage;\n\nclass AccountsDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit AccountsDBusProxy(QObject *parent = nullptr);\n\n    // accounts\n    Q_PROPERTY(QStringList UserList READ userList NOTIFY UserListChanged)\n    QStringList userList();\n\n    // groups\n    Q_PROPERTY(QStringList GroupList READ groupList NOTIFY GroupListChanged)\n    QStringList groupList();\n\n    // displaymanager\n    Q_PROPERTY(QList<QDBusObjectPath> Sessions READ sessions NOTIFY SessionsChanged)\n    QList<QDBusObjectPath> sessions();\n\n    Q_PROPERTY(bool QuickLoginEnabled READ quickLoginEnabled)\n    bool quickLoginEnabled();\n\nsignals:\n    void UserAdded(const QString &in0);\n    void UserDeleted(const QString &in0);\n    // begin property changed signals\n    void UserListChanged(const QStringList &value) const;\n    void GroupListChanged(const QStringList &value);\n\n    // displaymanager\n    void SessionsChanged(const QList<QDBusObjectPath> &value) const;\n\n    void QuickLoginEnabledChanged(bool value);\n\npublic slots:\n    QDBusPendingReply<QDBusObjectPath> CreateUser(const QString &in0, const QString &in1, int in2);\n    QDBusPendingReply<> DeleteUser(const QString &in0, bool in1);\n    QDBusPendingReply<QString> FindUserById(const qint64 &in0);\n    QDBusPendingReply<QString> FindUserByName(const QString &in0);\n    QDBusPendingReply<QStringList> GetGroups();\n    QDBusPendingReply<QStringList> GetPresetGroups(int in0);\n    QDBusPendingReply<bool, QString, int> IsPasswordValid(const QString &in0);\n    QDBusPendingReply<bool, QString, int> IsUsernameValid(const QString &in0);\n    QDBusPendingReply<QString> RandUserIcon();\n    QDBusPendingReply<QString> GetGroupInfoByName(const QString &in0);\n    QDBusPendingReply<> deleteGroup(const QString &in0);\n    QDBusPendingReply<> createGroup(const QString &in0, uint32_t in1, bool in2);\n    QDBusPendingReply<> modifyGroup(const QString &in0, const QString &in1, uint32_t in2);\n    void onPropertiesChanged(const QDBusMessage &message);\n\nprivate:\n    void init();\n\nprivate:\n    DDBusInterface *m_dBusAccountsInter;\n    DDBusInterface *m_dBusDisplayManagerInter;\n};\n\n#endif // ACCOUNTSDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-accounts/operation/accountsworker.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"accountsworker.h\"\n#include \"user.h\"\n#include \"usermodel.h\"\n#include \"syncdbusproxy.h\"\n#include \"accountsdbusproxy.h\"\n#include \"userdbusproxy.h\"\n#include \"securitydbusproxy.h\"\n\n#include <ddbussender.h>\n#include <DDesktopServices>\n\n#include <QtConcurrent>\n#include <QFutureWatcher>\n#include <QStandardPaths>\n#include <QRegularExpression>\n#include <QRegularExpressionMatch>\n#include <QDBusReply>\n#include <DSysInfo>\n#include <QDateTime>\n#include <QUrl>\n#include <QStandardPaths>\n#include <QDir>\n#include <QFile>\n#include <QFileInfo>\n#include <QSaveFile>\n\n#include <pwd.h>\n#include <tuple>\n#include <unistd.h>\n#include <libintl.h>\n#include <crypt.h>\n#include <errno.h>\n#include <PolkitQt1/Authority>\n#include <qlogging.h>\nusing namespace PolkitQt1;\n\nusing namespace dccV25;\nDCORE_USE_NAMESPACE\nDGUI_USE_NAMESPACE\n\nnamespace {\n// 密码加密算法前缀映射，按优先级排序（从高到低）\n// 注意：顺序除非产品要求不要变更\nconst QList<QPair<QString, QString>> kPasswordAlgorithmPrefixes = {\n    {\"sm3\",      \"$sm3$\"},\n    {\"yescrypt\", \"$y$\"},\n    {\"sha512\",   \"$6$\"},\n    {\"sha256\",   \"$5$\"}\n};\n\n// 根据算法名称获取前缀的辅助函数\nQString getAlgorithmPrefix(const QString &algorithm) {\n    for (const auto &pair : kPasswordAlgorithmPrefixes) {\n        if (pair.first.toLower() == algorithm.toLower()) {\n            return pair.second;\n        }\n    }\n    return QString();\n}\n} // anonymous namespace\n\nAccountsWorker::AccountsWorker(UserModel *userList, QObject *parent)\n    : QObject(parent)\n    , m_accountsInter(new AccountsDBusProxy(this))\n    , m_userQInter(new UserDBusProxy(QString(\"/org/deepin/dde/Accounts1/User%1\").arg(getuid()), this))\n    , m_syncInter(new SyncDBusProxy(this))\n    , m_securityInter(new SecurityDBusProxy(this))\n    , m_userModel(userList)\n    , m_accountCfg(DConfig::create(\"org.deepin.dde.daemon\", \"org.deepin.dde.daemon.account\", QString(), this))\n{\n    struct passwd *pws;\n    pws = getpwuid(getuid());\n    m_currentUserName = QString(pws->pw_name);\n    m_userModel->setCurrentUserName(m_currentUserName);\n    m_userModel->setIsSecurityHighLever(hasOpenSecurity());\n\n    connect(m_accountsInter, &AccountsDBusProxy::UserListChanged, this, &AccountsWorker::onUserListChanged, Qt::QueuedConnection);\n    connect(m_accountsInter, &AccountsDBusProxy::GroupListChanged, this, &AccountsWorker::onGroupListChanged, Qt::QueuedConnection);\n    connect(m_accountsInter, &AccountsDBusProxy::UserAdded, this, &AccountsWorker::addUser, Qt::QueuedConnection);\n    connect(m_accountsInter, &AccountsDBusProxy::UserDeleted, this, &AccountsWorker::removeUser, Qt::QueuedConnection);\n    connect(m_accountsInter, &AccountsDBusProxy::SessionsChanged, this, &AccountsWorker::updateUserOnlineStatus);\n\n    QDBusPendingReply<QString> reply  = m_accountsInter->FindUserById(pws->pw_uid);\n     QString currentUserPath = reply.value();\n    if (!currentUserPath.isEmpty()) {\n        onUserListChanged({currentUserPath});\n    }\n    onUserListChanged(m_accountsInter->userList());\n    updateUserOnlineStatus(m_accountsInter->sessions());\n    getAllGroups();\n    getPresetGroups();\n\n    if(DSysInfo::UosServer != DSysInfo::uosType()) {\n        m_userModel->setAutoLoginVisable(true);\n        m_userModel->setNoPassWordLoginVisable(true);\n    } else {\n        m_userModel->setAutoLoginVisable(true);\n        m_userModel->setNoPassWordLoginVisable(false);\n    }\n\n    m_userModel->setQuickLoginVisible(m_accountsInter->quickLoginEnabled());\n    connect(m_accountsInter, &AccountsDBusProxy::QuickLoginEnabledChanged, m_userModel, &UserModel::setQuickLoginVisible);\n}\n\nvoid AccountsWorker::getAllGroups()\n{\n    QDBusPendingReply<QStringList> reply = m_accountsInter->GetGroups();\n    QDBusPendingCallWatcher *groupResult = new QDBusPendingCallWatcher(reply, this);\n    connect(groupResult, &QDBusPendingCallWatcher::finished, this, &AccountsWorker::getAllGroupsResult);\n}\n\nvoid AccountsWorker::getGroupInfoByName(const QString &groupName, QString &resInfoJson)\n{\n    QString info;\n\n    QDBusPendingReply<QString> reply = m_accountsInter->GetGroupInfoByName(groupName);\n    QDBusPendingCallWatcher *groupResult = new QDBusPendingCallWatcher(reply, this);\n    connect(groupResult, &QDBusPendingCallWatcher::finished, this, [&resInfoJson](QDBusPendingCallWatcher *watch) {\n        QDBusPendingReply<QString> reply = *watch;\n        if (!watch->isError()) {\n            resInfoJson = reply.value();\n        } else {\n            qDebug() << \"getGroupInfoByName error.\" << watch->error();\n        }\n        watch->deleteLater();\n    });\n\n    groupResult->waitForFinished();\n}\n\nvoid AccountsWorker::getAllGroupsResult(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<QStringList> reply = *watch;\n    if (!watch->isError()) {\n        m_userModel->setAllGroups(reply.value());\n\n        QStringList disabledGroups;\n        QJsonDocument jsonDocument;\n        QJsonObject jsonObject;\n        QString info;\n\n        foreach (auto name, reply.value()) {\n            getGroupInfoByName(name, info);\n            jsonDocument = QJsonDocument::fromJson(info.toLocal8Bit());\n            jsonObject = jsonDocument.object();\n\n            bool res = false;\n            int gid = jsonObject.value(\"Gid\").toString().toInt(&res);\n            if (res && 1000 > gid) {\n                if (!disabledGroups.contains(name))\n                    disabledGroups.append(name);\n            }\n        }\n        m_userModel->setDisabledGroups(disabledGroups);\n    } else {\n        qDebug() << \"getAllGroupsResult error.\" << watch->error();\n    }\n    watch->deleteLater();\n}\n\nvoid AccountsWorker::getPresetGroups()\n{\n    int userType = DSysInfo::UosServer == DSysInfo::uosType() ? 0 : 1;\n    QDBusPendingReply<QStringList> reply = m_accountsInter->GetPresetGroups(userType);\n    QDBusPendingCallWatcher *presetGroupsResult = new QDBusPendingCallWatcher(reply, this);\n    connect(presetGroupsResult, &QDBusPendingCallWatcher::finished, this, &AccountsWorker::getPresetGroupsResult);\n}\n\nvoid AccountsWorker::getPresetGroupsResult(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<QStringList> reply = *watch;\n    if (!watch->isError()) {\n        m_userModel->setPresetGroups(reply.value());\n    } else {\n        qDebug() << \"getPresetGroupsResult error.\" << watch->error();\n    }\n    watch->deleteLater();\n}\n\nvoid AccountsWorker::getUOSID(QString &uosid)\n{\n    const auto &result = m_syncInter->UOSID();\n    if (!result.isEmpty()) {\n        uosid = result;\n    }\n}\n\nvoid AccountsWorker::getUUID(QString &uuid)\n{\n    QVariant retUUID = m_userQInter->uuid();\n    uuid = retUUID.toString();\n}\n\nvoid AccountsWorker::localBindCheck(User *user, const QString &uosid, const QString &uuid)\n{\n    Q_UNUSED(user)\n    QFutureWatcher<BindCheckResult> *watcher = new QFutureWatcher<BindCheckResult>(this);\n    connect(watcher, &QFutureWatcher<BindCheckResult>::finished, [this, watcher] {\n        BindCheckResult result = watcher->result();\n        if (result.error.isEmpty())\n            Q_EMIT localBindUbid(result.ubid);\n        else\n            Q_EMIT localBindError(result.error);\n        watcher->deleteLater();\n    });\n    QFuture<BindCheckResult> future = QtConcurrent::run(&AccountsWorker::checkLocalBind, this, uosid, uuid);\n    watcher->setFuture(future);\n}\n\nvoid AccountsWorker::startResetPasswordExec(User *user)\n{\n    qInfo() << \"Begin Resetpassword\";\n    UserDBusProxy *userInter = m_userInters.value(user);\n    auto reply = userInter->SetPassword(\"\");\n    reply.waitForFinished();\n    Q_EMIT user->startResetPasswordReplied(reply.error().message());\n}\n\nvoid AccountsWorker::asyncSecurityQuestionsCheck(User *user)\n{\n    QFutureWatcher<QList<int>> *watcher = new QFutureWatcher<QList<int>>(this);\n    connect(watcher, &QFutureWatcher<QList<int>>::finished, [user, watcher] {\n        QList<int> result = watcher->result();\n        if (result.size() != SECURITY_QUESTIONS_ERROR_COUNT)\n            Q_EMIT user->startSecurityQuestionsCheckReplied(result);\n\n        watcher->deleteLater();\n    });\n    QFuture<QList<int>> future = QtConcurrent::run(&AccountsWorker::securityQuestionsCheck, this);\n    watcher->setFuture(future);\n}\n\nQList<int> AccountsWorker::securityQuestionsCheck()\n{\n    QDBusPendingReply<QList<int>> reply = m_userQInter->GetSecretQuestions();\n    if (!reply.error().message().isEmpty()) {\n        qWarning() << reply.error().message();\n    }\n    if (reply.isValid()) {\n        return reply.value();\n    }\n    return {-1};\n}\n\nvoid AccountsWorker::setPasswordHint(User *user, const QString &passwordHint)\n{\n    UserDBusProxy *userInter = m_userInters.value(user);\n    Q_ASSERT(userInter);\n\n    userInter->SetPasswordHint(passwordHint);\n}\n\nvoid AccountsWorker::setSecurityQuestions(User *user, const QMap<int, QByteArray> &securityQuestions)\n{\n    QDBusPendingReply<void> reply =  m_userQInter->SetSecretQuestions(securityQuestions);\n    if (reply.isValid()) {\n        Q_EMIT user->setSecurityQuestionsReplied(reply.error().message());\n    }\n    if (!reply.error().message().isEmpty()) {\n        Q_EMIT user->setSecurityQuestionsReplied(reply.error().message() + \"error\");\n    }\n}\n\nvoid AccountsWorker::deleteGroup(const QString &group)\n{\n    QDBusPendingCall call = m_accountsInter->deleteGroup(group);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [this, group] (QDBusPendingCallWatcher* call) {\n        if (call->isError()) {\n            qWarning() << \"Delete group \" << group << \" failed, error:\" << call->error().message();\n            Q_EMIT updateGroupFailed(group);\n            return;\n        }\n        Q_EMIT updateGroupFinished(AccountsWorker::OperateType::Delete, call->isValid(), group);\n    });\n}\n\nvoid AccountsWorker::createGroup(const QString &group, uint32_t gid, bool isSystem)\n{\n    QDBusPendingCall call = m_accountsInter->createGroup(group, gid, isSystem);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [this, group, gid] (QDBusPendingCallWatcher* call) {\n        if (call->isError()) {\n            qWarning() << \"Create group, gid: \" << gid << \", created group `\" << group << \"` failed, error:\" << call->error().message();\n            Q_EMIT createGroupFailed(group);\n            return;\n        }\n\n        Q_EMIT updateGroupFinished(AccountsWorker::OperateType::Create, call->isValid());\n    });\n}\n\nvoid AccountsWorker::modifyGroup(const QString &oldGroup, const QString &newGroup, uint32_t gid)\n{\n    QDBusPendingCall call = m_accountsInter->modifyGroup(oldGroup, newGroup, gid);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [this, oldGroup, newGroup] (QDBusPendingCallWatcher* call) {\n        if (call->isError()) {\n            qWarning() << \"Modify group from \" << oldGroup << \" to \" << newGroup << \" failed, error:\" << call->error().message();\n            // 这里返回旧的 groupname， 因为 model 中的数据还没更新，给一个新的是定位不到 model 的 index 来触发 datachanged\n            Q_EMIT updateGroupFailed(oldGroup);\n            return;\n        }\n\n        Q_EMIT updateGroupFinished(AccountsWorker::OperateType::Modify, call->isValid());\n    });\n}\n\nbool AccountsWorker::hasOpenSecurity()\n{\n    const auto &value = m_securityInter->Status();\n    if (value.isEmpty()) {\n        qWarning() << m_securityInter->lastError();\n        return false;\n    }\n    if (value == \"open\")\n        return true;\n    return false;\n}\n\nSecurityLever AccountsWorker::getSecUserLeverbyname(QString userName)\n{\n    std::tuple<QString, QString> result = m_securityInter->GetSEUserByName(userName);\n    const auto &value = std::get<0>(result);\n    if (value.isEmpty()) {\n        qWarning() << m_securityInter->lastError();\n        return SecurityLever::Standard;\n    }\n\n    if (value == QStringLiteral(\"sysadm_u\")) {\n        return SecurityLever::Sysadm;\n    }\n    if (value == QStringLiteral(\"secadm_u\")) {\n        return SecurityLever::Secadm;\n    }\n    if (value == QStringLiteral(\"audadm_u\")) {\n        return SecurityLever::Audadm;\n    }\n    if (value == QStringLiteral(\"auditadm_u\")) {\n        return SecurityLever::Auditadm;\n    }\n\n    return SecurityLever::Standard;\n}\n\nvoid AccountsWorker::checkPwdLimitLevel(int level)\n{\n    // 密码校验失败并且安全中心密码安全等级不为低，弹出跳转到安全中心的对话框，低、中、高等级分别对应的值为1、2、3\n    QDBusInterface interface(QStringLiteral(\"com.deepin.defender.daemonservice\"),\n                             QStringLiteral(\"/com/deepin/defender/daemonservice\"),\n                             QStringLiteral(\"com.deepin.defender.daemonservice\"));\n    if (!interface.isValid()) {\n        return;\n    }\n    QDBusReply<int> pwdLimitLevel = interface.call(\"GetPwdLimitLevel\");\n    if (pwdLimitLevel.error().type() == QDBusError::NoError && pwdLimitLevel >= level) {\n        QDBusReply<QString> errorTips = interface.call(\"GetPwdError\");\n        if (!errorTips.value().isEmpty()) {\n            Q_EMIT showSafetyPage(errorTips);\n        }\n    }\n}\n\nvoid AccountsWorker::showDefender()\n{\n    qDebug() << \"showDefender call.....\";\n    QDBusPendingCall call = DDBusSender()\n            .service(\"com.deepin.defender.hmiscreen\")\n            .interface(\"com.deepin.defender.hmiscreen\")\n            .path(\"/com/deepin/defender/hmiscreen\")\n            .method(QString(\"ShowPage\"))\n            .arg(QString(\"securitytools\"))\n            .arg(QString(\"login-safety\"))\n            .call();\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    watcher->waitForFinished();\n    watcher->deleteLater();\n}\n\nvoid AccountsWorker::setGroups(User *user, const QStringList &usrGroups)\n{\n    UserDBusProxy *userInter = m_userInters[user];\n    Q_ASSERT(userInter);\n\n    userInter->SetGroups(usrGroups);\n}\n\nvoid AccountsWorker::active()\n{\n    for (auto it(m_userInters.cbegin()); it != m_userInters.cend(); ++it) {\n        it.key()->setName(it.value()->property(\"UserName\").toString());\n        it.key()->setAutoLogin(it.value()->automaticLogin());\n        it.key()->setNopasswdLogin(it.value()->noPasswdLogin());\n        it.key()->setUserType(it.value()->accountType());\n        it.key()->setAvatars(it.value()->iconList());\n        it.key()->setGroups(it.value()->groups());\n        it.key()->setCurrentAvatar(it.value()->iconFile());\n        it.key()->setCreatedTime(it.value()->createdTime());\n        it.key()->setGid(it.value()->gid());\n        it.key()->setFullname(it.value()->fullName());\n        it.key()->setIsCurrentUser(it.value()->property(\"UserName\").toString() == m_currentUserName);\n        it.key()->setId(it.value()->path());\n    }\n}\n\nQString AccountsWorker::getCurrentUserName()\n{\n    return m_currentUserName;\n}\n\nQDBusPendingReply<bool, QString, int> AccountsWorker::isUsernameValid(const QString &name)\n{\n    QDBusPendingReply<bool, QString, int> reply = m_accountsInter->IsUsernameValid(name);\n    reply.waitForFinished();\n    return reply;\n}\n\nvoid AccountsWorker::randomUserIcon(User *user)\n{\n    QDBusPendingCall call = m_accountsInter->RandUserIcon();\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, [=] {\n        if (!call.isError()) {\n            QDBusPendingReply<QString> reply = call.reply();\n            user->setCurrentAvatar(reply.value());\n        }\n        watcher->deleteLater();\n    });\n}\n\nvoid AccountsWorker::createAccount(const User *user)\n{\n    qDebug() << \"create account\";\n\n    QFutureWatcher<CreationResult *> *watcher = new QFutureWatcher<CreationResult *>(this);\n    connect(watcher, &QFutureWatcher<CreationResult *>::finished, [this, watcher, user] {\n        CreationResult *result = watcher->result();\n        Q_EMIT accountCreationFinished(result);\n        Q_EMIT requestMainWindowEnabled(true);\n        watcher->deleteLater();\n    });\n\n    QFuture<CreationResult *> future = QtConcurrent::run(&AccountsWorker::createAccountInternal, this, user);\n    Q_EMIT requestMainWindowEnabled(false);\n    watcher->setFuture(future);\n}\n\nvoid AccountsWorker::updateGroupinfo()\n{\n    m_userModel->setAllGroups(m_accountsInter->GetGroups());\n}\n\nvoid AccountsWorker::setAvatar(User *user, const QString &iconPath)\n{\n    qDebug() << \"set account avatar\";\n    UserDBusProxy *ui = m_userInters[user];\n    Q_ASSERT(ui);\n\n    ui->SetIconFile(iconPath);\n\n    const QString appCacheDir = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);\n    if (!appCacheDir.isEmpty()) {\n        const QString avatarsDir = appCacheDir + QDir::separator() + \"avatars\";\n        QDir().mkpath(avatarsDir);\n\n        const QString markerFile = avatarsDir + QDir::separator() + \"current\";\n        const QString absIcon = QFileInfo(iconPath).absoluteFilePath();\n        if (absIcon.startsWith(avatarsDir + QDir::separator())) {\n            const QString fileName = QFileInfo(absIcon).fileName();\n            QSaveFile save(markerFile);\n            if (save.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text)) {\n                save.write(fileName.toUtf8());\n                save.commit();\n            }\n        } else {\n            QFile f(markerFile);\n            if (f.exists()) {\n                if (f.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text)) {\n                    f.close();\n                }\n            }\n        }\n    }\n}\n\nvoid AccountsWorker::setFullname(User *user, const QString &fullname)\n{\n   qInfo() << \"fullname\" << fullname;\n\n    UserDBusProxy *ui = m_userInters[user];\n    Q_ASSERT(ui);\n\n    QDBusPendingCall call = ui->SetFullName(fullname);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            Q_EMIT user->fullnameChanged(user->fullname());\n        } else {\n            Q_EMIT accountFullNameChangeFinished();\n        }\n        watcher->deleteLater();\n    });\n}\n\nvoid AccountsWorker::deleteAccount(User *user, const bool deleteHome)\n{\n    QDBusPendingCall call = m_accountsInter->DeleteUser(user->name(), deleteHome);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [this, user] (QDBusPendingCallWatcher* call) {\n        Q_EMIT requestMainWindowEnabled(true);\n        if (call->isError()) {\n            qDebug() << Q_FUNC_INFO << call->error().message();\n            Q_EMIT m_userModel->isCancelChanged();\n        } else {\n            if (!m_userInters.contains(user)) {\n                call->deleteLater();\n                return;\n            }\n            Q_EMIT m_userModel->deleteUserSuccess();\n            removeUser(m_userInters.value(user)->path());\n            getAllGroups();\n        }\n        call->deleteLater();\n    });\n    Q_EMIT requestMainWindowEnabled(false);\n}\n\nvoid AccountsWorker::setAutoLogin(User *user, const bool autoLogin)\n{\n    UserDBusProxy *ui = m_userInters[user];\n    Q_ASSERT(ui);\n\n    QDBusPendingCall call = ui->SetAutomaticLogin(autoLogin);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            Q_EMIT user->autoLoginChanged(user->autoLogin());\n        }\n        watcher->deleteLater();\n    });\n}\n\nvoid AccountsWorker::setQuickLogin(User *user, const bool quickLogin)\n{\n    UserDBusProxy *ui = m_userInters[user];\n    Q_ASSERT(ui);\n\n    QDBusPendingCall call = ui->SetQuickLogin(quickLogin);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            Q_EMIT user->quickLoginChanged(user->quickLogin());\n        }\n        watcher->deleteLater();\n    });\n}\n\n//切换账户权限\nvoid AccountsWorker::setAdministrator(User *user, const bool asAdministrator)\n{\n    UserDBusProxy *ui = m_userInters[user];\n    Q_ASSERT(ui);\n\n    // because this operate need root permission, we must wait for finished and refersh result\n    Q_EMIT requestMainWindowEnabled(false);\n\n    QStringList lstGroups = ui->groups();\n    if(!asAdministrator)\n        lstGroups.removeOne(\"sudo\");\n    else\n        lstGroups.append(\"sudo\");\n\n    QDBusPendingCall call = ui->SetGroups(lstGroups);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            Q_EMIT user->userTypeChanged(user->userType());\n        }\n        Q_EMIT requestMainWindowEnabled(true);\n        watcher->deleteLater();\n    });\n}\n\nvoid AccountsWorker::loadUserList()\n{\n    onUserListChanged(m_accountsInter->userList());\n}\n\nvoid AccountsWorker::onUserListChanged(const QStringList &userList)\n{\n    for (const QString &path : userList) {\n        if (!m_userModel->contains(path)) {\n            addUser(path);\n        }\n    }\n}\n\nvoid AccountsWorker::onGroupListChanged(const QStringList &groupList)\n{\n    if (m_userModel)\n        m_userModel->setAllGroups(groupList);\n}\n\nvoid AccountsWorker::setPassword(User *user, const QString &oldpwd, const QString &passwd, const QString &repeatPasswd, const bool needResult)\n{\n    QProcess process;\n    QProcessEnvironment env = QProcessEnvironment::systemEnvironment();\n    env.insert(\"LC_ALL\", \"C\");\n    process.setProcessEnvironment(env);\n    process.setProcessChannelMode(QProcess::MergedChannels);\n\n    process.start(\"/bin/bash\", QStringList() << \"-c\" << QString(\"passwd\"));\n    if (user->passwordStatus() == NO_PASSWORD) {\n        process.write(QString(\"%1\\n%2\\n\").arg(passwd).arg(repeatPasswd).toLatin1());\n    } else {\n        process.write(QString(\"%1\\n%2\\n%3\").arg(oldpwd).arg(passwd).arg(repeatPasswd).toLatin1());\n    }\n\n    process.closeWriteChannel();\n    process.waitForFinished();\n\n    if (needResult) {\n        // process.exitCode() = 0 表示密码修改成功\n        int exitCode = process.exitCode();\n        const QString& outputTxt = process.readAll();\n        Q_EMIT user->passwordModifyFinished(exitCode, outputTxt);\n    }\n}\n\nvoid AccountsWorker::resetPassword(User *user, const QString &password)\n{\n    auto reply = m_userInters.value(user)->SetPassword(cryptUserPassword(password));\n    reply.waitForFinished();\n\n    Q_EMIT user->passwordResetFinished(reply.error().message());\n}\n\nvoid AccountsWorker::deleteUserIcon(User *user, const QString &iconPath)\n{\n    Q_UNUSED(user)\n    const QString absPath = QFileInfo(QUrl::fromUserInput(iconPath).toLocalFile()).absoluteFilePath();\n    const QString appCacheDir = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);\n    if (!appCacheDir.isEmpty()) {\n        const QString avatarsDir = appCacheDir + QDir::separator() + \"avatars\" + QDir::separator();\n        if (absPath.startsWith(avatarsDir)) {\n            QFile::remove(absPath);\n        }\n    }\n\n    if (!appCacheDir.isEmpty()) {\n        const QString avatarsDir = appCacheDir + QDir::separator() + \"avatars\";\n        const QString markerFile = avatarsDir + QDir::separator() + \"current\";\n        QFile mf(markerFile);\n        if (mf.exists() && mf.open(QIODevice::ReadOnly | QIODevice::Text)) {\n            const QByteArray content = mf.readAll();\n            mf.close();\n            const QString fileName = QFileInfo(iconPath).fileName();\n            if (!content.isEmpty() && QString::fromUtf8(content).trimmed() == fileName) {\n                if (mf.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text)) {\n                    mf.close();\n                }\n            }\n        }\n    }\n}\n\nvoid AccountsWorker::addUser(const QString &userPath)\n{\n    if (userPath.contains(\"User0\", Qt::CaseInsensitive) || m_userModel->contains(userPath))\n        return;\n\n    if(!userPath.contains(\"/org/deepin/dde/Accounts1\"))\n        return;\n\n    UserDBusProxy *userInter = new UserDBusProxy(userPath, this);\n    User *user = new User(this);\n\n    connect(userInter, &UserDBusProxy::UserNameChanged, user, [=](const QString &name) {\n        user->setName(name);\n        user->setSecurityLever(getSecUserLeverbyname(name));\n        user->setOnline(m_onlineUsers.contains(name));\n        user->setIsCurrentUser(name == m_currentUserName);\n        checkADUser();\n    });\n\n    connect(userInter, &UserDBusProxy::AutomaticLoginChanged, user, &User::setAutoLogin);\n    connect(userInter, &UserDBusProxy::QuickLoginChanged, user, &User::setQuickLogin);\n    connect(userInter, &UserDBusProxy::IconListChanged, user, &User::setAvatars);\n    connect(userInter, &UserDBusProxy::IconFileChanged, user, &User::setCurrentAvatar);\n    connect(userInter, &UserDBusProxy::FullNameChanged, user, &User::setFullname);\n    connect(userInter, &UserDBusProxy::NoPasswdLoginChanged, user, &User::setNopasswdLogin);\n    connect(userInter, &UserDBusProxy::PasswordStatusChanged, user, &User::setPasswordStatus);\n    connect(userInter, &UserDBusProxy::CreatedTimeChanged, user, &User::setCreatedTime);\n    connect(userInter, &UserDBusProxy::GroupsChanged, user, &User::setGroups);\n    connect(userInter, &UserDBusProxy::AccountTypeChanged, user, &User::setUserType);\n    connect(userInter, &UserDBusProxy::MaxPasswordAgeChanged, user, &User::setPasswordAge);\n    connect(userInter, &UserDBusProxy::GidChanged, user, &User::setGid);\n\n    // 这里直接赋值的话, 由于请求是异步的, 所以一开始会被初始化成乱码,\n    // 然后数据正常了以后会额外产生一次变化信号\n    // 对于计算当前有多少个管理员有干扰.\n    userInter->iconList();\n    userInter->groups();\n    userInter->iconFile();\n    userInter->noPasswdLogin();\n    userInter->passwordStatus();\n    userInter->createdTime();\n    userInter->accountType();\n    userInter->maxPasswordAge();\n    userInter->IsPasswordExpired();\n    userInter->gid();\n\n    user->setId(userPath);\n    user->setName(userInter->userName());\n    user->setFullname(userInter->fullName());\n    user->setAutoLogin(userInter->automaticLogin());\n    user->setQuickLogin(userInter->quickLogin());\n    user->setAvatars(userInter->iconList());\n    user->setCurrentAvatar(userInter->iconFile());\n    user->setNopasswdLogin(userInter->noPasswdLogin());\n    user->setPasswordStatus(userInter->passwordStatus());\n    user->setCreatedTime(userInter->createdTime());\n    user->setGroups(userInter->groups());\n    user->setUserType(userInter->accountType());\n    user->setPasswordAge(userInter->maxPasswordAge());\n    user->setGid(userInter->gid());\n\n    m_userInters[user] = userInter;\n    m_userModel->addUser(userPath, user);\n}\n\nvoid AccountsWorker::removeUser(const QString &userPath)\n{\n    for (UserDBusProxy *userInter : m_userInters.values()) {\n        if (userInter->path() == userPath) {\n            User *user = m_userInters.key(userInter);\n            user->deleteLater();\n\n            m_userInters.remove(user);\n            m_userModel->removeUser(userPath);\n\n            return;\n        }\n    }\n}\n\nvoid AccountsWorker::setNopasswdLogin(User *user, const bool nopasswdLogin)\n{\n    UserDBusProxy *userInter = m_userInters[user];\n    Q_ASSERT(userInter);\n\n    QDBusPendingCall call = userInter->EnableNoPasswdLogin(nopasswdLogin);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            Q_EMIT user->nopasswdLoginChanged(user->nopasswdLogin());\n        }\n        QProcess restartLock;\n        QStringList restartLockCommand = QStringList { \"--user\", \"restart\", \"dde-lock.service\" };\n        restartLock.start(\"systemctl\", restartLockCommand);\n        restartLock.waitForFinished(-1);\n        watcher->deleteLater();\n    });\n}\n\nvoid AccountsWorker::setMaxPasswordAge(User *user, const int maxAge)\n{\n    UserDBusProxy *userInter = m_userInters[user];\n    Q_ASSERT(userInter);\n\n    QDBusPendingCall call = userInter->SetMaxPasswordAge(maxAge);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            Q_EMIT user->passwordAgeChanged(user->passwordAge());\n        }\n        watcher->deleteLater();\n    });\n}\n\nvoid AccountsWorker::refreshADDomain()\n{\n    QProcess *process = new QProcess(this);\n    process->start(\"/opt/pbis/bin/enum-users\", QStringList());\n\n    connect(process, &QProcess::readyReadStandardOutput, this, [=] {\n        QRegularExpression re(\"Name:\\\\s+(\\\\w+)\");\n        QRegularExpressionMatch match = re.match(process->readAll());\n        m_userModel->setIsJoinADDomain(match.hasMatch());\n    });\n\n    connect(process, static_cast<void (QProcess::*)(int, QProcess::ExitStatus)>(&QProcess::finished), process, &QProcess::deleteLater);\n}\n\nvoid AccountsWorker::ADDomainHandle(const QString &server, const QString &admin, const QString &password)\n{\n    const bool isJoin = m_userModel->isJoinADDomain();\n    int exitCode = 0;\n    if (isJoin) {\n        exitCode = QProcess::execute(\"pkexec\", QStringList() << \"/opt/pbis/bin/domainjoin-cli\"\n                                                             << \"leave\"\n                                                             << \"--disable\"\n                                                             << \"ssh\");\n    } else {\n        // for safety, restart lwsmd service before join AD Domain\n        QProcess::execute(\"pkexec\", QStringList() << \"/bin/systemctl\"\n                                                  << \"restart\"\n                                                  << \"lwsmd\");\n        exitCode = QProcess::execute(\"pkexec\", QStringList() << \"/opt/pbis/bin/domainjoin-cli\"\n                                                             << \"join\"\n                                                             << \"--disable\"\n                                                             << \"ssh\" << server << admin << password);\n    }\n\n    QString message;\n\n    if (!exitCode) {\n        message = isJoin ? tr(\"Your host was removed from the domain server successfully\")\n                         : tr(\"Your host joins the domain server successfully\");\n\n        // Additional operation, need to initialize the user's settings\n        if (!isJoin) {\n            QProcess::execute(\"pkexec\", QStringList() << \"/opt/pbis/bin/config\"\n                                                      << \"UserDomainPrefix\"\n                                                      << \"ADS\");\n            QProcess::execute(\"pkexec\", QStringList() << \"/opt/pbis/bin/config\"\n                                                      << \"LoginShellTemplate\"\n                                                      << \"/bin/bash\");\n        }\n        // save config\n        QFile file(\"/etc/deepin/dde-session-ui.conf\");\n        QFile tmpFile(\"/tmp/.dde-session-ui.conf\");\n\n        if (file.exists() && file.open(QIODevice::Text | QIODevice::ReadOnly)) {\n            qDebug() << file.copy(\"/tmp/.dde-session-ui.conf\");\n        }\n        if (tmpFile.open(QIODevice::Text | QIODevice::ReadWrite)) {\n            QSettings setting(\"/tmp/.dde-session-ui.conf\", QSettings::IniFormat);\n            setting.setValue(\"loginPromptInput\", !isJoin);\n            setting.sync();\n            QProcess::execute(\"pkexec\", QStringList() << \"cp\"\n                                                      << \"/tmp/.dde-session-ui.conf\"\n                                                      << \"/etc/deepin/dde-session-ui.conf\");\n            tmpFile.remove();\n        }\n    } else {\n        message = isJoin ? tr(\"Your host failed to leave the domain server\")\n                         : tr(\"Your host failed to join the domain server\");\n    }\n\n    DDBusSender()\n        .service(\"org.freedesktop.Notifications\")\n        .path(\"/org/freedesktop/Notifications\")\n        .interface(\"org.freedesktop.Notifications\")\n        .method(\"Notify\")\n        .arg(QString())\n        .arg((uint)QDateTime::currentMSecsSinceEpoch())\n        .arg(exitCode ? QStringLiteral(\"dialog-warning\") : QStringLiteral(\"dialog-ok\"))\n        .arg(tr(\"AD domain settings\"))\n        .arg(message)\n        .arg(QStringList())\n        .arg(QVariantMap())\n        .arg((int)0)\n        .call();\n\n    refreshADDomain();\n}\n\nvoid AccountsWorker::updateUserOnlineStatus(const QList<QDBusObjectPath> &paths)\n{\n    m_onlineUsers.clear();\n    m_userModel->SetOnlineUsers(QStringList());\n\n    for (const QDBusObjectPath &path : paths) {\n        QDBusInterface sessionInter(\"org.freedesktop.DisplayManager\",\n                                    path.path(),\n                                    \"org.freedesktop.DisplayManager.Session\",\n                                    QDBusConnection::systemBus());\n\n        m_onlineUsers << qvariant_cast<QString>(sessionInter.property(\"UserName\"));\n    }\n\n    for (User *user : m_userModel->userList()) {\n        user->setOnline(m_onlineUsers.contains(user->name()));\n    }\n\n    m_userModel->SetOnlineUsers(m_onlineUsers);\n\n    checkADUser();\n}\n\nvoid AccountsWorker::checkADUser()\n{\n    // AD User is not in native user list, but session list have it.\n    bool isADUser = false;\n\n    QStringList userList;\n\n    for (User *user : m_userModel->userList()) {\n        userList << user->name();\n    }\n\n    for (const QString &u : m_onlineUsers) {\n        if (!userList.contains(u)) {\n            isADUser = true;\n            break;\n        }\n    }\n\n    m_userModel->setADUserLogind(isADUser);\n}\n\nCreationResult *AccountsWorker::createAccountInternal(const User *user)\n{\n    CreationResult *result = new CreationResult;\n\n    // validate username\n    QDBusPendingReply<bool, QString, int> reply = m_accountsInter->IsUsernameValid(user->name());\n    reply.waitForFinished();\n    if (reply.isError()) {\n        result->setType(CreationResult::UserNameError);\n        result->setMessage(reply.error().message());\n\n        return result;\n    }\n    bool validation = reply.argumentAt(0).toBool();\n    if (!validation) {\n        result->setType(CreationResult::UserNameError);\n        result->setMessage(dgettext(\"dde-daemon\", reply.argumentAt(1).toString().toUtf8().data()));\n        return result;\n    }\n\n    // validate password\n    if (user->password() != user->repeatPassword()) {\n        result->setType(CreationResult::PasswordMatchError);\n        result->setMessage(tr(\"Password not match\"));\n        return result;\n    }\n\n    Authority::Result authenticationResult;\n    authenticationResult = Authority::instance()->checkAuthorizationSync(\"org.deepin.dde.accounts.user-administration\", UnixProcessSubject(getpid()),\n                                                           Authority::AllowUserInteraction);\n\n    if (Authority::Result::Yes != authenticationResult) {\n        result->setType(CreationResult::Canceled);\n        return result;\n    }\n\n    // default FullName is empty string\n    QDBusObjectPath path;\n    QDBusPendingReply<QDBusObjectPath> createReply = m_accountsInter->CreateUser(user->name(), user->fullname(), user->userType());\n    createReply.waitForFinished();\n    if (createReply.isError()) {\n        /* 这里由后端保证出错时一定有错误信息返回，如果没有错误信息，就默认用户在认证时点了取消 */\n        result->setType(createReply.error().message().isEmpty() ? CreationResult::Canceled : CreationResult::UnknownError);\n        result->setMessage(createReply.error().message());\n        return result;\n    } else {\n        path = createReply.argumentAt<0>();\n    }\n    const QString userPath = path.path();\n\n    UserDBusProxy *userDBus = new UserDBusProxy(userPath, this);\n    if (!userDBus->interface()->isValid()) {\n        result->setType(CreationResult::UnknownError);\n        result->setMessage(\"user dbus is still not valid.\");\n\n        return result;\n    }\n\n    //TODO(hualet): better to check all the call results.\n    bool sifResult = !userDBus->SetIconFile(user->currentAvatar()).isError();\n    bool spResult = !userDBus->SetPassword(cryptUserPassword(user->password())).isError();\n    bool groupResult = true;\n    bool passwordHintResult = true;\n    if (DSysInfo::UosServer == DSysInfo::uosType() && !user->groups().isEmpty()) {\n        groupResult = !userDBus->SetGroups(user->groups()).isError();\n    }\n    passwordHintResult = !userDBus->SetPasswordHint(user->passwordHint()).isError();\n\n    if (!sifResult || !spResult || !groupResult || !passwordHintResult) {\n        result->setType(CreationResult::UnknownError);\n        if (!sifResult)\n            result->setMessage(\"set icon file for new created user failed.\");\n        if (!spResult)\n            result->setMessage(\"set password for new created user failed\");\n        if (!groupResult)\n            result->setMessage(\"set group for new created user failed\");\n        return result;\n    }\n\n    return result;\n}\n\nQString AccountsWorker::tryEncryptPassword(const QString &password, const QString &algorithm)\n{\n    // 获取算法对应的 salt 前缀\n    QString saltPrefix = getAlgorithmPrefix(algorithm);\n    if (saltPrefix.isEmpty()) {\n        return QString();  // 不支持的算法\n    }\n    \n    // 使用 crypt_gensalt_rn 生成 salt setting（线程安全版本）\n    // 这个函数会为每种算法自动生成正确格式的 salt\n    char output[CRYPT_GENSALT_OUTPUT_SIZE];\n    char *setting = crypt_gensalt_rn(saltPrefix.toLatin1().data(), 0, nullptr, 0, \n                                     output, sizeof(output));\n    \n    if (setting == nullptr || setting[0] == '*') {\n        qWarning() << \"Failed to generate salt for algorithm:\" << algorithm\n                   << \"(crypt_gensalt_rn returned\" << (setting == nullptr ? \"nullptr\" : \"invalid setting\")\n                   << \", errno:\" << errno << \")\";\n        return QString();\n    }\n\n    // 调用 crypt 函数进行加密\n    char *result = crypt(password.toUtf8().data(), setting);\n    \n    // 检查加密是否成功\n    // 根据 man crypt 文档：\n    // 1. 返回 nullptr 表示失败\n    // 2. 返回以 '*' 开头的字符串也表示失败（无效哈希）\n    if (result == nullptr || result[0] == '*') {\n        qWarning() << \"Password encryption failed with algorithm:\" << algorithm \n                   << \"(crypt returned\" << (result == nullptr ? \"nullptr\" : \"invalid hash starting with '*'\")\n                   << \", errno:\" << errno << \")\";\n        return QString();  // 加密失败\n    }\n    \n    qDebug() << \"Password encryption succeeded with algorithm:\" << algorithm;\n    return QString(result);\n}\n\nQString AccountsWorker::cryptUserPassword(const QString &password)\n{\n    // 从 dconfig 获取加密算法，如果获取失败或不存在则默认为 sm3\n    QString algorithm = \"sm3\";\n    if (m_accountCfg && m_accountCfg->isValid()) {\n        algorithm = m_accountCfg->value(\"passwordEncryptionAlgorithm\", \"sm3\").toString();\n        if (algorithm.isEmpty()) {\n            algorithm = \"sm3\";\n        }\n    }\n\n    // 尝试使用配置的算法加密\n    QString encrypted = tryEncryptPassword(password, algorithm);\n    if (!encrypted.isEmpty()) {\n        return encrypted;\n    }\n\n    // 如果配置的算法失败，按优先级顺序遍历所有支持的算法重试\n    qWarning() << \"Password encryption failed with configured algorithm:\" << algorithm \n               << \", trying fallback algorithms...\";\n    \n    for (const auto &pair : kPasswordAlgorithmPrefixes) {\n        const QString &fallbackAlg = pair.first;\n        \n        // 跳过已经尝试过的算法\n        if (fallbackAlg.toLower() == algorithm.toLower()) {\n            continue;\n        }\n        \n        encrypted = tryEncryptPassword(password, fallbackAlg);\n        if (!encrypted.isEmpty()) {\n            qWarning() << \"Password encryption succeeded with fallback algorithm:\" << fallbackAlg;\n            return encrypted;\n        }\n    }\n    \n    // 所有算法都失败\n    qCritical() << \"Password encryption failed with all supported algorithms!\";\n    return QString();\n}\n\nBindCheckResult AccountsWorker::checkLocalBind(const QString &uosid, const QString &uuid)\n{\n    BindCheckResult result;\n    const auto &ret = m_syncInter->LocalBindCheck(uosid, uuid);\n    if (!ret.isEmpty())\n        result.ubid = ret;\n    else\n        result.error = m_syncInter->lastError();\n    return result;\n}\n\nvoid AccountsWorker::playSystemSound(int soundType)\n{\n    DDesktopServices::playSystemSoundEffect(static_cast<DDesktopServices::SystemSoundEffect>(soundType));\n}\n\nQString AccountsWorker::saveCustomAvatar(const QString &tempFile, const QString &originalFile)\n{\n    const QString appCacheDir = QStandardPaths::writableLocation(QStandardPaths::CacheLocation);\n    if (appCacheDir.isEmpty()) {\n        return QString();\n    }\n\n    const QString avatarsDir = appCacheDir + QDir::separator() + \"avatars\";\n    QDir().mkpath(avatarsDir);\n\n    QString targetFile;\n    bool replacingExisting = false;\n    if (!originalFile.isEmpty()) {\n        QFileInfo origInfo(originalFile);\n        const QString origAbs = QFileInfo(QUrl(originalFile).toLocalFile()).absoluteFilePath();\n        if (origAbs.startsWith(avatarsDir + QDir::separator())) {\n            targetFile = avatarsDir + QDir::separator() + QFileInfo(origAbs).fileName();\n            replacingExisting = true;\n        }\n    }\n    if (targetFile.isEmpty()) {\n        const QString baseName = QString::number(QDateTime::currentMSecsSinceEpoch());\n        targetFile = avatarsDir + QDir::separator() + baseName + \".png\";\n    }\n\n    QStringList files = QDir(avatarsDir).entryList(QStringList() << \"*.png\" << \"*.jpg\" << \"*.jpeg\" << \"*.bmp\",\n                                                   QDir::Files, QDir::Time /* newest first */);\n    if (files.size() == 4 && !replacingExisting) {\n        QString currentName;\n        QFile mf(avatarsDir + QDir::separator() + \"current\");\n        if (mf.exists() && mf.open(QIODevice::ReadOnly | QIODevice::Text)) {\n            currentName = QString::fromUtf8(mf.readAll()).trimmed();\n            mf.close();\n        }\n        int oldestIndex = files.size() - 1;\n        int candidateIndex = oldestIndex;\n        if (!currentName.isEmpty() && files.at(oldestIndex) == currentName && files.size() >= 2) {\n            candidateIndex = files.size() - 2;\n        }\n        const QString toDelete = files.at(candidateIndex);\n        QFile::remove(avatarsDir + QDir::separator() + toDelete);\n    }\n\n    const QString tempAbs = tempFile.startsWith(\"file:\") ? QUrl(tempFile).toLocalFile() : QFileInfo(tempFile).absoluteFilePath();\n    if (QFileInfo(tempAbs).absoluteFilePath() == QFileInfo(targetFile).absoluteFilePath()) {\n        return QUrl::fromLocalFile(targetFile).toString();\n    }\n\n    if (QFile::exists(targetFile)) {\n        QFile::remove(targetFile);\n    }\n    bool ok = QFile::copy(tempAbs, targetFile);\n    if (!ok) {\n        ok = QFile::rename(tempAbs, targetFile);\n        if (!ok) {\n            return QString();\n        }\n    }\n\n    if (replacingExisting) {\n        const QString markerFile = avatarsDir + QDir::separator() + \"current\";\n        QFile mf(markerFile);\n        if (mf.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate)) {\n            const QString fileName = QFileInfo(targetFile).fileName();\n            mf.write(fileName.toUtf8());\n            mf.close();\n        }\n    }\n\n    return QUrl::fromLocalFile(targetFile).toString();\n}\n"
  },
  {
    "path": "src/plugin-accounts/operation/accountsworker.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef ACCOUNTSWORKER_H\n#define ACCOUNTSWORKER_H\n\n#include \"usermodel.h\"\n#include \"creationresult.h\"\n\n#include <QObject>\n#include <QDBusPendingReply>\n#include <DConfig>\n\n#define SECURITY_QUESTIONS_ERROR_COUNT 1\n\nclass AccountsDBusProxy;\nclass UserDBusProxy;\nclass SyncDBusProxy;\nclass SecurityDBusProxy;\n\nnamespace dccV25 {\n\nclass User;\n\nstruct BindCheckResult {\n    QString ubid = \"\";\n    QString error = \"\";\n};\n\nclass AccountsWorker : public QObject\n{\n    Q_OBJECT\n\npublic:\n    enum class OperateType {\n        Delete,\n        Create,\n        Modify\n    };\n\n    explicit AccountsWorker(UserModel * userList, QObject *parent = nullptr);\n\n    Q_INVOKABLE void active();\n    QString getCurrentUserName();\n    void updateGroupinfo();\n    QDBusPendingReply<bool, QString, int> isUsernameValid(const QString &name);\n    QString saveCustomAvatar(const QString &tempFile, const QString &originalFile = QString());\n\nQ_SIGNALS:\n    void accountCreationFinished(CreationResult *result) const;\n    void accountFullNameChangeFinished() const;\n    void requestMainWindowEnabled(const bool isEnabled) const;\n    void localBindUbid(const QString &ubid);\n    void localBindError(const QString &error);\n    void showSafetyPage(const QString &errorTips);\n    void updateGroupFinished(OperateType operation, bool successfully, const QString& groupName = QString());\n    void updateGroupFailed(const QString& groupName = QString());\n    void createGroupFailed(const QString& groupName = QString());\npublic Q_SLOTS:\n    void randomUserIcon(User *user);\n    void createAccount(const User *user);\n\n    void setAvatar(User *user, const QString &iconPath);\n    void setFullname(User *user, const QString &fullname);\n    void deleteAccount(User *user, const bool deleteHome);\n    void setAutoLogin(User *user, const bool autoLogin);\n    void setQuickLogin(User *user, const bool quickLogin);\n    void setAdministrator(User *user, const bool asAdministrator);\n    void onUserListChanged(const QStringList &userList);\n    void onGroupListChanged(const QStringList &groupList);\n    void setPassword(User *user, const QString &oldpwd, const QString &passwd, const QString &repeatPasswd,  const bool needResule = true);\n    void resetPassword(User *user, const QString &password);\n    void deleteUserIcon(User *user, const QString &iconPath);\n    void setNopasswdLogin(User *user, const bool nopasswdLogin);\n    void setMaxPasswordAge(User *user, const int maxAge);\n    void loadUserList();\n    void getUOSID(QString &uosid);\n    void getUUID(QString &uuid);\n    void localBindCheck(User *user, const QString &uosid, const QString &uuid);\n    void startResetPasswordExec(User *user);\n    void asyncSecurityQuestionsCheck(User *user);\n    void refreshADDomain();\n    void ADDomainHandle(const QString &server, const QString &admin, const QString &password);\n    void addUser(const QString &userPath);\n    void removeUser(const QString &userPath);\n    void setGroups(User *user, const QStringList &usrGroups);\n    void setPasswordHint(User *user, const QString &passwordHint);\n    void setSecurityQuestions(User *user, const QMap<int, QByteArray> &securityQuestions);\n    void deleteGroup(const QString &group);\n    void createGroup(const QString &group, uint32_t gid, bool isSystem);\n    void modifyGroup(const QString &oldGroup, const QString &newGroup, uint32_t gid);\n    void getGroupInfoByName(const QString &groupName, QString &resInfoJson);\n\n    bool hasOpenSecurity();\n    SecurityLever getSecUserLeverbyname(QString userName);\n    void checkPwdLimitLevel(int level);\n    void showDefender();\n    void playSystemSound(int soundType);\n\nprivate Q_SLOTS:\n    void updateUserOnlineStatus(const QList<QDBusObjectPath> &paths);\n    void getAllGroups();\n    void getAllGroupsResult(QDBusPendingCallWatcher *watch);\n    void getPresetGroups();\n    void getPresetGroupsResult(QDBusPendingCallWatcher *watch);\n    void checkADUser();\n\nprivate:\n    UserDBusProxy *userInter(const QString &userName) const;\n    CreationResult *createAccountInternal(const User *user);\n    QString cryptUserPassword(const QString &password);\n    QString tryEncryptPassword(const QString &password, const QString &algorithm);\n    BindCheckResult checkLocalBind(const QString &uosid, const QString &uuid);\n    QList<int> securityQuestionsCheck();\n\nprivate:\n    AccountsDBusProxy *m_accountsInter;\n    UserDBusProxy *m_userQInter;\n    SyncDBusProxy *m_syncInter;\n    SecurityDBusProxy *m_securityInter;\n    QMap<User *, UserDBusProxy *> m_userInters;\n    QString m_currentUserName;\n    QStringList m_onlineUsers;\n    UserModel *m_userModel;\n    Dtk::Core::DConfig *m_accountCfg;\n};\n\n}   // namespace dccV25\n\n#endif // ACCOUNTSWORKER_H\n"
  },
  {
    "path": "src/plugin-accounts/operation/avatarlistmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"avatarlistmodel.h\"\n#include \"user.h\"\n\nusing namespace dccV25;\n\nstatic QStringList g_avatarTypes {\n    \"icons/human/dimensional\",\n    \"icons/human/flat\",\n    \"icons/anmal\",\n    \"icons/emoji\",\n    \"icons/illustration\",\n    \"icons/local\"\n};\n\nAvatarTypesModel::AvatarTypesModel(QObject *)\n{\n\n}\n\nint AvatarTypesModel::rowCount(const QModelIndex &) const\n{\n    return g_avatarTypes.count();\n}\n\nQVariant AvatarTypesModel::data(const QModelIndex &index, int role) const\n{\n    if (!index.isValid() || index.row() >= g_avatarTypes.size())\n        return QVariant();\n\n    const QString &avatarType = g_avatarTypes.value(index.row());\n\n    QString section;\n    if (avatarType.contains(\"human/dimensional\")) {\n        section = tr(\"Dimensional\");\n    } else if (avatarType.contains(\"human/flat\")) {\n        section = tr(\"Flat\");\n    } else {\n        // none\n    }\n\n    switch (role) {\n    case Qt::DisplayRole:\n        return avatarType;\n    case SectionRole:\n        return section;\n    default:\n        break;\n    }\n\n    return QVariant();\n}\n\nQHash<int, QByteArray> AvatarTypesModel::roleNames() const\n{\n    auto names = QAbstractListModel::roleNames();\n    names[SectionRole] = \"section\";\n    return names;\n}\n\nAvatarListModel::AvatarListModel(User *user, QObject *parent)\n    : QAbstractListModel(parent)\n    , m_user(user)\n{\n}\n\nint AvatarListModel::rowCount(const QModelIndex &) const\n{\n    if (!m_user)\n        return 0;\n\n    return m_user->avatars().count();\n}\n\nQVariant AvatarListModel::data(const QModelIndex &index, int role) const\n{\n    if (!m_user)\n        return QVariant();\n\n    const auto &list = m_user->avatars();\n    if (!index.isValid() || index.row() >= list.size())\n        return QVariant();\n\n    const QString &iconUrl = list.value(index.row());\n\n    switch (role) {\n    case Qt::DisplayRole:\n        return iconUrl;\n    default:\n        break;\n    }\n\n    return QVariant();\n}\n"
  },
  {
    "path": "src/plugin-accounts/operation/avatarlistmodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef AVATARLISTMODEL_H\n#define AVATARLISTMODEL_H\n\n#include <QAbstractListModel>\nnamespace dccV25 {\nclass User;\nclass AvatarTypesModel : public QAbstractListModel\n{\n    Q_OBJECT\npublic:\n    explicit AvatarTypesModel(QObject *parent = nullptr);\n\n    enum AvatarRole {\n        SectionRole = Qt::UserRole + 1\n    };\n\n    // QAbstractItemModel interface\npublic:\n    virtual int rowCount(const QModelIndex &parent) const override;\n    virtual QVariant data(const QModelIndex &index, int role) const override;\n    virtual QHash<int, QByteArray> roleNames() const override;\n};\n\nclass AvatarListModel : public QAbstractListModel\n{\npublic:\n    explicit AvatarListModel(User *user, QObject *parent = nullptr);\n\n    void setUser(User *user) {\n        if (m_user == user)\n            return;\n\n        m_user = user;\n    }\n    // QAbstractItemModel interface\npublic:\n    virtual int rowCount(const QModelIndex &parent) const override;\n    virtual QVariant data(const QModelIndex &index, int role) const override;\n\nprotected:\n    User *m_user = nullptr;\n};\n\n}\n#endif // AVATARLISTMODEL_H\n"
  },
  {
    "path": "src/plugin-accounts/operation/creationresult.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"creationresult.h\"\n\n\nusing namespace dccV25;\n\nCreationResult::CreationResult(QObject *parent)\n    : CreationResult(NoError, QString(\"\"), parent)\n{\n\n}\n\nCreationResult::CreationResult(CreationResult::ResultType type, const QString &message, QObject *parent)\n    : QObject(parent)\n    , m_type(type)\n    , m_message(message)\n{\n\n}\n\nvoid CreationResult::setType(const ResultType &type)\n{\n    m_type = type;\n}\n\nvoid CreationResult::setMessage(const QString &message)\n{\n    m_message = message;\n}\n\n"
  },
  {
    "path": "src/plugin-accounts/operation/creationresult.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCC_ACCOUNTSS_CREATIONRESULT_H\n#define DCC_ACCOUNTSS_CREATIONRESULT_H\n\n#include <QObject>\n\nnamespace dccV25 {\n\nclass CreationResult : public QObject\n{\n    Q_OBJECT\npublic:\n    enum ResultType {\n        UserNameError,      // 用户名错误\n        PasswordError,      // 密码错误\n        PasswordMatchError, // 两次输入的密码不匹配\n        UnknownError,       // 未知错误\n        Canceled,           // 用户取消认证或关闭认证窗口\n        NoError\n    };\n    Q_ENUM(ResultType)\n\n    explicit CreationResult(QObject *parent = 0);\n    explicit CreationResult(ResultType type, const QString &message, QObject *parent = 0);\n\n    inline ResultType type() const { return m_type; }\n    void setType(const ResultType &type);\n\n    inline QString message() const { return m_message; }\n    void setMessage(const QString &message);\n\nprivate:\n    ResultType m_type;\n    QString m_message;\n};\n} // namespace dccV25\n\n#endif // DCC_ACCOUNTSS_CREATIONRESULT_H\n"
  },
  {
    "path": "src/plugin-accounts/operation/pwqualitymanager.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"pwqualitymanager.h\"\n#include <QMap>\n#include <DSysInfo>\n\nusing namespace dccV25;\nDCORE_USE_NAMESPACE\n\nPwqualityManager::PwqualityManager()\n    : m_passwordMinLen(0)\n    , m_passwordMaxLen(0)\n{\n}\n\nPwqualityManager *PwqualityManager::instance()\n{\n    static PwqualityManager pwquality;\n    return &pwquality;\n}\n\nPwqualityManager::ERROR_TYPE PwqualityManager::verifyPassword(const QString &user, const QString &password, CheckType checkType)\n{\n    switch (checkType) {\n    case PwqualityManager::Default: {\n        ERROR_TYPE error = deepin_pw_check(user.toLocal8Bit().data(), password.toLocal8Bit().data(), LEVEL_STRICT_CHECK, nullptr);\n\n        if (error == PW_ERR_PW_REPEAT) {\n            error = PW_NO_ERR;\n        }\n        return error;\n    }\n    case PwqualityManager::Grub2: {\n        // LEVEL_STRICT_CHECK?\n        ERROR_TYPE error = deepin_pw_check_grub2(user.toLocal8Bit().data(), password.toLocal8Bit().data(), LEVEL_STANDARD_CHECK, nullptr);\n\n        if (error == PW_ERR_PW_REPEAT) {\n            error = PW_NO_ERR;\n        }\n        return error;\n    }\n    }\n\n    return PW_NO_ERR;\n}\n\nPASSWORD_LEVEL_TYPE PwqualityManager::GetNewPassWdLevel(const QString &newPasswd)\n{\n    return get_new_passwd_strength_level(newPasswd.toLocal8Bit().data());\n}\n\nQString PwqualityManager::getErrorTips(PwqualityManager::ERROR_TYPE type, CheckType checkType)\n{\n    int passwordPalimdromeNum = (checkType == Default ? get_pw_palimdrome_num(LEVEL_STRICT_CHECK) : get_pw_palimdrome_num_grub2(LEVEL_STRICT_CHECK));\n    int passwordMonotoneCharacterNum = (checkType == Default ? get_pw_monotone_character_num(LEVEL_STRICT_CHECK) : get_pw_monotone_character_num_grub2(LEVEL_STRICT_CHECK));\n    int passwordConsecutiveSameCharacterNum = (checkType == Default ? get_pw_consecutive_same_character_num(LEVEL_STRICT_CHECK) : get_pw_consecutive_same_character_num_grub2(LEVEL_STRICT_CHECK));\n    m_passwordMinLen = (checkType == Default ? get_pw_min_length(LEVEL_STRICT_CHECK) : get_pw_min_length_grub2(LEVEL_STRICT_CHECK));\n    m_passwordMaxLen = (checkType == Default ? get_pw_max_length(LEVEL_STRICT_CHECK) : get_pw_max_length_grub2(LEVEL_STRICT_CHECK));\n\n    //通用校验规则\n    QMap<int, QString> PasswordFlagsStrMap = {\n        {PW_ERR_PASSWORD_EMPTY, tr(\"Password cannot be empty\")},\n        {PW_ERR_LENGTH_SHORT, tr(\"Password must have at least %1 characters\").arg(m_passwordMinLen)},\n        {PW_ERR_LENGTH_LONG, tr(\"Password must be no more than %1 characters\").arg(m_passwordMaxLen)},\n        {PW_ERR_CHARACTER_INVALID, tr(\"Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&*()-_+=|\\\\{}[]:\\\"'<>,.?/)\")},\n        {PW_ERR_PALINDROME, tr(\"No more than %1 palindrome characters please\").arg(passwordPalimdromeNum)},\n        {PW_ERR_PW_MONOTONE, tr(\"No more than %1 monotonic characters please\").arg(passwordMonotoneCharacterNum)},\n        {PW_ERR_PW_CONSECUTIVE_SAME, tr(\"No more than %1 repeating characters please\").arg(passwordConsecutiveSameCharacterNum)},\n        {PW_ERR_CHARACTER_TYPE_TOO_FEW, tr(\"At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.\").arg(get_pw_min_character_type(0))},\n    };\n\n    //服务器版校验规则\n    if (DSysInfo::UosServer == DSysInfo::uosType()) {\n        PasswordFlagsStrMap[PW_ERR_CHARACTER_INVALID] = tr(\"Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&*()-_+=|\\\\{}[]:\\\"'<>,.?/)\");\n        PasswordFlagsStrMap[PW_ERR_PALINDROME] = tr(\"Password must not contain more than 4 palindrome characters\");\n        PasswordFlagsStrMap[PW_ERR_WORD] = tr(\"Do not use common words and combinations as password\");\n        PasswordFlagsStrMap[PW_ERR_PW_MONOTONE] = tr(\"Create a strong password please\");\n        PasswordFlagsStrMap[PW_ERR_PW_CONSECUTIVE_SAME] = tr(\"Create a strong password please\");\n        PasswordFlagsStrMap[PW_ERR_PW_FIRST_UPPERM] = tr(\"Do not use common words and combinations as password\");\n    }\n\n    //规则校验以外的情况统一返回密码不符合安全要求\n    if (PasswordFlagsStrMap.value(type).isEmpty()) {\n        PasswordFlagsStrMap[type] = tr(\"It does not meet password rules\");\n    }\n\n    return PasswordFlagsStrMap.value(type);\n}\n"
  },
  {
    "path": "src/plugin-accounts/operation/pwqualitymanager.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DEEPIN_INSTALLER_PWQUALITY_MANAGER_H\n#define DEEPIN_INSTALLER_PWQUALITY_MANAGER_H\n\n#include <QObject>\n#include <QString>\n\n#include <deepin_pw_check.h>\n\nnamespace dccV25 {\nclass PwqualityManager : public QObject\n{\nQ_OBJECT\npublic:\n    typedef PW_ERROR_TYPE ERROR_TYPE;\n\n    enum CheckType {\n        Default,\n        Grub2\n    };\n\n    /**\n    * @brief PwqualityManager::instance 构造一个 单例\n    * @return 返回一个静态实例\n    */\n    static PwqualityManager* instance();\n\n    /**\n    * @brief PwqualityManager::verifyPassword 校验密码\n    * @param password 带检密码字符串\n    * @return 若找到，返回text，反之返回空\n    */\n    ERROR_TYPE verifyPassword(const QString &user, const QString &password, CheckType checkType = Default);\n    PASSWORD_LEVEL_TYPE GetNewPassWdLevel(const QString &newPasswd);\n    QString getErrorTips(ERROR_TYPE type, CheckType checkType = Default);\n\nprivate:\n    PwqualityManager();\n    PwqualityManager(const PwqualityManager&) = delete;\n\n    int m_passwordMinLen;\n    int m_passwordMaxLen;\n};\n}\n\n#endif  // DEEPIN_INSTALLER_PWQUALITY_MANAGER_H\n"
  },
  {
    "path": "src/plugin-accounts/operation/qrc/accounts.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_accounts_42px.svg</file>\n        <file>icons/dcc_nav_accounts_84px.svg</file>\n        <file>icons/dcc_avatar_12px.svg</file>\n    </qresource>\n    <qresource prefix=\"/dsg\">\n        <file>icons/dcc_user_animal.dci</file>\n        <file>icons/dcc_user_custom.dci</file>\n        <file>icons/dcc_user_emoji.dci</file>\n        <file>icons/dcc_user_funny.dci</file>\n        <file>icons/dcc_user_human.dci</file>\n        <file>icons/dcc_user_add_icon.dci</file>\n        <file>icons/dcc_user_scenery.dci</file>\n    </qresource>\n    <qresource prefix=\"/accounts\">\n        <file>icons/dcc_deepin_password_strength_high.svg</file>\n        <file>icons/dcc_deepin_password_strength_low.svg</file>\n        <file>icons/dcc_deepin_password_strength_middle.svg</file>\n        <file>icons/dcc_deepin_password_strength_unactive_deep_mode.svg</file>\n        <file>icons/dcc_deepin_password_strength_unactive_light_mode.svg</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-accounts/operation/securitydbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"securitydbusproxy.h\"\n\n#include <QDBusConnection>\n#include <QDBusPendingReply>\n#include <QDebug>\n\nSecurityDBusProxy::SecurityDBusProxy(QObject *parent)\n    : QObject(parent)\n{\n    init();\n}\n\nQString SecurityDBusProxy::Status()\n{\n    QDBusPendingReply<QString> reply = m_dBusInter->asyncCall(\"Status\");\n    reply.waitForFinished();\n    if (reply.isError()) {\n        m_lastError = reply.error().message();\n    } else {\n        return reply.argumentAt<0>();\n    }\n    return QString();\n}\n\nstd::tuple<QString, QString> SecurityDBusProxy::GetSEUserByName(const QString &user)\n{\n    Q_UNUSED(user)\n    std::tuple<QString, QString> result;\n    QDBusPendingReply<QString, QString> reply = m_dBusInter->asyncCall(\"GetSEUserByName\");\n    reply.waitForFinished();\n    if (reply.isError()) {\n        m_lastError = reply.error().message();\n    } else {\n        result = std::make_tuple(reply.argumentAt<0>(), reply.argumentAt<1>());\n    }\n    return result;\n}\n\nvoid SecurityDBusProxy::init()\n{\n    const QString &service = QStringLiteral(\"com.deepin.daemon.SecurityEnhance\");\n    const QString &path = QStringLiteral(\"/com/deepin/daemon/SecurityEnhance\");\n    const QString &interface = QStringLiteral(\"com.deepin.daemon.SecurityEnhance\");\n\n    m_dBusInter = new DDBusInterface(service, path, interface, QDBusConnection::systemBus(), this);\n\n    if (!m_dBusInter->isValid()) {\n        qWarning() << \"Security interface invalid: \" << m_dBusInter->lastError().message();\n        return;\n    }\n}\n\n"
  },
  {
    "path": "src/plugin-accounts/operation/securitydbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QObject>\n#include <tuple>\n#include <DDBusInterface>\n\nusing Dtk::Core::DDBusInterface;\n\nclass QDBusMessage;\n\nclass SecurityDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit SecurityDBusProxy(QObject *parent = nullptr);\n\n    QString Status();\n    std::tuple<QString, QString> GetSEUserByName(const QString &user);\n\n    inline QString lastError() { return m_lastError; }\n\nprivate:\n    void init();\n\nprivate:\n    DDBusInterface *m_dBusInter;\n    QString m_lastError;\n};\n"
  },
  {
    "path": "src/plugin-accounts/operation/syncdbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"syncdbusproxy.h\"\n\n#include <QMetaObject>\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusPendingReply>\n#include <QDBusMetaType>\n#include <QDBusReply>\n#include <QDebug>\n#include <QString>\n\nSyncDBusProxy::SyncDBusProxy(QObject *parent)\n    : QObject(parent)\n{\n    init();\n}\n\nQString SyncDBusProxy::UOSID()\n{\n    QDBusReply<QString> retUOSID = m_dBusInter->call(\"UOSID\");\n    m_lastError = retUOSID.error().message();\n    if (m_lastError.isEmpty()) {\n        return retUOSID.value();\n    } else {\n        qWarning() << \"UOSID failed:\" << m_lastError;\n        return QString();\n    }\n}\n\nQString SyncDBusProxy::LocalBindCheck(const QString &uosid, const QString &uuid)\n{\n    QDBusReply<QString> retLocalBindCheck = m_dBusInter->call(QDBus::BlockWithGui, \"LocalBindCheck\", uosid, uuid);\n    m_lastError = retLocalBindCheck.error().message();\n    if (m_lastError.isEmpty()) {\n         return retLocalBindCheck.value();\n    } else {\n        qWarning() << \"localBindCheck failed:\" << m_lastError;\n        return QString();\n    }\n}\n\nvoid SyncDBusProxy::init()\n{\n    const QString &service = QStringLiteral(\"com.deepin.sync.Helper\");\n    const QString &path = QStringLiteral(\"/com/deepin/sync/Helper\");\n    const QString &interface = QStringLiteral(\"com.deepin.sync.Helper\");\n\n    m_dBusInter = new QDBusInterface(service, path, interface, QDBusConnection::systemBus(), this);\n\n    if (!m_dBusInter->isValid()) {\n        qWarning() << \"syncHelper interface invalid: \" << m_dBusInter->lastError().message();\n        return;\n    }\n}\n\n"
  },
  {
    "path": "src/plugin-accounts/operation/syncdbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QObject>\n#include <QDBusPendingReply>\n\nclass QDBusInterface;\nclass QDBusMessage;\n\nclass SyncDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit SyncDBusProxy(QObject *parent = nullptr);\n\n    QString UOSID();\n    QString LocalBindCheck(const QString &uosid, const QString &uuid);\n\n    inline QString lastError() { return m_lastError; }\n\nprivate:\n    void init();\n\nprivate:\n    QDBusInterface *m_dBusInter;\n    QString m_lastError;\n};\n"
  },
  {
    "path": "src/plugin-accounts/operation/user.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n\n#include \"user.h\"\n\nusing namespace dccV25;\nUser::User(QObject *parent)\n    : QObject(parent)\n    , m_isCurrentUser(false)\n    , m_autoLogin(false)\n    , m_quickLogin(false)\n    , m_online(false)\n    , m_nopasswdLogin(false)\n    , m_userType(UserType::StandardUser)\n    , m_createdTime(0)\n    , m_securityLever(SecurityLever::Standard)\n{\n}\n\nvoid User::setId(const QString &id)\n{\n    if (id != m_id)\n        m_id = id;\n}\n\nconst QString User::name() const\n{\n    return m_name;\n}\n\nvoid User::setName(const QString &name)\n{\n    if (name != m_name) {\n        m_name = name;\n\n        Q_EMIT nameChanged(m_name);\n    }\n}\n\nvoid User::setFullname(const QString &fullname)\n{\n    if (fullname != m_fullname) {\n        m_fullname = fullname;\n\n        Q_EMIT fullnameChanged(m_fullname);\n    }\n}\n\nvoid User::setAutoLogin(const bool autoLogin)\n{\n    if (m_autoLogin == autoLogin)\n        return;\n\n    m_autoLogin = autoLogin;\n\n    Q_EMIT autoLoginChanged(m_autoLogin);\n}\n\nvoid User::setQuickLogin(const bool quickLogin)\n{\n    if (m_quickLogin == quickLogin)\n        return;\n\n    m_quickLogin = quickLogin;\n\n    Q_EMIT quickLoginChanged(m_quickLogin);\n}\n\nvoid User::setAvatars(const QList<QString> &avatars)\n{\n    m_avatars = avatars;\n\n    Q_EMIT avatarListChanged(m_avatars);\n}\n\nvoid User::setGroups(const QStringList &groups)\n{\n    if (m_groups != groups) {\n        m_groups = groups;\n        Q_EMIT groupsChanged(m_groups);\n    }\n}\n\nvoid User::setCurrentAvatar(const QString &avatar)\n{\n    if (m_currentAvatar != avatar) {\n        m_currentAvatar = avatar;\n\n        Q_EMIT currentAvatarChanged(m_currentAvatar);\n    }\n}\n\nvoid User::setPassword(const QString &password)\n{\n    m_password = password;\n}\n\nvoid User::setRepeatPassword(const QString &repeatPassword)\n{\n    m_repeatPassword = repeatPassword;\n}\n\nvoid User::setPasswordHint(const QString &passwordHint)\n{\n    m_passwordHint = passwordHint;\n}\n\nvoid User::setOnline(bool online)\n{\n    if (m_online != online) {\n        m_online = online;\n        Q_EMIT onlineChanged(online);\n    }\n}\n\nbool User::nopasswdLogin() const\n{\n    return m_nopasswdLogin;\n}\n\nvoid User::setNopasswdLogin(bool nopasswdLogin)\n{\n    if (m_nopasswdLogin == nopasswdLogin)\n        return;\n\n    m_nopasswdLogin = nopasswdLogin;\n\n    Q_EMIT nopasswdLoginChanged(nopasswdLogin);\n}\n\nconst QString User::displayName() const\n{\n    return m_fullname.isEmpty() ? m_name : m_fullname;\n}\n\nvoid User::setIsCurrentUser(bool isCurrentUser)\n{\n    if (isCurrentUser == m_isCurrentUser)\n        return;\n\n    m_isCurrentUser = isCurrentUser;\n\n    Q_EMIT isCurrentUserChanged(isCurrentUser);\n}\n\nvoid User::setPasswordStatus(const QString& status)\n{\n    if (m_passwordStatus == status) {\n        return;\n    }\n\n    m_passwordStatus = status;\n\n    Q_EMIT passwordStatusChanged(status);\n}\n\nvoid User::setCreatedTime(const quint64 & createdtime)\n{\n    if (m_createdTime == createdtime) {\n        return;\n    }\n\n    m_createdTime = createdtime;\n\n    Q_EMIT createdTimeChanged(createdtime);\n}\n\nvoid User::setUserType(const int userType)\n{\n    if (m_userType == userType) {\n        return;\n    }\n    m_userType = userType;\n    Q_EMIT userTypeChanged(userType);\n}\n\nvoid User::setIsPasswordExpired(bool isExpired)\n{\n    if (isExpired == m_isPasswordExpired)\n        return;\n\n    m_isPasswordExpired = isExpired;\n    Q_EMIT isPasswordExpiredChanged(isExpired);\n}\n\nvoid User::setPasswordAge(const int age)\n{\n    if (age == m_pwAge)\n        return;\n\n    m_pwAge = age;\n    Q_EMIT passwordAgeChanged(age);\n}\n\nint User::charactertypes(QString password)\n{\n    int Number_flag = 0;\n    int Capital_flag = 0;\n    int Small_flag = 0;\n    int Symbol_flag = 0;\n    QByteArray ba = password.toLatin1();\n    const char *s = ba.data();\n\n    while (*s) {\n        if ('0' <= *s && '9' >= *s) {\n            Number_flag = 1 ;\n        } else if ('A' <= *s && 'Z' >= *s) {\n            Capital_flag = 1;\n        } else if ('a' <= *s && 'z' >= *s) {\n            Small_flag = 1;\n        } else {\n            Symbol_flag = 1;\n        }\n        s++;\n    }\n    return Number_flag + Capital_flag + Small_flag + Symbol_flag;\n}\n\nvoid User::setGid(const QString &gid)\n{\n    if (m_gid == gid)\n        return;\n\n    m_gid = gid;\n    Q_EMIT gidChanged(gid);\n}\n\nSecurityLever User::securityLever() const\n{\n    return m_securityLever;\n}\n\nvoid User::setSecurityLever(const SecurityLever &securityLever)\n{\n    m_securityLever = securityLever;\n}\n\n"
  },
  {
    "path": "src/plugin-accounts/operation/user.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef USER_H\n#define USER_H\n\n#include <QObject>\n#include <QSet>\n#include <QString>\n\nstatic const QString NO_PASSWORD { \"NP\" };\n\nnamespace dccV25 {\n\nenum SecurityLever {\n    Standard,\n    Sysadm,\n    Secadm,\n    Audadm,\n    Auditadm\n};\n\nclass User : public QObject\n{\n    Q_OBJECT\n\npublic:\n    enum UserType {\n        StandardUser = 0,\n        Administrator,\n        Customized\n    };\n\n    explicit User(QObject *parent = nullptr);\n\n    Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged)\n    Q_PROPERTY(QString fullname READ fullname WRITE setFullname NOTIFY fullnameChanged)\n\n    const inline QString id() const { return m_id; }\n    void setId(const QString &id);\n\n    const QString name() const;\n    void setName(const QString &name);\n\n    const QString fullname() const { return m_fullname; }\n    void setFullname(const QString &fullname);\n\n    inline bool autoLogin() const { return m_autoLogin; }\n    void setAutoLogin(const bool autoLogin);\n\n    inline bool quickLogin() const { return m_quickLogin; }\n    void setQuickLogin(const bool quickLogin);\n\n    inline const QList<QString> &avatars() const { return m_avatars; }\n    void setAvatars(const QList<QString> &avatars);\n\n    inline const QStringList &groups() const { return m_groups; }\n    void setGroups(const QStringList &groups);\n\n    inline const QString currentAvatar() const { return m_currentAvatar; }\n    void setCurrentAvatar(const QString &avatar);\n\n    inline QString password() const { return m_password; }\n    void setPassword(const QString &password);\n\n    inline QString repeatPassword() const { return m_repeatPassword; }\n    void setRepeatPassword(const QString &repeatPassword);\n\n    inline QString passwordHint() const { return m_passwordHint; }\n    void setPasswordHint(const QString &passwordHint);\n\n    inline bool online() const { return m_online; }\n    void setOnline(bool online);\n\n    bool nopasswdLogin() const;\n    void setNopasswdLogin(bool nopasswdLogin);\n\n    const QString displayName() const;\n\n    inline bool isCurrentUser() const { return m_isCurrentUser; }\n    void setIsCurrentUser(bool isCurrentUser);\n\n    inline QString passwordStatus() const { return m_passwordStatus; }\n    void setPasswordStatus(const QString& status);\n\n    inline quint64 createdTime() const { return m_createdTime; }\n    void setCreatedTime(const quint64 & createdtime);\n\n    inline int userType() const { return m_userType; }\n    void setUserType(const int userType);\n    inline bool isPasswordExpired() const { return m_isPasswordExpired; }\n    void setIsPasswordExpired(bool isExpired);\n\n    inline int passwordAge() const { return m_pwAge; }\n    void setPasswordAge(const int age);\n\n    int charactertypes(QString password);\n\n    inline QString gid() const { return m_gid; }\n    void setGid(const QString &gid);\n\n    SecurityLever securityLever() const;\n    void setSecurityLever(const SecurityLever &securityLever);\n\nQ_SIGNALS:\n    void passwordModifyFinished(const int exitCode, const QString &errorTxt) const;\n    void nameChanged(const QString &name) const;\n    void fullnameChanged(const QString &name) const;\n    void currentAvatarChanged(const QString &avatar) const;\n    void autoLoginChanged(const bool autoLogin) const;\n    void quickLoginChanged(const bool quickLogin) const;\n    void avatarListChanged(const QList<QString> &avatars) const;\n    void groupsChanged(const QStringList &groups) const;\n    void onlineChanged(const bool &online) const;\n    void nopasswdLoginChanged(const bool nopasswdLogin) const;\n    void isCurrentUserChanged(bool isCurrentUser);\n    void passwordStatusChanged(const QString& password) const;\n    void createdTimeChanged(const quint64 & createtime);\n    void userTypeChanged(const int userType);\n    void isPasswordExpiredChanged(const bool isExpired) const;\n    void passwordAgeChanged(const int age) const;\n    void gidChanged(const QString &gid);\n    void passwordResetFinished(const QString &errorText) const;\n    void startResetPasswordReplied(const QString &errorText);\n    void setSecurityQuestionsReplied(const QString &errorText);\n    void startSecurityQuestionsCheckReplied(const QList<int> &questios);\n\nprivate:\n    bool m_isCurrentUser;\n    bool m_autoLogin;\n    bool m_quickLogin;\n    bool m_online;\n    bool m_nopasswdLogin;\n    int m_userType;\n    bool m_isPasswordExpired{false};\n    int m_pwAge{-1};\n    QString m_name;\n    QString m_fullname;\n    QString m_password;\n    QString m_repeatPassword;\n    QString m_currentAvatar;\n    QString m_passwordStatus; // NP: no password, P have a password, L user is locked\n    QList<QString> m_avatars;\n    QStringList m_groups;\n    quint64 m_createdTime;\n    QString m_gid;\n    QString m_passwordHint;\n    QString m_id;\n    SecurityLever m_securityLever;\n\n\n    Q_ENUM(SecurityLever);\n};\n} // namespace dccV25\n\n#endif // USER_H\n"
  },
  {
    "path": "src/plugin-accounts/operation/userdbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"userdbusproxy.h\"\n\n#include <QMetaObject>\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusPendingReply>\n#include <QDBusMetaType>\n#include <QDebug>\n\nUserDBusProxy::UserDBusProxy(QString accountsUserPath, QObject *parent)\n    : QObject(parent)\n    , m_accountsUserPath(accountsUserPath)\n{\n    init();\n}\n\nvoid UserDBusProxy::init()\n{\n    const QString AccountsUserService = \"org.deepin.dde.Accounts1\";\n    const QString AccountsUserInterface = \"org.deepin.dde.Accounts1.User\";\n    const QString PropertiesInterface = \"org.freedesktop.DBus.Properties\";\n    const QString PropertiesChanged = \"PropertiesChanged\";\n\n    m_dBusAccountsUserInter = new QDBusInterface(AccountsUserService, m_accountsUserPath, AccountsUserInterface, QDBusConnection::systemBus(), this);\n    QDBusConnection dbusConnection = m_dBusAccountsUserInter->connection();\n    dbusConnection.connect(AccountsUserService, m_accountsUserPath, PropertiesInterface, PropertiesChanged, this, SLOT(onPropertiesChanged(QDBusMessage)));\n}\n\n//users\nQDBusPendingReply<> UserDBusProxy::AddGroup(const QString &group)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(group);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"AddGroup\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::DeleteGroup(const QString &group)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(group);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"DeleteGroup\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::DeleteIconFile(const QString &iconFile)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(iconFile);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"DeleteIconFile\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::EnableNoPasswdLogin(bool enabled)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(enabled);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"EnableNoPasswdLogin\"), argumentList);\n}\nQDBusPendingReply<bool> UserDBusProxy::IsPasswordExpired()\n{\n    QList<QVariant> argumentList;\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"IsPasswordExpired\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetAutomaticLogin(bool enabled)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(enabled);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetAutomaticLogin\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetDesktopBackgrounds(const QStringList &backgrounds)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(backgrounds);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetDesktopBackgrounds\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetFullName(const QString &name)\n{\n    qInfo() << \"m_accountsUserPath\" << m_accountsUserPath;\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(name);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetFullName\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetGreeterBackground(const QString &background)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(background);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetGreeterBackground\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetGroups(const QStringList &groups)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(groups);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetGroups\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetHistoryLayout(const QStringList &layouts)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(layouts);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetHistoryLayout\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetHomeDir(const QString &home)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(home);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetHomeDir\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetIconFile(const QString &iconFile)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(iconFile);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetIconFile\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetLayout(const QString &layout)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(layout);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetLayout\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetLocale(const QString &locale)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(locale);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetLocale\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetLocked(bool locked)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(locked);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetLocked\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetMaxPasswordAge(int nDays)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(nDays);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetMaxPasswordAge\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetPassword(const QString &password)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(password);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetPassword\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetPasswordHint(const QString &hint)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(hint);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetPasswordHint\"), argumentList);\n}\nQDBusPendingReply<> UserDBusProxy::SetShell(const QString &shell)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(shell);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetShell\"), argumentList);\n}\n\nQDBusPendingReply<QList<int>> UserDBusProxy::GetSecretQuestions()\n{\n    //获取安全问题需要使用同步调用\n    return m_dBusAccountsUserInter->call(QStringLiteral(\"GetSecretQuestions\"));\n}\n\nQDBusPendingReply<> UserDBusProxy::SetSecretQuestions(const QMap<int, QByteArray> &securityQuestions)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(securityQuestions);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetSecretQuestions\"), argumentList);\n}\n\nQDBusPendingReply<> UserDBusProxy::SetQuickLogin(bool enabled)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(enabled);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"SetQuickLogin\"), argumentList);\n}\n\nQDBusPendingReply<> UserDBusProxy::EnableWechatAuth(bool enabled)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(enabled);\n    return m_dBusAccountsUserInter->asyncCallWithArgumentList(QStringLiteral(\"EnableWechatAuth\"), argumentList);\n}\n\n//获取属性值\nint UserDBusProxy::accountType()\n{\n    return qvariant_cast<int>(m_dBusAccountsUserInter->property(\"AccountType\"));\n}\nbool UserDBusProxy::automaticLogin()\n{\n    return qvariant_cast<bool>(m_dBusAccountsUserInter->property(\"AutomaticLogin\"));\n}\nqulonglong UserDBusProxy::createdTime()\n{\n    return qvariant_cast<qulonglong>(m_dBusAccountsUserInter->property(\"CreatedTime\"));\n}\nQStringList UserDBusProxy::desktopBackgrounds()\n{\n    return qvariant_cast<QStringList>(m_dBusAccountsUserInter->property(\"DesktopBackgrounds\"));\n}\nQString UserDBusProxy::fullName()\n{\n    return qvariant_cast<QString>(m_dBusAccountsUserInter->property(\"FullName\"));\n}\nQString UserDBusProxy::gid()\n{\n    return qvariant_cast<QString>(m_dBusAccountsUserInter->property(\"Gid\"));\n}\nQString UserDBusProxy::greeterBackground()\n{\n    return qvariant_cast<QString>(m_dBusAccountsUserInter->property(\"GreeterBackground\"));\n}\nQStringList UserDBusProxy::groups()\n{\n    return qvariant_cast<QStringList>(m_dBusAccountsUserInter->property(\"Groups\"));\n}\nQStringList UserDBusProxy::historyLayout()\n{\n    return qvariant_cast<QStringList>(m_dBusAccountsUserInter->property(\"HistoryLayout\"));\n}\nQString UserDBusProxy::homeDir()\n{\n    return qvariant_cast<QString>(m_dBusAccountsUserInter->property(\"HomeDir\"));\n}\nQString UserDBusProxy::iconFile()\n{\n    return qvariant_cast<QString>(m_dBusAccountsUserInter->property(\"IconFile\"));\n}\nQStringList UserDBusProxy::iconList()\n{\n    return qvariant_cast<QStringList>(m_dBusAccountsUserInter->property(\"IconList\"));\n}\nQString UserDBusProxy::layout()\n{\n    return qvariant_cast<QString>(m_dBusAccountsUserInter->property(\"Layout\"));\n}\nQString UserDBusProxy::locale()\n{\n    return qvariant_cast<QString>(m_dBusAccountsUserInter->property(\"Locale\"));\n}\nbool UserDBusProxy::locked()\n{\n    return qvariant_cast<int>(m_dBusAccountsUserInter->property(\"Locked\"));\n}\nqulonglong UserDBusProxy::loginTime()\n{\n    return qvariant_cast<qulonglong>(m_dBusAccountsUserInter->property(\"LoginTime\"));\n}\nint UserDBusProxy::longDateFormat()\n{\n    return qvariant_cast<int>(m_dBusAccountsUserInter->property(\"LongDateFormat\"));\n}\nint UserDBusProxy::longTimeFormat()\n{\n    return qvariant_cast<int>(m_dBusAccountsUserInter->property(\"LongTimeFormat\"));\n}\nint UserDBusProxy::maxPasswordAge()\n{\n    return qvariant_cast<int>(m_dBusAccountsUserInter->property(\"MaxPasswordAge\"));\n}\nbool UserDBusProxy::noPasswdLogin()\n{\n    return qvariant_cast<bool>(m_dBusAccountsUserInter->property(\"NoPasswdLogin\"));\n}\nQString UserDBusProxy::passwordHint()\n{\n    return qvariant_cast<QString>(m_dBusAccountsUserInter->property(\"PasswordHint\"));\n}\nint UserDBusProxy::passwordLastChange()\n{\n    return qvariant_cast<int>(m_dBusAccountsUserInter->property(\"PasswordLastChange\"));\n}\nQString UserDBusProxy::passwordStatus()\n{\n    return qvariant_cast<QString>(m_dBusAccountsUserInter->property(\"PasswordStatus\"));\n}\nQString UserDBusProxy::shell()\n{\n    return qvariant_cast<QString>(m_dBusAccountsUserInter->property(\"Shell\"));\n}\nint UserDBusProxy::shortDateFormat()\n{\n    return qvariant_cast<int>(m_dBusAccountsUserInter->property(\"ShortDateFormat\"));\n}\nint UserDBusProxy::shortTimeFormat()\n{\n    return qvariant_cast<int>(m_dBusAccountsUserInter->property(\"ShortTimeFormat\"));\n}\nbool UserDBusProxy::systemAccount()\n{\n    return qvariant_cast<bool>(m_dBusAccountsUserInter->property(\"SystemAccount\"));\n}\nQString UserDBusProxy::uid()\n{\n    return qvariant_cast<QString>(m_dBusAccountsUserInter->property(\"Uid\"));\n}\n\nQString UserDBusProxy::uuid()\n{\n    return qvariant_cast<QString>(m_dBusAccountsUserInter->property(\"UUID\"));\n}\n\nbool UserDBusProxy::use24HourFormat()\n{\n    return qvariant_cast<bool>(m_dBusAccountsUserInter->property(\"Use24HourFormat\"));\n}\nQString UserDBusProxy::userName()\n{\n    return qvariant_cast<QString>(m_dBusAccountsUserInter->property(\"UserName\"));\n}\nint UserDBusProxy::weekBegins()\n{\n    return qvariant_cast<int>(m_dBusAccountsUserInter->property(\"WeekBegins\"));\n}\nint UserDBusProxy::weekdayFormat()\n{\n    return qvariant_cast<int>(m_dBusAccountsUserInter->property(\"WeekdayFormat\"));\n}\nQString UserDBusProxy::xSession()\n{\n    return qvariant_cast<QString>(m_dBusAccountsUserInter->property(\"XSession\"));\n}\n\nvoid UserDBusProxy::onPropertiesChanged(const QDBusMessage &message)\n{\n    QVariantMap changedProps = qdbus_cast<QVariantMap>(message.arguments().at(1).value<QDBusArgument>());\n    for (QVariantMap::const_iterator it = changedProps.begin(); it != changedProps.end(); ++it) {\n        QMetaObject::invokeMethod(this, it.key().toLatin1() + \"Changed\", Qt::DirectConnection, QGenericArgument(it.value().typeName(), it.value().data()));\n    }\n}\n\nbool UserDBusProxy::quickLogin() const\n{\n    return qvariant_cast<bool>(m_dBusAccountsUserInter->property(\"QuickLogin\"));\n}\n\nbool UserDBusProxy::wechatAuth() const\n{\n    return qvariant_cast<bool>(m_dBusAccountsUserInter->property(\"WechatAuthEnabled\"));\n}\n"
  },
  {
    "path": "src/plugin-accounts/operation/userdbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef USERDBUSPROXY_H\n#define USERDBUSPROXY_H\n\n#include <QObject>\n#include <QDBusPendingReply>\n\nclass QDBusInterface;\nclass QDBusMessage;\n\nclass UserDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit UserDBusProxy(QString accountsUserPath, QObject *parent = nullptr);\n\n    Q_PROPERTY(int AccountType READ accountType NOTIFY AccountTypeChanged)\n    int accountType();\n\n    Q_PROPERTY(bool AutomaticLogin READ automaticLogin NOTIFY AutomaticLoginChanged)\n    bool automaticLogin();\n\n    Q_PROPERTY(qulonglong CreatedTime READ createdTime NOTIFY CreatedTimeChanged)\n    qulonglong createdTime();\n\n    Q_PROPERTY(QStringList DesktopBackgrounds READ desktopBackgrounds NOTIFY DesktopBackgroundsChanged)\n    QStringList desktopBackgrounds();\n\n    Q_PROPERTY(QString FullName READ fullName NOTIFY FullNameChanged)\n    QString fullName();\n\n    Q_PROPERTY(QString Gid READ gid NOTIFY GidChanged)\n    QString gid();\n\n    Q_PROPERTY(QString GreeterBackground READ greeterBackground NOTIFY GreeterBackgroundChanged)\n    QString greeterBackground();\n\n    Q_PROPERTY(QStringList Groups READ groups NOTIFY GroupsChanged)\n    QStringList groups();\n\n    Q_PROPERTY(QStringList HistoryLayout READ historyLayout NOTIFY HistoryLayoutChanged)\n    QStringList historyLayout();\n\n    Q_PROPERTY(QString HomeDir READ homeDir NOTIFY HomeDirChanged)\n    QString homeDir();\n\n    Q_PROPERTY(QString IconFile READ iconFile NOTIFY IconFileChanged)\n    QString iconFile();\n\n    Q_PROPERTY(QStringList IconList READ iconList NOTIFY IconListChanged)\n    QStringList iconList();\n\n    Q_PROPERTY(QString Layout READ layout NOTIFY LayoutChanged)\n    QString layout();\n\n    Q_PROPERTY(QString Locale READ locale NOTIFY LocaleChanged)\n    QString locale();\n\n    Q_PROPERTY(bool Locked READ locked NOTIFY LockedChanged)\n    bool locked();\n\n    Q_PROPERTY(qulonglong LoginTime READ loginTime NOTIFY LoginTimeChanged)\n    qulonglong loginTime();\n\n    Q_PROPERTY(int LongDateFormat READ longDateFormat NOTIFY LongDateFormatChanged)\n    int longDateFormat();\n\n    Q_PROPERTY(int LongTimeFormat READ longTimeFormat NOTIFY LongTimeFormatChanged)\n    int longTimeFormat();\n\n    Q_PROPERTY(int MaxPasswordAge READ maxPasswordAge NOTIFY MaxPasswordAgeChanged)\n    int maxPasswordAge();\n\n    Q_PROPERTY(bool NoPasswdLogin READ noPasswdLogin NOTIFY NoPasswdLoginChanged)\n    bool noPasswdLogin();\n\n    Q_PROPERTY(QString PasswordHint READ passwordHint NOTIFY PasswordHintChanged)\n    QString passwordHint();\n\n    Q_PROPERTY(int PasswordLastChange READ passwordLastChange NOTIFY PasswordLastChangeChanged)\n    int passwordLastChange();\n\n    Q_PROPERTY(QString PasswordStatus READ passwordStatus NOTIFY PasswordStatusChanged)\n    QString passwordStatus();\n\n    Q_PROPERTY(QString Shell READ shell NOTIFY ShellChanged)\n    QString shell();\n\n    Q_PROPERTY(int ShortDateFormat READ shortDateFormat NOTIFY ShortDateFormatChanged)\n    int shortDateFormat();\n\n    Q_PROPERTY(int ShortTimeFormat READ shortTimeFormat NOTIFY ShortTimeFormatChanged)\n    int shortTimeFormat();\n\n    Q_PROPERTY(bool SystemAccount READ systemAccount NOTIFY SystemAccountChanged)\n    bool systemAccount();\n\n    Q_PROPERTY(QString Uid READ uid NOTIFY UidChanged)\n    QString uid();\n\n    Q_PROPERTY(QString UUID READ uuid NOTIFY UUIDChanged)\n    QString uuid();\n\n    Q_PROPERTY(bool Use24HourFormat READ use24HourFormat NOTIFY Use24HourFormatChanged)\n    bool use24HourFormat();\n\n    Q_PROPERTY(QString UserName READ userName NOTIFY UserNameChanged)\n    QString userName();\n\n    Q_PROPERTY(int WeekBegins READ weekBegins NOTIFY WeekBeginsChanged)\n    int weekBegins();\n\n    Q_PROPERTY(int WeekdayFormat READ weekdayFormat NOTIFY WeekdayFormatChanged)\n    int weekdayFormat();\n\n    Q_PROPERTY(QString XSession READ xSession NOTIFY XSessionChanged)\n    QString xSession();\n\n    Q_PROPERTY(bool QuickLogin READ quickLogin NOTIFY QuickLoginChanged)\n    bool quickLogin() const;\n\n    Q_PROPERTY(bool WechatAuthEnabled READ wechatAuth NOTIFY WechatAuthChanged)\n    bool wechatAuth() const;\n\n    inline QString path() { return m_accountsUserPath; }\n    inline const QDBusInterface* interface() { return m_dBusAccountsUserInter; }\n\nsignals:\n    // begin property changed signals\n    void AccountTypeChanged(int  value) const;\n    void AutomaticLoginChanged(bool  value) const;\n    void CreatedTimeChanged(qulonglong  value) const;\n    void DesktopBackgroundsChanged(const QStringList & value) const;\n    void FullNameChanged(const QString & value) const;\n    void GidChanged(const QString & value) const;\n    void GreeterBackgroundChanged(const QString & value) const;\n    void GroupsChanged(const QStringList & value) const;\n    void HistoryLayoutChanged(const QStringList & value) const;\n    void HomeDirChanged(const QString & value) const;\n    void IconFileChanged(const QString & value) const;\n    void IconListChanged(const QStringList & value) const;\n    void LayoutChanged(const QString & value) const;\n    void LocaleChanged(const QString & value) const;\n    void LockedChanged(bool  value) const;\n    void LoginTimeChanged(qulonglong  value) const;\n    void LongDateFormatChanged(int  value) const;\n    void LongTimeFormatChanged(int  value) const;\n    void MaxPasswordAgeChanged(int  value) const;\n    void NoPasswdLoginChanged(bool  value) const;\n    void PasswordHintChanged(const QString & value) const;\n    void PasswordLastChangeChanged(int  value) const;\n    void PasswordStatusChanged(const QString & value) const;\n    void ShellChanged(const QString & value) const;\n    void ShortDateFormatChanged(int  value) const;\n    void ShortTimeFormatChanged(int  value) const;\n    void SystemAccountChanged(bool  value) const;\n    void UidChanged(const QString & value) const;\n    void UUIDChanged(const QString & value) const;\n    void Use24HourFormatChanged(bool  value) const;\n    void UserNameChanged(const QString & value) const;\n    void WeekBeginsChanged(int  value) const;\n    void WeekdayFormatChanged(int  value) const;\n    void XSessionChanged(const QString & value) const;\n\n    void QuickLoginChanged(bool value) const;\n    void WechatAuthChanged();\n\npublic slots:\n    QDBusPendingReply<> AddGroup(const QString &group);\n    QDBusPendingReply<> DeleteGroup(const QString &group);\n    QDBusPendingReply<> DeleteIconFile(const QString &iconFile);\n    QDBusPendingReply<> EnableNoPasswdLogin(bool enabled);\n    QDBusPendingReply<bool> IsPasswordExpired();\n    QDBusPendingReply<> SetAutomaticLogin(bool enabled);\n    QDBusPendingReply<> SetDesktopBackgrounds(const QStringList &backgrounds);\n    QDBusPendingReply<> SetFullName(const QString &name);\n    QDBusPendingReply<> SetGreeterBackground(const QString &background);\n    QDBusPendingReply<> SetGroups(const QStringList &groups);\n    QDBusPendingReply<> SetHistoryLayout(const QStringList &layouts);\n    QDBusPendingReply<> SetHomeDir(const QString &home);\n    QDBusPendingReply<> SetIconFile(const QString &iconFile);\n    QDBusPendingReply<> SetLayout(const QString &layout);\n    QDBusPendingReply<> SetLocale(const QString &locale);\n    QDBusPendingReply<> SetLocked(bool locked);\n    QDBusPendingReply<> SetMaxPasswordAge(int nDays);\n    QDBusPendingReply<> SetPassword(const QString &password);\n    QDBusPendingReply<> SetPasswordHint(const QString &hint);\n    QDBusPendingReply<> SetShell(const QString &shell);\n    QDBusPendingReply<QList<int>> GetSecretQuestions();\n    QDBusPendingReply<> SetSecretQuestions(const QMap<int, QByteArray> &securityQuestions);\n    QDBusPendingReply<> SetQuickLogin(bool enabled);\n    QDBusPendingReply<> EnableWechatAuth(bool enabled);\n\nprivate slots:\n    void onPropertiesChanged(const QDBusMessage &message);\nprivate:\n    void init();\n\nprivate:\n    QDBusInterface *m_dBusAccountsUserInter;\n    QString m_accountsUserPath;\n};\n\n#endif // USERDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-accounts/operation/usermodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"usermodel.h\"\n\n#include <QDebug>\n\nusing namespace dccV25;\n\nUserModel::UserModel(QObject *parent)\n    : QObject(parent)\n    , m_autoLoginVisable(true)\n    , m_quickLoginVisible(true)\n    , m_noPassWordLoginVisable(true)\n    , m_bCreateUserValid(false)\n    , m_isJoinADDomain(false)\n    , m_isADUserLogind(false)\n    , m_isSecurityHighLever(false)\n{\n\n}\n\nUserModel::~UserModel()\n{\n    qDeleteAll(m_userList.values());\n}\n\nUser * UserModel::getUser(const QString &id)\n{\n    return m_userList.value(id, nullptr);\n}\n\nQList<User *> UserModel::userList() const\n{\n    for(auto user : m_userList) {\n        if (m_onlineUsers.contains(user->name()))\n            user->setOnline(true);\n        else\n            user->setOnline(false);\n    }\n    return m_userList.values();\n}\n\nvoid UserModel::addUser(const QString &id, User *user)\n{\n    Q_ASSERT(!m_userList.contains(id));\n\n    m_userList[id] = user;\n    connect(user, &User::currentAvatarChanged, this, [this, user](const QString &avatar){\n        Q_EMIT avatarChanged(user->id(), avatar);\n    });\n    connect(user, &User::autoLoginChanged, this, [this, user](const bool enable){\n        Q_EMIT autoLoginChanged(user->id(), enable);\n    });\n    connect(user, &User::quickLoginChanged, this, [this, user](const bool enable){\n        Q_EMIT quickLoginChanged(user->id(), enable);\n    });\n    connect(user, &User::nopasswdLoginChanged, this, [this, user](const bool enable){\n        Q_EMIT nopasswdLoginChanged(user->id(), enable);\n    });\n    connect(user, &User::groupsChanged, this, [this, user](const QStringList &groups){\n        Q_EMIT groupsChanged(user->id(), groups);\n    });\n    connect(user, &User::passwordModifyFinished, this, [this, user](const int exitCode, const QString &errorTxt){\n        Q_EMIT passwordModifyFinished(user->id(), exitCode, errorTxt);\n    });\n    connect(user, &User::passwordResetFinished, this, [this, user](const QString &errorTxt){\n        Q_EMIT passwordModifyFinished(user->id(), errorTxt.isEmpty() ? 0 : -1, errorTxt);\n    });\n    connect(user, &User::onlineChanged, this, [this, user](const bool &online){\n        Q_EMIT onlineChanged(user->id(), online);\n    });\n    connect(user, &User::userTypeChanged, this, [this, user](const int userType){\n        Q_EMIT userTypeChanged(user->id(), userType);\n    });\n    connect(user, &User::fullnameChanged, this, [this, user](const QString &fullname){\n        Q_EMIT fullnameChanged(user->id(), fullname);\n    });\n    connect(user, &User::passwordAgeChanged, this, [this, user](const int age){\n        Q_EMIT passwordAgeChanged(user->id(), age);\n    });\n\n    Q_EMIT userAdded(user);\n}\n\nvoid UserModel::removeUser(const QString &id)\n{\n    Q_ASSERT(m_userList.contains(id));\n\n    User *user = m_userList[id];\n    m_userList.remove(id);\n\n    Q_EMIT userRemoved(user);\n}\n\nbool UserModel::contains(const QString &id)\n{\n    return m_userList.contains(id);\n}\n\nvoid UserModel::setAutoLoginVisable(const bool visable)\n{\n    if (m_autoLoginVisable == visable)\n        return;\n\n    m_autoLoginVisable = visable;\n    Q_EMIT autoLoginVisableChanged(m_autoLoginVisable);\n}\n\nvoid UserModel::setQuickLoginVisible(const bool visible)\n{\n    if (m_quickLoginVisible == visible)\n        return;\n\n    m_quickLoginVisible = visible;\n    Q_EMIT quickLoginVisibleChanged(m_quickLoginVisible);\n}\n\nvoid UserModel::setCreateUserValid(bool bValid)\n{\n    if (m_bCreateUserValid == bValid)\n        return;\n\n    m_bCreateUserValid = bValid;\n}\n\nvoid UserModel::setNoPassWordLoginVisable(const bool visable)\n{\n    if (m_noPassWordLoginVisable == visable)\n        return;\n\n    m_noPassWordLoginVisable = visable;\n    Q_EMIT noPassWordLoginVisableChanged(m_noPassWordLoginVisable);\n}\n\nQStringList UserModel::getAllGroups()\n{\n    return m_allGroups;\n}\n\nvoid UserModel::setPresetGroups(const QStringList &presetGroups)\n{\n    m_presetGroups = presetGroups;\n}\n\nvoid UserModel::setAllGroups(const QStringList &groups)\n{\n    if (m_allGroups == groups) {\n        return;\n    }\n    m_allGroups = groups;\n    Q_EMIT allGroupsChange(groups);\n}\n\nQStringList UserModel::getPresetGroups()\n{\n    return m_presetGroups;\n}\n\nQString UserModel::getCurrentUserName() const\n{\n    return m_currentUserName;\n}\n\nvoid UserModel::setCurrentUserName(const QString &currentUserName)\n{\n    m_currentUserName = currentUserName;\n}\n\nUser *UserModel::currentUser()\n{\n    for (auto user : userList()) {\n        if (user->name() == m_currentUserName) {\n            return user;\n        }\n    }\n\n    return nullptr;\n}\n\nbool UserModel::getIsSecurityHighLever() const\n{\n    return m_isSecurityHighLever;\n}\n\nvoid UserModel::setIsSecurityHighLever(bool isSecurityHighLever)\n{\n    m_isSecurityHighLever = isSecurityHighLever;\n}\n\nbool UserModel::isDisabledGroup(const QString &groupName)\n{\n    return m_DisabledGroups.contains(groupName);\n}\n\nvoid UserModel::setDisabledGroups(const QStringList &groups)\n{\n    m_DisabledGroups = groups;\n}\n\nvoid UserModel::SetOnlineUsers(QStringList onlineUsers)\n{\n    m_onlineUsers = onlineUsers;\n}\n\nvoid UserModel::setIsJoinADDomain(bool isJoinADDomain)\n{\n    if (m_isJoinADDomain == isJoinADDomain)\n        return;\n\n    m_isJoinADDomain = isJoinADDomain;\n\n    Q_EMIT isJoinADDomainChanged(isJoinADDomain);\n}\n\nvoid UserModel::setADUserLogind(bool isADUserLogind)\n{\n    if (m_isADUserLogind == isADUserLogind) {\n        return;\n    }\n\n    m_isADUserLogind = isADUserLogind;\n\n    Q_EMIT isADUserLoginChanged(isADUserLogind);\n}\n"
  },
  {
    "path": "src/plugin-accounts/operation/usermodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef USERMODEL_H\n#define USERMODEL_H\n\n#include <QObject>\n#include <QMap>\n\n#include \"user.h\"\n\nnamespace dccV25 {\n\nclass UserModel : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit UserModel(QObject *parent = nullptr);\n    ~UserModel();\n\n    User *getUser(const QString &id);\n    QList<User *> userList() const;\n    void addUser(const QString &id, User *user);\n    void removeUser(const QString &id);\n    bool contains(const QString &id);\n\n    inline bool isAutoLoginVisable() const { return m_autoLoginVisable; }\n    void setAutoLoginVisable(const bool visable);\n\n    inline bool isQuickLoginVisible() const { return m_quickLoginVisible; }\n    void setQuickLoginVisible(const bool visible);\n\n    inline bool isCreateUserValid() const { return m_bCreateUserValid; }\n    void setCreateUserValid(bool bValid);\n\n    inline bool isNoPassWordLoginVisable() const { return m_noPassWordLoginVisable; }\n    void setNoPassWordLoginVisable(const bool visable);\n    bool isJoinADDomain() const { return m_isJoinADDomain; }\n    void setIsJoinADDomain(bool isJoinADDomain);\n\n    bool isADUserLogind() const { return m_isADUserLogind; }\n    void setADUserLogind(bool isADUserLogind);\n    void setAllGroups(const QStringList &groups);\n    QStringList getAllGroups();\n    void setPresetGroups(const QStringList &presetGroups);\n    QStringList getPresetGroups();\n    QString getCurrentUserName() const;\n    void setCurrentUserName(const QString &currentUserName);\n    User *currentUser();\n    bool getIsSecurityHighLever() const;\n    void setIsSecurityHighLever(bool isSecurityHighLever);\n\n    inline QStringList getOnlineUsers() { return m_onlineUsers; }\n    void SetOnlineUsers(QStringList onlineUsers);\n    bool isDisabledGroup(const QString &groupName);\n    void setDisabledGroups(const QStringList &groups);\n\n    enum ActionOption {\n        ClickCancel = 0,\n        CreateUserSuccess,\n        ModifyPwdSuccess\n    };\n\nQ_SIGNALS:\n    void userAdded(User *user);\n    void userRemoved(User *user);\n    void avatarChanged(const QString &userId, const QString &avatar);\n    void autoLoginChanged(const QString &userId, bool enable);\n    void quickLoginChanged(const QString &userId, bool enable);\n    void nopasswdLoginChanged(const QString &userId, bool enable);\n    void groupsChanged(const QString &userId, const QStringList &groups);\n    void passwordModifyFinished(const QString &userId, const int exitCode, const QString &errorTxt);\n    void onlineChanged(const QString &userId, const bool &online) const;\n    void userTypeChanged(const QString &userId, const int userType);\n    void fullnameChanged(const QString &userId, const QString &fullname);\n    void passwordAgeChanged(const QString &userId, const int age);\n    void isJoinADDomainChanged(bool isjoin);\n    void isADUserLoginChanged(bool isLogind);\n    void allGroupsChange(const QStringList &groups);\n    void deleteUserSuccess();\n    void autoLoginVisableChanged(bool autoLogin);\n    void quickLoginVisibleChanged(bool quickLogin);\n    void noPassWordLoginVisableChanged(bool noPassword);\n    void isCancelChanged();\n    void adminCntChange(const int adminCnt);\n\nprivate:\n    bool m_autoLoginVisable;\n    bool m_quickLoginVisible;\n    bool m_noPassWordLoginVisable;\n    bool m_bCreateUserValid;\n    QMap<QString, User *> m_userList;\n    QStringList m_allGroups;\n    QStringList m_presetGroups;\n    QString m_currentUserName;\n    bool m_isJoinADDomain;\n    bool m_isADUserLogind;\n    bool m_isSecurityHighLever;\n    QStringList m_DisabledGroups;\n    QStringList m_onlineUsers;\n};\n} // namespace dccV25\n\n#endif // USERMODEL_H\n"
  },
  {
    "path": "src/plugin-accounts/qml/AccountSettings.qml",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick\nimport QtQuick.Controls\nimport QtQuick.Layouts\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0\nimport org.deepin.dtk.style 1.0 as DS\n\nDccObject {\n    id: settings\n    property string userId\n    property string papaName\n    property bool autoLoginChecked: true\n    property bool nopasswdLoginChecked: true\n    property bool noQuickLoginChecked: true\n\n    Component.onCompleted: {\n        updateLoginSettings()\n    }\n    \n    onUserIdChanged: {\n        updateLoginSettings()\n    }\n    \n    function updateLoginSettings() {\n        settings.autoLoginChecked = dccData.autoLogin(settings.userId)\n        settings.nopasswdLoginChecked = dccData.nopasswdLogin(settings.userId)\n        settings.noQuickLoginChecked = dccData.quickLogin(settings.userId)\n    }\n\n    FontMetrics {\n        id: fm\n    }\n\n    // 账户头像\n    DccObject {\n        id: userAvatars\n        name: \"userAvatars\"\n        parentName: settings.papaName\n        weight: 10\n        canSearch: settings.canSearch\n        pageType: DccObject.Item\n        page: Rectangle {\n            id: item\n            color: \"transparent\"\n            implicitHeight: 100\n\n            Control {\n                id: control\n                implicitWidth: 100\n                implicitHeight: 100\n                antialiasing: true\n                hoverEnabled: true\n                MouseArea {\n                    anchors.fill: parent\n                    Loader {\n                        id: dilogLoader\n                        active: false\n                        sourceComponent: AvatarSettingsDialog {\n                            id: dialog\n                            userId: settings.userId\n                            currentAvatar: dccData.avatar(settings.userId)\n                            onAccepted: {\n                                if (currentAvatar.length > 0)\n                                    dccData.setAvatar(settings.userId, currentAvatar)\n                            }\n\n                            onClosing: function (close) {\n                                dilogLoader.active = false\n                            }\n                        }\n                        onLoaded: function () {\n                            dilogLoader.item.show()\n                        }\n                    }\n\n                    Connections {\n                        target: dccData\n                        function onAvatarChanged(userId, avatar) {\n                            if (userId === settings.userId) {\n                                image.source = dccData.avatar(userId)\n                            }\n                        }\n                        function onAutoLoginChanged(userId, enable) {\n                            if (userId === settings.userId) {\n                                settings.autoLoginChecked = enable\n                            }\n                        }\n                        function onNopasswdLoginChanged(userId, enable) {\n                            if (userId === settings.userId) {\n                                settings.nopasswdLoginChecked = enable\n                            }\n                        }\n                        function onQuickLoginChanged(userId, enable) {\n                            if (userId === settings.userId) {\n                                settings.noQuickLoginChecked = enable\n                            }\n                        }\n                        function onUserRemoved(userId) {\n                            if (userId === settings.userId) {\n                                DccApp.showPage(\"accounts\")\n                            }\n                        }\n                    }\n\n                    onClicked: {\n                        dilogLoader.active = true\n                    }\n                }\n\n                // crashed https://github.com/linuxdeepin/dtkdeclarative/pull/385\n                // ToolTip.text: qsTr(\"Clicked to changed avatar\")\n                // ToolTip.visible: control.hovered\n                Image {\n                    id: image\n                    source: dccData.avatar(settings.userId)\n                    asynchronous: true\n                    visible: false\n                    anchors.fill: parent\n                    width: 100\n                    height: 100\n                    fillMode: Image.PreserveAspectCrop\n                    clip: true\n                }\n\n                Rectangle {\n                    id: mask\n                    radius: width / 2\n                    visible: false\n                    anchors.fill: parent\n                }\n\n                OpacityMask {\n                    id: opMask\n                    source:image\n                    maskSource: mask\n                    anchors.fill: image\n                }\n\n                Rectangle {\n                    id: shadow\n                    visible: false\n                    anchors.fill: parent\n                    // color: Qt.rgba(0, 0, 0, 0.5)\n                    gradient: Gradient {\n                        GradientStop {  position: 0.0; color: Qt.rgba(0, 0, 0, 0) }\n                        GradientStop {  position: 0.7; color: Qt.rgba(0, 0, 0, 0) }\n                        GradientStop {  position: 1.0; color: Qt.rgba(0, 0, 0, 1) }\n                    }\n                }\n\n                OpacityMask {\n                    id: shadowOpMask\n                    source:shadow\n                    maskSource: mask\n                    visible: control.hovered\n                    anchors.fill: shadow\n                }\n\n                Text {\n                    id: editText\n                    text: qsTr(\"edit\")\n                    color: \"white\"\n                    visible: control.hovered\n                    anchors {\n                        horizontalCenter: control.horizontalCenter\n                        bottom: control.bottom\n                        bottomMargin: 2\n                    }\n                }\n            }\n\n            ColumnLayout {\n                id: columLayout\n                anchors.left: control.right\n                anchors.leftMargin: 10\n                anchors.verticalCenter: item.verticalCenter\n                Text {\n                    text: dccData.userName(settings.userId)\n                    font.pointSize: 16\n                    font.bold: true\n                    color: palette.text\n                    elide: Text.ElideRight\n                    maximumLineCount: 1\n                    Layout.maximumWidth: item.width - 230\n                }\n                Text {\n                    id: userTypeName\n                    text: dccData.userTypeName(settings.userId)\n                    color: palette.text\n\n                    Connections {\n                        target: dccData\n                        function onUserTypeChanged(userId, type) {\n                            if (userId === settings.userId) {\n                                userTypeName.text = dccData.userTypeName(settings.userId)\n                            }\n                        }\n                    }\n                }\n            }\n            RowLayout {\n                anchors {\n                    left: columLayout.right\n                    right: parent.right\n                    leftMargin: 10\n                    verticalCenter: item.verticalCenter\n                }\n                Item {\n                    Layout.fillWidth: true\n                }\n\n                Button {\n                    text: qsTr(\"Add new user\")\n                    Layout.alignment: Qt.AlignRight | Qt.AlignHCenter\n                    Layout.rightMargin: 10\n                    implicitWidth: implicitContentWidth + 20\n                    implicitHeight: 30\n                    onClicked: {\n                        cadLoader.active = true\n                    }\n\n                    Loader {\n                        id: cadLoader\n                        active: false\n                        sourceComponent: CreateAccountDialog {\n                            onClosing: function (close) {\n                                cadLoader.active = false\n                            }\n                        }\n                        onLoaded: function () {\n                            cadLoader.item.show()\n                        }\n                    }\n                }\n            }\n        }\n    }\n\n    // 账户信息\n    DccTitleObject {\n        name: \"acountInfosTitle\"\n        parentName: settings.papaName\n        displayName: qsTr(\"Account Information\")\n        canSearch: settings.canSearch\n        weight: 18\n    }\n    DccObject {\n        name: settings.papaName + \"acountInfos\"\n        parentName: settings.papaName\n        description: qsTr(\"Account name, account fullname, account type\")\n        canSearch: settings.canSearch\n        weight: 20\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        DccObject {\n            name: settings.papaName + \"acountName\"\n            parentName: settings.papaName + \"acountInfos\"\n            displayName: qsTr(\"Account name\")\n            canSearch: settings.canSearch\n            weight: 10\n            pageType: DccObject.Editor\n            page: Label {\n                text: dccData.userName(settings.userId)\n            }\n        }\n        DccObject {\n            name: settings.papaName + \"acountFullname\"\n            parentName: settings.papaName + \"acountInfos\"\n            displayName: qsTr(\"Account fullname\")\n            canSearch: settings.canSearch\n            weight: 20\n            pageType: DccObject.Editor\n            page: RowLayout {\n                property string originalFullName: \"\" // Store original name here\n\n                EditActionLabel {\n                    id: fullNameEdit\n                    property bool rightClickPressed: false\n                    property bool contextMenuVisible: false\n                    property int savedSelectionStart: -1\n                    property int savedSelectionEnd: -1\n                    property string savedSelectedText: \"\"\n                    implicitWidth: 200\n                    text: dccData.fullName(settings.userId)\n                    placeholderText: qsTr(\"Set fullname\")\n                    horizontalAlignment: TextInput.AlignRight\n                    editBtn.visible: readOnly\n                    \n                    onEditingFinished: {\n                        if (readOnly)\n                            return\n                        \n                        if (contextMenuVisible) {\n                            return\n                        }\n                        if (rightClickPressed) {\n                            rightClickPressed = false\n                            return\n                        }\n                        \n                        if (showAlert)\n                            showAlert = false\n\n                        readOnly = true\n                        finished()\n                    }\n                    ToolTip {\n                        visible: parent.hovered && parent.readOnly && parent.completeText != \"\" && (parent.metrics.advanceWidth(parent.completeText) > (parent.width - parent.rightPadding - 10))\n                        text: parent.completeText\n                    }\n\n                    Component.onCompleted: {\n                        completeText = text\n                        var elidedText = metrics.elidedText(completeText, Text.ElideRight, width - rightPadding - 10)\n                        text = elidedText\n                    }\n\n                    Menu {\n                        id: contextMenu\n                        \n                        onAboutToShow: {\n                            fullNameEdit.contextMenuVisible = true\n                            if (fullNameEdit.savedSelectionStart >= 0 && fullNameEdit.savedSelectionEnd >= 0) {\n                                Qt.callLater(function() {\n                                    fullNameEdit.select(fullNameEdit.savedSelectionStart, fullNameEdit.savedSelectionEnd)\n                                })\n                            }\n                        }\n                        \n                        onAboutToHide: {\n                            fullNameEdit.contextMenuVisible = false\n                            Qt.callLater(function() {\n                                fullNameEdit.rightClickPressed = false\n                                fullNameEdit.forceActiveFocus()\n                                fullNameEdit.savedSelectionStart = -1\n                                fullNameEdit.savedSelectionEnd = -1\n                                fullNameEdit.savedSelectedText = \"\"\n                            })\n                        }\n                        \n                        Action {\n                            text: qsTr(\"Undo\")\n                            enabled: fullNameEdit.canUndo && !fullNameEdit.readOnly\n                            onTriggered: {\n                                fullNameEdit.undo()\n                                Qt.callLater(function() {\n                                    fullNameEdit.forceActiveFocus()\n                                })\n                            }\n                        }\n                        \n                        Action {\n                            text: qsTr(\"Redo\")\n                            enabled: fullNameEdit.canRedo && !fullNameEdit.readOnly\n                            onTriggered: {\n                                fullNameEdit.redo()\n                                Qt.callLater(function() {\n                                    fullNameEdit.forceActiveFocus()\n                                })\n                            }\n                        }\n                        \n                        MenuSeparator {}\n                        \n                        Action {\n                            text: qsTr(\"Cut\")\n                            enabled: fullNameEdit.savedSelectedText.length > 0 && !fullNameEdit.readOnly\n                            onTriggered: {\n                                fullNameEdit.cut()\n                                Qt.callLater(function() {\n                                    fullNameEdit.forceActiveFocus()\n                                })\n                            }\n                        }\n                        \n                        Action {\n                            text: qsTr(\"Copy\")\n                            enabled: fullNameEdit.savedSelectedText.length > 0\n                            onTriggered: {\n                                fullNameEdit.copy()\n                                Qt.callLater(function() {\n                                    fullNameEdit.forceActiveFocus()\n                                })\n                            }\n                        }\n                        \n                        Action {\n                            text: qsTr(\"Paste\")\n                            enabled: !fullNameEdit.readOnly\n                            onTriggered: {\n                                fullNameEdit.paste()\n                                Qt.callLater(function() {\n                                    fullNameEdit.forceActiveFocus()\n                                })\n                            }\n                        }\n                        \n                        MenuSeparator {}\n                        \n                        Action {\n                            text: qsTr(\"Select All\")\n                            enabled: fullNameEdit.text.length > 0\n                            onTriggered: {\n                                fullNameEdit.selectAll()\n                                Qt.callLater(function() {\n                                    fullNameEdit.forceActiveFocus()\n                                })\n                            }\n                        }\n                    }\n\n                    // 右键菜单处理\n                    MouseArea {\n                        anchors.fill: parent\n                        acceptedButtons: Qt.RightButton\n                        onPressed: function(mouse) {\n                            if (mouse.button === Qt.RightButton && parent.text.length > 0) {\n                                parent.savedSelectionStart = parent.selectionStart\n                                parent.savedSelectionEnd = parent.selectionEnd  \n                                parent.savedSelectedText = parent.selectedText\n                                parent.rightClickPressed = true\n                            }\n                        }\n                        onClicked: function(mouse) {\n                            if (mouse.button === Qt.RightButton && parent.text.length > 0) {\n                                contextMenu.popup()\n                                mouse.accepted = true\n                            }\n                        }\n                    }\n\n                    onReadOnlyChanged: {\n                        if (rightClickPressed) {\n                            return\n                        }\n                        // Store the original text when editing starts\n                        if (!readOnly) {\n                            text = completeText\n                            originalFullName = completeText\n                            rightClickPressed = false\n                        }\n                    }\n                    onTextEdited: {\n                        rightClickPressed = false\n                        if (showAlert)\n                            showAlert = false\n                        // validtor can not paste invalid text..\n                        var regex = /^[^:]{0,32}$/\n                        if (!regex.test(text)) {\n                            var filteredText = text\n                            filteredText = filteredText.replace(\":\", \"\")\n\n                            if (filteredText.length > 32) {\n                                showAlert = true\n                                alertText = qsTr(\"The full name is too long\")\n                                dccData.playSystemSound(14)\n                            }\n\n                            // 长度 32\n                            filteredText = filteredText.slice(0, 32)\n                            text = filteredText\n                        }\n                    }\n\n                    onFinished: function () {\n                        if (rightClickPressed) {\n                            fullNameEdit.readOnly = false\n                            return\n                        }\n                        // If text hasn't changed, do nothing\n                        if (text === originalFullName) {\n                            var elidedText = fullNameEdit.metrics.elidedText(fullNameEdit.completeText, Text.ElideRight, \n                            fullNameEdit.width - fullNameEdit.rightPadding - 10)\n                            fullNameEdit.text = elidedText\n                            return;\n                        }\n\n                        // --- Original validation and saving logic ---\n                        let alertMsg = dccData.checkFullname(text)\n                        if (alertMsg.length > 0) {\n                            showAlert = false\n                            showAlert = true\n                            alertText = alertMsg\n                            readOnly = false\n                            return\n                        }\n\n                        if (text.trim().length === 0) {\n                            dccData.setFullname(settings.userId, \"\");\n                            fullNameEdit.text = \"\";\n                            return;\n                        }\n\n                        dccData.setFullname(settings.userId, text)\n                    }\n                    Connections {\n                        target: dccData\n                        function onFullnameChanged(userId, fullname) {\n                            if (userId === settings.userId) {\n                                fullNameEdit.completeText = dccData.fullName(settings.userId)\n                                var elidedText = fullNameEdit.metrics.elidedText(fullNameEdit.completeText, Text.ElideRight, \n                                fullNameEdit.width - fullNameEdit.rightPadding - 10)\n                                fullNameEdit.text = elidedText\n                            }\n                        }\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: settings.papaName + \"acountType\"\n            parentName: settings.papaName + \"acountInfos\"\n            displayName: qsTr(\"Account type\")\n            canSearch: settings.canSearch\n            weight: 30\n            pageType: DccObject.Editor\n            enabled: dccData.isDeleteAble(settings.userId)\n            page: ComboBox {\n                flat: true\n                model: dccData.userTypes()\n                currentIndex: dccData.userType(settings.userId)\n                onActivated: function (index) {\n                    dccData.setUserType(settings.userId, index)\n                }\n\n                Connections {\n                    target: dccData\n                    function onUserTypeChanged(userId, type) {\n                        if (userId === settings.userId) {\n                            currentIndex = type\n                        }\n                    }\n                }\n            }\n        }\n    }\n\n    // 登陆设置\n    DccTitleObject {\n        name: settings.papaName + \"acountSettingsTitle\"\n        parentName: settings.papaName\n        displayName: qsTr(\"Login settings\")\n        canSearch: settings.canSearch\n        weight: 28\n        visible: acountSettings.visible\n    }\n    DccObject {\n        id: acountSettings\n        name: settings.papaName + \"acountSettings\"\n        parentName: settings.papaName\n        description: qsTr(\"quick login, Auto login, login without password\")\n        canSearch: settings.canSearch\n        weight: 30\n        pageType: DccObject.Item\n        page: DccGroupView {}\n        visible: (autoLongin.visible || noPassword.visible || quickLogin.visible) && !DccApp.isTreeland()\n\n        DccObject {\n            id: quickLogin\n            name: settings.papaName + \"quickLogin\"\n            parentName: settings.papaName + \"acountSettings\"\n            displayName: qsTr(\"Quick login\")\n            canSearch: settings.canSearch\n            weight: 20\n            pageType: DccObject.Editor\n            visible: dccData.isQuickLoginVisible\n            enabled: dccData.currentUserId() === settings.userId\n            page: Switch {\n                checked: settings.noQuickLoginChecked\n                onCheckedChanged: {\n                    if (settings.noQuickLoginChecked != checked)\n                        settings.noQuickLoginChecked = checked\n\n                    dccData.setQuickLogin(settings.userId, checked)\n                }\n            }\n        }\n        \n        DccObject {\n            id: autoLongin\n            name: settings.papaName + \"autoLongin\"\n            parentName: settings.papaName + \"acountSettings\"\n            displayName: qsTr(\"Auto login\")\n            canSearch: settings.canSearch\n            weight: 10\n            pageType: DccObject.Editor\n            visible: dccData.isAutoLoginVisable()\n            enabled: dccData.currentUserId() === settings.userId\n            page: Switch {\n                checked: settings.autoLoginChecked\n                onCheckedChanged: {\n                    if (settings.autoLoginChecked != checked)\n                        settings.autoLoginChecked = checked\n\n                    if (checked) {\n                        var userName = dccData.getOtherUserAutoLogin()\n                        if (userName.length > 0) {\n                            awdLoader.active = true\n                            awdLoader.item.userName = userName\n                            return\n                        }\n                    }\n\n                    dccData.setAutoLogin(settings.userId, checked)\n                }\n\n                Loader {\n                    id: awdLoader\n                    active: false\n                    sourceComponent: AutoLoginWarningDialog {\n                        onClosing: function (close) {\n                            awdLoader.active = false\n                            settings.autoLoginChecked = false\n                        }\n                    }\n                    onLoaded: function () {\n                        awdLoader.item.show()\n                    }\n                }\n            }\n        }\n\n        DccObject {\n            id: noPassword\n            name: settings.papaName + \"noPassword\"\n            parentName: settings.papaName + \"acountSettings\"\n            displayName: qsTr(\"Login without password\")\n            canSearch: settings.canSearch\n            weight: 30\n            pageType: DccObject.Editor\n            visible: dccData.isNoPassWordLoginVisable()\n            enabled: dccData.currentUserId() === settings.userId\n            page: Switch {\n                checked: settings.nopasswdLoginChecked\n                onCheckedChanged: {\n                    if (settings.nopasswdLoginChecked != checked)\n                        settings.nopasswdLoginChecked = checked\n\n                    dccData.setNopasswdLogin(settings.userId, checked)\n                }\n            }\n        }\n    }\n\n    // 登陆方式\n    LoginMethod {\n        name: settings.papaName + \"loginMethodTitle\"\n        parentName: settings.papaName\n        userId: settings.userId\n        canSearch: settings.canSearch\n    }\n\n    // 动态锁\n    // DccObject {\n    //     name: settings.papaName + \"dynamicLockTitle\"\n    //     parentName: settings.papaName\n    //     displayName: qsTr(\"Dynamic lock screen\")\n    //     weight: 48\n    //     pageType: DccObject.Item\n    //     page: Label {\n    //         leftPadding: 5\n    //         text: dccObj.displayName\n    //         font {\n    //             pointSize: 13\n    //             bold: true\n    //         }\n    //     }\n    //     onParentItemChanged: item => { if (item) item.topPadding = 10 }\n    // }\n    // DccObject {\n    //     name: settings.papaName + \"dynamicLockGroups\"\n    //     parentName: settings.papaName\n    //     displayName: qsTr(\"Dynamic lock screen groups\")\n    //     weight: 50\n    //     pageType: DccObject.Item\n    //     page: DccGroupView {}\n\n    //     DccObject {\n    //         name: settings.papaName + \"dynamicLockItem\"\n    //         parentName: settings.papaName + \"dynamicLockGroups\"\n    //         displayName: qsTr(\"Lock screen when device is disconnected\")\n    //         description: qsTr(\"Lock screen when the bound Bluetooth device is disconnected\")\n    //         weight: 10\n    //         pageType: DccObject.Editor\n    //         page: Switch {}\n    //     }\n    // }\n    DccObject {\n        id: bottomButtons\n        name: settings.papaName + \"BottomButtons\"\n        parentName: settings.papaName\n        canSearch: settings.canSearch\n        weight: 0xFFFF\n        pageType: DccObject.Item\n        page: RowLayout {\n            Button {\n                id: deleteBtn\n                Layout.alignment: groupSettingsBtn.visible ? Qt.AlignLeft : Qt.AlignRight\n                text: qsTr(\"Delete current account\")\n                enabled: dccData.isDeleteAble(settings.userId)\n                implicitWidth: implicitContentWidth + 20\n                implicitHeight: 30\n                contentItem: Text {\n                    text: deleteBtn.text\n                    color: deleteBtn.ColorSelector.controlState === DTK.InactiveState ? \"#66FF5736\" : \"#FF5736\"\n                    verticalAlignment: Text.AlignVCenter\n                    horizontalAlignment: Text.AlignHCenter\n                }\n                Loader {\n                    id: cfdLoader\n                    active: false\n                    sourceComponent: ComfirmDeleteDialog {\n                        onClosing: function (close) {\n                            cfdLoader.active = false\n                        }\n                        onRequestDelete: function (deleteHome) {\n                            dccData.removeUser(settings.userId, deleteHome)\n                        }\n                    }\n                    onLoaded: function () {\n                        cfdLoader.item.show()\n                    }\n                }\n                onClicked: {\n                    cfdLoader.active = true\n                }\n                Connections {\n                    target: dccData\n                    function onOnlineUserListChanged() {\n                        deleteBtn.enabled = dccData.isDeleteAble(settings.userId)\n                    }\n                }\n            }\n\n            Button {\n                id: groupSettingsBtn\n                Layout.alignment: Qt.AlignRight\n                text: qsTr(\"Group setting\")\n                visible: dccData.needShowGroups()\n                implicitWidth: implicitContentWidth + 20\n                implicitHeight: 30\n                onClicked: {\n                    DccApp.showPage(groupSettings)\n                }\n            }\n        }\n        DccObject {\n            id: groupSettings\n            property bool isEditing\n            name: settings.papaName + \"GroupSettings\"\n            parentName: bottomButtons.name\n            displayName: qsTr(\"Account groups\")\n            canSearch: settings.canSearch\n            weight: 10\n            pageType: DccObject.Menu\n            page: ListView {\n                id: groupview\n                property int lrMargin: DccUtils.getMargin(width)\n                property int conY: 0\n                property bool blockInitialFocus: false\n                property bool focusNewlyCreatedItem: false\n                property bool mousePressed: false\n                property Item headerEditButton\n                property Item addGroupButton\n                spacing: 0\n                currentIndex: -1\n                activeFocusOnTab: true\n                keyNavigationEnabled: true\n                clip: false\n\n                cacheBuffer: height * 6\n                displayMarginBeginning: height * 2\n                displayMarginEnd: height * 2\n\n                MouseArea {\n                    anchors.fill: parent\n                    propagateComposedEvents: true\n                    onPressed: function(mouse) {\n                        groupview.mousePressed = true\n                        mouse.accepted = false\n                    }\n                    onReleased: function(mouse) {\n                        groupview.mousePressed = false\n                        mouse.accepted = false\n                    }\n                }\n\n                onActiveFocusChanged: {\n                    if (activeFocus && count > 0) {\n                        if (focusNewlyCreatedItem) {\n                            return\n                        }\n                        if (blockInitialFocus) {\n                            if (model && model.isCreatingGroup) {\n                                blockInitialFocus = false\n                                return\n                            }\n                            blockInitialFocus = false\n                            if (mousePressed) {\n                                mousePressed = false\n                                return\n                            }\n                            focus = false\n                            return\n                        }\n                        if (groupview.headerEditButton && !mousePressed) {\n                            groupview.headerEditButton.forceActiveFocus(Qt.TabFocusReason)\n                            return\n                        }\n                        if (mousePressed) {\n                            mousePressed = false\n                        }\n                    }\n                }\n\n                onCurrentIndexChanged: {\n                    if (activeFocus && currentItem) {\n                        currentItem.forceActiveFocus()\n                    }\n                }\n\n                function qmlListModelUpdata() {\n                    if (model && model.isCreatingGroup) {\n                        model.setCreatingGroup(false)\n                        Qt.callLater(function () {\n                            groupview.positionViewAtEnd()\n                            if (groupview.focusNewlyCreatedItem && groupview.count > 0) {\n                                groupview.currentIndex = groupview.count - 1\n                                if (groupview.currentItem && groupview.currentItem.forceActiveFocus) {\n                                    groupview.currentItem.forceActiveFocus()\n                                }\n                                groupview.focusNewlyCreatedItem = false\n                            }\n                        })\n                    } else {\n                        groupview.contentY = conY\n                    }\n                }\n\n                Connections {\n                    target: model\n                    function onGroupsUpdated() {\n                        qmlListModelUpdata()\n                    }\n                }\n\n                onContentYChanged: {\n                    if(contentY != -50) {\n                        conY = contentY\n                    }\n                }\n                anchors {\n                    left: parent ? parent.left : undefined\n                    right: parent ? parent.right : undefined\n                }\n\n                ScrollBar.vertical: ScrollBar {\n                    width: 10\n                }\n\n                header: Item {\n                    implicitHeight: 50\n                    anchors {\n                        left: parent ? parent.left : undefined\n                        right: parent ? parent.right : undefined\n                        leftMargin: groupview.lrMargin\n                        rightMargin: groupview.lrMargin\n                    }\n                    RowLayout {\n                        anchors.fill: parent\n                        DccLabel {\n                            Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter\n                            Layout.leftMargin: 10\n                            font.pixelSize: DTK.fontManager.t5.pixelSize\n                            font.weight: 700\n                            text: dccObj.displayName\n                        }\n\n                        Button {\n                            id: button\n                            checkable: true\n                            checked: groupSettings.isEditing\n                            Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                            Layout.rightMargin: 10\n                            text: groupSettings.isEditing ? qsTr(\"done\") : qsTr(\"edit\")\n                            font: DTK.fontManager.t8\n                            focusPolicy: Qt.StrongFocus\n                            activeFocusOnTab: true\n                            background: Rectangle {\n                                radius: addGroupButton.background.radius\n                                color: \"transparent\"\n                                border.color: parent.palette.highlight\n                                border.width: button.activeFocus ? 2 : 0\n                            }\n                            Keys.onPressed: function(event) {\n                                if (event.key === Qt.Key_Tab && !event.isAutoRepeat) {\n                                    event.accepted = true\n                                    groupview.blockInitialFocus = false\n                                    groupview.currentIndex = 0\n                                    groupview.positionViewAtIndex(0, ListView.Beginning)\n                                    Qt.callLater(function() {\n                                        if (groupview.currentItem && groupview.currentItem.forceActiveFocus) {\n                                            groupview.currentItem.forceActiveFocus(Qt.TabFocusReason)\n                                        }\n                                    })\n                                    return\n                                }\n                            }\n                            Component.onCompleted: {\n                                groupview.headerEditButton = button\n                            }\n                            onActiveFocusChanged: {\n                                if (activeFocus) {\n                                    groupview.positionViewAtBeginning()\n                                }\n                            }\n                            textColor: Palette {\n                                normal {\n                                    common: DTK.makeColor(Color.Highlight)\n                                    crystal: DTK.makeColor(Color.Highlight)\n                                }\n                            }\n                            onCheckedChanged: {\n                                groupSettings.isEditing = button.checked\n                            }\n                        }\n                    }\n                }\n\n                model: settings.userId.length > 0 ? dccData.groupsModel(settings.userId) : 0\n                delegate: ItemDelegate {\n                    id: itemDelegate\n                    implicitHeight: 36\n                    padding: 0\n                    checkable: false\n                    clip: false\n                    z: editLabel.showAlert ? 100 : 1\n\n                    focusPolicy: Qt.StrongFocus\n                    activeFocusOnTab: false\n                    KeyNavigation.tab: groupview.addGroupButton\n\n                    Keys.onPressed: function(event) {\n                        if (!model.groupEnabled) {\n                            if (event.key === Qt.Key_Up) {\n                                if (groupview.currentIndex > 0) {\n                                    groupview.currentIndex = groupview.currentIndex - 1\n                                    groupview.positionViewAtIndex(groupview.currentIndex, ListView.Contain)\n                                }\n                                event.accepted = true\n                                return\n                            } else if (event.key === Qt.Key_Down) {\n                                if (groupview.currentIndex < groupview.count - 1) {\n                                    groupview.currentIndex = groupview.currentIndex + 1\n                                    groupview.positionViewAtIndex(groupview.currentIndex, ListView.Contain)\n                                }\n                                event.accepted = true\n                                return\n                            }\n                            event.accepted = true\n                            return\n                        }\n                        if (!editLabel.readOnly) {\n                            return\n                        }\n                        if (event.key === Qt.Key_Up) {\n                            if (groupview.currentIndex > 0) {\n                                groupview.currentIndex = groupview.currentIndex - 1\n                                groupview.positionViewAtIndex(groupview.currentIndex, ListView.Contain)\n                            }\n                            event.accepted = true\n                        } else if (event.key === Qt.Key_Down) {\n                            if (groupview.currentIndex < groupview.count - 1) {\n                                groupview.currentIndex = groupview.currentIndex + 1\n                                groupview.positionViewAtIndex(groupview.currentIndex, ListView.Contain)\n                            }\n                            event.accepted = true\n                        } else if (event.key === Qt.Key_Space || event.key === Qt.Key_Return || event.key === Qt.Key_Enter) {\n                            if (!groupSettings.isEditing && model.groupEnabled) {\n                                dccData.setGroup(settings.userId, model.display, !editButton.checked)\n                                groupview.currentIndex = -1\n                                groupview.focus = false\n                            }\n                            event.accepted = true\n                        }\n                    }\n\n                    property var editTextWidth: itemDelegate.width - editButton.width - rightPadding - 80\n                    background: DccItemBackground {\n                        backgroundType: DccObject.Normal\n                        separatorVisible: true\n                    }\n                    anchors {\n                        left: parent ? parent.left : undefined\n                        right: parent ? parent.right : undefined\n                        leftMargin: groupview.lrMargin\n                        rightMargin: groupview.lrMargin\n                    }\n\n                    onWidthChanged: {\n                        if (editLabel.readOnly) {\n                            var elidedText = editLabel.metrics.elidedText(editLabel.completeText, Text.ElideRight, editTextWidth)\n                            editLabel.text = elidedText\n                            return\n                        }\n                    }\n\n                    contentItem: RowLayout {\n                        spacing: 0\n                        Item {\n                            id: editContainer\n                            Layout.fillWidth: !editLabel.readOnly\n                            Layout.alignment: Qt.AlignVCenter\n                            Layout.leftMargin: 14\n                            Layout.rightMargin: 2\n                            implicitHeight: 36\n                            implicitWidth: !editLabel.readOnly \n                                        ? groupview.width\n                                        : Math.min(editLabel.metrics.advanceWidth(editLabel.text) + editButton.width + 20,\n                                                groupview.width - editButton.width - 30)\n\n                            EditActionLabel {\n                                id: editLabel\n                                property bool editAble: model.groupEditAble\n                                property string lastValidText: \"\"\n                                property bool isRestoring: false\n                                property string originalGroupName: \"\"\n                                anchors.fill: parent\n                                text: model.display\n                                completeText: model.display\n                                rightPadding: editButton.width + 10\n                                placeholderText: qsTr(\"Group name\")\n                                background: Item{}\n                                horizontalAlignment: TextInput.AlignLeft\n                                verticalAlignment: TextInput.AlignVCenter\n                                editBtn.visible: readOnly && editAble\n                                                 && !groupSettings.isEditing\n                                readOnly: model.display.length > 0\n                                ToolTip {\n                                    visible: parent.hovered && parent.readOnly && parent.completeText != \"\" && (parent.metrics.advanceWidth(parent.completeText) > (parent.width - parent.rightPadding - 10))\n                                    text: parent.completeText\n                                }\n\n                                // Monitor model.display changes to update elided text\n                                onCompleteTextChanged: {\n                                    if (readOnly && completeText.length > 0) {\n                                        var elidedText = metrics.elidedText(completeText, Text.ElideRight, editTextWidth)\n                                        text = elidedText\n                                    }\n                                }\n\n                            onReadOnlyChanged: {\n                                if (!readOnly) {\n                                    text = completeText\n                                    lastValidText = model.display\n                                    originalGroupName = model.display\n                                }\n                            }\n\n                            Connections {\n                                target: dccData\n                                function onGroupsUpdateFailed(groupName) {\n                                    if (groupName === editLabel.originalGroupName) {\n                                        editLabel.completeText = editLabel.originalGroupName\n                                        var elidedText = editLabel.metrics.elidedText(editLabel.originalGroupName, Text.ElideRight, editTextWidth)\n                                        editLabel.text = elidedText\n                                    }\n                                }\n                            }\n\n                            onTextChanged: {\n                                if (readOnly) {\n                                    return\n                                }\n                                if (isRestoring) {\n                                    isRestoring = false\n                                    return\n                                }\n\n                                if (showAlert)\n                                    showAlert = false\n\n                                if (text.length < 1 && lastValidText.length > 0 && !readOnly) {\n                                    Qt.callLater(function() {\n                                        editLabel.forceActiveFocus()\n                                    })\n                                }\n\n                                var isNewGroup = (model.display.length === 0)\n\n                                if (text.length > 32) {\n                                    showAlert = true\n                                    alertText = qsTr(\"Group names should be no more than 32 characters\")\n                                    dccData.playSystemSound(14)\n                                    isRestoring = true\n                                    text = lastValidText\n                                    return\n                                }\n\n                                var numbersOnlyRegex = /^[0-9]+$/\n                                if (text.length > 0 && numbersOnlyRegex.test(text)) {\n                                    showAlert = true\n                                    alertText = qsTr(\"Group names cannot only have numbers\")\n                                    dccData.playSystemSound(14)\n                                    isRestoring = true\n                                    text = lastValidText\n                                    return\n                                }\n\n                                var validFormatRegex = /^[a-zA-Z][a-zA-Z0-9-_]*$/\n                                if (text.length > 0 && !validFormatRegex.test(text) && model.display != \"_ssh\") {\n                                    showAlert = true\n                                    alertText = qsTr(\"Use letters,numbers,underscores and dashes only, and must start with a letter\")\n                                    dccData.playSystemSound(14)\n                                    isRestoring = true\n                                    text = lastValidText\n                                    return\n                                }\n\n                                lastValidText = text\n                            }\n\n                            onFinished: function () {\n                                var wasNewGroup = (model.display.length < 1)\n                                if (text.length < 1) {\n                                    if (model.display.length < 1) {\n                                        dccData.requestClearEmptyGroup(settings.userId)\n                                    } else {\n                                        var elidedText = metrics.elidedText(model.display, Text.ElideRight, editTextWidth)\n                                        text = elidedText\n                                        readOnly = true\n                                    }\n                                    return\n                                }\n\n                                if (dccData.groupExists(text) && text !== model.display) {\n                                    showAlert = true\n                                    alertText = qsTr(\"The group name has been used\")\n                                    return\n                                }\n\n                                if (text === model.display) {\n                                    completeText = text\n                                    var elidedText = metrics.elidedText(completeText, Text.ElideRight, editTextWidth)\n                                    text = elidedText\n                                    readOnly = true\n                                    return\n                                }\n\n                                if (model.display.length < 1)\n                                    dccData.createGroup(text)\n                                else\n                                    dccData.modifyGroup(model.display, text)\n\n                                completeText = text\n                                var elidedText = metrics.elidedText(completeText, Text.ElideRight, editTextWidth)\n                                text = elidedText\n                                readOnly = true\n\n                                // 当通过回车结束新建分组的编辑时，清空 ListView 的焦点与选中\n                                if (wasNewGroup) {\n                                    groupview.currentIndex = -1\n                                    groupview.focus = false\n                                }\n                            }\n                            onFocusChanged: {\n                                if (focus || text.length > 0 || editLabel.readOnly)\n                                    return\n\n                                if (model.display.length < 1) {\n                                    dccData.requestClearEmptyGroup(settings.userId)\n                                    return\n                                }\n\n                                text = model.display\n                            }\n                            Component.onCompleted: {\n                                completeText = model.display\n                                lastValidText = model.display\n                                originalGroupName = model.display  // Initialize original name\n\n                                if (editLabel.readOnly) {\n                                    var elidedText = metrics.elidedText(completeText, Text.ElideRight, editTextWidth)\n                                    text = elidedText\n                                    return\n                                }\n\n                                Qt.callLater(function () {\n                                    editLabel.focus = true\n                                })\n                            }\n                        }\n                        }\n\n                        Item {\n                            Layout.fillWidth: true\n                            Layout.alignment: Qt.AlignVCenter\n                            implicitHeight: 36\n\n                            MouseArea {\n                                anchors.fill: parent\n                                visible: !groupSettings.isEditing\n                                enabled: model.groupEnabled\n                                acceptedButtons: Qt.AllButtons\n                                onClicked: {\n                                    dccData.setGroup(settings.userId, model.display, !editButton.checked)\n                                }\n                            }\n                        }\n\n                        ActionButton {\n                            id: editButton\n                            focusPolicy: Qt.NoFocus\n                            icon.width: 16\n                            icon.height: 16\n                            visible: groupSettings.isEditing ? editLabel.editAble : editLabel.readOnly\n                            enabled: model.groupEnabled\n                            icon.name: {\n                                if (groupSettings.isEditing) {\n                                    return \"list_delete\"\n                                }\n\n                                return editButton.checked ? \"item_checked\" : \"radio_unchecked\"\n                            }\n\n                            background: null\n                            Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                            // list_delete.dci icon has padding 10 (1.10p)\n                            Layout.rightMargin: groupSettings.isEditing ? 0 : 10\n                            // only checked from groupsChanged\n                            checkable: false\n                            checked: dccData.groupContains(settings.userId, model.display)\n                            onClicked: {\n                                if (groupSettings.isEditing) {\n                                    // delete group\n                                    dccData.deleteGroup(model.display)\n                                    groupSettings.isEditing = false\n                                    return\n                                }\n\n                                dccData.setGroup(settings.userId, model.display, !editButton.checked)\n                            }\n                        }\n                    }\n\n                    Item {\n                        anchors.fill: parent\n                        visible: !model.groupEnabled\n                        z: 10000\n                        focus: true\n                        Keys.onPressed: function(event) {\n                            if (event.key === Qt.Key_Up) {\n                                if (groupview.currentIndex > 0) {\n                                    groupview.currentIndex = groupview.currentIndex - 1\n                                    groupview.positionViewAtIndex(groupview.currentIndex, ListView.Contain)\n                                }\n                                event.accepted = true\n                                return\n                            } else if (event.key === Qt.Key_Down) {\n                                if (groupview.currentIndex < groupview.count - 1) {\n                                    groupview.currentIndex = groupview.currentIndex + 1\n                                    groupview.positionViewAtIndex(groupview.currentIndex, ListView.Contain)\n                                }\n                                event.accepted = true\n                                return\n                            }\n                            event.accepted = true\n                        }\n                        Keys.onReleased: function(event) { event.accepted = true }\n                        Keys.onShortcutOverride: function(event) { event.accepted = true }\n\n                        MouseArea {\n                            anchors.fill: parent\n                            acceptedButtons: Qt.AllButtons\n                            hoverEnabled: true\n                            preventStealing: true\n                            onPressed: function(mouse) { mouse.accepted = true }\n                            onReleased: function(mouse) { mouse.accepted = true }\n                            onClicked: function(mouse) { mouse.accepted = true }\n                            onWheel: function(wheel) { wheel.accepted = true }\n                        }\n                    }\n\n                    corners: getCornersForBackground(index, groupview.count)\n                }\n\n                footer: Item {\n                    implicitHeight: 50\n                    anchors {\n                        left: parent ? parent.left : undefined\n                        right: parent ? parent.right : undefined\n                        leftMargin: groupview.lrMargin\n                        rightMargin: groupview.lrMargin\n                    }\n                    RowLayout {\n                        anchors.fill: parent\n                        Button {\n                            id: addGroupButton\n                            Layout.alignment: Qt.AlignRight\n                            text: qsTr(\"Add group\")\n                            implicitWidth: implicitContentWidth + 20\n                            implicitHeight: 30\n                            focusPolicy: Qt.StrongFocus\n                            activeFocusOnTab: true\n                            Component.onCompleted: {\n                                groupview.addGroupButton = addGroupButton\n                            }\n                            onActiveFocusChanged: {\n                                if (activeFocus) {\n                                    groupview.positionViewAtEnd()\n                                }\n                            }\n                            Keys.onPressed: function(event) {\n                                if (event.key === Qt.Key_Tab || event.key === Qt.Key_Backtab) {\n                                    groupview.blockInitialFocus = true\n                                    groupview.focus = false\n                                    event.accepted = false\n                                    return\n                                }\n                            }\n                            onClicked: {\n                                groupview.focusNewlyCreatedItem = true\n                                dccData.requestCreateGroup(settings.userId)\n                                groupview.positionViewAtEnd()\n                            }\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-accounts/qml/Accounts.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n    name: \"accounts\"\n    parentName: \"root\"\n    displayName: qsTr(\"Account\")\n    description: qsTr(\"Account manager\")\n    icon: \"accounts\"\n    weight: 60\n}\n\n"
  },
  {
    "path": "src/plugin-accounts/qml/AccountsMain.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick\nimport QtQuick.Controls\nimport QtQuick.Layouts\nimport Qt5Compat.GraphicalEffects\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nDccObject {\n    AccountSettings {\n        id: currentAccount\n        name: \"currentAccount\"\n        papaName: \"accounts\"\n        userId: dccData.currentUserId()\n    }\n\n    // 其他账户\n    DccTitleObject {\n        id: otherAcountsTitle\n        name: \"otherAcountsTitle\"\n        parentName: \"accounts\"\n        displayName: qsTr(\"Other accounts\")\n        canSearch: settings.canSearch\n        weight: 58\n    }\n\n    DccObject {\n        name: \"otherAcounts\"\n        parentName: \"accounts\"\n        weight: 60\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        DccObject {\n           name: \"otherAccountsItemView\"\n           parentName: \"otherAcounts\"\n           weight: 10\n           pageType: DccObject.Item\n           page: ListView {\n               id: accountView\n               implicitHeight: contentHeight\n               implicitWidth: 400\n               clip: true\n               boundsBehavior: Flickable.StopAtBounds\n               snapMode: ListView.SnapOneItem\n               activeFocusOnTab: true\n               keyNavigationEnabled: true\n               model: dccData.accountsModel()\n               \n               onActiveFocusChanged: {\n                   if (activeFocus && count > 0) {\n                       currentIndex = 0\n                   }\n               }\n               \n               onCurrentIndexChanged: {\n                   if (activeFocus && currentItem) {\n                       currentItem.forceActiveFocus()\n                   }\n               }\n               delegate: D.ItemDelegate {\n                   id: menuItemDelegate\n                   implicitWidth: accountView.width\n                   implicitHeight: Math.max(50, contentItem.implicitHeight + topPadding + bottomPadding)\n                   property alias separatorVisible: background.separatorVisible\n                   property real iconRadius: 8\n                   property real iconSize: 32\n\n                   corners: getCornersForBackground(index, accountView.count)\n                   backgroundVisible: false\n                   checkable: false\n                   focusPolicy: Qt.TabFocus\n                   activeFocusOnTab: true\n                   topPadding: topInset\n                   bottomPadding: bottomInset\n                   leftPadding: 10\n                   rightPadding: 8\n                   hoverEnabled: true\n                   icon {\n                       name: model.avatar\n                       width: menuItemDelegate.iconSize\n                       height: menuItemDelegate.iconSize\n                   }\n                   contentItem: RowLayout {\n                       Item {\n                           implicitWidth: icon.width + 10\n                           implicitHeight: icon.height + 10\n                           \n                           D.IconLabel {\n                               id: iconLabel\n                               anchors.centerIn: parent\n                               spacing: menuItemDelegate.spacing\n                               mirrored: menuItemDelegate.mirrored\n                               display: menuItemDelegate.display\n                               alignment: Qt.AlignLeft | Qt.AlignVCenter\n                               icon: D.DTK.makeIcon(menuItemDelegate.icon, menuItemDelegate.D.DciIcon)\n                               visible: false\n                           }\n\n                           Rectangle {\n                               id: mask\n                               width: menuItemDelegate.iconSize\n                               height: menuItemDelegate.iconSize\n                               radius: menuItemDelegate.iconRadius\n                               visible: false\n                               anchors.centerIn: parent\n                           }\n\n                           OpacityMask {\n                               anchors.centerIn: parent\n                               width: menuItemDelegate.iconSize\n                               height: menuItemDelegate.iconSize\n                               source: iconLabel\n                               maskSource: mask\n                           }\n\n                           Rectangle {\n                               id: onlineIndicator\n                               visible: model.online\n                               width: 10\n                               height: 10\n                               radius: 6\n                               z: 10\n                               color: \"#67EF4A\"\n                               border.color: \"white\"\n                               anchors {\n                                   right: parent.right\n                                   bottom: parent.bottom\n                                   rightMargin: 3\n                                   bottomMargin: 3\n                               }\n                           }\n                       }\n\n                       Loader {\n                           Layout.fillWidth: true\n                           Layout.alignment: Qt.AlignRight\n                           sourceComponent: RowLayout {\n                               Layout.fillWidth: true\n                               Layout.fillHeight: true\n                               ColumnLayout {\n                                   Layout.leftMargin: 8\n                                   Layout.fillWidth: true\n                                   Layout.alignment: Qt.AlignVCenter\n                                   spacing: 0\n                                   DccLabel {\n                                       Layout.fillWidth: true\n                                       text: model.display\n                                   }\n                                   DccLabel {\n                                       Layout.fillWidth: true\n                                       visible: text !== \"\"\n                                       font: D.DTK.fontManager.t8\n                                       text: model.userType\n                                       opacity: 0.5\n                                   }\n                               }\n                               // rightItem\n                               Control {\n                                   id: control\n                                   Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                                   Layout.topMargin: 5\n                                   Layout.bottomMargin: 5\n                                   contentItem: D.IconLabel {\n                                       icon.name: \"arrow_ordinary_right\"\n                                       icon.palette: D.DTK.makeIconPalette(control.palette)\n                                       icon.mode: control.D.ColorSelector.controlState\n                                       icon.theme: control.D.ColorSelector.controlTheme\n                                   }\n                               }\n                           }\n                       }\n                   }\n\n                   background: DccItemBackground {\n                       id: background\n                       separatorVisible: true\n                       backgroundType: DccObject.ClickStyle\n                   }\n                   onClicked: {\n                       otherSettings.displayName = model.display\n                       otherSettings.userId = model.userId\n                       DccApp.showPage(otherSettings)\n                   }\n               }\n               onCountChanged: {\n                   otherAcountsTitle.visible = count > 0;\n               }\n           }\n        }\n\n        DccObject {\n            name: \"otherSettingsHolder\"\n            parentName: \"accounts\"\n            pageType: DccObject.Item\n            page: Item { }\n\n            AccountSettings {\n                id: otherSettings\n                name: \"otherAccountSettings\"\n                parentName: \"otherSettingsHolder\"\n                papaName: name\n                canSearch: false\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-accounts/qml/AutoLoginWarningDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls\nimport QtQuick.Layouts\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nD.DialogWindow {\n    id: dialog\n    icon: \"dialog-warning\"\n    width: 400\n    minimumWidth: width\n    minimumHeight: height\n    maximumWidth: minimumWidth\n    maximumHeight: minimumHeight\n\n    property string userName: \"default\"\n\n    ColumnLayout {\n        width: dialog.width - 20\n        spacing: 30\n        Label {\n            id: label\n            Layout.fillWidth: true\n            Layout.leftMargin: 10\n            Layout.rightMargin: 10\n            horizontalAlignment: Text.AlignHCenter\n            verticalAlignment: Text.AlignVCenter\n            wrapMode: Text.WordWrap\n            text: qsTr(\"\\\"Auto Login\\\" can be enabled for only one account, please disable it for the account \\\"%1\\\" first\").arg(userName)\n        }\n\n        Button {\n            Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n            Layout.bottomMargin: 10\n            Layout.fillWidth: true\n            text: qsTr(\"Ok\")\n            onClicked: {\n                close()\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-accounts/qml/AvatarGridView.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport QtQuick.Effects\n\nGridView {\n    id: gridView\n    property string headerText\n    property string currentAvatar\n    property int headerHeight: 40\n    property int columsCount: 5\n    property bool isCustom: false\n    property int itemSize: 60\n    property int spacing: 12\n    cellHeight: itemSize + spacing\n    cellWidth: itemSize + spacing\n    implicitHeight: Math.ceil(count / columsCount) * cellHeight + (headerText.length > 0 ? headerHeight : 0)\n    implicitWidth: cellWidth * columsCount\n    clip: true\n    keyNavigationEnabled: true\n    interactive: false\n    Layout.alignment: Qt.AlignHCenter | Qt.AlignTop\n    Layout.leftMargin: 50\n    Layout.rightMargin: 60\n    Layout.bottomMargin: 10\n\n    signal removeCustomAvatar(string filePath)\n    signal requireFileDialog()\n\n    header: Loader {\n        active: headerText.length > 0\n        sourceComponent: Rectangle {\n            anchors.leftMargin: 10\n            width: gridView.width\n            height: headerLabel.implicitHeight + 2\n            color: \"transparent\"\n            Component.onCompleted: gridView.headerHeight = headerLabel.implicitHeight + 10\n\n            Text {\n                id: headerLabel\n                text: gridView.headerText\n                font: D.DTK.fontManager.t8\n                anchors.left: parent.left\n                anchors.top: parent.top\n                anchors.topMargin: 0\n                anchors.leftMargin: 4\n                color: palette.text\n            }\n        }\n    }\n\n    delegate: D.ItemDelegate {\n        id: delegate\n        property bool isAddButton: modelData == \"add\"\n        property bool isSelected: !isAddButton && (gridView.currentAvatar === modelData)\n        implicitHeight: gridView.cellHeight\n        implicitWidth: gridView.cellWidth\n        checkable: false\n        onClicked: {\n            if (!delegate.isAddButton)\n                gridView.currentAvatar = modelData\n        }\n\n        Loader {\n            active: delegate.isAddButton\n            sourceComponent: Item {\n                implicitHeight: gridView.cellHeight\n                implicitWidth: gridView.cellWidth\n                Button {\n                    id: control\n                    width: gridView.itemSize\n                    height: gridView.itemSize\n                    padding: 0\n                    leftPadding: 0\n                    rightPadding: 0\n                    topPadding: 0\n                    bottomPadding: 0\n                    icon {\n                        name: modelData\n                        // TODO: icon size not Work!! dtk bug https://github.com/linuxdeepin/dtk/issues/207\n                        height: gridView.itemSize\n                        width: gridView.itemSize\n                    }\n                    anchors.left: parent.left\n                    anchors.leftMargin: 2\n                    anchors.verticalCenter: parent.verticalCenter\n                    onClicked: {\n                        requireFileDialog()\n                    }\n                }\n\n            }\n        }\n\n        // Keep a fixed square slot for each grid item to ensure visuals remain square\n        Item {\n            id: iconSlot\n            width: gridView.itemSize\n            height: gridView.itemSize\n            anchors.left: parent.left\n            anchors.leftMargin: 2\n            anchors.verticalCenter: parent.verticalCenter\n\n            D.DciIcon {\n                id: img\n                palette: D.DTK.makeIconPalette(delegate.palette)\n                mode: delegate.D.ColorSelector.controlState\n                theme: delegate.D.ColorSelector.controlTheme\n                fallbackToQIcon: false\n                name: modelData\n                // render at intended size, but keep centered inside square slot\n                sourceSize: Qt.size(gridView.itemSize, gridView.itemSize)\n                anchors.centerIn: parent\n                visible: !delegate.isAddButton // false for MultiEffect need\n                antialiasing: true\n            }\n        }\n\n        // fake round image\n        D.BoxShadow {\n            id: boxShadow\n            hollow: true\n            anchors.fill: iconSlot\n            shadowBlur: 3\n            spread: 3\n            shadowColor: delegate.palette.window\n            cornerRadius: 6\n        }\n\n        // antialiasing not work well\n        // MultiEffect {\n        //     source: img\n        //     anchors.centerIn: parent\n        //     width: img.width\n        //     height: img.height\n        //     maskEnabled: true\n        //     maskSource: mask\n        //     maskThresholdMin: 0.5\n        //     maskSpreadAtMin: 0.0\n        //     antialiasing: true\n        // }\n        // Rectangle {\n        //     id: mask\n        //     antialiasing: true\n        //     anchors.fill: img\n        //     layer.enabled: true\n        //     visible: false\n        //     clip: true\n        //     radius: 6\n        // }\n\n        // TODO: Not work well...\n        // D.ItemViewport {\n        //     id: viewPort\n        //     sourceItem: img\n        //     radius: 6\n        //     fixed: true\n        //     width: img.sourceSize.width\n        //     height: img.sourceSize.height\n        //     hideSource: true\n        //     antialiasing: true\n        //     anchors.centerIn: parent\n        // }\n\n        background: Rectangle {\n            id: background\n            radius: 8\n            anchors.fill: iconSlot\n            anchors.margins: -2\n            color: \"transparent\"\n            border.color: delegate.palette.highlight\n            border.width: 1\n            visible: delegate.isSelected\n            z: 10\n        }\n\n        D.IconLabel {\n            id: checkIcon\n            z: 99\n            icon {\n                name: \"item_checked\"\n                width: 20\n                height: 20\n                palette: D.DTK.makeIconPalette(delegate.palette)\n                mode: delegate.D.ColorSelector.controlState\n                theme: delegate.D.ColorSelector.controlTheme\n            }\n            width: 20\n            height: 20\n            x: background.x + background.width - width / 2 - 3\n            y: background.y - height / 2 + 5\n            visible: delegate.isSelected\n        }\n\n        D.ActionButton {\n            z: 99\n            visible: gridView.isCustom && !checkIcon.visible && !delegate.isAddButton\n            focusPolicy: Qt.NoFocus\n            anchors.right: parent.right\n            anchors.top: parent.top\n            icon {\n                name: \"entry_clear\"\n                width: 20\n                height: 20\n            }\n            background: Rectangle {\n                radius: 10\n            }\n\n            onClicked: {\n                console.log(\"need remove custom avatar..\", modelData)\n                removeCustomAvatar(modelData)\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-accounts/qml/AvatarSettingsDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Dialogs\nimport QtQuick.Window\nimport QtQml.Models\nimport QtQuick.Layouts 1.15\nimport Qt.labs.qmlmodels\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport Qt.labs.platform 1.1\nimport org.deepin.dcc 1.0\n\nD.DialogWindow {\n    id: dialog\n    property string userId: dccData.currentUserId()\n    property string currentAvatar: dccData.avatar()\n    width: 640\n    minimumWidth: width\n    minimumHeight: height\n    maximumWidth: minimumWidth\n    maximumHeight: minimumHeight\n    icon: \"preferences-system\"\n    modality: Qt.WindowModal\n    D.DWindow.enableSystemMove: !cropper.dragActived\n    color: \"transparent\"\n\n    signal accepted();\n\n    function cleanupTempFiles() {\n        if (cropper && typeof cropper.getTempPreviewFiles === 'function') {\n            const files = cropper.getTempPreviewFiles()\n            if (files && files.length > 0) {\n                dccData.cleanupTempPreviewFiles(files)\n                cropper.clearTempPreviewFiles()\n            }\n        }\n    }\n\n    Component.onDestruction: {\n        cleanupTempFiles()\n    }\n\n    Loader {\n        id: fileDlgLoader\n        active: false\n        sourceComponent: FileDialog {\n            id: fileDialog\n            nameFilters: [ qsTr(\"Images\") + \"(*.png *.bmp *.jpg *.jpeg)\" ]\n            title: \"Please choose an image\"\n            folder: StandardPaths.writableLocation(StandardPaths.PicturesLocation)\n            onAccepted: {\n                let selectedFile = fileDialog.selectedFile || fileDialog.file || fileDialog.fileUrl\n                if (selectedFile) {\n                    let filePath = selectedFile.toString()\n                    const sourceFile = filePath.replace(\"file://\", \"\")\n                    const saved = dccData.saveCustomAvatar(dialog.userId, sourceFile, \"\")\n                    if (saved && saved.length > 0) {\n                        dialog.currentAvatar = saved\n                        scrollView.filter = \"icons/local\"\n                        if (customEmptyAvatar && typeof customEmptyAvatar.needShow === 'function') {\n                            customEmptyAvatar.visible = customEmptyAvatar.needShow()\n                        }\n                        if (cropper && cropper.visible) {\n                            cropper.iconSource = dialog.currentAvatar\n                            cropper.imgScale = 1.0\n                        }\n                        if (scrollView.isCustom && customLocalRow && typeof customLocalRow.refresh === 'function') {\n                            customLocalRow.refresh()\n                            customLocalRow.currentAvatar = dialog.currentAvatar\n                        }\n                    } else {\n                        dialog.currentAvatar = filePath\n                    }\n                }\n                fileDlgLoader.active = false\n            }\n            onRejected: {\n                fileDlgLoader.active = false\n            }\n        }\n        onLoaded: function () {\n            fileDlgLoader.item.open()\n        }\n    }\n\n    header: D.DialogTitleBar {\n        // titlebar do not enbale blur again\n        // enableInWindowBlendBlur: true\n        icon.name: dialog.icon\n    }\n    RowLayout {\n        spacing: 0\n        width: dialog.width\n        Rectangle {\n            id: leftBar\n            color: \"transparent\"\n            Layout.preferredWidth: 180 - DS.Style.dialogWindow.contentHMargin\n            Layout.preferredHeight: dialog.height - 100\n            Layout.alignment: Qt.AlignTop\n\n            Rectangle {\n                x: -DS.Style.dialogWindow.contentHMargin\n                y: -DS.Style.dialogWindow.titleBarHeight\n                width: leftBar.width - x\n                height: dialog.height + 10\n                color: \"transparent\"\n                D.StyledBehindWindowBlur {\n                    anchors.fill: parent\n                }\n            }\n            Rectangle {\n                x: leftView.width\n                y: -DS.Style.dialogWindow.titleBarHeight\n                width: scrollView.width + DS.Style.dialogWindow.contentHMargin * 2\n                height: dialog.height\n                color: palette.window\n            }\n\n            Rectangle {\n                id: leftRightSplitter\n                property D.Palette bgColor: D.Palette {\n                    normal: Qt.rgba(0, 0, 0, 0.05)\n                    normalDark: Qt.rgba(0, 0, 0, 0.5)\n                }\n                x: leftView.width - 1\n                y: -DS.Style.dialogWindow.titleBarHeight\n                width: 1\n                height: dialog.height\n                color: D.ColorSelector.bgColor\n            }\n\n            ListModel {\n                id: listModel\n                ListElement {\n                    name: QT_TR_NOOP(\"Human\")\n                    filter: \"icons/human\"\n                    icon: \"dcc_user_human\"\n                    sections: \"dimensional/dimensional_v2/flat\"\n                    checked: true\n                }\n                ListElement {\n                    name: QT_TR_NOOP(\"Animal\")\n                    filter: \"icons/animal\"\n                    icon: \"dcc_user_animal\"\n                    sections: \"\"\n                }\n                ListElement {\n                    name: QT_TR_NOOP(\"Scenery\")\n                    filter: \"icons/scenery\"\n                    icon: \"dcc_user_scenery\"\n                    sections: \"\"\n                }\n                ListElement {\n                    name: QT_TR_NOOP(\"Illustration\")\n                    filter: \"icons/illustration\"\n                    icon: \"dcc_user_funny\"\n                    sections: \"\"\n                }\n                ListElement {\n                    name: QT_TR_NOOP(\"Emoji\")\n                    filter: \"icons/emoji\"\n                    icon: \"dcc_user_emoji\"\n                    sections: \"\"\n                }\n                ListElement {\n                    name: QT_TR_NOOP(\"custom\")\n                    filter: \"icons/local\"\n                    icon: \"dcc_user_custom\"\n                    sections: \"\"\n                }\n            }\n\n            D.ListView {\n                id: leftView\n                clip: true\n                implicitHeight: 400\n                implicitWidth: parent.width\n                Layout.alignment: Qt.AlignTop\n                model: listModel\n                delegate: D.ItemDelegate {\n                    id: itemDelegate\n                    text: qsTr(model.name)\n                    font: D.DTK.fontManager.t6\n                    hoverEnabled: true\n                    icon {\n                        name: model.icon\n                        width: 16\n                        height: 16\n                    }\n                    implicitHeight: 30\n                    implicitWidth: leftView.width - 10\n                    checked: model.checked\n                    topPadding: 0\n                    bottomPadding: 2\n                    background: Rectangle {\n                        color: {\n                            if (itemDelegate.checked) {\n                                return parent.palette.highlight\n                            } else if (itemDelegate.hovered) {\n                                if (D.DTK.themeType == D.ApplicationHelper.LightType)\n                                    return Qt.rgba(0, 0, 0, 0.1)\n                                else\n                                    return Qt.rgba(1, 1, 1, 0.1)\n                            } else {\n                                return \"transparent\"\n                            }\n                        }\n                        radius: DS.Style.control.radius\n                    }\n                    onCheckedChanged: {\n                        if (checked) {\n                            let sections = model.sections.split('/')\n                            // reset model...\n                            scrollView.sections = []\n                            scrollView.sections = sections.length > 0 ? sections : [\"\"]\n                            scrollView.filter = model.filter\n                            scrollView.ScrollBar.vertical.position = 0\n\n                            if (model.filter !== \"icons/local\") {\n                                if (dialog.currentAvatar && dialog.currentAvatar.length > 0) {\n                                    const cacheDir = StandardPaths.writableLocation(StandardPaths.CacheLocation)\n                                    const avatarDir = cacheDir + \"/avatars/\"\n                                    const normalized = dialog.currentAvatar.replace(\"file://\", \"\")\n                                    const inCache = normalized.indexOf(avatarDir) === 0\n                                    if (inCache) dialog.currentAvatar = \"\"\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n        }\n\n        ColumnLayout {\n            Layout.fillWidth: true\n            Layout.fillHeight: true\n            Layout.preferredWidth: 460\n            Layout.minimumWidth: 460\n            Layout.maximumWidth: 460\n\n            CustomAvatarEmpatyArea {\n                id: customEmptyAvatar\n                visible: needShow()\n                Layout.alignment: Qt.AlignHCenter\n                Layout.rightMargin: 10\n                onIconDropped: function (url){\n                    let filePath = url.toString()\n                    const sourceFile = filePath.replace(\"file://\", \"\")\n                    const saved = dccData.saveCustomAvatar(dialog.userId, sourceFile, \"\")\n                    if (saved && saved.length > 0) {\n                        dialog.currentAvatar = saved\n                        scrollView.filter = \"icons/local\"\n                        if (customEmptyAvatar && typeof customEmptyAvatar.needShow === 'function') {\n                            customEmptyAvatar.visible = customEmptyAvatar.needShow()\n                        }\n                        if (cropper && cropper.visible) {\n                            cropper.iconSource = dialog.currentAvatar\n                            cropper.imgScale = 1.0\n                        }\n                        if (scrollView.isCustom && customLocalRow && typeof customLocalRow.refresh === 'function') {\n                            customLocalRow.refresh()\n                            customLocalRow.currentAvatar = dialog.currentAvatar\n                        }\n                    } else {\n                        dialog.currentAvatar = filePath\n                    }\n                }\n                onRequireFileDialog: {\n                    fileDlgLoader.active = true\n                }\n\n                function needShow() {\n                    if (!scrollView.isCustom)\n                        return false\n\n                    let icons = dccData.avatars(dialog.userId, scrollView.filter, \"\")\n                    return icons.length <= 1\n                }\n\n                Connections {\n                    target: dccData\n                    function onAvatarChanged(userId, avatar) {\n                        if (userId === dialog.userId && scrollView.isCustom) {\n                            customEmptyAvatar.visible = customEmptyAvatar.needShow()\n                        }\n                    }\n                }\n            }\n\n            ScrollView {\n                id: scrollView\n                property list<string> sections: []\n                property string filter\n                property bool isCustom: filter === \"icons/local\"\n                implicitHeight: 360\n                visible: !customEmptyAvatar.visible\n                Layout.fillWidth: true\n                Layout.alignment: Qt.AlignHCenter | Qt.AlignTop\n                padding: 0\n                topPadding: 0\n                bottomPadding: 0\n                leftPadding: 0\n                rightPadding: 0\n                clip: true\n                contentHeight: layout.childrenRect.height\n                contentWidth: width\n                ScrollBar.vertical: ScrollBar {\n                    id: verticalBar\n                    parent: scrollView\n                    anchors.top: parent.top\n                    anchors.bottom: parent.bottom\n                    x: parent.width - width - 5\n                    width: 10\n                    policy: ScrollBar.AsNeeded\n                    visible: true\n                }\n\n                ColumnLayout {\n                    id: layout\n                    Layout.fillWidth: true\n                    width: scrollView.width\n                    implicitWidth: scrollView.width\n\n                    Item {\n                        id: customArea\n                        visible: scrollView.isCustom && !customEmptyAvatar.visible\n                        width: scrollView.width\n                        implicitHeight: childrenRect.height\n\n                        onVisibleChanged: {\n                            if (!visible)\n                                return\n                            \n                            let icons = dccData.avatars(dialog.userId, \"icons/local\", \"\")\n                            if (!icons || icons.length <= 1) {\n                                return\n                            }\n                            \n                            const currentAvatar = (dialog.currentAvatar || \"\").toString().replace(\"file://\", \"\")\n                            let foundCurrent = false\n                            \n                            if (currentAvatar.length > 0) {\n                                for (let i = 1; i < icons.length; i++) {\n                                    const iconPath = icons[i].toString().replace(\"file://\", \"\")\n                                    if (iconPath === currentAvatar) {\n                                        foundCurrent = true\n                                        break\n                                    }\n                                }\n                            }\n                            \n                            if (!foundCurrent && icons.length > 1) {\n                                Qt.callLater(function() {\n                                    cropper.iconSource = icons[1]\n                                })\n                            }\n                        }\n\n                        CustomAvatarCropper {\n                            id: cropper\n                            anchors.top: parent.top\n                            anchors.horizontalCenter: parent.horizontalCenter\n                            iconSource: {\n                                const isCustom = dialog.currentAvatar.indexOf(\"/local/\") >= 0 || dialog.currentAvatar.indexOf(\"/avatars/\") >= 0\n                                if (isCustom) {\n                                    return dialog.currentAvatar\n                                }\n                                // 系统头像时，返回第一个自定义头像作为预览（如果有的话）\n                                let icons = dccData.avatars(dialog.userId, \"icons/local\", \"\")\n                                if (icons && icons.length > 1) {\n                                    return icons[1]\n                                }\n                                return \"\"\n                            }\n                            onCroppedImage: function(file) {\n                                dialog.currentAvatar = file\n                            }\n                            onPreviewUpdated: function(previewFile) {\n                                if (customLocalRow) {\n                                    customLocalRow.previewUrl = previewFile\n                                }\n                            }\n                            onIconSourceChanged: {\n                                if (customLocalRow) {\n                                    customLocalRow.previewUrl = \"\"\n                                }\n                            }\n                        }\n\n                        CustomLocalAvatarsRow {\n                            id: customLocalRow\n                            anchors.top: cropper.bottom\n                            anchors.horizontalCenter: parent.horizontalCenter\n\n                            userId: dialog.userId\n                            currentAvatar: dialog.currentAvatar\n                            onCurrentAvatarChanged: {\n                                if (dialog.currentAvatar !== currentAvatar)\n                                    dialog.currentAvatar = currentAvatar\n                            }\n                            onRequireFileDialog: fileDlgLoader.active = true\n                        }\n                    }\n\n                    Repeater {\n                        id: repeater\n                        model: scrollView.sections\n                        AvatarGridView {\n                            id: view\n                            visible: view.count > 0 && !scrollView.isCustom\n                            currentAvatar: dialog.currentAvatar\n                            onCurrentAvatarChanged: {\n                                if (dialog.currentAvatar !== currentAvatar) {\n                                    dialog.currentAvatar = currentAvatar\n                                }\n                                if (cropper.visible) {\n                                    cropper.iconSource = currentAvatar\n                                    cropper.imgScale = 1.0\n                                }\n                            }\n                            onRequireFileDialog: {\n                                fileDlgLoader.active = true\n                            }\n\n                            Connections {\n                                target: dccData\n                                function onAvatarChanged(userId, avatar) {\n                                    if (userId === dialog.userId) {\n                                        dialog.currentAvatar = avatar\n                                        view.currentAvatar = avatar\n                                        view.model = []\n                                        view.model = dccData.avatars(dialog.userId, scrollView.filter, modelData)\n\n                                        customEmptyAvatar.visible = customEmptyAvatar.needShow()\n                                    }\n                                }\n                            }\n\n                            headerText: {\n                                if (modelData === \"dimensional\")\n                                    return qsTr(\"Cartoon style\")\n                                else if (modelData === \"dimensional_v2\")\n                                    return qsTr(\"Dimensional style\")\n                                else if (modelData === \"flat\")\n                                    return qsTr(\"Flat style\")\n                                else\n                                    return \"\"\n                            }\n\n                            model: dccData.avatars(dialog.userId, scrollView.filter, modelData)\n                            onIsCustomChanged: {\n                                if (isCustom && !customEmptyAvatar.visible) {\n                                    let icons = dccData.avatars(dialog.userId, scrollView.filter, modelData)\n                                    if (icons.length > 1) {\n                                        dialog.currentAvatar = icons[1];\n                                    }\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n\n            RowLayout {\n                spacing: 6\n                Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n                Layout.bottomMargin: 6\n                Layout.topMargin: 2\n                Layout.leftMargin: 51\n                Layout.rightMargin: 59\n\n                Button {\n                    Layout.fillWidth: true\n                    text: qsTr(\"Cancel\")\n                    onClicked: {\n                        // reset\n                        dialog.currentAvatar = \"\"\n                        close()\n                    }\n                }\n                D.RecommandButton {\n                    Layout.fillWidth: true\n                    text: qsTr(\"Save\")\n                    onClicked: {\n                        if (scrollView.isCustom && cropper.visible && dialog.currentAvatar.length > 0) {\n                            cropper.cropToTemp(function (tmpFile) {\n                                if (tmpFile && tmpFile.length > 0) {\n                                    const saved = dccData.saveCustomAvatar(dialog.userId, tmpFile, dialog.currentAvatar)\n                                    if (saved && saved.length > 0) {\n                                        dialog.currentAvatar = saved\n                                    }\n                                }\n                                dialog.accepted()\n                                close()\n                            })\n                        } else {\n                            dialog.accepted()\n                            close()\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-accounts/qml/ComfirmDeleteDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls\nimport QtQuick.Layouts\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nD.DialogWindow {\n    id: dialog\n    icon: \"preferences-system\"\n    width: 400\n    minimumWidth: width\n    minimumHeight: height\n    maximumWidth: minimumWidth\n    maximumHeight: minimumHeight\n\n    signal requestDelete(bool deleteHome)\n    ColumnLayout {\n        width: dialog.width - 20\n        Label {\n            Layout.alignment: Qt.AlignHCenter\n            font: D.DTK.fontManager.t5\n            text: qsTr(\"Are you sure you want to delete this account?\")\n        }\n        CheckBox {\n            id: deleteHomeCheckbox\n            Layout.alignment: Qt.AlignHCenter\n            font: D.DTK.fontManager.t6\n            checked: true // default checked\n            text: qsTr(\"Delete account directory\")\n        }\n\n        RowLayout {\n            Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n            Layout.bottomMargin: 10\n            Layout.topMargin: 30\n            Layout.fillWidth: true\n            Button {\n                text: qsTr(\"Cancel\")\n                Layout.preferredWidth: 180\n                onClicked: {\n                    close()\n                }\n            }\n            Item {\n                Layout.fillWidth: true\n            }\n            D.WarningButton {\n                text: qsTr(\"Delete\")\n                Layout.preferredWidth: 180\n                Layout.alignment: Qt.AlignRight\n                onClicked: {\n                    requestDelete(deleteHomeCheckbox.checked)\n                    close()\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-accounts/qml/ComfirmSafePage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls\nimport QtQuick.Layouts\nimport org.deepin.dtk 1.0 as D\n\nD.DialogWindow {\n    id: dialog\n    icon: \"preferences-system\"\n    width: 600\n    height: 180\n    minimumWidth: 600\n    minimumHeight: 180\n    maximumWidth: minimumWidth\n    maximumHeight: minimumHeight\n    property string msg\n\n    signal requestShowSafePage()\n    ColumnLayout {\n        Label {\n            Layout.alignment: Qt.AlignHCenter\n            verticalAlignment: Text.AlignVCenter\n            font: D.DTK.fontManager.t5\n            text: msg\n            wrapMode: Text.WordWrap\n            Layout.preferredWidth: dialog.width - 10\n            Layout.preferredHeight: 60\n            leftPadding: 10\n            rightPadding: 10\n        }\n\n        RowLayout {\n            Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n            Layout.bottomMargin: 10\n            Layout.rightMargin: 10\n            Layout.leftMargin: 10\n            Layout.topMargin: 10\n            Layout.fillWidth: true\n            Button {\n                text: qsTr(\"Go to settings\")\n                Layout.fillWidth: true\n                onClicked: {\n                    requestShowSafePage()\n                    close()\n                }\n            }\n            D.WarningButton {\n                text: qsTr(\"Cancel\")\n                Layout.fillWidth: true\n                Layout.alignment: Qt.AlignRight\n                onClicked: {\n                    close()\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-accounts/qml/CreateAccountDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Dialogs\nimport QtQuick.Window\nimport QtQml.Models\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\nimport AccountsController 1.0\n\nD.DialogWindow {\n    id: dialog\n    width: 460\n    minimumWidth: width\n    minimumHeight: height\n    maximumWidth: minimumWidth\n    maximumHeight: minimumHeight\n    icon: \"preferences-system\"\n    modality: Qt.WindowModal\n    title: qsTr(\"Create a new account\")\n    color: \"transparent\"\n    signal accepted()\n\n    header: D.DialogTitleBar {\n        icon.name: dialog.icon\n    }\n\n    Rectangle {\n        // 覆盖整个窗口，包括 DialogWindow 的边距\n        x: -DS.Style.dialogWindow.contentHMargin\n        y: -DS.Style.dialogWindow.titleBarHeight\n        width: dialog.width + DS.Style.dialogWindow.contentHMargin * 2\n        height: dialog.height + DS.Style.dialogWindow.titleBarHeight\n        color: \"transparent\"\n        parent: dialog.contentItem\n        z: -1\n        D.StyledBehindWindowBlur {\n            anchors.fill: parent\n            blendColor: {\n                if (valid) {\n                    return DS.Style.control.selectColor(\n                        dialog ? dialog.palette.window : undefined,\n                        Qt.rgba(1, 1, 1, 0.8),\n                        Qt.rgba(0.06, 0.06, 0.06, 0.8)\n                    )\n                }\n                return DS.Style.control.selectColor(\n                    undefined,\n                    DS.Style.behindWindowBlur.lightNoBlurColor,\n                    DS.Style.behindWindowBlur.darkNoBlurColor\n                )\n            }\n        }\n    }\n\n    ColumnLayout {\n        id: mainLayout\n        width: dialog.width - 20\n        \n        property int unifiedLabelWidth: -1\n        spacing: 0\n        \n        FontMetrics {\n            id: dialogFm\n            font: D.DTK.fontManager.t6\n        }\n        \n        function calculateUnifiedLabelWidth() {\n            var dialogTexts = [accountTypeLabel.text]\n            for (var i = 0; i < namesModel.count; i++) {\n                dialogTexts.push(namesModel.get(i).name)\n            }\n            var maxDialogWidth = 0\n            \n            for (var i = 0; i < dialogTexts.length; i++) {\n                var width = dialogFm.advanceWidth(dialogTexts[i])\n                if (width > maxDialogWidth) {\n                    maxDialogWidth = width\n                }\n            }\n            \n            var maxWidth = Math.max(maxDialogWidth, pwdLayout.maxLabelWidth)\n            var finalWidth = maxWidth > 110 ? 110 : maxWidth\n            unifiedLabelWidth = Math.ceil(finalWidth)\n            \n            pwdLayout.maxLabelWidth = Math.ceil(finalWidth)\n        }\n        \n        \n        Connections {\n            target: pwdLayout\n            function onLabelWidthCalculated() {\n                mainLayout.calculateUnifiedLabelWidth()\n            }\n        }\n        \n        Connections {\n            target: dccData\n            function onAccountCreationFinished(resultType, message) {\n                createButton.enabled = true\n                \n                switch (resultType) {\n                case CreationResult.NoError:\n                    dialog.accepted()\n                    close()\n                    break\n                case CreationResult.UserNameError:\n                case CreationResult.UnknownError:\n                    let nameEdit = namesContainter.eidtItems[0]\n                    if (nameEdit) {\n                        nameEdit.showAlert = true\n                        nameEdit.alertText = message\n                    }\n                    break\n                case CreationResult.PasswordError:\n                case CreationResult.PasswordMatchError:\n                    if (pwdLayout.pwdContainter && pwdLayout.pwdContainter.eidtItems && pwdLayout.pwdContainter.eidtItems[0]) {\n                        pwdLayout.pwdContainter.eidtItems[0].showAlertText(message)\n                    }\n                    break\n                case CreationResult.Canceled:\n                    break\n                default:\n                    console.warn(\"Unknown creation result type:\", resultType, message)\n                    break\n                }\n            }\n        }\n        \n        Label {\n            text: dialog.title\n            font.bold: true\n            Layout.alignment: Qt.AlignTop | Qt.AlignHCenter\n            Layout.bottomMargin: 20\n            font.pixelSize: accountTypeLabel.font.pixelSize\n        }\n\n        RowLayout {\n            implicitHeight: 30\n            Layout.alignment: Qt.AlignTop | Qt.AlignHCenter\n            Layout.fillWidth: true\n            Layout.bottomMargin: 20\n            Layout.leftMargin: 12 - DS.Style.dialogWindow.contentHMargin\n            Layout.rightMargin: 6 - DS.Style.dialogWindow.contentHMargin\n            spacing: 10\n\n            Label {\n                id: accountTypeLabel\n                height: 30\n                text: qsTr(\"Account type\")\n                Layout.preferredWidth: mainLayout.unifiedLabelWidth\n                Layout.alignment: Qt.AlignVCenter\n                font: D.DTK.fontManager.t6\n                elide: Text.ElideRight\n                \n                ToolTip.visible: accountTypeHoverHandler.hovered && truncated\n                ToolTip.text: text\n\n                HoverHandler {\n                    id: accountTypeHoverHandler\n                }\n            }\n\n            ComboBox {\n                id: userType\n                implicitHeight: 30\n                padding: 0\n                Layout.alignment: Qt.AlignVCenter\n                Layout.fillWidth: true\n                model: dccData.userTypes(true)\n                font: D.DTK.fontManager.t7\n            }\n        }\n\n        ListModel {\n            id: namesModel\n            ListElement {\n                name: qsTr(\"UserName\")\n                placeholder: qsTr(\"Required\")\n            }\n            ListElement {\n                name: qsTr(\"FullName\")\n                placeholder: qsTr(\"Optional\")\n            }\n        }\n\n        Rectangle {\n            id: namesContainter\n            property var eidtItems: []\n            radius: 8\n            Layout.fillWidth: true\n            Layout.alignment: Qt.AlignTop | Qt.AlignHCenter\n            Layout.leftMargin: 12 - DS.Style.dialogWindow.contentHMargin\n            Layout.rightMargin: 6 - DS.Style.dialogWindow.contentHMargin\n            Layout.topMargin: 0\n            Layout.bottomMargin: 0\n            implicitHeight: 68\n            color: \"transparent\"\n\n            function checkNames() {\n                let edit0 = namesContainter.eidtItems[0]\n                let edit1 = namesContainter.eidtItems[1]\n                if (!edit0 || !edit1)\n                    return true\n                let alertText = dccData.checkUsername(edit0.text)\n                if (alertText.length > 0) {\n                    // TODO: dtk fixme, showAlert tip timeout cannot show alertText again\n                    edit0.showAlert = false\n                    edit0.showAlert = true\n                    edit0.alertText = alertText\n                    return false\n                }\n\n                alertText = dccData.checkFullname(edit1.text)\n                if (alertText.length > 0) {\n                    edit1.showAlert = false\n                    edit1.showAlert = true\n                    edit1.alertText = alertText\n                    return false\n                }\n\n                return true\n            }\n\n            ColumnLayout {\n                spacing: 8\n                Layout.topMargin: 0\n                Layout.bottomMargin: 0\n                anchors.fill: parent\n                Repeater {\n                    model: namesModel\n                    delegate: D.ItemDelegate {\n                        Layout.fillWidth: true\n                        backgroundVisible: false\n                        checkable: false\n                        implicitHeight: 30\n                        leftPadding: 0\n                        rightPadding: 0\n\n                        contentItem: RowLayout {\n                            height: parent.height\n                            spacing: 10\n                            Label {\n                                Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter\n                                text: model.name\n                                Layout.preferredWidth: mainLayout.unifiedLabelWidth\n                                font: D.DTK.fontManager.t6\n                                elide: Text.ElideRight\n\n                                ToolTip.visible: nameHoverHandler.hovered && truncated\n                                ToolTip.text: text\n\n                                HoverHandler {\n                                    id: nameHoverHandler\n                                }\n                            }\n                            D.LineEdit {\n                                id: edit\n                                Layout.fillWidth: true\n                                Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                                implicitHeight: 30\n                                placeholderText: model.placeholder\n                                alertDuration: 3000\n                                // can not past\n                                // validator: RegularExpressionValidator {\n                                //     regularExpression: index ? /^[^:]{0,32}$/ : /[A-Za-z0-9-_]{0,32}$/\n                                // }\n                                onTextChanged: {\n                                    if (showAlert)\n                                        showAlert = false\n\n                                    if (index === 0) {\n                                        var charRegex = /^[A-Za-z0-9-_]*$/\n                                        var lengthRegex = /^.{0,32}$/\n                                        \n                                        var hasInvalidChars = !charRegex.test(text)\n                                        var isTooLong = !lengthRegex.test(text)\n                                        \n                                        if (hasInvalidChars || isTooLong) {\n                                            var filteredText = text\n                                            filteredText = filteredText.replace(/[^A-Za-z0-9-_]/g, \"\")\n                                            filteredText = filteredText.slice(0, 32)\n                                            text = filteredText\n                                            \n                                            if (isTooLong) {\n                                                alertText = qsTr(\"Username cannot exceed 32 characters\")\n                                                showAlert = true\n                                            } else if (hasInvalidChars) {\n                                                alertText = qsTr(\"Username can only contain letters, numbers, - and _\")\n                                                showAlert = true\n                                            }\n                                        }\n                                        pwdLayout.currentName = text\n                                    } else {\n                                        var colonRegex = /:/\n                                        var lengthRegex = /^.{0,32}$/\n                                        \n                                        var hasColon = colonRegex.test(text)\n                                        var isTooLong = !lengthRegex.test(text)\n                                        \n                                        if (hasColon || isTooLong) {\n                                            var filteredText = text\n                                            filteredText = filteredText.replace(\":\", \"\")\n                                            filteredText = filteredText.slice(0, 32)\n                                            text = filteredText\n                                            \n                                            if (isTooLong) {\n                                                alertText = qsTr(\"Full name cannot exceed 32 characters\")\n                                                showAlert = true\n                                            } else if (hasColon) {\n                                                alertText = qsTr(\"Full name cannot contain colons\")\n                                                showAlert = true\n                                            }\n                                        }\n                                    }\n                                }\n                                Component.onCompleted: {\n                                    namesContainter.eidtItems[index] = this\n                                }\n                            }\n                        }\n\n                        background: DccItemBackground {\n                            separatorVisible: true\n                        }\n                    }\n                }\n            }\n        }\n\n        PasswordLayout {\n            id: pwdLayout\n            currentPwdVisible: false\n            Layout.leftMargin: 2 - DS.Style.dialogWindow.contentHMargin\n            Layout.rightMargin: 6 - DS.Style.dialogWindow.contentHMargin\n            Layout.topMargin: 0\n            Layout.bottomMargin: 7\n            name:  {\n                let nameEdit = namesContainter.eidtItems[0]\n                if (nameEdit === undefined)\n                    return \"\"\n\n                return nameEdit.text\n            }\n        }\n\n        RowLayout {\n            spacing: 10\n            Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n            Layout.bottomMargin: 6\n            Layout.leftMargin: 6 - DS.Style.dialogWindow.contentHMargin\n            Layout.rightMargin: 6 - DS.Style.dialogWindow.contentHMargin\n\n            Button {\n                Layout.fillWidth: true\n                text: qsTr(\"Cancel\")\n                font: D.DTK.fontManager.t7\n                onClicked: {\n                    close()\n                }\n            }\n            D.RecommandButton {\n                id: createButton\n                Layout.fillWidth: true\n                text: qsTr(\"Create account\")\n                font: D.DTK.fontManager.t7\n                onClicked: {\n                    if (!namesContainter.checkNames())\n                        return\n\n                    if (!pwdLayout.checkPassword())\n                        return\n\n                    var info = pwdLayout.getPwdInfo()\n                    info[\"type\"] = userType.currentIndex\n                    info[\"name\"] = namesContainter.eidtItems[0].text\n                    info[\"fullname\"] = namesContainter.eidtItems[1].text\n\n                    dccData.addUser(info)\n                    createButton.enabled = false\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-accounts/qml/CustomAvatarCropper.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Layouts\nimport org.deepin.dtk 1.0 as D\nimport Qt.labs.platform 1.1\n\nControl {\n    id: control\n    property string iconSource\n    property int cropSize: 120\n    property alias dragActived: imgContainter.dragActived\n    property alias imgScale: img2.scale\n    property string previewUrl: \"\"\n    width: 430\n    height: 240\n\n    signal croppedImage(string file)\n    signal previewUpdated(string previewFile)\n\n    RowLayout {\n        id: layout\n        height: 190\n        Layout.fillWidth: true\n        anchors.horizontalCenter: parent.horizontalCenter\n        Rectangle {\n            id: imgGrabber\n            width: control.cropSize\n            height: control.cropSize\n            clip: true\n            visible: false\n\n            Image {\n                id: sourceItem\n                width: img2.width\n                height: img2.height\n                source: control.iconSource\n                cache: false\n            }\n        }\n\n        Rectangle {\n            id: imgContainter\n            property bool dragActived: false\n            width: control.iconSource.length > 0 ? 190 : 120\n            height: width\n            Layout.alignment: Qt.AlignTop | Qt.AlignHCenter\n            clip: true\n            color: control.iconSource.length > 0 ? \"transparent\" : control.palette.button\n            radius: control.iconSource.length > 0 ? 0 : 18\n\n            Image {\n                id: img2\n                property bool initialAligned: false\n                // Fit strategy: fix height to cropSize, width by aspect ratio\n                height: control.cropSize\n                width: height * (sourceSize.height > 0 ? (sourceSize.width / sourceSize.height) : 1)\n                x: (imgContainter.width - width) / 2\n                y: (imgContainter.height - height) / 2\n                source: control.iconSource\n                cache: false\n                onStatusChanged: {\n                    if (status === Image.Ready) {\n                        initialAligned = false\n                        img2.updatePos()\n                    }\n                }\n                onSourceChanged: initialAligned = false\n                Component.onCompleted: img2.updatePos()\n\n                function updatePos() {\n                    // Compute crop rect (fixed size cropSize centered in container)\n                    let cropStartX = (imgContainter.width - control.cropSize) / 2\n                    let cropStartY = (imgContainter.height - control.cropSize) / 2\n                    let cropEndX = cropStartX + control.cropSize\n                    let cropEndY = cropStartY + control.cropSize\n\n                    // Recompute size based on source aspect ratio\n                    let aspect = 1.0\n                    if (img2.sourceSize.height > 0) {\n                        aspect = img2.sourceSize.width / img2.sourceSize.height\n                        if (aspect >= 1.0) {\n                            // Landscape: fit height, width by aspect\n                            img2.height = control.cropSize\n                            img2.width = control.cropSize * aspect\n                        } else {\n                            // Portrait: fit width, height by aspect\n                            img2.width = control.cropSize\n                            img2.height = control.cropSize / aspect\n                        }\n                    }\n\n                    let offsetX = (img2.scale - 1.0) * img2.width / 2\n                    let offsetY = (img2.scale - 1.0) * img2.height / 2\n\n                    // First time after image ready: center horizontally/vertically\n                    if (!initialAligned) {\n                        img2.x = (imgContainter.width - img2.width) / 2\n                        img2.y = (imgContainter.height - img2.height) / 2\n                        initialAligned = true\n                    }\n\n                    let visualX = img2.x - offsetX\n                    let visualY = img2.y - offsetY\n                    let visualW = img2.scale * img2.width\n                    let visualH = img2.scale * img2.height\n\n                    // Constrain both axes so that the scaled image always covers the crop square\n                    if (visualX > cropStartX) {\n                        img2.x = offsetX + cropStartX\n                    } else if (visualX + visualW < cropEndX) {\n                        img2.x = cropEndX - visualW + offsetX\n                    }\n                    if (visualY > cropStartY) {\n                        img2.y = offsetY + cropStartY\n                    } else if (visualY + visualH < cropEndY) {\n                        img2.y = cropEndY - visualH + offsetY\n                    }\n\n                    // Sync hidden grab source to crop rect origin\n                    sourceItem.scale = img2.scale\n                    sourceItem.x = img2.x - cropStartX\n                    sourceItem.y = img2.y - cropStartY\n                }\n\n                DragHandler {\n                    id: dragHandler\n                    onActiveChanged: {\n                        if (active) {\n                            timer.stop()\n                        } else {\n                            img2.updatePos()\n                            timer.restart()\n                        }\n                    }\n                    onTranslationChanged: img2.updatePos()\n                }\n            }\n\n            MouseArea {\n                anchors.fill: parent\n                onPressed: function(mouse) {\n                    mouse.accepted = false\n                    boxShadow.shadowColor = \"#88000000\"\n                    imgContainter.dragActived = true\n                    timer.restart()\n                }\n                onWheel: function(wheel) {\n                    img2.updatePos()\n                }\n            }\n\n            Timer {\n                id: timer\n                interval: 1000;\n                onTriggered: {\n                    boxShadow.shadowColor = palette.window\n                    imgContainter.dragActived = false\n                    control.updatePreview()\n                }\n            }\n\n            D.BoxShadow {\n                id: boxShadow\n                hollow: true\n                anchors.fill: parent\n                anchors.margins: Math.max(0, (imgContainter.width - control.cropSize) / 2)\n                shadowBlur: 36\n                spread: 80\n                shadowColor: palette.window\n                cornerRadius: 18\n            }\n        }\n    }\n\n    RowLayout {\n        anchors.top: layout.bottom\n        anchors.topMargin: 10\n        anchors.horizontalCenter: parent.horizontalCenter\n        spacing: 10\n\n        D.Label {\n            text: qsTr(\"small\")\n            font: D.DTK.fontManager.t8\n            verticalAlignment: Text.AlignVCenter\n            Layout.alignment: Qt.AlignVCenter\n        }\n\n        Slider {\n            id: scaleSlider\n            from: 1.0\n            to: 2.0\n            stepSize: 0.5\n            value: img2.scale\n            implicitHeight: 24\n            handleType: Slider.HandleType.ArrowBottom\n            Layout.alignment: Qt.AlignVCenter\n            onValueChanged: {\n                img2.scale = value\n                img2.updatePos()\n            }\n            onPositionChanged: {\n                boxShadow.shadowColor = \"#88000000\"\n                imgContainter.dragActived = true\n                timer.restart()\n            }\n        }\n\n        D.Label {\n            text: qsTr(\"big\")\n            font: D.DTK.fontManager.t8\n            verticalAlignment: Text.AlignVCenter\n            Layout.alignment: Qt.AlignVCenter\n        }\n    }\n\n    function cropToTemp(callback) {\n        if (!control.iconSource || control.iconSource.length < 1) {\n            if (callback) callback(\"\")\n            return\n        }\n        imgGrabber.grabToImage(function (result) {\n            const tmp = StandardPaths.writableLocation(StandardPaths.TempLocation) + \"/dcc_avatar_tmp.png\"\n            result.saveToFile(tmp)\n            if (callback) callback(tmp)\n        })\n    }\n\n    property var _tempPreviewFiles: []\n\n    function updatePreview() {\n        if (!control.iconSource || control.iconSource.length < 1) {\n            control.previewUrl = \"\"\n            return\n        }\n        imgGrabber.grabToImage(function (result) {\n            let tmpDir = StandardPaths.writableLocation(StandardPaths.TempLocation).toString()\n            tmpDir = tmpDir.replace(\"file://\", \"\")\n            const tmp = tmpDir + \"/dcc_avatar_preview_\" + Date.now() + \".png\"\n            result.saveToFile(tmp)\n            control._tempPreviewFiles.push(tmp)\n            control.previewUrl = \"file://\" + tmp\n            control.previewUpdated(control.previewUrl)\n        })\n    }\n\n    function getTempPreviewFiles() {\n        return control._tempPreviewFiles\n    }\n\n    function clearTempPreviewFiles() {\n        control._tempPreviewFiles = []\n        control.previewUrl = \"\"\n    }\n}\n"
  },
  {
    "path": "src/plugin-accounts/qml/CustomAvatarEmpatyArea.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Shapes\nimport org.deepin.dtk 1.0 as D\n\nControl {\n    id: control\n    property real radius: 8\n    width: 430\n    height: 360\n\n    signal requireFileDialog()\n    signal iconDropped(string file)\n\n    Shape {\n        id: shape\n        anchors.centerIn: parent\n        width: 400\n        height: 300\n        layer.enabled: true\n        layer.samples: 4\n        layer.smooth: true\n\n        ShapePath {\n            strokeStyle: ShapePath.DashLine\n            strokeWidth: 1\n            fillColor: {\n                if (dropArea.containsDrag) {\n                    Qt.rgba(0, 0, 0, 0.08)\n                } else if (mouseArea.pressed) {\n                    Qt.rgba(0, 0, 0, 0.10)\n                } else if (mouseArea.containsMouse) {\n                    Qt.rgba(0, 0, 0, 0.05)\n                } else {\n                    palette.window\n                }\n            }\n            strokeColor: \"gray\"\n            startX: control.radius\n            startY: 0\n\n            PathLine { x: shape.width - control.radius; y: 0 }\n            PathQuad { x: shape.width; y: control.radius; controlX: shape.width; controlY: 0 }\n            PathLine { x: shape.width; y: shape.height - control.radius }\n            PathQuad { x: shape.width - control.radius; y: shape.height; controlX: shape.width; controlY: shape.height }\n            PathLine { x: control.radius; y: shape.height }\n            PathQuad { x: 0; y: shape.height - control.radius; controlX: 0; controlY: shape.height }\n            PathLine { x: 0; y: control.radius }\n            PathQuad { x: control.radius; y: 0; controlX: 0; controlY: 0 }\n        }\n\n        MouseArea {\n            id: mouseArea\n            anchors.fill: parent\n            hoverEnabled: true\n            onClicked: {\n                requireFileDialog()\n            }\n        }\n        DropArea {\n            id: dropArea\n            anchors.fill: parent\n            enabled: true\n            onDropped: function (drop) {\n                if (drop.hasUrls) {\n                    var filePath = drop.urls[0].toString()\n                    var ext = filePath.substring(filePath.lastIndexOf('.') + 1).toLowerCase()\n                    if (['png', 'bmp', 'jpg', 'jpeg'].indexOf(ext) === -1) {\n                        errorLabel.visible = true\n                        normalLabel.visible = false\n                        return\n                    }\n                    errorLabel.visible = false\n                    normalLabel.visible = true\n                    iconDropped(filePath)\n                }\n            }\n        }\n    }\n    D.DciIcon {\n        id: addIcon\n        anchors.centerIn: parent\n        name: \"dcc_user_add_icon\"\n        sourceSize:  Qt.size(64, 64)\n    }\n\n    D.Label {\n        id: normalLabel\n        width: 360\n        wrapMode: Text.WordWrap\n        font: D.DTK.fontManager.t8\n        anchors.top: addIcon.bottom\n        anchors.topMargin: 20\n        horizontalAlignment: Text.AlignHCenter\n        anchors.horizontalCenter: parent.horizontalCenter\n        text: qsTr(\"You haven't uploaded an avatar yet. Click or drag and drop to upload an image.\")\n    }\n\n    D.Label {\n        id: errorLabel\n        width: 360\n        wrapMode: Text.WordWrap\n        anchors.top: addIcon.bottom\n        anchors.topMargin: 20\n        horizontalAlignment: Text.AlignHCenter\n        anchors.horizontalCenter: parent.horizontalCenter\n        visible: false\n        text: qsTr(\"The uploaded file type is incorrect, please upload it again\")\n    }\n}\n"
  },
  {
    "path": "src/plugin-accounts/qml/CustomLocalAvatarsRow.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Layouts 1.15\nimport Qt.labs.platform 1.1\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc 1.0\n\nItem {\n    id: root\n    property string userId\n    property string filter: \"icons/local\"\n    property string currentAvatar\n    property string previewUrl: \"\"\n\n    signal requireFileDialog()\n\n    implicitHeight: 100\n    width: parent ? parent.width : 460\n\n    Component.onCompleted: {\n        const currentNoQuery = (root.currentAvatar || \"\").toString().replace(\"file://\", \"\")\n        const isCustom = currentNoQuery.indexOf(\"/local/\") >= 0 || currentNoQuery.indexOf(\"/avatars/\") >= 0\n        \n        if (isCustom) {\n            // For custom avatars, try to get from cache\n            const cached = dccData.customAvatarFromCache()\n            if (cached && cached.length > 0) {\n                root.currentAvatar = cached\n            }\n        }\n        // For system avatars, keep the original currentAvatar value from dialog\n        \n        const tmp = row.icons\n        row.icons = []\n        Qt.callLater(function(){ row.icons = tmp })\n    }\n\n    RowLayout {\n        id: row\n        spacing: 12\n        anchors.horizontalCenter: parent.horizontalCenter\n        anchors.verticalCenter: parent.verticalCenter\n\n        property var allIcons: dccData.avatars(root.userId, root.filter, \"\")\n        property var icons: allIcons.slice(0, Math.min(5, allIcons.length))\n\n        Repeater {\n            model: row.icons\n            delegate: D.ItemDelegate {\n                id: delegate\n                property bool isAddButton: modelData == \"add\"\n                property string modelPathNoQuery: (modelData || \"\").toString().replace(\"file://\", \"\")\n                property string currentNoQuery: (root.currentAvatar || \"\").toString().replace(\"file://\", \"\")\n                property bool currentIsCustom: currentNoQuery.indexOf(\"/local/\") >= 0 || currentNoQuery.indexOf(\"/avatars/\") >= 0\n                // 检查是否直接匹配，或者当前是自定义头像且列表中没有匹配项时选中第一个自定义头像\n                property bool isFirstCustomInList: !isAddButton && index === 1\n                property bool isSelected: {\n                    if (isAddButton) return false\n                    // 直接路径匹配\n                    if (currentNoQuery.length > 0 && currentNoQuery === modelPathNoQuery) return true\n                    if (currentIsCustom && currentNoQuery.indexOf(\"/var/lib/\") >= 0 && isFirstCustomInList) return true\n                    return false\n                }\n                implicitHeight: 72\n                implicitWidth: 72\n                checkable: false\n                hoverEnabled: true\n                background: Item {}\n                onClicked: {\n                    if (!delegate.isAddButton)\n                        root.currentAvatar = modelData\n                }\n\n                // add 按钮\n                Loader {\n                    active: delegate.isAddButton\n                    sourceComponent: Item {\n                        implicitHeight: 72\n                        implicitWidth: 72\n                        Button {\n                            id: control\n                            width: 60\n                            height: 60\n                            padding: 0\n                            leftPadding: 0\n                            rightPadding: 0\n                            topPadding: 0\n                            bottomPadding: 0\n                            icon {\n                                name: modelData\n                                height: 60\n                                width: 60\n                            }\n                            anchors.centerIn: parent\n                            onClicked: root.requireFileDialog()\n                        }\n                    }\n                }\n\n                // 普通头像项\n                Item {\n                    id: iconSlot\n                    width: 60\n                    height: 60\n                    anchors.centerIn: parent\n                    clip: true\n\n                    Rectangle {\n                        id: avatarContainer\n                        width: 60\n                        height: 60\n                        radius: 6\n                        anchors.centerIn: parent\n                        clip: true\n                        visible: !delegate.isAddButton\n\n                        Image {\n                            id: img\n                            source: {\n                                if (delegate.isAddButton) return \"\"\n                                if (delegate.isSelected && root.previewUrl.length > 0) {\n                                    return root.previewUrl\n                                }\n                                return modelData || \"\"\n                            }\n                            cache: false\n                            width: parent.width\n                            height: parent.height\n                            fillMode: Image.PreserveAspectCrop\n                            anchors.centerIn: parent\n                            antialiasing: true\n                            smooth: true\n                        }\n\n                        D.DciIcon {\n                            id: fallbackImg\n                            palette: D.DTK.makeIconPalette(delegate.palette)\n                            mode: delegate.D.ColorSelector.controlState\n                            theme: delegate.D.ColorSelector.controlTheme\n                            fallbackToQIcon: false\n                            name: modelData\n                            sourceSize: Qt.size(60, 60)\n                            anchors.centerIn: parent\n                            visible: img.status === Image.Error || img.status === Image.Null\n                            antialiasing: true\n                        }\n                    }\n                }\n\n                D.BoxShadow {\n                    id: boxShadow\n                    hollow: true\n                    anchors.fill: iconSlot\n                    shadowBlur: 3\n                    spread: 3\n                    shadowColor: delegate.palette.window\n                    cornerRadius: 6\n                }\n\n                Rectangle {\n                    id: background\n                    radius: 8\n                    anchors.fill: iconSlot\n                    anchors.margins: -2\n                    color: \"transparent\"\n                    border.color: delegate.palette.highlight\n                    border.width: 1\n                    visible: delegate.isSelected\n                    z: 10\n                }\n\n                D.IconLabel {\n                    id: checkIcon\n                    z: 99\n                    icon {\n                        name: \"item_checked\"\n                        width: 20\n                        height: 20\n                        palette: D.DTK.makeIconPalette(delegate.palette)\n                        mode: delegate.D.ColorSelector.controlState\n                        theme: delegate.D.ColorSelector.controlTheme\n                    }\n                    width: 20\n                    height: 20\n                    x: background.x + background.width - width / 2 - 3\n                    y: background.y - height / 2 + 5\n                    visible: delegate.isSelected\n                }\n\n                D.ActionButton {\n                    z: 99\n                    visible: delegate.hovered && !delegate.isSelected && !delegate.isAddButton\n                    focusPolicy: Qt.NoFocus\n                    anchors.right: parent.right\n                    anchors.top: parent.top\n                    icon {\n                        name: \"entry_clear\"\n                        width: 20\n                        height: 20\n                    }\n                    background: Rectangle { radius: 10 }\n                    onClicked: {\n                        if (typeof dccData.deleteUserIcon === 'function') {\n                            dccData.deleteUserIcon(root.userId, modelData)\n                        }\n                    }\n                }\n            }\n        }\n    }\n\n    function refresh() {\n        row.allIcons = dccData.avatars(root.userId, root.filter, \"\")\n        row.icons = row.allIcons.slice(0, Math.min(5, row.allIcons.length))\n        const curNoQuery = (root.currentAvatar || \"\")\n        if (curNoQuery && row.icons.every(function(p){ return (p||\"\") !== curNoQuery })) {\n            const idx = row.allIcons.findIndex(function(p){ return (p||\"\") === curNoQuery })\n            if (idx >= 0) {\n                const addBtn = row.icons.length > 0 ? row.icons[0] : \"add\"\n                const selected = row.allIcons[idx]\n                let others = row.icons.slice(1, 5)\n                others = others.filter(function(p){ return (p||\"\") !== curNoQuery })\n                row.icons = [addBtn].concat([selected]).concat(others).slice(0, Math.min(5, row.allIcons.length))\n            }\n        }\n        if (root.currentAvatar && row.allIcons.indexOf(root.currentAvatar) < 0) {\n            const curNoQuery = (root.currentAvatar || \"\")\n            const existsNoQuery = row.allIcons.some(function(p){ return (p||\"\") === curNoQuery })\n            if (!existsNoQuery) root.currentAvatar = \"\"\n        }\n        // Don't override currentAvatar from cache during refresh\n        const tmp = row.icons\n        row.icons = []\n        Qt.callLater(function(){ row.icons = tmp })\n    }\n\n    Connections {\n        target: dccData\n        function onAvatarChanged(userId, avatar) {\n            if (userId === root.userId)\n                root.refresh()\n        }\n    }\n}\n\n\n"
  },
  {
    "path": "src/plugin-accounts/qml/EditActionLabel.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nD.LineEdit {\n    id: edit\n    property alias editBtn: editButton\n    property alias alertText: panel.alertText\n    property alias showAlert: panel.showAlert\n    property alias metrics: fontMetrics\n    property var completeText: \"\"\n    signal finished()\n\n    readOnly: true\n    horizontalAlignment: TextInput.AlignLeft\n    verticalAlignment: TextInput.AlignVCenter\n    topPadding: 4\n    bottomPadding: 4\n    clearButton.visible: !readOnly\n    rightPadding: clearButton.width + clearButton.anchors.rightMargin\n    implicitHeight: 36\n    background: D.EditPanel {\n        id: panel\n        control: edit\n        showBorder: !readOnly\n        alertDuration: 3000\n        implicitWidth: DS.Style.edit.width\n        implicitHeight: 32\n        anchors {\n            fill: parent\n            topMargin: 3\n            bottomMargin: 3\n        }\n        backgroundColor: D.Palette {\n            normal: Qt.rgba(1, 1, 1, 0)\n            normalDark: Qt.rgba(1, 1, 1, 0)\n        }\n    }\n    onEditingFinished: {\n        if (edit.readOnly)\n            return\n        if (showAlert)\n            showAlert = false\n\n        finished()\n    }\n\n    FontMetrics {\n        id: fontMetrics\n        font: edit.font\n    }\n\n    D.ActionButton {\n        id: editButton\n        focusPolicy: Qt.StrongFocus\n        width: 30\n        height: 30\n        icon.name: \"dcc-edit\"\n        icon.width: DS.Style.edit.actionIconSize\n        icon.height: DS.Style.edit.actionIconSize\n        hoverEnabled: true\n        background: Rectangle {\n            anchors.fill: parent\n            property D.Palette pressedColor: D.Palette {\n                normal: Qt.rgba(0, 0, 0, 0.2)\n                normalDark: Qt.rgba(1, 1, 1, 0.25)\n            }\n            property D.Palette hoveredColor: D.Palette {\n                normal: Qt.rgba(0, 0, 0, 0.1)\n                normalDark: Qt.rgba(1, 1, 1, 0.1)\n            }\n            radius: DS.Style.control.radius\n            color: parent.pressed ? D.ColorSelector.pressedColor : (parent.hovered ? D.ColorSelector.hoveredColor : \"transparent\")\n            border {\n                color: parent.palette.highlight\n                width: parent.visualFocus ? DS.Style.control.focusBorderWidth : 0\n            }\n        }\n        anchors {\n            right: edit.right\n            verticalCenter: edit.verticalCenter\n        }\n        onClicked: {\n            edit.readOnly = false\n            edit.selectAll()\n            edit.forceActiveFocus()\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-accounts/qml/LoginMethod.qml",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nDccTitleObject {\n    id: loginMethodTitle\n    property string userId\n    name: \"loginMethodTitle\"\n    // parentName: \"\"\n    displayName: qsTr(\"Login method\")\n    weight: 38\n\n    DccObject {\n        name: loginMethodTitle.parentName + \"loginMethod\"\n        parentName: loginMethodTitle.parentName\n        description: qsTr(\"Password, wechat, biometric authentication, security key\")\n        canSearch: loginMethodTitle.canSearch\n        weight: 40\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        // DccObject {\n        //     name: loginMethodTitle.parentName + \"WeChatScanQR\"\n        //     parentName: loginMethodTitle.parentName + \"loginMethod\"\n        //     displayName: qsTr(\"WeChat scan QR code\")\n        //     weight: 12\n        //     pageType: DccObject.Editor\n        //     page: Switch {\n        //     }\n        // }\n\n        DccObject {\n            name: loginMethodTitle.parentName + \"loginMethodItem\" + \"password\"\n            parentName: loginMethodTitle.parentName + \"loginMethod\"\n            displayName: qsTr(\"Password\")\n            canSearch: loginMethodTitle.canSearch\n            weight: 20\n            DccObject {\n                name: loginMethodTitle.parentName + \"PasswordLoginTitle\"\n                parentName: loginMethodTitle.parentName + \"loginMethodItem\" + \"password\"\n                displayName: qsTr(\"Password\")\n                canSearch: loginMethodTitle.canSearch\n                weight: 12\n                pageType: DccObject.Item\n                page: RowLayout {\n                    D.Label {\n                        Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter\n                        Layout.leftMargin: 10\n                        font.bold: true\n                        font.pointSize: 14\n                        text: dccObj.displayName\n                    }\n                }\n                onParentItemChanged: item => { if (item) item.topPadding = 10 }\n            }\n\n            DccObject {\n                id: passwordGroupView\n                name: loginMethodTitle.parentName + \"PasswordGroupView\"\n                parentName: loginMethodTitle.parentName + \"loginMethodItem\" + \"password\"\n                description: qsTr(\"Password, wechat, biometric authentication, security key\")\n                canSearch: loginMethodTitle.canSearch\n                weight: 20\n                pageType: DccObject.Item\n                page: DccGroupView {}\n\n                DccObject {\n                    name: loginMethodTitle.parentName + \"PasswordModify\"\n                    parentName: passwordGroupView.name\n                    displayName: dccData.currentUserId() === loginMethodTitle.userId ? qsTr(\"Modify password\") : qsTr(\"Reset password\")\n                    canSearch: loginMethodTitle.canSearch\n                    backgroundType: DccObject.ClickStyle\n                    weight: 12\n                    enabled: dccData.currentUserId() === loginMethodTitle.userId || (dccData.curUserIsSysAdmin() && !dccData.isOnline(loginMethodTitle.userId))\n                    pageType: DccObject.Editor\n                    page: D.IconLabel {\n                        icon {\n                            name: \"arrow_ordinary_right\"\n                            palette: D.DTK.makeIconPalette(palette)\n                        }\n                        opacity: enabled ? 1 : 0.4\n                    }\n                    onActive: {\n                        pmdLoader.active = true\n                    }\n\n                    Loader {\n                        id: pmdLoader\n                        active: false\n                        sourceComponent: PasswordModifyDialog {\n                            userId: loginMethodTitle.userId\n                            onClosing: function (close) {\n                                pmdLoader.active = false\n                            }\n                        }\n                        onLoaded: function () {\n                            pmdLoader.item.show()\n                        }\n                    }\n                }\n                DccObject {\n                    name: loginMethodTitle.parentName + \"PasswordValidityDays\" + \"biometric\"\n                    parentName: passwordGroupView.name\n                    displayName: qsTr(\"Validity days\")\n                    canSearch: loginMethodTitle.canSearch\n                    weight: 12\n                    pageType: DccObject.Editor\n                    page: D.SpinBox {\n                        id: sbAge\n                        from: 1\n                        to: 99999\n                        value: dccData.passwordAge(loginMethodTitle.userId)\n                        editable: true\n                        validator: RegularExpressionValidator {\n                            regularExpression: /[\\d]{1,5}/\n                        }\n                        textFromValue: function(value) {\n                            return value > 99998 ? qsTr(\"Always\") : value\n                        }\n                        valueFromText: function(text, locale) {\n                            if (text === qsTr(\"Always\"))\n                                return 99999\n\n                            return text\n                        }\n                        onValueChanged: function() {\n                            timer.restart()\n                            if (!ti.activeFocus)\n                                ti.text = sbAge.textFromValue(sbAge.value, sbAge.locale)\n                        }\n\n                        onFocusChanged: {\n                            if (!focus) {\n                                sbAge.value = sbAge.valueFromText(ti.text, sbAge.locale)\n                                dccData.setPasswordAge(loginMethodTitle.userId, value)\n                            }\n                        }\n\n                        contentItem: TextInput {\n                            id: ti\n                            text: sbAge.textFromValue(sbAge.value, sbAge.locale)\n                            color: sbAge.palette.text\n                            readOnly: !sbAge.editable\n                            validator: sbAge.validator\n                            inputMethodHints: sbAge.inputMethodHints\n                            verticalAlignment: Text.AlignVCenter\n                            leftPadding: 10\n                            maximumLength: 6\n                            selectByMouse: true\n                            renderType: Text.NativeRendering\n                            onEditingFinished: sbAge.value = sbAge.valueFromText(text, sbAge.locale)\n                            onTextChanged: {\n                                if (text.length > 0 && text.charAt(0) === \"0\") {\n                                    var trimmed = text.replace(/^0+/, \"\")\n                                    text = trimmed\n                                }\n                            }\n                            onActiveFocusChanged: {\n                                if (activeFocus) {\n                                    text = String(sbAge.value)\n                                } else {\n                                    text = sbAge.textFromValue(sbAge.value, sbAge.locale)\n                                }\n                            }\n                        }\n\n                        Timer {\n                            id: timer\n                            interval: 1000\n                            onTriggered: {\n                                dccData.setPasswordAge(loginMethodTitle.userId, sbAge.value)\n                            }\n                        }\n                        Connections {\n                            target: dccData\n                            function onPasswordAgeChanged(userId, age) {\n                                if (userId === loginMethodTitle.userId) {\n                                    sbAge.value = dccData.passwordAge(loginMethodTitle.userId)\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-accounts/qml/PasswordLayout.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\n\nColumnLayout {\n    id: pwdLayout\n    property string userId\n    property string name: dccData.userName(pwdLayout.userId)\n    property bool currentPwdVisible: true\n    property string currentName: name\n    Layout.fillWidth: true\n    spacing: 0\n    \n    property int maxLabelWidth: 100\n\n    signal requestClose()\n    signal labelWidthCalculated()\n\n    FontMetrics {\n        id: fm\n        font: D.DTK.fontManager.t6\n    }\n\n    function maxWidth(font) {\n        fm.font = font\n        var texts = []\n        if (currentPwd.visible) {\n            texts.push(currentPwd.label.text)\n        }\n        \n        // 获取每个delegate中label的text\n        for (var i = 0; i < pwdContainter.repeater.count; i++) {\n            var delegateItem = pwdContainter.repeater.itemAt(i)\n            if (delegateItem && delegateItem.contentItem) {\n                texts.push(delegateItem.contentItem.label.text)\n            }\n        }\n        \n        var maxWidth = 0\n        for (var i = 0; i < texts.length; i++) {\n            var width = fm.advanceWidth(texts[i])\n            if (width > maxWidth) {\n                maxWidth = width\n            }\n        }\n        var finalWidth = maxWidth > 110 ? 110 : maxWidth\n        pwdLayout.maxLabelWidth = Math.ceil(finalWidth)\n    }\n    \n    Component.onCompleted: {\n        maxWidth(currentPwd.label.font)\n        labelWidthCalculated()\n    }\n\n    function minWidth(font, text, width) {\n        fm.font = font\n        return Math.min(width, fm.advanceWidth(text) + 20)\n    }\n\n    function getPwdInfo() {\n        var info = {\n            \"pwd\": pwdContainter.eidtItems[0].text,\n            \"pwdRepeat\": pwdContainter.eidtItems[1].text,\n            \"pwdHint\": pwdContainter.eidtItems[2].text\n        }\n        if (currentPwd.visible)\n            info[\"oldPwd\"] = currentPwd.edit.text\n\n        return info\n    }\n\n    function checkPassword() {\n        return pwdContainter.checkPassword()\n    }\n\n    function showUserNameMatchPasswordAlert() {\n        if (pwdContainter && pwdContainter.eidtItems && pwdContainter.eidtItems[0]) {\n            pwdContainter.eidtItems[0].showAlertText(qsTr(\"The password cannot be the same as the username.\"))\n        }\n    }\n\n    function playErrorSound() {\n        dccData.playSystemSound(14)\n    }\n\n    function focusAndSelectAll(edit) {\n        if (edit) {\n            edit.forceActiveFocus()\n            if (edit.selectAll) {\n                edit.selectAll()\n            } else if (edit.select) {\n                edit.select(0, edit.text.length)\n            }\n        }\n    }\n\n    PasswordItem {\n        id: currentPwd\n        visible: pwdLayout.currentPwdVisible\n        label.text: qsTr(\"Current password\")\n        label.font: D.DTK.fontManager.t6\n        edit.placeholderText: qsTr(\"Required\")\n        implicitHeight: 30\n        Layout.leftMargin: 0\n        Layout.rightMargin: -DS.Style.dialogWindow.contentHMargin\n        Layout.bottomMargin: 0\n\n        Loader {\n            id: safepageLoader\n            active: false\n            property string msg\n            sourceComponent: ComfirmSafePage {\n                msg: safepageLoader.msg\n                onClosing: function () {\n                    safepageLoader.active = false\n                }\n                onRequestShowSafePage: {\n                    dccData.showDefender()\n                }\n            }\n            onLoaded: function () {\n                safepageLoader.item.show()\n            }\n        }\n\n        Connections {\n            target: dccData\n            function onPasswordModifyFinished(id, code, msg) {\n                if (id !== pwdLayout.userId)\n                    return\n\n                // no error, set pwd hint\n                if (code === 0) {\n                    if (pwdContainter.eidtItems[2])\n                        dccData.setPasswordHint(pwdLayout.userId, pwdContainter.eidtItems[2].text)\n                    pwdLayout.requestClose()\n                    return\n                }\n                let info = dccData.checkPasswordResult(code, msg, pwdLayout.name, pwdContainter.eidtItems[0].text)\n                // wrong password\n                if (info[\"oldPwd\"] !== undefined && currentPwd.visible) {\n                    currentPwd.edit.showAlertText(info[\"oldPwd\"])\n                    focusAndSelectAll(currentPwd.edit)\n                    return\n                }\n\n                // new password error\n                if (info[\"pwd\"] !== undefined)\n                    pwdContainter.eidtItems[0].showAlertText(info[\"pwd\"])\n            }\n\n            function onShowSafetyPage(msg) {\n                if (!safepageLoader.active) {\n                    safepageLoader.msg = msg\n                    safepageLoader.active = true\n                }\n            }\n        }\n    }\n\n    RowLayout {\n        id: pwdIndicator\n        spacing: 4\n        Layout.alignment: Qt.AlignRight | Qt.AlignBottom\n        Layout.rightMargin: 10\n        Layout.bottomMargin: 6\n        Layout.topMargin: 20\n        Label {\n            id: pwdStrengthHintText\n            text: \"\"\n            Layout.rightMargin: 6\n            visible: false // if need text set visible\n        }\n        Repeater {\n            id: indicatorRepeater\n            readonly property var defaultModel: [ palette.button, palette.button, palette.button ]\n            model: defaultModel\n            delegate: Rectangle {\n                implicitHeight: 4\n                height: 4\n                width: 10\n                color: modelData\n                radius: 2\n            }\n        }\n\n        function updateIndicatorColors(level, colors) {\n            // Note: slice() 拷贝一份 defaultModel 数组\n            // 如果直接等号后面赋值操作将会修改 defaultModel （就算是 readonly 也会？）\n            let model = indicatorRepeater.defaultModel.slice()\n            for (let i = 0; i < level; ++i) {\n                model[i] = colors[level - 1]\n            }\n            indicatorRepeater.model = model\n        }\n\n        function update(level) {\n            if (level > 0) {\n                var colors = [ \"#FF5736\", \"#FFAA00\", \"#15BB18\" ]\n                pwdStrengthHintText.color = colors[level - 1]\n                if (level === 1) {\n                    pwdStrengthHintText.text = qsTr(\"Weak\")\n                } else if (level === 2) {\n                    pwdStrengthHintText.text = qsTr(\"Medium\")\n                } else if (level === 3) {\n                    pwdStrengthHintText.text = qsTr(\"Strong\")\n                } else {\n                    pwdStrengthHintText.text = \"\"\n                }\n                updateIndicatorColors(level, colors)\n            } else {\n                pwdStrengthHintText.text = \"\"\n                indicatorRepeater.model = indicatorRepeater.defaultModel\n            }\n        }\n    }\n\n    ListModel {\n        id: passwordModel\n        ListElement {\n            name: qsTr(\"New password\")\n            placeholder: qsTr(\"Required\")\n            echoButtonVisible: true\n        }\n        ListElement {\n            name: qsTr(\"Repeat Password\")\n            placeholder: qsTr(\"Required\")\n            echoButtonVisible: true\n        }\n        ListElement {\n            name: qsTr(\"Password hint\")\n            placeholder: qsTr(\"Optional\")\n            echoButtonVisible: false\n        }\n    }\n\n    Rectangle {\n        id: pwdContainter\n        property var eidtItems: []\n        property alias repeater: repeater\n        radius: 8\n        Layout.fillWidth: true\n        Layout.alignment: Qt.AlignTop | Qt.AlignHCenter\n        Layout.rightMargin: 0\n        Layout.topMargin: 4 - DS.Style.dialogWindow.contentHMargin\n        Layout.bottomMargin: 30\n        implicitHeight: 150\n        color: \"transparent\"\n\n        function emptyCheck(edit) {\n            if (edit.text.length < 1) {\n                edit.showAlertText(qsTr(\"Password cannot be empty\"))\n                focusAndSelectAll(edit)\n                return false\n            }\n\n            return true\n        }\n\n        function checkPassword() {\n            if (currentPwd.visible && !emptyCheck(currentPwd.edit))\n                return false\n\n            let edit0 = pwdContainter.eidtItems[0]\n            let edit1 = pwdContainter.eidtItems[1]\n            let edit2 = pwdContainter.eidtItems[2]\n            if (!edit0 || !edit1 || !edit2)\n                return true\n\n            if (!emptyCheck(edit0))\n                return false\n\n            // password repeat test\n            if (edit1.text.length < 1 || edit1.text !== edit0.text) {\n                edit1.showAlertText(qsTr(\"Passwords do not match\"))\n                focusAndSelectAll(edit1)\n                return false\n            }\n\n            // password notchanged test\n            if (edit0.text.length < 1 || (currentPwd.visible && currentPwd.edit.text === edit0.text)) {\n                edit0.showAlertText(qsTr(\"New password should differ from the current one\"))\n                focusAndSelectAll(edit0)\n                return false\n            }\n\n            if (edit0.text === pwdLayout.currentName && pwdLayout.currentName.length > 0) {\n                edit0.showAlertText(qsTr(\"The password cannot be the same as the username.\"))\n                focusAndSelectAll(edit0)\n                return false\n            }\n\n            let alertText = \"\"\n            // pwcheck verifyPassword\n            alertText = dccData.checkPassword(pwdLayout.currentName, edit0.text)\n            if (alertText.length > 0) {\n                edit0.showAlertText(alertText)\n                focusAndSelectAll(edit0)\n                return false\n            }\n\n            // password hint test\n            if (edit0.text.split('').filter(c => edit2.text.includes(c)).length > 0) {\n                edit2.showAlertText(qsTr(\"The hint is visible to all users. Do not include the password here.\"))\n                focusAndSelectAll(edit2)\n                return false\n            }\n\n            return true\n        }\n\n        ColumnLayout {\n            id: pwdColumnLayout\n            spacing: 10\n            anchors.fill: parent\n            Repeater {\n                id: repeater\n                Layout.bottomMargin: 20\n                model: passwordModel\n                delegate: D.ItemDelegate {\n                    implicitWidth: pwdColumnLayout.width\n                    backgroundVisible: false\n                    checkable: false\n                    clip: false\n                    z: (control && control.contentItem && control.contentItem.edit && control.contentItem.edit.showAlert) ? 100 : 1\n                    implicitHeight: 30\n                    leftPadding: pwdLayout.currentPwdVisible ? 0 : 10\n                    rightPadding: 0\n\n                    contentItem: PasswordItem {\n                        label.text: model.name\n                        label.font: D.DTK.fontManager.t6\n                        edit {\n                            placeholderText: model.placeholder\n                            echoButtonVisible: model.echoButtonVisible\n                        }\n                        onTextChanged: function(text) {\n                            if (index == 0) {\n                                if (text.length > 0) {\n                                    let lvl = dccData.passwordLevel(text)\n                                    pwdIndicator.update(lvl)\n                                } else {\n                                    pwdIndicator.update(0)\n                                }\n\n                                // Realtime validation (red border only, no tips).\n                                let edit0 = pwdContainter.eidtItems[0]\n                                if (!edit0)\n                                    return\n\n                                if (text.length === 0) {\n                                    edit0.showAlert = false\n                                    edit0.alertText = \"\"\n                                    edit0.hasErrorBorder = false\n                                    return\n                                }\n\n                                // username match\n                                if (pwdLayout.currentName.length > 0 && text === pwdLayout.currentName) {\n                                    edit0.showAlert = true\n                                    edit0.alertText = \"\"\n                                    edit0.hasErrorBorder = true\n                                    return\n                                }\n\n                                let err = dccData.checkPasswordSilently(pwdLayout.currentName, text)\n                                edit0.showAlert = (err.length > 0)\n                                edit0.alertText = \"\"\n                                edit0.hasErrorBorder = (err.length > 0)\n                            } else if (index == 1) {\n                                // Repeat password: realtime red border when mismatch (no tips text yet)\n                                let edit0 = pwdContainter.eidtItems[0]\n                                let edit1 = pwdContainter.eidtItems[1]\n                                if (!edit0 || !edit1)\n                                    return\n\n                                if (text.length === 0) {\n                                    edit1.showAlert = false\n                                    edit1.alertText = \"\"\n                                    edit1.hasErrorBorder = false\n                                    return\n                                }\n\n                                if (edit0.text.length > 0 && text !== edit0.text) {\n                                    edit1.showAlert = true\n                                    edit1.alertText = \"\"\n                                    edit1.hasErrorBorder = true\n                                } else {\n                                    edit1.showAlert = false\n                                    edit1.alertText = \"\"\n                                    edit1.hasErrorBorder = false\n                                }\n                            }\n                        }\n                        onEditingFinished: {\n                            // Validate and show tips on focus-out (v20 behavior)\n                            if (index == 0) {\n                                let edit0 = pwdContainter.eidtItems[0]\n                                if (!edit0)\n                                    return\n\n                                if (edit0.text.length === 0) {\n                                    edit0.showAlertText(qsTr(\"Password cannot be empty\"))\n                                    return\n                                }\n\n                                if (pwdLayout.currentName.length > 0 && edit0.text === pwdLayout.currentName) {\n                                    edit0.showAlertText(qsTr(\"The password cannot be the same as the username.\"))\n                                    return\n                                }\n\n                                let err = dccData.checkPasswordSilently(pwdLayout.currentName, edit0.text)\n                                if (err.length > 0) {\n                                    edit0.showAlertText(err)\n                                } else {\n                                    edit0.showAlert = false\n                                    edit0.alertText = \"\"\n                                    edit0.hasErrorBorder = false\n                                }\n                            } else if (index == 1) {\n                                let edit0 = pwdContainter.eidtItems[0]\n                                let edit1 = pwdContainter.eidtItems[1]\n                                if (!edit0 || !edit1)\n                                    return\n\n                                if (edit1.text.length === 0) {\n                                    edit1.showAlertText(qsTr(\"Password cannot be empty\"))\n                                    return\n                                }\n\n                                if (edit0.text.length > 0 && edit1.text !== edit0.text) {\n                                    edit1.showAlertText(qsTr(\"Passwords do not match\"))\n                                } else {\n                                    edit1.showAlert = false\n                                    edit1.alertText = \"\"\n                                    edit1.hasErrorBorder = false\n                                }\n                            }\n                        }\n                        Component.onCompleted: {\n                            pwdContainter.eidtItems[index] = this.edit\n                        }\n                    }\n\n                    background: DccItemBackground {\n                        separatorVisible: true\n                        focusBorderVisible: !(control\n                                             && control.contentItem\n                                             && control.contentItem.edit\n                                             && (control.contentItem.edit.hasErrorBorder\n                                                 || control.contentItem.edit.showAlert))\n                    }\n                }\n            }\n\n            Label {\n                text: qsTr(\"The hint is visible to all users. Do not include the password here.\")\n                wrapMode: Text.WordWrap\n                Layout.alignment: Qt.AlignLeft\n                Layout.rightMargin: 0\n                Layout.leftMargin: maxLabelWidth + 27\n                Layout.preferredWidth: pwdLayout.minWidth(font, text, pwdColumnLayout.width - Layout.leftMargin)\n                font: D.DTK.fontManager.t8\n            }\n        }\n    }\n\n    component PasswordItem : RowLayout {\n        id: pwdItem\n        property alias label: leftItem\n        property alias edit: rightItem\n        signal textChanged(string text)\n        signal editingFinished()\n        spacing: 10\n        Layout.alignment: Qt.AlignVCenter\n\n        Label {\n            id: leftItem\n            Layout.preferredHeight: 30\n            font: D.DTK.fontManager.t6\n            elide: Text.ElideRight\n            Layout.preferredWidth: pwdLayout.maxLabelWidth\n            Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter\n            verticalAlignment: Text.AlignVCenter\n\n            ToolTip.visible: leftItemHoverHandler.hovered && truncated\n            ToolTip.text: text\n\n            HoverHandler {\n                id: leftItemHoverHandler\n            }\n        }\n\n        Item {\n            id: editWrapper\n            Layout.preferredHeight: 30\n            Layout.fillWidth: true\n            Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n\n            D.PasswordEdit {\n                id: rightItem\n                anchors.fill: parent\n                property bool hasErrorBorder: false\n                // Cache the normal focus color so we can restore it.\n                property color normalHighlight: \"transparent\"\n                Component.onCompleted: normalHighlight = palette.highlight\n                palette.highlight: (hasErrorBorder || showAlert) ? \"#FF5736\" : normalHighlight\n                topPadding: 0\n                bottomPadding: 0\n                font: D.DTK.fontManager.t7\n                canCopy: false\n                canCut: false\n                inputMethodHints: Qt.ImhHiddenText | Qt.ImhNoPredictiveText | Qt.ImhNoAutoUppercase\n                verticalAlignment: TextInput.AlignVCenter\n                echoMode: echoButtonVisible ? TextInput.Password :  TextInput.Normal\n                alertDuration: 3000\n                onTextChanged: {\n                    if (rightItem.hasErrorBorder)\n                        rightItem.hasErrorBorder = false\n\n                    if (!echoButtonVisible && text.length > 14) {\n                        rightItem.text = text.substring(0, 14)\n                        playErrorSound()\n                        return\n                    }\n\n                    pwdItem.textChanged(text)\n                }\n\n                onEditingFinished: {\n                    if (echoButtonVisible && pwdContainter.eidtItems[2] != rightItem) {\n                        if (text === pwdLayout.currentName && text.length > 0) {\n                            showAlertText(qsTr(\"The password cannot be the same as the username.\"))\n                        }\n                    }\n                    pwdItem.editingFinished()\n                }\n\n                function showAlertText(text) {\n                    rightItem.hasErrorBorder = true\n                    rightItem.showAlert = false\n                    rightItem.showAlert = true\n                    rightItem.alertText = text\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-accounts/qml/PasswordModifyDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Dialogs\nimport QtQuick.Window\nimport QtQml.Models\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc 1.0\n\nD.DialogWindow {\n    id: dialog\n    property string userId\n    width: 460\n    minimumWidth: width\n    minimumHeight: height\n    maximumWidth: minimumWidth\n    maximumHeight: minimumHeight\n    icon: \"preferences-system\"\n    modality: Qt.WindowModal\n    title: isCurrent() ? qsTr(\"Modify password\") : qsTr(\"Reset password\")\n\n    function isCurrent() {\n        return dialog.userId === dccData.currentUserId()\n    }\n\n    ColumnLayout {\n        width: dialog.width - 10\n        spacing: 0\n        Label {\n            text: dialog.title\n            font.bold: true\n            Layout.leftMargin: 0\n            Layout.rightMargin: 20\n            font.pixelSize: cancelButton.font.pixelSize\n            Layout.alignment: Qt.AlignTop | Qt.AlignHCenter\n        }\n        Label {\n            text: {\n                if (dialog.isCurrent())\n                    return qsTr(\"Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.\")\n                else\n                    return qsTr(\"Resetting the password will clear the data stored in the keyring.\")\n            }\n            font: D.DTK.fontManager.t8\n            wrapMode: Text.WordWrap\n            rightPadding: 10\n            leftPadding: 10\n            horizontalAlignment: Text.AlignHCenter\n            Layout.preferredWidth: pwdLayout.minWidth(font, text, dialog.width - 12)\n            Layout.leftMargin: 0\n            Layout.rightMargin: 10\n            Layout.alignment: Qt.AlignTop | Qt.AlignHCenter\n        }\n\n        PasswordLayout {\n            id: pwdLayout\n            userId: dialog.userId\n            currentPwdVisible: dialog.isCurrent()\n            Layout.leftMargin: 0\n            Layout.rightMargin: 18\n            Layout.fillWidth: true\n            Layout.maximumWidth: dialog.width - 12\n            onRequestClose: {\n                // no error, close dialog\n                close()\n            }\n        }\n\n        RowLayout {\n            spacing: 6\n            Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n            Layout.bottomMargin: 6\n            Layout.leftMargin: 0\n            Layout.rightMargin: 16\n\n            Button {\n                id: cancelButton\n                Layout.fillWidth: true\n                text: qsTr(\"Cancel\")\n                font: D.DTK.fontManager.t7\n                onClicked: {\n                    close()\n                }\n            }\n            D.RecommandButton {\n                Layout.fillWidth: true\n                text: qsTr(\"Modify password\")\n                font: D.DTK.fontManager.t7\n                onClicked: {\n                    if (!pwdLayout.checkPassword())\n                        return\n\n                    dccData.setPassword(dialog.userId, pwdLayout.getPwdInfo());\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-accounts/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-authentication/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\nset(pluginName authentication)\nfile(GLOB_RECURSE authentication_SRCS\n    \"operation/*.cpp\"\n    \"operation/*.h\"\n    \"operation/qrc/${pluginName}.qrc\"\n)\n\nadd_library(${pluginName} MODULE\n    ${authentication_SRCS}\n)\n\npkg_check_modules(DEEPIN_PW_CHECK REQUIRED libdeepin_pw_check)\npkg_check_modules(DaReader REQUIRED dareader)\n\nfind_package(PolkitQt6-1)\nset(authentication_Libraries\n    ${DCC_FRAME_Library}\n    ${QT_NS}::DBus\n    ${DTK_NS}::Core\n    ${DTK_NS}::Gui\n    ${QT_NS}::Concurrent\n    PolkitQt6-1::Agent\n    ${DEEPIN_PW_CHECK_LIBRARIES}\n    ${DaReader_LIBRARIES}\n)\n\ntarget_link_libraries(${pluginName} PRIVATE\n    ${authentication_Libraries}\n)\n\ndcc_install_plugin(NAME ${pluginName} TARGET ${pluginName})\n"
  },
  {
    "path": "src/plugin-authentication/operation/abstractbiometriccontroller.cpp",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"abstractbiometriccontroller.h\"\n\nnamespace dccV25 {\n\nAbstractBiometricController::AbstractBiometricController(QObject *parent)\n    : QObject(parent)\n{\n}\n\nvoid AbstractBiometricController::setAddStage(CharaMangerModel::AddInfoState stage)\n{\n    if (m_addStage != stage) {\n        m_addStage = stage;\n        emit addStageChanged();\n    }\n}\n\n} // namespace dccV25 "
  },
  {
    "path": "src/plugin-authentication/operation/abstractbiometriccontroller.h",
    "content": "//SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include \"operation/charamangermodel.h\"\n#include <QObject>\n\nnamespace dccV25 {\n\nclass AbstractBiometricController : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(CharaMangerModel::AddInfoState addStage READ addStage WRITE setAddStage NOTIFY addStageChanged)\n\npublic:\n    explicit AbstractBiometricController(QObject *parent = nullptr);\n    virtual ~AbstractBiometricController() = default;\n\n    CharaMangerModel::AddInfoState addStage() const { return m_addStage; }\n    void setAddStage(CharaMangerModel::AddInfoState stage);\n\n    virtual void startEnroll() = 0;\n    virtual void stopEnroll() = 0;\n    virtual void rename(const QString &oldName, const QString &newName) = 0;\n    virtual void remove(const QString &id) = 0;\n    \n    virtual bool isAvailable() const { return true; }\n    virtual QString getTypeName() const = 0;\n\nsignals:\n    void addStageChanged();\n    void enrollCompleted();\n\nprotected:\n    CharaMangerModel::AddInfoState m_addStage = CharaMangerModel::AddInfoState::StartState;\n};\n\n} // namespace dccV25 "
  },
  {
    "path": "src/plugin-authentication/operation/biometricauthcontroller.cpp",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"biometricauthcontroller.h\"\n#include \"dccfactory.h\"\n#include <QtQml/qqml.h>\n\nnamespace dccV25 {\n\nDCC_FACTORY_CLASS(BiometricAuthController)\n\nBiometricAuthController::BiometricAuthController(QObject *parent)\n    : QObject(parent)\n    , m_charaModel(new CharaMangerModel(this))\n    , m_charaWorker(new CharaMangerWorker(m_charaModel, this))\n{\n    // 注册QML类型\n    qmlRegisterType<CharaMangerModel>(\"org.deepin.dcc.account.biometric\", 1, 0, \"CharaMangerModel\");\n    qmlRegisterType<FaceAuthController>(\"org.deepin.dcc.account.biometric\", 1, 0, \"FaceAuthController\");\n    qmlRegisterType<FingerprintAuthController>(\"org.deepin.dcc.account.biometric\", 1, 0, \"FingerprintAuthController\");\n    qmlRegisterType<IrisAuthController>(\"org.deepin.dcc.account.biometric\", 1, 0, \"IrisAuthController\");\n    \n    // 创建子控制器\n    m_faceController = new FaceAuthController(m_charaModel, m_charaWorker, this);\n    m_fingerprintController = new FingerprintAuthController(m_charaModel, m_charaWorker, this);\n    m_irisController = new IrisAuthController(m_charaModel, m_charaWorker, this);\n}\n\n} // namespace dccV25\n\n#include \"biometricauthcontroller.moc\"\n"
  },
  {
    "path": "src/plugin-authentication/operation/biometricauthcontroller.h",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include \"charamangerworker.h\"\n#include \"operation/charamangermodel.h\"\n#include \"faceauthcontroller.h\"\n#include \"fingerprintauthcontroller.h\"\n#include \"irisauthcontroller.h\"\n\nnamespace dccV25 {\n\nclass BiometricAuthController : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(CharaMangerModel *model MEMBER m_charaModel CONSTANT)\n    \n    // 直接暴露子控制器给QML使用\n    Q_PROPERTY(FaceAuthController *faceController MEMBER m_faceController CONSTANT)\n    Q_PROPERTY(FingerprintAuthController *fingerprintController MEMBER m_fingerprintController CONSTANT)\n    Q_PROPERTY(IrisAuthController *irisController MEMBER m_irisController CONSTANT)\n\npublic:\n    explicit BiometricAuthController(QObject *parent = nullptr);\n\nprivate:\n    CharaMangerModel *m_charaModel = nullptr;\n    CharaMangerWorker *m_charaWorker = nullptr;\n\n    // 子控制器\n    FaceAuthController *m_faceController = nullptr;\n    FingerprintAuthController *m_fingerprintController = nullptr;\n    IrisAuthController *m_irisController = nullptr;\n};\n}\n"
  },
  {
    "path": "src/plugin-authentication/operation/charamangerdbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"charamangerdbusproxy.h\"\n\n#include <QDBusArgument>\n#include <QDBusInterface>\n#include <QDBusPendingReply>\n#include <QDBusMetaType>\n#include <QDBusReply>\n#include <QDebug>\n\nconst static QString CharaMangerService = QStringLiteral(\"org.deepin.dde.Authenticate1\");\n\nconst static QString CharaMangerPath = QStringLiteral(\"/org/deepin/dde/Authenticate1/CharaManger\");\nconst static QString CharaMangerInterface = QStringLiteral(\"org.deepin.dde.Authenticate1.CharaManger\");\n\nconst static QString FingerprintPath = QStringLiteral(\"/org/deepin/dde/Authenticate1/Fingerprint\");\nconst static QString FingerprintInterface = QStringLiteral(\"org.deepin.dde.Authenticate1.Fingerprint\");\n\nconst static QString SessionManagerService = QStringLiteral(\"org.deepin.dde.SessionManager1\");\nconst static QString SessionManagerPath = QStringLiteral(\"/org/deepin/dde/SessionManager1\");\nconst static QString SessionManagerInterface = QStringLiteral(\"org.deepin.dde.SessionManager1\");\n\nconst static QString PropertiesInterface = QStringLiteral(\"org.freedesktop.DBus.Properties\");\nconst static QString PropertiesChanged = QStringLiteral(\"PropertiesChanged\");\n\nCharaMangerDBusProxy::CharaMangerDBusProxy(QObject *parent)\n    : QObject(parent)\n    , m_charaMangerInter(new QDBusInterface(CharaMangerService, CharaMangerPath, CharaMangerInterface, QDBusConnection::systemBus(), this))\n    , m_fingerprintInter(new QDBusInterface(CharaMangerService, FingerprintPath, FingerprintInterface, QDBusConnection::systemBus(), this))\n    , m_SMInter(new QDBusInterface(SessionManagerService, SessionManagerPath, SessionManagerInterface, QDBusConnection::sessionBus(), this))\n{\n    QDBusConnection::systemBus().connect(CharaMangerService, CharaMangerPath, PropertiesInterface, PropertiesChanged, this, SLOT(onPropertiesChanged(QDBusMessage)));\n    QDBusConnection::systemBus().connect(CharaMangerService, FingerprintPath, PropertiesInterface, PropertiesChanged, this, SLOT(onPropertiesChanged(QDBusMessage)));\n    QDBusConnection::sessionBus().connect(SessionManagerService, SessionManagerPath, PropertiesInterface, PropertiesChanged, this, SLOT(onPropertiesChanged(QDBusMessage)));\n\n    connect(m_charaMangerInter, SIGNAL(EnrollStatus(const QString &, int , const QString &)),this,SIGNAL(EnrollStatusCharaManger(const QString &, int , const QString &)));\n    connect(m_charaMangerInter, SIGNAL(CharaUpdated(const QString &, int)), this, SIGNAL(CharaUpdated(const QString &, int)));\n    connect(m_charaMangerInter, SIGNAL(DriverChanged()), this, SIGNAL(DriverChanged()));\n\n    connect(m_fingerprintInter, SIGNAL(EnrollStatus(const QString &, int , const QString &)),this,SIGNAL(EnrollStatusFingerprint(const QString &, int , const QString &)));\n    connect(m_fingerprintInter, SIGNAL(Touch(const QString &, bool )),this,SIGNAL(Touch(const QString &, bool )));\n}\n\nvoid CharaMangerDBusProxy::setFingerprintInterTimeout(int timeout)\n{\n    m_fingerprintInter->setTimeout(timeout);\n}\n\nQString CharaMangerDBusProxy::List(const QString &driverName, int charaType)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(driverName) << QVariant::fromValue(charaType);\n    return QDBusPendingReply<QString>(m_charaMangerInter->asyncCallWithArgumentList(QStringLiteral(\"List\"), argumentList));\n}\n\nQString CharaMangerDBusProxy::driverInfo()\n{\n    return qvariant_cast<QString>(m_charaMangerInter->property(\"DriverInfo\"));\n}\n\nQDBusPendingReply<QDBusUnixFileDescriptor> CharaMangerDBusProxy::EnrollStart(const QString &driverName, int charaType, const QString &charaName)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(driverName) << QVariant::fromValue(charaType) << QVariant::fromValue(charaName);\n    return m_charaMangerInter->asyncCallWithArgumentList(QStringLiteral(\"EnrollStart\"), argumentList);\n}\n\nQDBusPendingReply<> CharaMangerDBusProxy::EnrollStop()\n{\n    QList<QVariant> argumentList;\n    return m_charaMangerInter->asyncCallWithArgumentList(QStringLiteral(\"EnrollStop\"), argumentList);\n}\n\nQDBusPendingReply<> CharaMangerDBusProxy::Delete(int charaType, const QString &charaName)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(charaType) << QVariant::fromValue(charaName);\n    return m_charaMangerInter->asyncCallWithArgumentList(QStringLiteral(\"Delete\"), argumentList);\n}\n\nQDBusPendingReply<> CharaMangerDBusProxy::Rename(int charaType, const QString &oldName, const QString &newName)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(charaType) << QVariant::fromValue(oldName) << QVariant::fromValue(newName);\n    return m_charaMangerInter->asyncCallWithArgumentList(QStringLiteral(\"Rename\"), argumentList);\n}\n\nvoid CharaMangerDBusProxy::setFingerprintTimeout(int timeout)\n{\n    m_fingerprintInter->setTimeout(timeout);\n}\n\nQString CharaMangerDBusProxy::defaultDevice()\n{\n    return qvariant_cast<QString>(m_fingerprintInter->property(\"DefaultDevice\"));\n}\n\nQDBusPendingReply<> CharaMangerDBusProxy::Claim(const QString &username, bool claimed)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(username) << QVariant::fromValue(claimed);\n    return m_fingerprintInter->asyncCallWithArgumentList(QStringLiteral(\"Claim\"), argumentList);\n}\n\nQDBusPendingReply<> CharaMangerDBusProxy::Enroll(const QString &finger)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(finger);\n    return m_fingerprintInter->asyncCallWithArgumentList(QStringLiteral(\"Enroll\"), argumentList);\n\n}\n\nQStringList CharaMangerDBusProxy::ListFingers(const QString &username)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(username);\n    return QDBusPendingReply<QStringList>(m_fingerprintInter->asyncCallWithArgumentList(QStringLiteral(\"ListFingers\"), argumentList));\n}\n\nvoid CharaMangerDBusProxy::StopEnroll()\n{\n    QList<QVariant> argumentList;\n    m_fingerprintInter->asyncCallWithArgumentList(QStringLiteral(\"StopEnroll\"), argumentList);\n}\n\nQDBusPendingReply<> CharaMangerDBusProxy::DeleteFinger(const QString &username, const QString &finger)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(username) << QVariant::fromValue(finger);\n    return m_fingerprintInter->asyncCallWithArgumentList(QStringLiteral(\"DeleteFinger\"), argumentList);\n}\n\nQDBusPendingReply<> CharaMangerDBusProxy::RenameFinger(const QString &username, const QString &finger, const QString &newName)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(username) << QVariant::fromValue(finger) << QVariant::fromValue(newName);\n    return m_fingerprintInter->asyncCallWithArgumentList(QStringLiteral(\"RenameFinger\"), argumentList);\n}\n\nvoid CharaMangerDBusProxy::onPropertiesChanged(const QDBusMessage &message)\n{\n    QVariantMap changedProps = qdbus_cast<QVariantMap>(message.arguments().at(1).value<QDBusArgument>());\n    for (QVariantMap::const_iterator it = changedProps.begin(); it != changedProps.end(); ++it) {\n        QMetaObject::invokeMethod(this, it.key().toLatin1() + \"Changed\", Qt::DirectConnection, QGenericArgument(it.value().typeName(), it.value().data()));\n    }\n}\n"
  },
  {
    "path": "src/plugin-authentication/operation/charamangerdbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef CHARAMANGERDBUSPROXY_H\n#define CHARAMANGERDBUSPROXY_H\n\n#include <QObject>\n#include <QDBusObjectPath>\n#include <QDBusUnixFileDescriptor>\n#include <QDBusPendingReply>\n\nclass QDBusInterface;\nclass QDBusMessage;\nclass CharaMangerDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit CharaMangerDBusProxy(QObject *parent = nullptr);\n\n    void setFingerprintInterTimeout(int timeout);\n\npublic:\n    // CharaManger\n    QString List(const QString &driverName, int charaType);\n    QString driverInfo();\n    QDBusPendingReply<QDBusUnixFileDescriptor> EnrollStart(const QString &driverName, int charaType, const QString &charaName);\n    QDBusPendingReply<> EnrollStop();\n    QDBusPendingReply<> Delete(int charaType, const QString &charaName);\n    QDBusPendingReply<> Rename(int charaType, const QString &oldName, const QString &newName);\n\n    // Fingerprint\n    void setFingerprintTimeout(int timeout);\n    QString defaultDevice();\n    QDBusPendingReply<> Claim(const QString &username, bool claimed);\n    QDBusPendingReply<> Enroll(const QString &finger);\n    QStringList ListFingers(const QString &username);\n    void StopEnroll();\n    QDBusPendingReply<> DeleteFinger(const QString &username, const QString &finger);\n    QDBusPendingReply<> RenameFinger(const QString &username, const QString &finger, const QString &newName);\n\nsignals:\n    // CharaManger signals\n    void CharaUpdated(const QString &charaName, int CharaType);\n    void DriverChanged();\n    void EnrollStatusCharaManger(const QString &Sender, int Code, const QString &Msg);\n    void DriverInfoChanged(const QString & value) const;\n\n    // Fingerprint signals\n    void EnrollStatusFingerprint(const QString &id, int code, const QString &msg);\n    void DefaultDeviceChanged(const QString &defaultDevice);\n    void Touch(const QString &id, bool pressed);\n\n    // SessionManager singnals\n    void LockedChanged(bool  value) const;\n\nprivate slots:\n    void onPropertiesChanged(const QDBusMessage &message);\n\nprivate:\n    QDBusInterface *m_charaMangerInter;\n    QDBusInterface *m_fingerprintInter;\n    QDBusInterface *m_SMInter;\n};\n\n#endif // CHARAMANGERDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-authentication/operation/charamangermodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"charamangermodel.h\"\n\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QDebug>\n\nCharaMangerModel::CharaMangerModel(QObject *parent)\n    : QObject (parent)\n    , m_isFaceDriverVaild(false)\n    , m_facesList(QStringList())\n    , m_isIrisDriverVaild(false)\n    , m_irisList(QStringList())\n    , m_charaVaild(false)\n{\n    initFingerModel();\n    connect(this, &CharaMangerModel::vaildFingerChanged, this, &CharaMangerModel::checkCharaVaild);\n    connect(this, &CharaMangerModel::vaildFaceDriverChanged, this, &CharaMangerModel::checkCharaVaild);\n    connect(this, &CharaMangerModel::vaildIrisDriverChanged, this, &CharaMangerModel::checkCharaVaild);\n}\n\nvoid CharaMangerModel::setFaceDriverVaild(bool isVaild)\n{\n    if (m_isFaceDriverVaild == isVaild)\n        return;\n    m_isFaceDriverVaild = isVaild;\n\n    Q_EMIT vaildFaceDriverChanged(isVaild);\n}\n\nvoid CharaMangerModel::setFaceDriverName(const QString &driverName)\n{\n    if (m_faceDriverName == driverName)\n        return;\n    m_faceDriverName = driverName;\n}\n\nvoid CharaMangerModel::setFacesList(const QStringList &faces)\n{\n    if (faces == m_facesList)\n        return;\n\n    m_facesList = faces;\n    Q_EMIT facesListChanged(faces);\n}\n\nvoid CharaMangerModel::setIrisDriverVaild(bool isVaild)\n{\n    if (m_isIrisDriverVaild == isVaild)\n        return;\n    m_isIrisDriverVaild = isVaild;\n\n    Q_EMIT vaildIrisDriverChanged(isVaild);\n}\n\nvoid CharaMangerModel::setIrisDriverName(const QString &driverName)\n{\n    if (driverName == m_irisDriverName)\n        return;\n\n    m_irisDriverName = driverName;\n}\n\nvoid CharaMangerModel::setIrisList(const QStringList &iris)\n{\n    if (iris == m_irisList)\n        return;\n\n    m_irisList.clear();\n    m_irisList = iris;\n    Q_EMIT irisListChanged(iris);\n}\n\nvoid CharaMangerModel::setInputFaceFD(const int &fd)\n{\n    Q_EMIT tryStartInputFace(fd);\n}\n\nvoid CharaMangerModel::setInputIrisFD(CharaMangerModel::AddInfoState state)\n{\n    Q_EMIT tryStartInputIris(state);\n}\n\nvoid CharaMangerModel::initFingerModel()\n{\n    m_isFingerVaild = false;\n\n    m_predefineThumbsNames = {\n        tr(\"Fingerprint1\"), tr(\"Fingerprint2\"), tr(\"Fingerprint3\"),\n        tr(\"Fingerprint4\"), tr(\"Fingerprint5\"), tr(\"Fingerprint6\"),\n        tr(\"Fingerprint7\"), tr(\"Fingerprint8\"), tr(\"Fingerprint9\"),\n        tr(\"Fingerprint10\")\n    };\n    m_progress = 0;\n}\n\nvoid CharaMangerModel::setFingerVaild(bool isVaild)\n{\n    if (m_isFingerVaild == isVaild)\n        return;\n\n    m_isFingerVaild = isVaild;\n\n    Q_EMIT vaildFingerChanged(isVaild);\n}\n\nvoid CharaMangerModel::setUserName(const QString &name)\n{\n    if (m_userName != name)\n        m_userName = name;\n}\n\nvoid CharaMangerModel::onFingerEnrollStatusChanged(int code, const QString& msg)\n{\n    QJsonDocument jsonDocument;\n    QJsonObject jsonObject;\n\n    if (!msg.isEmpty()) {\n        jsonDocument = QJsonDocument::fromJson(msg.toLocal8Bit());\n        jsonObject = jsonDocument.object();\n    }\n\n    switch(code) {\n    case ET_Completed:\n        m_progress = 0;\n        Q_EMIT enrollCompleted();\n        break;\n    case ET_Failed: {\n        m_progress = 0;\n        QString title = tr(\"Scan failed\");\n        QString msg = tr(\"Scan suspended\");\n        do {\n            QStringList keys = jsonObject.keys();\n            if (!keys.contains(\"subcode\")) {\n                break;\n            }\n            auto errCode = jsonObject.value(\"subcode\").toInt();\n            switch(errCode) {\n            case FC_RepeatTemplet:\n                title = tr(\"The fingerprint already exists\");\n                msg = tr(\"Please scan other fingers\");\n                break;\n            case FC_UnkownError:\n                title = tr(\"Unknown error\");\n                msg = tr(\"Scan suspended\");\n            }\n            break;\n        } while(0);\n        Q_EMIT enrollFailed(title, msg);\n        break;\n    }\n    case ET_StagePass: {\n        if (msg.isEmpty()) {\n            // 厂商未给出进度值的情况,直接让进度值递减增加,无限趋近于100,直到录入完成\n            m_progress += (100 - m_progress)/3;\n            Q_EMIT enrollStagePass(m_progress);\n            break;\n        }\n        QStringList keys = jsonObject.keys();\n        if (!keys.contains(\"progress\")) {\n            // 厂商未给出进度值的情况,直接让进度值递减增加,无限趋近于100,直到录入完成\n            m_progress += (100 - m_progress)/3;\n            Q_EMIT enrollStagePass(m_progress);\n            break;\n        }\n        auto pro = jsonObject.value(\"progress\").toInt();\n        Q_EMIT enrollStagePass(pro);\n        break;\n    }\n    case ET_Retry: {\n        QString title = tr(\"Cannot recognize\");\n        QString msg = tr(\"Cannot recognize\");\n        do {\n            QStringList keys = jsonObject.keys();\n            if (!keys.contains(\"subcode\")) {\n                break;\n            }\n            auto errCode = jsonObject.value(\"subcode\").toInt();\n            switch(errCode) {\n            case RC_TouchTooShort: //接触时间过短\n                title = tr(\"Moved too fast\");\n                msg = tr(\"Finger moved too fast, please do not lift until prompted\");\n                break;\n            case RC_ErrorFigure: //图像不可用\n                title = tr(\"Unclear fingerprint\");\n                msg = tr(\"Clean your finger or adjust the finger position, and try again\");\n                break;\n            case RC_RepeatTouchData: //重复率过高\n                title = tr(\"Already scanned\");\n                msg = tr(\"Adjust the finger position to scan your fingerprint fully\");\n                break;\n            case RC_RepeatFingerData: //重复手指\n                title = tr(\"The fingerprint already exists\");\n                msg = tr(\"Please scan other fingers\");\n                break;\n            case RC_SwipeTooShort: //按压时间短\n                title = tr(\"Moved too fast\");\n                msg = tr(\"Finger moved too fast. Please do not lift until prompted\");\n                break;\n            case RC_FingerNotCenter: //手指不在中间\n                msg = tr(\"Adjust the finger position to scan your fingerprint fully\");\n                break;\n            case RC_RemoveAndRetry: // 拿开手指从新扫描\n                msg = tr(\"Clean your finger or adjust the finger position, and try again\");\n                break;\n            case RC_CannotRecognize:\n                title = tr(\"Cannot recognize\");\n                msg = tr(\"Lift your finger and place it on the sensor again\");\n                break;\n            }\n            break;\n        } while(0);\n        Q_EMIT enrollRetry(title, msg);\n        break;\n    }\n    case ET_Disconnect:\n        Q_EMIT enrollDisconnected();\n        break;\n    default:\n        break;\n    }\n}\n\nvoid CharaMangerModel::onTouch(const QString &id, bool pressed)\n{\n    Q_UNUSED(id)\n    Q_UNUSED(pressed)\n}\n\nvoid CharaMangerModel::refreshEnrollResult(CharaMangerModel::EnrollResult enrollRes)\n{\n    Q_EMIT enrollResult(enrollRes);\n}\n\nvoid CharaMangerModel::setThumbsList(const QStringList &thumbs)\n{\n    if (thumbs != m_thumbsList) {\n        m_thumbsList.clear();\n        m_thumbsList = thumbs;\n        Q_EMIT thumbsListChanged(m_thumbsList);\n    }\n}\n\nvoid CharaMangerModel::onEnrollStatusChanged(int code, const QString &msg)\n{\n     // TODO： 处理所有录入状态提示信息\n    Q_UNUSED(msg);\n    QString title = tr(\"Position your face inside the frame\");\n    switch (code) {\n    case STATUS_SUCCESS:\n        Q_EMIT enrollInfoState(AddInfoState::Success, tr(\"Face enrolled\"));\n        break;\n    case STATUS_CANCELED:\n        break;\n    case STATUS_NOT_REAL_HUMAN:\n        title = tr(\"Position a human face please\");\n        Q_EMIT enrollStatusTips(title);\n        break;\n    case STATUS_FACE_NOT_CENTER:\n        title = tr(\"Position your face inside the frame\");\n        Q_EMIT enrollStatusTips(title);\n        break;\n    case STATUS_FACE_TOO_BIG:\n        title = tr(\"Keep away from the camera\");\n        Q_EMIT enrollStatusTips(title);\n        break;\n    case STATUS_FACE_TOO_SMALL:\n        title = tr(\"Get closer to the camera\");\n        Q_EMIT enrollStatusTips(title);\n        break;\n    case STATUS_NO_FACE:\n        title = tr(\"Position your face inside the frame\");\n        Q_EMIT enrollStatusTips(title);\n        break;\n    case STATUS_FACE_TOO_MANY:\n        title = tr(\"Do not position multiple faces inside the frame\");\n        Q_EMIT enrollStatusTips(title);\n        break;\n    case STATUS_FACE_NOT_CLEARITY:\n        title = tr(\"Make sure the camera lens is clean\");\n        Q_EMIT enrollStatusTips(title);\n        break;\n    case STATUS_FACE_BRIGHTNESS:\n        title = tr(\"Do not enroll in dark, bright or backlit environments\");\n        Q_EMIT enrollStatusTips(title);\n        break;\n    case STATUS_FACE_COVERD:\n        title = tr(\"Keep your face uncovered\");\n        Q_EMIT enrollStatusTips(title);\n        break;\n    case STATUS_OVERTIME:\n        Q_EMIT enrollInfoState(AddInfoState::Fail, tr(\"Scan timed out\"));\n        break;\n    case STATUS_COLLAPSE:\n        Q_EMIT enrollInfoState(AddInfoState::Fail, tr(\"Camera occupied!\"));\n        break;\n    default:\n        break;\n    }\n}\n\nvoid CharaMangerModel::onEnrollIrisStatusChanged(int code, const QString &msg)\n{\n    // TODO： 处理所有录入状态提示信息  未更新\n   Q_UNUSED(msg);\n   QString title = tr(\"Position your face inside the frame\");\n   switch (code) {\n   case STATUS_IRIS_SUCCESS:\n       Q_EMIT enrollIrisInfoState(AddInfoState::Success, tr(\"Face enrolled\"));\n       break;\n   case STATUS_IRIS_TOO_BIG:\n       break;\n   case STATUS_IRIS_TOO_SMALL:\n       title = tr(\"Position a human face please\");\n       Q_EMIT enrollIrisStatusTips(title);\n       break;\n   case STATUS_IRIS_NO_FACE:\n       title = tr(\"Position your face inside the frame\");\n       Q_EMIT enrollIrisStatusTips(title);\n       break;\n   case STATUS_IRIS_NOT_CLEARITY:\n       title = tr(\"Keep away from the camera\");\n       Q_EMIT enrollIrisStatusTips(title);\n       break;\n   case STATUS_IRIS_BRIGHTNESS:\n       title = tr(\"Get closer to the camera\");\n       Q_EMIT enrollIrisStatusTips(title);\n       break;\n   case STATUS_IRIS_EYES_CLOSE:\n       title = tr(\"Position your face inside the frame\");\n       Q_EMIT enrollIrisStatusTips(title);\n       break;\n   case STATUS_IRIS_CANCELED:\n       Q_EMIT enrollIrisInfoState(AddInfoState::Fail, tr(\"Cancel\"));\n       break;\n   case STATUS_IRIS_Error:\n       Q_EMIT enrollIrisInfoState(AddInfoState::Fail, tr(\"Camera occupied!\"));\n       break;\n   case STATUS_IRIS_OVERTIME:\n       Q_EMIT enrollIrisInfoState(AddInfoState::Fail, tr(\"Scan timed out\"));\n       break;\n   default:\n       break;\n   }\n}\n\nvoid CharaMangerModel::onRefreshEnrollDate(const int &charaType)\n{\n    if (charaType & FACE_CHARA) {\n        Q_EMIT facesListChanged(this->facesList());\n    }\n\n    if (charaType & IRIS_CHARA) {\n        Q_EMIT irisListChanged(this->irisList());\n    }\n}\n\n\n\n\nbool CharaMangerModel::charaVaild() const\n{\n    return m_charaVaild;\n}\n\nvoid CharaMangerModel::setCharaVaild(bool newCharaVaild)\n{\n    if (m_charaVaild == newCharaVaild)\n        return;\n    m_charaVaild = newCharaVaild;\n    emit charaVaildChanged(m_charaVaild);\n}\n"
  },
  {
    "path": "src/plugin-authentication/operation/charamangermodel.h",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef CHARAMANGERMODEL_H\n#define CHARAMANGERMODEL_H\n#include <QObject>\n\n#define FACE_CHARA 4\n#define IRIS_CHARA 64\n\nclass CharaMangerModel : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(bool faceDriverVaild READ faceDriverVaild WRITE setFaceDriverVaild NOTIFY vaildFaceDriverChanged)\n    Q_PROPERTY(bool fingerDriverVaild READ fingerVaild WRITE setFingerVaild NOTIFY vaildFingerChanged)\n    Q_PROPERTY(bool irisDriverVaild READ irisDriverVaild WRITE setIrisDriverVaild NOTIFY vaildIrisDriverChanged)\n\n    Q_PROPERTY(QStringList facesList READ facesList WRITE setFacesList NOTIFY facesListChanged)\n    Q_PROPERTY(bool charaVaild READ charaVaild WRITE setCharaVaild NOTIFY charaVaildChanged)\n\n    Q_PROPERTY(QStringList thumbsList READ thumbsList WRITE setThumbsList NOTIFY thumbsListChanged)\n    Q_PROPERTY(QStringList irisList READ irisList WRITE setIrisList NOTIFY irisListChanged)\n\npublic:\n    /**\n     * @brief The EnrollStatusType enum 人脸录入状态\n     */\n    enum EnrollFaceStatusType {\n        STATUS_SUCCESS = 0,   // 成功\n        STATUS_NOT_REAL_HUMAN,  // 非人类\n        STATUS_FACE_NOT_CENTER,  // 非中心\n        STATUS_FACE_TOO_BIG,  // 脸太大\n        STATUS_FACE_TOO_SMALL,\n        STATUS_NO_FACE,\n        STATUS_FACE_TOO_MANY,  // 多人\n        STATUS_FACE_NOT_CLEARITY,  // 不清晰\n        STATUS_FACE_BRIGHTNESS,  // 亮度\n        STATUS_FACE_COVERD,  // 遮挡\n        STATUS_CANCELED, // 取消\n        STATUS_OVERTIME, // 超时\n        STATUS_COLLAPSE // 崩溃\n    };\n\n    /**\n     * @brief The EnrollIrisStatusType enum\n     */\n    enum EnrollIrisStatusType {\n        STATUS_IRIS_SUCCESS = 0,   // 成功\n        STATUS_IRIS_TOO_BIG,  // 太大\n        STATUS_IRIS_TOO_SMALL,\n        STATUS_IRIS_NO_FACE,\n        STATUS_IRIS_NOT_CLEARITY,  // 不清晰\n        STATUS_IRIS_BRIGHTNESS,  // 亮度\n        STATUS_IRIS_EYES_CLOSE,  // 闭目\n        STATUS_IRIS_CANCELED, // 取消\n        STATUS_IRIS_Error, // 崩溃\n        STATUS_IRIS_OVERTIME // 超时\n    };\n\n    /**\n     * @brief The AddInfoState enum 录入的四种状态\n     */\n    enum AddInfoState {\n        StartState,\n        Success,\n        Fail,\n        Processing,\n    };\n\n    Q_ENUM(AddInfoState)\n\n    /**\n     * @brief The EnrollResult enum 指纹\n     */\n    enum EnrollResult {\n        Enroll_AuthFailed,\n        Enroll_ClaimFailed,\n        Enroll_Failed,\n        Enroll_AuthSuccess,\n        Count\n    };\n\n    Q_ENUM(EnrollResult)\n\n    enum EnrollStatusType {\n        ET_Completed = 0,\n        ET_Failed,\n        ET_StagePass,\n        ET_Retry,\n        ET_Disconnect\n    };\n\n    enum EnrollFailedCode {\n        FC_UnkownError = 1,\n        FC_RepeatTemplet,\n        FC_EnrollBroken,\n        FC_DataFull\n    };\n\n    enum EnrollRetryCode {\n        RC_TouchTooShort = 1,\n        RC_ErrorFigure,\n        RC_RepeatTouchData,\n        RC_RepeatFingerData,\n        RC_SwipeTooShort,\n        RC_FingerNotCenter,\n        RC_RemoveAndRetry,\n        RC_CannotRecognize\n    };\n\n    enum EnrollType {\n        Type_Face = 0,\n        Type_Finger,\n        Type_Iris\n    };\n\n    Q_ENUM(EnrollType)\n\npublic:\n    explicit CharaMangerModel(QObject *parent = nullptr);\n\n    inline int faceCharaType() const { return  FACE_CHARA; }\n    inline int irisCharaType() const { return  IRIS_CHARA; }\n\n    inline bool faceDriverVaild() const {  return m_isFaceDriverVaild; }\n    void setFaceDriverVaild(bool isVaild);\n\n    inline QString faceDriverName() const { return  m_faceDriverName; }\n    void setFaceDriverName(const QString &driverName);\n\n    inline QStringList facesList() const { return  m_facesList; }\n    void setFacesList(const QStringList &faces);\n\n    inline bool irisDriverVaild() const {  return m_isIrisDriverVaild; }\n    void setIrisDriverVaild(bool isVaild);\n\n    inline QString irisDriverName() const { return  m_irisDriverName; }\n    void setIrisDriverName(const QString &driverName);\n\n    inline QStringList irisList() const { return  m_irisList; }\n    void setIrisList(const QStringList &iris);\n\n    /**\n     * @brief onEnrollStatusChanged 录入状态信号，在录入过程中通过此信号提示当前录入状态\n     * @param code\n     * @param msg\n     */\n    void onEnrollStatusChanged(int code, const QString& msg);\n    void onEnrollIrisStatusChanged(int code, const QString& msg);\n\n    /**\n     * @brief onRefreshEnrollDate  用于刷新用户已录入的数据（ eg： 重命名失败后）\n     * @param charaType 对应类型\n     */\n    void onRefreshEnrollDate(const int &charaType);\n\n    void setInputFaceFD(const int &fd);\n    void setInputIrisFD(CharaMangerModel::AddInfoState state);\n\n    // Finger\n    void initFingerModel();\n    inline QList<QString> getPredefineThumbsName() const { return m_predefineThumbsNames; }\n\n    inline bool fingerVaild() const {  return m_isFingerVaild; }\n    void setFingerVaild(bool isVaild);\n\n    inline QString userName() const { return m_userName; }\n    void setUserName(const QString &name);\n\n    inline QStringList thumbsList() const { return  m_thumbsList; }\n    void setThumbsList(const QStringList &thumbs);\n\n    void onFingerEnrollStatusChanged(int code, const QString& msg);\n    void onTouch(const QString &id, bool pressed);\n\n    void resetProgress() { m_progress = 0; }\n\n    void refreshEnrollResult(EnrollResult enrollRes);\n\n    bool charaVaild() const;\n    void setCharaVaild(bool newCharaVaild = true);\n\nQ_SIGNALS:\n    void vaildFaceDriverChanged(const bool isVaild);\n    void vaildIrisDriverChanged(const bool isVaild);\n\n    void facesListChanged(const QStringList &faces);\n    void irisListChanged(const QStringList &iris);\n\n    /**\n     * @brief enrollInfoState 注册录入状态  用于区分页面显示状态  注：仅处理成功录入失败状态\n     * @param state 录入的状态\n     * @param tips 对应的提示语\n     */\n    void enrollInfoState(AddInfoState state, const QString &tips);\n    void enrollStatusTips(QString title);\n\n    /**\n     * @brief enrollIrisInfoState 注册虹膜录入状态\n     * @param state 录入状态\n     * @param tips 提示信息\n     */\n    void enrollIrisInfoState(AddInfoState state, const QString &tips);\n    void enrollIrisStatusTips(QString title);\n\n    /**\n     * @brief tryStartInputFace tryStartInputIris  获取人脸虹膜文件标识符\n     * @param fd\n     */\n    void tryStartInputFace(const int &fd);\n    void tryStartInputIris(CharaMangerModel::AddInfoState state);\n\n    // FInger\n    void vaildFingerChanged(const bool isVaild);\n    void thumbsListChanged(const QStringList &thumbs);\n\n    void enrollFailed(QString title, QString msg);\n    void enrollCompleted();\n    void enrollStagePass(int pro);\n    void enrollRetry(QString title, QString msg);\n    void enrollDisconnected();\n    void enrollResult(EnrollResult enrollRes);\n\n    void lockedChanged(bool locked);\n\n    //charaVaild\n    void charaVaildChanged(const bool isVaild);\n\nprivate:\n    void checkCharaVaild() {\n        if (m_isIrisDriverVaild || m_isFaceDriverVaild || m_isFingerVaild)\n            setCharaVaild();\n        else\n            setCharaVaild(false);\n    }\n\n    // 人脸\n    QString m_faceDriverName;\n    bool m_isFaceDriverVaild;\n    QStringList m_facesList;\n\n    // 虹膜\n    QString m_irisDriverName;\n    bool m_isIrisDriverVaild;\n    QStringList m_irisList;\n\n    // 指纹\n    QString m_userName;\n    bool m_isFingerVaild{false};\n    int m_progress;\n    QStringList m_thumbsList;\n    QList<QString> m_predefineThumbsNames;\n    bool m_charaVaild;\n};\n\n#endif // CHARAMANGERMODEL_H\n"
  },
  {
    "path": "src/plugin-authentication/operation/charamangerworker.cpp",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"charamangerworker.h\"\n\n#include <QDBusInterface>\n#include <QDBusPendingCall>\n#include <QDBusReply>\n#include <QProcess>\n#include <QDebug>\n#include <QJsonDocument>\n#include <QJsonArray>\n#include <QJsonObject>\n\n#include <unistd.h>\n\n#include <pwd.h>\n#include <unistd.h>\n#include <libintl.h>\n\n#define INPUT_TIME 30\n\nCharaMangerWorker::CharaMangerWorker(CharaMangerModel *model, QObject *parent)\n    : QObject(parent)\n    , m_model(model)\n    , m_charaMangerInter(new CharaMangerDBusProxy(this))\n    , m_stopTimer(new QTimer(this))\n    , m_fileDescriptor(nullptr)\n    , m_currentInputCharaType(0)\n{\n    m_stopTimer->setSingleShot(true);\n    // 监测录入状态\n    connect(m_charaMangerInter, &CharaMangerDBusProxy::EnrollStatusCharaManger, this, &CharaMangerWorker::refreshUserEnrollStatus);\n\n    // 若添加新信息 触发本信号\n    connect(m_charaMangerInter, &CharaMangerDBusProxy::CharaUpdated, this, &CharaMangerWorker::refreshUserEnrollList);\n\n    // 获取设备信息\n    connect(m_charaMangerInter, &CharaMangerDBusProxy::DriverInfoChanged, this, &CharaMangerWorker::predefineDriverInfo);\n    connect(m_charaMangerInter, &CharaMangerDBusProxy::DriverChanged, this, &CharaMangerWorker::refreshDriverInfo);\n\n    //处理指纹后端的录入状态信号\n    connect(m_charaMangerInter, &CharaMangerDBusProxy::EnrollStatusFingerprint, m_model, [this](const QString &, int code, const QString &msg) {\n        m_model->onFingerEnrollStatusChanged(code, msg);\n    });\n\n    connect(m_charaMangerInter, &CharaMangerDBusProxy::DefaultDeviceChanged, this, &CharaMangerWorker::onDefaultDeviceChanged);\n\n    //当前此信号末实现\n    connect(m_charaMangerInter, &CharaMangerDBusProxy::Touch, m_model, &CharaMangerModel::onTouch);\n    connect(m_charaMangerInter, &CharaMangerDBusProxy::LockedChanged, m_model, &CharaMangerModel::lockedChanged);\n\n    initCharaManger();\n    initFinger();\n}\n\nCharaMangerWorker::~CharaMangerWorker()\n{\n    if (m_fileDescriptor) {\n        delete m_fileDescriptor;\n        m_fileDescriptor = nullptr;\n    }\n    if (m_stopTimer)\n        m_stopTimer->stop();\n}\n\nvoid CharaMangerWorker::initCharaManger()\n{\n    // 获取DeviceInfo属性\n    QDBusInterface charaManagerInter(\"org.deepin.dde.Authenticate1\",\n                             \"/org/deepin/dde/Authenticate1/CharaManger\",\n                             \"org.freedesktop.DBus.Properties\",\n                             QDBusConnection::systemBus());\n    QDBusPendingCall call = charaManagerInter.asyncCall(\"Get\", \"org.deepin.dde.Authenticate1.CharaManger\", \"DriverInfo\");\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, [this, call, watcher] {\n        if (!call.isError()) {\n            QDBusReply<QDBusVariant> reply = call.reply();\n            predefineDriverInfo(reply.value().variant().toString());\n        } else {\n            qWarning() << \"Failed to get driver info: \" << call.error().message();\n        }\n        watcher->deleteLater();\n    });\n\n    // 录入时间超时 停止录入\n    connect(m_stopTimer, &QTimer::timeout, [this] {\n        if (m_currentInputCharaType & FACE_CHARA) {\n            m_model->onEnrollStatusChanged(CharaMangerModel::EnrollFaceStatusType::STATUS_OVERTIME, QString());\n        }\n        if (m_currentInputCharaType & IRIS_CHARA) {\n            m_model->onEnrollIrisStatusChanged(CharaMangerModel::EnrollIrisStatusType::STATUS_IRIS_OVERTIME, QString());\n        }\n\n        stopEnroll();\n    });\n}\n\nvoid CharaMangerWorker::initFinger()\n{\n    struct passwd *pws;\n    QString userId;\n    pws = getpwuid(getuid());\n    userId = QString(pws->pw_name);\n\n    auto defualtDevice = m_charaMangerInter->defaultDevice();\n    m_model->setFingerVaild(!defualtDevice.isEmpty());\n    m_model->setUserName(userId);\n\n    if (!defualtDevice.isEmpty()) {\n        refreshFingerEnrollList(userId);\n    }\n}\n\nQMap<QString, uint> CharaMangerWorker::parseDriverNameJsonData(const QString &mangerInfo)\n{\n    QMap<QString, uint> tmpInfo;\n    if (mangerInfo.isEmpty())\n        return tmpInfo;\n\n    QJsonDocument doc = QJsonDocument::fromJson(mangerInfo.toUtf8());\n    QJsonArray jInfo = doc.array();\n    for (QJsonValue jValue : jInfo) {\n        QJsonObject jObj = jValue.toObject();\n        const QString tmpName = jObj[\"DriverName\"].toString();\n        const uint tmpType = static_cast<uint>(jObj[\"CharaType\"].toInt());\n        tmpInfo.insert(tmpName, tmpType);\n    }\n    return tmpInfo;\n}\n\nQStringList CharaMangerWorker::parseCharaNameJsonData(const QString &mangerInfo)\n{\n    QMap<QString, uint64_t> tmpInfo;\n    QStringList userInfoList;\n    if (mangerInfo.isEmpty())\n        return QStringList();\n\n    QJsonDocument doc = QJsonDocument::fromJson(mangerInfo.toUtf8());\n    QJsonArray jInfo = doc.array();\n\n    for (QJsonValue jValue : jInfo) {\n        QJsonObject jObj = jValue.toObject();\n        const QString tmpName = jObj[\"CharaName\"].toString();\n        const uint64_t time = static_cast<uint64_t>(jObj[\"Time\"].toInt());\n        tmpInfo.insert(tmpName, time);\n\n        QMap<QString, uint64_t>::Iterator it = tmpInfo.begin();\n        int index = 0;\n        while (it != tmpInfo.end()) {\n            if (time > it.value()) {\n                index++;\n            }\n            it++;\n        }\n        userInfoList.insert(index, tmpName);\n    }\n\n    return userInfoList;\n}\n\nvoid CharaMangerWorker::predefineDriverInfo(const QString &driverInfo)\n{\n    // 处理界面显示空设备\n    m_model->setFaceDriverVaild(false);\n    m_model->setIrisDriverVaild(false);\n    if (driverInfo.isNull()) {\n        return;\n    }\n    QStringList faceDriverNames;\n    QStringList irisDriverNames;\n\n    // TODO: 处理设备信息\n    QMap<QString, uint> driInfo = parseDriverNameJsonData(driverInfo);\n    QMap<QString, uint>::Iterator it;\n\n    qDebug() << \"info: \" << driInfo.size() << driverInfo;\n    // 记录driver信息\n    for (it = driInfo.begin(); it != driInfo.end(); ++it) {\n        // 可用人脸driverName\n        if (it.value() & FACE_CHARA) {\n            faceDriverNames.append(it.key());\n            m_model->setFaceDriverVaild(false);\n        }\n\n        if (it.value() & IRIS_CHARA) {\n            irisDriverNames.append(it.key());\n            m_model->setIrisDriverVaild(false);\n        }\n    }\n\n    // 获取用户录入的数据\n    if (!faceDriverNames.isEmpty()) {\n        m_model->setFaceDriverVaild(true);\n        m_model->setFaceDriverName(faceDriverNames.at(0));\n        refreshUserEnrollList(faceDriverNames.at(0), FACE_CHARA);\n    } else {\n        m_model->setFaceDriverVaild(false);\n    }\n\n    if (!irisDriverNames.isEmpty()) {\n        m_model->setIrisDriverVaild(true);\n        m_model->setIrisDriverName(irisDriverNames.at(0));\n        refreshUserEnrollList(irisDriverNames.at(0), IRIS_CHARA);\n    } else {\n        m_model->setIrisDriverVaild(false);\n    }\n}\n\nvoid CharaMangerWorker::refreshUserEnrollList(const QString &serviceName, const int &CharaType)\n{\n    auto call = m_charaMangerInter->List(serviceName, CharaType);\n    qDebug() << \"CharaManger List : \" << call;\n    if (call.isEmpty()) {\n        qDebug() << \"facePrintInter ListFaces call Error or MangerList is empty! \";\n        if (CharaType & FACE_CHARA)\n            m_model->setFacesList(QStringList());\n\n        if (CharaType & IRIS_CHARA)\n            m_model->setIrisList(QStringList());\n\n        return;\n    }\n    refreshUserInfo(call, CharaType);\n}\n\nvoid CharaMangerWorker::refreshUserInfo(const QString &EnrollInfo, const int &CharaType)\n{\n    QStringList userInfoList = parseCharaNameJsonData(EnrollInfo);\n\n    if (userInfoList.isEmpty()) {\n        qDebug() << \"get userInfo error! \";\n        m_model->setFacesList(QStringList());\n        m_model->setIrisList(QStringList());\n        return;\n    }\n\n    if (CharaType & FACE_CHARA)\n        m_model->setFacesList(userInfoList);\n    if (CharaType & IRIS_CHARA)\n        m_model->setIrisList(userInfoList);\n}\n\nvoid CharaMangerWorker::refreshDriverInfo()\n{\n    auto driverInfo = m_charaMangerInter->driverInfo();\n    predefineDriverInfo(driverInfo);\n}\n\nvoid CharaMangerWorker::entollStart(const QString &driverName, const int &charaType, const QString &charaName)\n{\n    qDebug() << \" CharaMangerWorker::entollStart \" << driverName << charaType << charaName;\n    m_currentInputCharaType = charaType;\n\n    m_fileDescriptor = new QDBusPendingReply<QDBusUnixFileDescriptor>();\n    *m_fileDescriptor = m_charaMangerInter->EnrollStart(driverName, charaType, charaName);\n\n    Q_EMIT requestMainWindowEnabled(false);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(*m_fileDescriptor, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (m_fileDescriptor->isError()) {\n            qDebug() << \"get File Descriptor error! \" << m_fileDescriptor->error();\n        } else {\n            m_stopTimer->start(1000 * INPUT_TIME);\n\n            if (charaType & FACE_CHARA) {\n                Q_EMIT requestMainWindowEnabled(true);\n                m_model->setInputFaceFD(m_fileDescriptor->value().fileDescriptor());\n            }\n\n            if (charaType & IRIS_CHARA) {\n                Q_EMIT requestMainWindowEnabled(true);\n                m_model->setInputIrisFD(CharaMangerModel::AddInfoState::Processing);\n            }\n\n        }\n        Q_EMIT requestMainWindowEnabled(true);\n        watcher->deleteLater();\n    });\n}\n\nvoid CharaMangerWorker::refreshUserEnrollStatus(const QString &senderid, const int &code, const QString &codeInfo)\n{\n    Q_UNUSED(senderid);\n    if (m_currentInputCharaType & FACE_CHARA)\n        m_model->onEnrollStatusChanged(code, codeInfo);\n\n    if (m_currentInputCharaType & IRIS_CHARA)\n        m_model->onEnrollIrisStatusChanged(code, codeInfo);\n}\n\nvoid CharaMangerWorker::stopEnroll()\n{\n    if (m_stopTimer) {\n        m_stopTimer->stop();\n    }\n\n    m_currentInputCharaType = -1;\n    auto call = m_charaMangerInter->EnrollStop();\n    if (call.isError()) {\n        qDebug() << \"call stop Enroll \" << call.error();\n    }\n\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    QObject::connect(watcher, &QDBusPendingCallWatcher::finished, this, [this]{\n        if (m_fileDescriptor) {\n            delete  m_fileDescriptor;\n            m_fileDescriptor = nullptr;\n        }\n\n        sender()->deleteLater();\n    });\n}\n\nvoid CharaMangerWorker::deleteCharaItem(const int &charaType, const QString &charaName)\n{\n    m_charaMangerInter->Delete(charaType, charaName);\n}\n\nvoid CharaMangerWorker::renameCharaItem(const int &charaType, const QString &oldName, const QString &newName)\n{\n    auto call = m_charaMangerInter->Rename(charaType, oldName, newName);\n    call.waitForFinished();\n    if (call.isError()) {\n        qDebug() << \"call RenameFinger Error : \" << call.error();\n        m_model->onRefreshEnrollDate(charaType);\n    }\n}\n\nvoid CharaMangerWorker::tryEnroll(const QString &name, const QString &thumb)\n{\n    m_charaMangerInter->setFingerprintInterTimeout(1000 * 60 * 60);\n    auto callClaim = m_charaMangerInter->Claim(name, true);\n    callClaim.waitForFinished();\n\n    if (callClaim.isError()) {\n        qDebug() << \"call Claim Error : \" << callClaim.error();\n        m_model->refreshEnrollResult(CharaMangerModel::EnrollResult::Enroll_ClaimFailed);\n    } else {\n        m_charaMangerInter->setFingerprintInterTimeout(-1);\n        auto callEnroll =  m_charaMangerInter->Enroll(thumb);\n\n        QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(callEnroll, this);\n        connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n            if (callEnroll.isError()) {\n                qDebug() << \"call Enroll Error : \" << callEnroll.error();\n                m_charaMangerInter->Claim(name, false);\n                m_model->refreshEnrollResult(CharaMangerModel::EnrollResult::Enroll_Failed);\n            } else {\n                Q_EMIT requestMainWindowEnabled(true);\n                m_model->refreshEnrollResult(CharaMangerModel::EnrollResult::Enroll_AuthSuccess);\n            }\n            Q_EMIT requestMainWindowEnabled(true);\n            watcher->deleteLater();\n        });\n    }\n    m_charaMangerInter->setFingerprintInterTimeout(-1);\n\n}\n\nvoid CharaMangerWorker::refreshFingerEnrollList(const QString &id)\n{\n    QStringList call = m_charaMangerInter->ListFingers(id);\n    if (call.isEmpty()) {\n        qDebug() << \"m_charaMangerInter->ListFingers call Error\";\n        m_model->setThumbsList(QStringList());\n        return;\n    } else {\n        qDebug() << \"m_charaMangerInter->ListFingers\";\n    }\n    m_model->setThumbsList(call);\n\n}\n\nvoid CharaMangerWorker::stopFingerEnroll(const QString &userName)\n{\n    qDebug() << \"stopEnroll\";\n    m_charaMangerInter->StopEnroll();\n    auto callClaim = m_charaMangerInter->Claim(userName, false);\n    callClaim.waitForFinished();\n    if (callClaim.isError()) {\n        qDebug() << \"call Claim Error : \" << callClaim.error();\n    }\n}\n\nvoid CharaMangerWorker::deleteFingerItem(const QString &userName, const QString &finger)\n{\n    m_charaMangerInter->setFingerprintInterTimeout(1000 * 60 * 60);\n    auto callClaim = m_charaMangerInter->Claim(userName, true);\n    callClaim.waitForFinished();\n    if (callClaim.isError()) {\n        qDebug() << \"call Claim Error : \" << callClaim.error();\n        m_model->refreshEnrollResult(CharaMangerModel::EnrollResult::Enroll_ClaimFailed);\n    } else {\n        m_charaMangerInter->setFingerprintInterTimeout(-1);\n        auto call = m_charaMangerInter->DeleteFinger(userName, finger);\n        QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n\n        QObject::connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n            refreshFingerEnrollList(userName);\n            sender()->deleteLater();\n            auto callStopClaim = m_charaMangerInter->Claim(userName, false);\n            callStopClaim.waitForFinished();\n            if (callStopClaim.isError()) {\n                qDebug() << \"call stop Claim Error : \" << callStopClaim.error();\n            }\n        });\n    }\n    m_charaMangerInter->setFingerprintInterTimeout(-1);\n}\n\nvoid CharaMangerWorker::renameFingerItem(const QString &userName, const QString &finger, const QString &newName)\n{\n    auto call = m_charaMangerInter->RenameFinger(userName, finger, newName);\n    call.waitForFinished();\n    if (call.isError()) {\n        qWarning() << \"call RenameFinger Error : \" << call.error();\n    }\n    refreshFingerEnrollList(userName);\n}\n\nvoid CharaMangerWorker::onDefaultDeviceChanged(const QString &device)\n{\n    qInfo() << \"Finger DefaultDeviceChanged: \" << device;\n    bool isDeviceAvailable = !device.isEmpty();\n    m_model->setFingerVaild(isDeviceAvailable);\n\n    // Refresh fingerprint list when device is reconnected\n    if (isDeviceAvailable) {\n        refreshFingerEnrollList(m_model->userName());\n    }\n}\n"
  },
  {
    "path": "src/plugin-authentication/operation/charamangerworker.h",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef FACEIDWORKER_H\n#define FACEIDWORKER_H\n\n#include \"charamangerdbusproxy.h\"\n#include \"charamangermodel.h\"\n\n#include <QDBusPendingReply>\n#include <QDBusUnixFileDescriptor>\n#include <QObject>\n#include <QTimer>\n\nclass CharaMangerWorker : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit CharaMangerWorker(CharaMangerModel *model, QObject *parent = nullptr);\n    ~CharaMangerWorker();\n    void initCharaManger();\n    void initFinger();\n\nprivate:\n    /**\n     * @brief parseJsonData  仅仅将 mangerInfo 进行数据转化\n     * @return 获取后端所有解析后的数据\n     */\n    QMap<QString, uint> parseDriverNameJsonData(const QString& mangerInfo);\n    QStringList parseCharaNameJsonData(const QString& mangerInfo);\n\nQ_SIGNALS:\n    void tryStartInputFace(const int &fd);\n    void tryStartInputIris(CharaMangerModel::AddInfoState state);\n    void requestMainWindowEnabled(const bool isEnabled) const;\n\npublic Q_SLOTS:\n    void predefineDriverInfo(const QString &driverInfo);\n\n    /**\n     * @brief refreshUserEnrollList 获取用户录入信息\n     * @param driverName 驱动名称\n     * @param CharaType 对应生物特征\n     */\n    void refreshUserEnrollList(const QString &driverName, const int &CharaType);\n\n    void refreshUserInfo(const QString &EnrollInfo, const int &CharaType);\n\n    void refreshDriverInfo();\n\n    /**\n     * @brief entollStart  处理认证接口\n     * @param driverName\n     * @param charaType\n     * @param charaName\n     */\n    void entollStart(const QString &driverName, const int &charaType, const QString &charaName);\n\n    /**\n     * @brief refreshUserEnrollStatus 获取设备录入状态\n     * @param senderid dbus对应senderID\n     * @param code 对应信息\n     * @param codeInfo 信息描述\n     */\n    void refreshUserEnrollStatus(const QString &senderid, const int &code, const QString &codeInfo);\n\n    void stopEnroll();\n\n    /**\n     * @brief deleteFaceidItem 删除对应录入信息\n     * @param charaType 唯一值\n     * @param charaName 对应名称\n     */\n    void deleteCharaItem(const int &charaType, const QString &charaName);\n    void renameCharaItem(const int &charaType, const QString &oldName, const QString &newName);\n\n    // Fingerprint\n    void tryEnroll(const QString &name, const QString &thumb);\n    void refreshFingerEnrollList(const QString &id);\n    void stopFingerEnroll(const QString& userName);\n    void deleteFingerItem(const QString& userName, const QString& finger);\n    void renameFingerItem(const QString& userName, const QString& finger, const QString& newName);\n    void onDefaultDeviceChanged(const QString &device);\n\nprivate:\n    CharaMangerModel *m_model;\n    CharaMangerDBusProxy *m_charaMangerInter;\n\n    /**\n     * @brief m_stopTimer 开始录入进行计时 1Min后若没有录入成功则失败\n     * 注： timer stop时机\n     */\n    QTimer *m_stopTimer;\n    QDBusPendingReply<QDBusUnixFileDescriptor>* m_fileDescriptor;\n    /**\n     * @brief m_currentInputCharaType  当前录入方式 注：确保唯一性\n     */\n    int m_currentInputCharaType;\n};\n\n#endif // FACEIDWORKER_H\n"
  },
  {
    "path": "src/plugin-authentication/operation/faceauthcontroller.cpp",
    "content": "//SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"faceauthcontroller.h\"\n#include <dareader/reader.h>\n#include <QPainterPath>\n#include <QBuffer>\n#include <QPainter>\n#include <DGuiApplicationHelper>\n\n#define FACEID_NUM    5\n#define Faceimg_SIZE 210\n\nDGUI_USE_NAMESPACE\n\nnamespace dccV25 {\n\nFaceAuthController::FaceAuthController(CharaMangerModel *model, CharaMangerWorker *worker, QObject *parent)\n    : AbstractBiometricController(parent)\n    , m_model(model)\n    , m_worker(worker)\n{\n    // 设置主题类型\n    DGuiApplicationHelper::ColorType type = DGuiApplicationHelper::instance()->themeType();\n    if (type == DGuiApplicationHelper::LightType) {\n        m_themeType = \"light\";\n    } else if (type == DGuiApplicationHelper::DarkType) {\n        m_themeType = \"dark\";\n    }\n\n    connect(DGuiApplicationHelper::instance(), &DGuiApplicationHelper::themeTypeChanged, this, [this](DGuiApplicationHelper::ColorType type) {\n        if (type == DGuiApplicationHelper::LightType) {\n            m_themeType = \"light\";\n        } else if (type == DGuiApplicationHelper::DarkType) {\n            m_themeType = \"dark\";\n        }\n    });\n\n    // 连接信号\n    connect(m_model, &CharaMangerModel::tryStartInputFace, this, &FaceAuthController::onTryStartInputFace);\n    connect(m_model, &CharaMangerModel::enrollStatusTips, this, &FaceAuthController::onEnrollStatusTips);\n    connect(m_model, &CharaMangerModel::enrollInfoState, this, &FaceAuthController::onEnrollInfoState);\n}\n\nvoid FaceAuthController::startEnroll()\n{\n    QString newName;\n    for (int i = 0; i < FACEID_NUM; ++i) {\n        newName = tr(\"Faceprint\") + QString(\"%1\").arg(i + 1);\n        if (!m_model->facesList().contains(newName)) {\n            break;\n        }\n    }\n    setAddStage(CharaMangerModel::Processing);\n    m_enrollFaceTips = \"\";\n    emit enrollFaceTipsChanged();\n    m_faceImgContent = \"\";\n    emit faceImgContentChanged();\n    m_enrollFaceInProgress = true;\n    m_worker->entollStart(m_model->faceDriverName(), m_model->faceCharaType(), newName);\n}\n\nvoid FaceAuthController::stopEnroll()\n{\n    m_enrollFaceInProgress = false;\n    m_worker->stopEnroll();\n    setAddStage(CharaMangerModel::StartState);\n}\n\nvoid FaceAuthController::rename(const QString &oldName, const QString &newName)\n{\n    m_worker->renameCharaItem(m_model->faceCharaType(), oldName, newName);\n    m_worker->refreshUserEnrollList(m_model->faceDriverName(), m_model->faceCharaType());\n}\n\nvoid FaceAuthController::remove(const QString &id)\n{\n    m_worker->deleteCharaItem(m_model->faceCharaType(), id);\n}\n\nbool FaceAuthController::isAvailable() const\n{\n    return m_model->faceDriverVaild();\n}\n\nQString FaceAuthController::getTypeName() const\n{\n    return tr(\"Face\");\n}\n\nQString FaceAuthController::faceImgContent() const\n{\n    return m_faceImgContent;\n}\n\nbool FaceAuthController::enrollFaceSuccess() const\n{\n    return m_enrollFaceSuccess;\n}\n\nQString FaceAuthController::enrollFaceTips() const\n{\n    return m_enrollFaceTips;\n}\n\nvoid FaceAuthController::onEnrollStatusTips(const QString &tips)\n{\n    m_enrollFaceTips = tips;\n    emit enrollFaceTipsChanged();\n}\n\nvoid FaceAuthController::onEnrollInfoState(CharaMangerModel::AddInfoState state, const QString &tips)\n{\n    m_enrollFaceSuccess = state == CharaMangerModel::AddInfoState::Success;\n    m_enrollFaceTips = m_enrollFaceSuccess ? tr(\"Use your face to unlock the device and make settings later\") : tips;\n    emit enrollFaceSuccessChanged();\n    emit enrollFaceTipsChanged();\n    emit enrollCompleted();\n    stopEnroll();\n    if (m_enrollFaceSuccess) {\n        m_worker->refreshUserEnrollList(m_model->faceDriverName(), m_model->faceCharaType());\n        setAddStage(CharaMangerModel::Success);\n    } else {\n        setAddStage(CharaMangerModel::Fail);\n    }\n}\n\nvoid FaceAuthController::onTryStartInputFace(int fd)\n{\n    qDebug() << \"add updateFaceImgContent to fd:\" << fd;\n    DA_read_frames(fd, this, updateFaceImgContent);\n}\n\nvoid FaceAuthController::updateFaceImgContent(void* const context, const DA_img *const img)\n{\n    if (!context)\n        return;\n\n    FaceAuthController *controller = static_cast<FaceAuthController *>(context);\n    // Do not update after enroll completed.\n    if (!controller->m_enrollFaceInProgress)\n        return;\n\n    QImage im((uchar *)img->data, img->width, img->height, QImage::Format_RGB888);\n\n    QPixmap sourcePix = QPixmap::fromImage(im);\n    int sourceSize = qMin(img->width, img->height);\n    int offsetX = (img->width - sourceSize) / 2;\n    int offsetY = (img->height - sourceSize) / 2;\n\n    QPixmap croppedPix = sourcePix.copy(offsetX, offsetY, sourceSize, sourceSize)\n                                   .scaled(Faceimg_SIZE, Faceimg_SIZE, Qt::KeepAspectRatio, Qt::SmoothTransformation);\n    \n    // 创建圆形遮罩\n    QPixmap pix(Faceimg_SIZE, Faceimg_SIZE);\n    pix.fill(Qt::transparent);\n    QPainter painter(&pix);\n    painter.setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform);\n    QPainterPath path;\n    path.addEllipse(0, 0, Faceimg_SIZE, Faceimg_SIZE);\n    painter.setClipPath(path);\n    painter.drawPixmap(0, 0, croppedPix);\n\n    QBuffer buffer;\n    buffer.open(QIODevice::WriteOnly);\n    pix.save(&buffer, \"PNG\");\n    QString encode = buffer.data().toBase64();\n    controller->m_faceImgContent = QString(\"%1,%2\").arg(\"data:image/png;base64\").arg(encode);\n    buffer.close();\n    emit controller->faceImgContentChanged();\n}\n\n} // namespace dccV25\n"
  },
  {
    "path": "src/plugin-authentication/operation/faceauthcontroller.h",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include \"abstractbiometriccontroller.h\"\n#include \"charamangerworker.h\"\n\n// 前向声明\nstruct DA_img;\n\nnamespace dccV25 {\n\nclass FaceAuthController : public AbstractBiometricController\n{\n    Q_OBJECT\n    Q_PROPERTY(QString faceImgContent READ faceImgContent NOTIFY faceImgContentChanged FINAL)\n    Q_PROPERTY(bool enrollFaceSuccess READ enrollFaceSuccess NOTIFY enrollFaceSuccessChanged FINAL)\n    Q_PROPERTY(QString enrollFaceTips READ enrollFaceTips NOTIFY enrollFaceTipsChanged FINAL)\n\npublic:\n    explicit FaceAuthController(CharaMangerModel *model, CharaMangerWorker *worker, QObject *parent = nullptr);\n\npublic slots:\n\n    // 实现抽象接口\n    void startEnroll() override;\n    void stopEnroll() override;\n    void rename(const QString &oldName, const QString &newName) override;\n    void remove(const QString &id) override;\n    bool isAvailable() const override;\n    QString getTypeName() const override;\n\n    // 人脸特有的属性和方法\n    QString faceImgContent() const;\n    bool enrollFaceSuccess() const;\n    QString enrollFaceTips() const;\n\nsignals:\n    void faceImgContentChanged();\n    void enrollFaceSuccessChanged();\n    void enrollFaceTipsChanged();\n\nprivate slots:\n    void onEnrollStatusTips(const QString &tips);\n    void onEnrollInfoState(CharaMangerModel::AddInfoState state, const QString &tips);\n    void onTryStartInputFace(int fd);\n\nprivate:\n    static void updateFaceImgContent(void *const context, const DA_img *const img);\n\nprivate:\n    CharaMangerModel *m_model;\n    CharaMangerWorker *m_worker;\n    QString m_faceImgContent;\n    QString m_enrollFaceTips;\n    bool m_enrollFaceSuccess = false;\n    bool m_enrollFaceInProgress = false;\n    QString m_themeType;\n};\n\n} // namespace dccV25 "
  },
  {
    "path": "src/plugin-authentication/operation/fingerprintauthcontroller.cpp",
    "content": "//SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"fingerprintauthcontroller.h\"\n#include <DGuiApplicationHelper>\n\nDGUI_USE_NAMESPACE\n\nnamespace dccV25 {\n\nFingerprintAuthController::FingerprintAuthController(CharaMangerModel *model, CharaMangerWorker *worker, QObject *parent)\n    : AbstractBiometricController(parent)\n    , m_model(model)\n    , m_worker(worker)\n    , m_fingerLiftTimer(new QTimer(this))\n    , m_fingerAni(new QVariantAnimation(this))\n{\n    // 设置主题类型\n    DGuiApplicationHelper::ColorType type = DGuiApplicationHelper::instance()->themeType();\n    if (type == DGuiApplicationHelper::LightType) {\n        m_themeType = \"light\";\n    } else if (type == DGuiApplicationHelper::DarkType) {\n        m_themeType = \"dark\";\n    }\n\n    connect(DGuiApplicationHelper::instance(), &DGuiApplicationHelper::themeTypeChanged, this, [this](DGuiApplicationHelper::ColorType type) {\n        if (type == DGuiApplicationHelper::LightType) {\n            m_themeType = \"light\";\n        } else if (type == DGuiApplicationHelper::DarkType) {\n            m_themeType = \"dark\";\n        }\n    });\n\n    // 初始化指纹相关设置\n    connect(m_model, &CharaMangerModel::thumbsListChanged, this, &FingerprintAuthController::onThumbsListChanged);\n    onThumbsListChanged(m_model->thumbsList());\n    onFingerEnrollStagePass(0);\n    m_fingerLiftTimer->setSingleShot(true);\n    m_fingerLiftTimer->setInterval(1000);\n\n    m_fingerAni->setDuration(1000);\n    m_fingerAni->setEasingCurve(QEasingCurve::OutCubic);\n\n    // 连接信号\n    connect(m_model, &CharaMangerModel::enrollCompleted, this, &FingerprintAuthController::onFingerEnrollCompleted);\n    connect(m_model, &CharaMangerModel::enrollStagePass, this, &FingerprintAuthController::onFingerEnrollStagePass);\n    connect(m_model, &CharaMangerModel::enrollFailed, this, &FingerprintAuthController::onFingerEnrollFailed);\n    connect(m_model, &CharaMangerModel::enrollDisconnected, this, &FingerprintAuthController::onFingerEnrollDisconnected);\n    connect(m_model, &CharaMangerModel::enrollRetry, this, &FingerprintAuthController::onFingerEnrollRetry);\n    connect(m_fingerLiftTimer, &QTimer::timeout, this, &FingerprintAuthController::onFingerLiftTimerTimeout);\n    connect(m_fingerAni, &QVariantAnimation::valueChanged, this, &FingerprintAuthController::onFingerAniValueChanged);\n}\n\nvoid FingerprintAuthController::startEnroll()\n{\n    // 先刷新指纹列表，确保获取到最新的设备状态\n    m_worker->refreshFingerEnrollList(m_model->userName());\n    \n    QString newFingerName;\n    auto thumbList = m_model->thumbsList();\n    for (const auto &predefineName : m_model->getPredefineThumbsName()) {\n        if (!thumbList.contains(predefineName)) {\n            newFingerName = predefineName;\n            break;\n        }\n    }\n    setAddStage(CharaMangerModel::Processing);\n    onFingerEnrollStagePass(0);\n    m_worker->tryEnroll(m_model->userName(), newFingerName);\n}\n\nvoid FingerprintAuthController::stopEnroll()\n{\n    m_worker->stopFingerEnroll(m_model->userName());\n    m_worker->refreshFingerEnrollList(m_model->userName());\n}\n\nvoid FingerprintAuthController::rename(const QString &oldName, const QString &newName)\n{\n    m_worker->renameFingerItem(m_model->userName(), oldName, newName);\n}\n\nvoid FingerprintAuthController::remove(const QString &id)\n{\n    m_worker->deleteFingerItem(m_model->userName(), id);\n}\n\nbool FingerprintAuthController::isAvailable() const\n{\n    return m_model->fingerVaild();\n}\n\nQString FingerprintAuthController::getTypeName() const\n{\n    return tr(\"Fingerprint\");\n}\n\nvoid FingerprintAuthController::onThumbsListChanged(const QStringList &thumbs)\n{\n    Q_UNUSED(thumbs)\n    // TODO\n}\n\nvoid FingerprintAuthController::onFingerEnrollRetry(const QString &title, const QString &msg)\n{\n    m_fingerTipTitle = title;\n    m_fingerTipMessage = msg;\n    emit fingerTipsChanged();\n}\n\nvoid FingerprintAuthController::onFingerEnrollStagePass(int pro)\n{\n    int startValue = m_fingerPro * 1.5;\n    int endValue = pro * 1.5;\n\n    if (m_fingerAni->state() == QVariantAnimation::Running) {\n        m_fingerAni->stop();\n    }\n    m_fingerAni->setStartValue(startValue);\n    m_fingerAni->setEndValue(endValue);\n    QMetaObject::invokeMethod(m_fingerAni, \"start\", Qt::QueuedConnection);\n\n    m_fingerPro = pro;\n    if (m_fingerPro == 0) {\n        m_isStageOne = true;\n        m_fingertipImagePath = QString(\":/icons/deepin/builtin/icons/%1/icons/finger/fingerprint_animation_%1_%2.png\").arg(m_themeType).arg(0, 5, 10, QChar('0'));\n        m_fingerTipTitle = tr(\"Place your finger\");\n        m_fingerTipMessage = tr(\"Place your finger firmly on the sensor until you're asked to lift it\");\n    } else {\n        int idx = m_fingerPro / 2;\n        idx = idx > 50 ? 50 : idx;\n        if (m_fingerPro > 0 && m_fingerPro < 35) {\n            m_fingerTipTitle = tr(\"Lift your finger\");\n            m_fingerTipMessage = tr(\"Lift your finger and place it on the sensor again\");\n            m_fingerLiftTimer->start();\n        } else if (m_fingerPro >= 35 && m_fingerPro < 100) {\n            if (m_isStageOne == true) {\n                m_isStageOne = false;\n                m_fingerTipTitle = tr(\"Scan the edges of your fingerprint\");\n                m_fingerTipMessage = tr(\"Adjust the position to scan the edges of your fingerprint\");\n            } else {\n                m_fingerTipTitle = tr(\"Scan the edges of your fingerprint\");\n                m_fingerTipMessage = tr(\"Lift your finger and do that again\");\n                m_fingerLiftTimer->start();\n            }\n        } else {\n            m_fingerTipTitle = tr(\"Fingerprint added\");\n            m_fingerTipMessage = tr(\"\");\n        }\n    }\n\n    Q_EMIT fingerTipsChanged();\n}\n\nvoid FingerprintAuthController::onFingerEnrollFailed(const QString &title, const QString &msg)\n{\n    m_fingerTipTitle = title;\n    m_fingerTipMessage = msg;\n    m_fingertipImagePath = \"user_biometric_fingerprint_lose\";\n    setAddStage(CharaMangerModel::Fail);\n    emit fingerTipsChanged();\n    stopEnroll();\n}\n\nvoid FingerprintAuthController::onFingerEnrollCompleted()\n{\n    onFingerEnrollStagePass(100);\n    setAddStage(CharaMangerModel::Success);\n    emit enrollCompleted();\n    stopEnroll();\n}\n\nvoid FingerprintAuthController::onFingerEnrollDisconnected()\n{\n    m_fingerTipTitle = tr(\"Scan Suspended\");\n    m_fingerTipMessage = tr(\"Scan Suspended\");\n    setAddStage(CharaMangerModel::Fail);\n    emit fingerTipsChanged();\n    stopEnroll();\n}\n\nvoid FingerprintAuthController::onFingerLiftTimerTimeout()\n{\n    if (m_addStage == CharaMangerModel::Fail || m_addStage == CharaMangerModel::Success) {\n        return;\n    }\n    QString m_defTitle;\n    QString m_defTip;\n    if (m_fingerPro > 0 && m_fingerPro < 35) {\n        m_defTitle = tr(\"Place your finger\");\n        m_defTip = tr(\"Place your finger firmly on the sensor until you're asked to lift it\");\n    } else if (m_fingerPro >= 35 && m_fingerPro < 100) {\n        m_defTitle = tr(\"Scan the edges of your fingerprint\");\n        m_defTip = tr(\"Place the edges of your fingerprint on the sensor\");\n    } else {\n        m_fingerLiftTimer->stop();\n        return;\n    }\n\n    m_fingerTipTitle = m_defTitle;\n    m_fingerTipMessage = m_defTip;\n    emit fingerTipsChanged();\n}\n\nvoid FingerprintAuthController::onFingerAniValueChanged(const QVariant &index)\n{\n    if (m_addStage == CharaMangerModel::Fail) {\n        return;\n    }\n    if (index == 150) {\n        m_fingertipImagePath = \"user_biometric_fingerprint_success\";\n    } else {\n        m_fingertipImagePath = QString(\":/icons/deepin/builtin/icons/%1/icons/finger/fingerprint_animation_%1_%2.png\").arg(m_themeType).arg(index.toInt(), 5, 10, QChar('0'));\n    }\n    emit fingerTipsChanged();\n}\n\n} // namespace dccV25 "
  },
  {
    "path": "src/plugin-authentication/operation/fingerprintauthcontroller.h",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include \"abstractbiometriccontroller.h\"\n#include \"charamangerworker.h\"\n#include <QVariantAnimation>\n#include <QTimer>\n\nnamespace dccV25 {\n\nclass FingerprintAuthController : public AbstractBiometricController\n{\n    Q_OBJECT\n    Q_PROPERTY(QString fingertipImagePath MEMBER m_fingertipImagePath NOTIFY fingerTipsChanged)\n    Q_PROPERTY(QString fingerTitleTip MEMBER m_fingerTipTitle NOTIFY fingerTipsChanged)\n    Q_PROPERTY(QString fingerMsgTip MEMBER m_fingerTipMessage NOTIFY fingerTipsChanged)\n\npublic:\n    explicit FingerprintAuthController(CharaMangerModel *model, CharaMangerWorker *worker, QObject *parent = nullptr);\n\npublic slots:\n\n    // 实现抽象接口\n    void startEnroll() override;\n    void stopEnroll() override;\n    void rename(const QString &oldName, const QString &newName) override;\n    void remove(const QString &id) override;\n    bool isAvailable() const override;\n    QString getTypeName() const override;\n\n    // 公共访问器方法\n    QString fingertipImagePath() const { return m_fingertipImagePath; }\n    QString fingerTitleTip() const { return m_fingerTipTitle; }\n    QString fingerMsgTip() const { return m_fingerTipMessage; }\n\nsignals:\n    void fingerTipsChanged();\n\nprivate slots:\n    void onThumbsListChanged(const QStringList &thumbs);\n    void onFingerEnrollRetry(const QString &title, const QString &msg);\n    void onFingerEnrollStagePass(int pro);\n    void onFingerEnrollFailed(const QString &title, const QString &msg);\n    void onFingerEnrollCompleted();\n    void onFingerEnrollDisconnected();\n    void onFingerLiftTimerTimeout();\n    void onFingerAniValueChanged(const QVariant &pro);\n\nprivate:\n    CharaMangerModel *m_model;\n    CharaMangerWorker *m_worker;\n    QString m_fingertipImagePath;\n    QString m_fingerTipTitle;\n    QString m_fingerTipMessage;\n    int m_fingerPro = 0;\n    bool m_isStageOne = false;\n    QTimer *m_fingerLiftTimer = nullptr;\n    QVariantAnimation *m_fingerAni = nullptr;\n    QString m_themeType;\n};\n\n} // namespace dccV25 "
  },
  {
    "path": "src/plugin-authentication/operation/irisauthcontroller.cpp",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"irisauthcontroller.h\"\n#include <qlogging.h>\n#include <DGuiApplicationHelper>\n\n#define IRISID_NUM 5\n\nDGUI_USE_NAMESPACE\n\nnamespace dccV25 {\n\nIrisAuthController::IrisAuthController(CharaMangerModel *model, CharaMangerWorker *worker, QObject *parent)\n    : AbstractBiometricController(parent)\n    , m_model(model)\n    , m_worker(worker)\n{\n    // 设置主题类型\n    DGuiApplicationHelper::ColorType type = DGuiApplicationHelper::instance()->themeType();\n    if (type == DGuiApplicationHelper::LightType) {\n        m_themeType = \"light\";\n    } else if (type == DGuiApplicationHelper::DarkType) {\n        m_themeType = \"dark\";\n    }\n\n    connect(DGuiApplicationHelper::instance(), &DGuiApplicationHelper::themeTypeChanged, this, [this](DGuiApplicationHelper::ColorType type) {\n        if (type == DGuiApplicationHelper::LightType) {\n            m_themeType = \"light\";\n        } else if (type == DGuiApplicationHelper::DarkType) {\n            m_themeType = \"dark\";\n        }\n    });\n\n    // 连接信号（预留）\n    connect(m_model, &CharaMangerModel::tryStartInputIris, this, &IrisAuthController::onTryStartInputIris);\n    connect(m_model, &CharaMangerModel::enrollIrisStatusTips, this, &IrisAuthController::onEnrollIrisStatusTips);\n    connect(m_model, &CharaMangerModel::enrollIrisInfoState, this, &IrisAuthController::onEnrollIrisInfoState);\n}\n\nvoid IrisAuthController::startEnroll()\n{\n    auto irislist = m_model->irisList();\n    if (irislist.size() >= IRISID_NUM) {\n        return;\n    }\n\n    QString newName;\n    for (int i = 0; i < IRISID_NUM; ++i) {\n        newName = tr(\"Iris\") + QString(\"%1\").arg(i + 1);\n        if (!irislist.contains(newName)) {\n            break;\n        }\n    }\n\n    setAddStage(CharaMangerModel::Processing);\n    m_worker->entollStart(m_model->irisDriverName(), m_model->irisCharaType(), newName);\n}\n\nvoid IrisAuthController::stopEnroll()\n{\n    m_enrollIrisInProgress = false;\n    m_worker->stopEnroll();\n    setAddStage(CharaMangerModel::StartState);\n}\n\nvoid IrisAuthController::rename(const QString &oldName, const QString &newName)\n{\n    m_worker->renameCharaItem(m_model->irisCharaType(), oldName, newName);\n    m_worker->refreshUserEnrollList(m_model->irisDriverName(), m_model->irisCharaType());\n    Q_UNUSED(oldName)\n    Q_UNUSED(newName)\n}\n\nvoid IrisAuthController::remove(const QString &id)\n{\n    m_worker->deleteCharaItem(m_model->irisCharaType(), id);\n    Q_UNUSED(id)\n}\n\nbool IrisAuthController::isAvailable() const\n{\n    return m_model->irisDriverVaild();\n}\n\nQString IrisAuthController::getTypeName() const\n{\n    return tr(\"Iris\");\n}\n\nQString IrisAuthController::irisImgContent() const\n{\n    return m_irisImgContent;\n}\n\nbool IrisAuthController::enrollIrisSuccess() const\n{\n    return m_enrollIrisSuccess;\n}\n\nQString IrisAuthController::enrollIrisTips() const\n{\n    return m_enrollIrisTips;\n}\n\nvoid IrisAuthController::onEnrollIrisStatusTips(const QString &tips)\n{\n    m_enrollIrisTips = tips;\n    emit enrollIrisTipsChanged();\n}\n\nvoid IrisAuthController::onEnrollIrisInfoState(CharaMangerModel::AddInfoState state, const QString &tips)\n{\n    m_enrollIrisSuccess = state == CharaMangerModel::AddInfoState::Success;\n    m_enrollIrisTips = m_enrollIrisSuccess ? tr(\"Use your iris to unlock the device and make settings later\") : tips;\n    emit enrollIrisSuccessChanged();\n    emit enrollIrisTipsChanged();\n    emit enrollCompleted();\n    stopEnroll();\n    if (m_enrollIrisSuccess) {\n        m_worker->refreshUserEnrollList(m_model->irisDriverName(), m_model->irisCharaType());\n        setAddStage(CharaMangerModel::Success);\n    } else {\n        setAddStage(CharaMangerModel::Fail);\n    }\n}\n\nvoid IrisAuthController::onTryStartInputIris(CharaMangerModel::AddInfoState state)\n{\n    Q_UNUSED(state)\n    onEnrollIrisStatusTips(\"\");\n}\n\n} // namespace dccV25 "
  },
  {
    "path": "src/plugin-authentication/operation/irisauthcontroller.h",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include \"abstractbiometriccontroller.h\"\n#include \"charamangerworker.h\"\n#include <qtmetamacros.h>\n\nnamespace dccV25 {\n\nclass IrisAuthController : public AbstractBiometricController\n{\n    Q_OBJECT\n    Q_PROPERTY(QString irisImgContent READ irisImgContent NOTIFY irisImgContentChanged FINAL)\n    Q_PROPERTY(bool enrollIrisSuccess READ enrollIrisSuccess NOTIFY enrollIrisSuccessChanged FINAL)\n    Q_PROPERTY(QString enrollIrisTips READ enrollIrisTips NOTIFY enrollIrisTipsChanged FINAL)\n\npublic:\n    explicit IrisAuthController(CharaMangerModel *model, CharaMangerWorker *worker, QObject *parent = nullptr);\n\npublic slots:\n\n    // 实现抽象接口\n    void startEnroll() override;\n    void stopEnroll() override;\n    void rename(const QString &oldName, const QString &newName) override;\n    void remove(const QString &id) override;\n    bool isAvailable() const override;\n    QString getTypeName() const override;\n\n    // 虹膜特有的属性和方法（预留）\n    QString irisImgContent() const;\n    bool enrollIrisSuccess() const;\n    QString enrollIrisTips() const;\n\nsignals:\n    void irisImgContentChanged();\n    void enrollIrisSuccessChanged();\n    void enrollIrisTipsChanged();\n\nprivate slots:\n    void onEnrollIrisStatusTips(const QString &tips);\n    void onEnrollIrisInfoState(CharaMangerModel::AddInfoState state, const QString &tips);\n    void onTryStartInputIris(CharaMangerModel::AddInfoState state);\n\nprivate:\n    CharaMangerModel *m_model;\n    CharaMangerWorker *m_worker;\n    QString m_irisImgContent;\n    QString m_enrollIrisTips;\n    bool m_enrollIrisSuccess = false;\n    bool m_enrollIrisInProgress = false;\n    QString m_themeType;\n};\n\n} // namespace dccV25 "
  },
  {
    "path": "src/plugin-authentication/operation/qrc/authentication.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_authentication_42px.svg</file>\n        <file>icons/dcc_nav_authentication_84px.svg</file>\n        <file>icons/dark/icons/icon_face-fail.svg</file>\n        <file>icons/dark/icons/icon_face-start.svg</file>\n        <file>icons/dark/icons/icon_face-success.svg</file>\n        <file>icons/dark/icons/icon_unknown_device.svg</file>\n        <file>icons/light/icons/icon_face-fail.svg</file>\n        <file>icons/light/icons/icon_face-start.svg</file>\n        <file>icons/light/icons/icon_face-success.svg</file>\n        <file>icons/light/icons/icon_unknown_device.svg</file>\n        <file>icons/light/icons/finger/fingerprint_light.svg</file>\n        <file>icons/dark/icons/finger/fingerprint_light.svg</file>\n\n        <file>icons/light/icons/finger/fingerprint_animation_light_00000.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00001.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00002.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00003.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00004.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00005.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00006.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00007.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00008.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00009.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00010.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00011.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00012.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00013.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00014.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00015.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00016.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00017.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00018.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00019.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00020.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00021.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00022.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00023.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00024.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00025.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00026.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00027.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00028.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00029.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00030.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00031.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00032.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00033.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00034.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00035.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00036.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00037.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00038.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00039.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00040.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00041.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00042.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00043.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00044.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00045.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00046.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00047.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00048.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00049.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00050.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00051.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00052.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00053.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00054.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00055.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00056.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00057.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00058.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00059.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00060.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00061.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00062.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00063.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00064.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00065.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00066.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00067.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00068.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00069.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00070.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00071.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00072.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00073.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00074.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00075.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00076.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00077.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00078.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00079.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00080.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00081.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00082.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00083.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00084.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00085.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00086.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00087.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00088.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00089.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00090.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00091.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00092.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00093.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00094.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00095.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00096.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00097.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00098.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00099.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00100.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00101.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00102.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00103.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00104.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00105.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00106.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00107.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00108.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00109.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00110.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00111.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00112.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00113.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00114.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00115.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00116.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00117.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00118.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00119.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00120.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00121.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00122.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00123.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00124.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00125.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00126.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00127.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00128.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00129.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00130.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00131.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00132.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00133.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00134.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00135.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00136.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00137.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00138.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00139.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00140.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00141.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00142.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00143.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00144.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00145.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00146.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00147.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00148.png</file>\n        <file>icons/light/icons/finger/fingerprint_animation_light_00149.png</file>\n\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00000.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00001.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00002.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00003.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00004.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00005.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00006.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00007.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00008.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00009.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00010.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00011.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00012.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00013.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00014.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00015.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00016.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00017.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00018.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00019.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00020.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00021.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00022.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00023.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00024.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00025.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00026.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00027.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00028.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00029.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00030.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00031.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00032.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00033.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00034.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00035.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00036.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00037.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00038.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00039.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00040.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00041.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00042.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00043.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00044.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00045.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00046.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00047.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00048.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00049.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00050.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00051.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00052.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00053.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00054.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00055.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00056.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00057.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00058.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00059.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00060.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00061.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00062.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00063.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00064.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00065.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00066.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00067.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00068.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00069.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00070.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00071.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00072.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00073.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00074.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00075.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00076.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00077.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00078.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00079.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00080.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00081.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00082.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00083.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00084.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00085.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00086.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00087.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00088.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00089.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00090.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00091.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00092.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00093.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00094.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00095.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00096.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00097.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00098.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00099.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00100.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00101.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00102.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00103.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00104.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00105.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00106.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00107.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00108.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00109.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00110.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00111.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00112.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00113.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00114.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00115.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00116.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00117.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00118.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00119.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00120.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00121.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00122.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00123.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00124.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00125.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00126.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00127.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00128.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00129.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00130.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00131.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00132.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00133.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00134.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00135.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00136.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00137.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00138.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00139.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00140.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00141.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00142.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00143.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00144.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00145.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00146.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00147.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00148.png</file>\n        <file>icons/dark/icons/finger/fingerprint_animation_dark_00149.png</file>\n    </qresource>\n\n    <qresource prefix=\"/dsg\">\n        <file>icons/user_biometric_face.dci</file>\n        <file>icons/user_biometric_face_add.dci</file>\n        <file>icons/user_biometric_face_lose.dci</file>\n        <file>icons/user_biometric_face_success.dci</file>\n        <file>icons/user_biometric_fingerprint.dci</file>\n        <file>icons/user_biometric_fingerprint_add.dci</file>\n        <file>icons/user_biometric_fingerprint_lose.dci</file>\n        <file>icons/user_biometric_fingerprint_success.dci</file>\n        <file>icons/user_biometric_iris.dci</file>\n        <file>icons/scan_loader.dci</file>\n        <file>icons/dcc_edit.dci</file>\n        <file>icons/dcc_delete.dci</file>\n\n        <file>icons/iris_add.dci</file>\n        <file>icons/iris_lose.dci</file>\n        <file>icons/iris_scan.dci</file>\n        <file>icons/iris_scanning.dci</file>\n        <file>icons/iris_success.dci</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-authentication/qml/AddFaceinfoDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Dialogs\nimport QtQuick.Window\nimport QtQml.Models 2.1\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\nimport org.deepin.dcc.account.biometric 1.0\n\nD.DialogWindow {\n    id: dialog\n    width: 360\n    height: 500\n    minimumWidth: width\n    maximumWidth: minimumWidth\n    modality: Qt.WindowModal\n    title: qsTr(\"Enroll Face\")\n\n    onVisibleChanged: function() {\n        if (listview.currentIndex != 0 && !visible) {\n            dccData.faceController.stopEnroll()\n        }\n    }\n\n    D.ListView {\n        id: listview\n        implicitWidth: dialog.width - dialog.leftPadding - dialog.rightPadding\n        implicitHeight: 500 - DS.Style.dialogWindow.titleBarHeight - DS.Style.dialogWindow.contentHMargin\n        spacing: DS.Style.dialogWindow.contentHMargin\n        model: itemModel\n        orientation: ListView.Horizontal\n        layoutDirection: Qt.LeftToRight\n        snapMode: ListView.SnapOneItem\n        boundsBehavior: Flickable.StopAtBounds\n        highlightRangeMode: ListView.StrictlyEnforceRange\n        highlightMoveDuration: 0\n        interactive: false\n\n        ObjectModel {\n            id: itemModel\n            // 添加前\n            ColumnLayout {\n                id: firstPage\n                height: listview.implicitHeight\n                width: listview.implicitWidth\n\n                property bool disclaimerAccepted: false\n\n                Label {\n                    Layout.fillWidth: true\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    text: dialog.title\n                    font: D.DTK.fontManager.t5\n                }\n\n                Item {\n                    Layout.preferredHeight: 20\n                }\n\n                D.DciIcon {\n                    name: \"user_biometric_face_add\"\n                    Layout.alignment: Qt.AlignCenter\n                }\n\n                Item {\n                    Layout.fillHeight: true\n                }\n\n                ScrollView {\n                    id: infoScrollView\n                    Layout.fillHeight: true\n                    Layout.fillWidth: true\n                    Layout.leftMargin: 10\n                    Layout.rightMargin: 10\n                    Layout.preferredHeight: Math.min(infoLabel.implicitHeight, 120)\n                    ScrollBar.horizontal.policy: ScrollBar.AlwaysOff\n                    ScrollBar.vertical.policy: ScrollBar.AsNeeded\n                    \n                    Component.onCompleted: {\n                        if (contentItem) {\n                            contentItem.interactive = true\n                            contentItem.flickableDirection = Flickable.VerticalFlick\n                            contentItem.boundsBehavior = Flickable.DragAndOvershootBounds\n                        }\n                    }\n                    \n                    Label {\n                        id: infoLabel\n                        width: infoScrollView.availableWidth\n                        font: D.DTK.fontManager.t8\n                        wrapMode: Text.WordWrap\n                        text: qsTr(\"Face recognition does not support liveness detection, and the verification method may carry risks.\\n\\\nTo ensure successful entry:\\n\\\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\\n\\\n2. Ensure sufficient lighting and avoid direct sunlight.\")\n                        horizontalAlignment: Text.AlignLeft\n                        color: D.DTK.themeType == D.ApplicationHelper.LightType ? Qt.rgba(0, 0, 0, 0.7) : Qt.rgba(1, 1, 1, 0.7)\n                    }\n                }\n\n                Item {\n                    Layout.fillHeight: true\n                }\n\n                Column {\n                    Layout.alignment: Qt.AlignCenter\n                    Layout.fillWidth: true\n                    spacing: 0\n\n                    // 计算是否需要换行显示\n                    property bool needWrap: {\n                        // 估算文本宽度，如果总宽度超过可用空间则换行\n                        var checkboxWidth = agreeCheckbox.implicitWidth\n                        var buttonWidth = disclaimerButton.implicitWidth\n                        var availableWidth = listview.implicitWidth - 40 // 减去边距\n                        return (checkboxWidth + buttonWidth) > availableWidth\n                    }\n\n                    Row {\n                        visible: !parent.needWrap\n                        anchors.horizontalCenter: parent.horizontalCenter\n                        spacing: 0\n\n                        CheckBox {\n                            id: agreeCheckbox\n                            text: qsTr(\"I have read and agree to the\")\n                            anchors.verticalCenter: parent.verticalCenter\n                            checked: firstPage.disclaimerAccepted\n                            onCheckedChanged: firstPage.disclaimerAccepted = checked\n                        }\n\n                        D.ToolButton {\n                            id: disclaimerButton\n                            text: qsTr(\"Disclaimer\")\n                            padding: 0\n                            background: null\n                            font: agreeCheckbox.font\n                            anchors.verticalCenter: parent.verticalCenter\n                            anchors.baseline: agreeCheckbox.baseline\n                            textColor: D.Palette {\n                                normal {\n                                    common: D.DTK.makeColor(D.Color.Highlight)\n                                }\n                                normalDark: normal\n                                hovered {\n                                    common: D.DTK.makeColor(D.Color.Highlight).lightness(+30)\n                                }\n                                hoveredDark: hovered\n                            }\n                            onClicked: {\n                                listview.currentIndex = 3\n                            }\n                        }\n                    }\n\n                    // 换行显示时的布局\n                    Column {\n                        visible: parent.needWrap\n                        anchors.horizontalCenter: parent.horizontalCenter\n                        spacing: 0\n\n                        CheckBox {\n                            id: agreeCheckboxWrapped\n                            anchors.horizontalCenter: parent.horizontalCenter\n                            text: qsTr(\"I have read and agree to the\")\n                            checked: firstPage.disclaimerAccepted\n                            onCheckedChanged: firstPage.disclaimerAccepted = checked\n                            // 移除组件默认的边距\n                            topPadding: 0\n                            bottomPadding: 0\n                        }\n\n                        D.ToolButton {\n                            id: disclaimerButtonWrapped\n                            anchors.horizontalCenter: parent.horizontalCenter\n                            text: qsTr(\"Disclaimer\")\n                            padding: 0\n                            topPadding: 0\n                            bottomPadding: 0\n                            background: null\n                            font: agreeCheckbox.font\n                            textColor: D.Palette {\n                                normal {\n                                    common: D.DTK.makeColor(D.Color.Highlight)\n                                }\n                                normalDark: normal\n                                hovered {\n                                    common: D.DTK.makeColor(D.Color.Highlight).lightness(+30)\n                                }\n                                hoveredDark: hovered\n                            }\n                            onClicked: {\n                                listview.currentIndex = 3\n                            }\n                        }\n                    }\n                }\n\n                D.RecommandButton {\n                    spacing: 10\n                    Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n                    Layout.bottomMargin: 0\n                    Layout.leftMargin: 0\n                    Layout.rightMargin: 0\n                    Layout.fillWidth: true\n                    text: qsTr(\"Next\")\n                    enabled: firstPage.disclaimerAccepted\n                    onClicked: {\n                        dccData.faceController.startEnroll();\n                        dialog.hide()\n                    }\n                }\n            }\n\n            // 添加中\n            ColumnLayout {\n                height: listview.implicitHeight\n                width: listview.implicitWidth\n                spacing: 0\n\n                Label {\n                    text: dialog.title\n                    Layout.alignment: Qt.AlignTop | Qt.AlignHCenter\n                    font: D.DTK.fontManager.t5\n                }\n\n                Item {\n                    Layout.preferredHeight: 40\n                }\n\n                Item {\n                    id: facePreviewItem\n                    Layout.alignment: Qt.AlignCenter\n                    Layout.preferredWidth: 250\n                    Layout.preferredHeight: 250\n\n                    D.DciIcon {\n                        id: faceImg\n                        visible: dccData.faceController.addStage === CharaMangerModel.Processing && dccData.faceController.faceImgContent !== \"\"\n                        anchors.centerIn: parent\n                        name: dccData.faceController.faceImgContent\n                        sourceSize: Qt.size(210, 210)\n                    }\n\n                    Control {\n                        id: loaderControl\n                        visible: dccData.faceController.addStage === CharaMangerModel.Processing \n                        contentItem: D.DciIcon {\n                            id: shortProgressCircle\n                            anchors.fill: parent\n                            sourceSize: Qt.size(250, 250)\n                            name: \"scan_loader\"\n                            palette: D.DTK.makeIconPalette(loaderControl.palette)\n                        }\n                    }\n\n                    Timer {\n                        repeat: true\n                        running: loaderControl.visible\n                        interval: 50\n                        onTriggered: {\n                            loaderControl.rotation = loaderControl.rotation + 360 / 49\n                        }\n                    }\n                }\n\n                Item {\n                    visible: dccData.faceController.addStage === CharaMangerModel.Processing \n                    Layout.preferredHeight: 50\n                }\n\n                Label {\n                    text: dccData.faceController.enrollFaceTips\n                    Layout.fillWidth: true\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    font: D.DTK.fontManager.t8\n                    wrapMode: Text.WordWrap\n                    color: D.DTK.themeType == D.ApplicationHelper.LightType ? Qt.rgba(0, 0, 0, 0.7) : Qt.rgba(1, 1, 1, 0.7)\n                }\n                Item {\n                    Layout.fillHeight: true\n                }\n            }\n\n            // 完成页面\n            ColumnLayout {\n                height: listview.implicitHeight\n                width: listview.implicitWidth\n\n                Label {\n                    Layout.fillWidth: true\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    text: dialog.title\n                    font: D.DTK.fontManager.t5\n                }\n\n                Item {\n                    Layout.preferredHeight: 50\n                }\n\n                D.DciIcon {\n                    name: dccData.faceController.enrollFaceSuccess ? \"user_biometric_face_success\" : \"user_biometric_face_lose\";\n                    Layout.alignment: Qt.AlignCenter\n                    sourceSize: Qt.size(150, 150)\n                }\n\n                Item {\n                    Layout.preferredHeight: 30\n                }\n\n                Label {\n                    visible: dccData.faceController.addStage === CharaMangerModel.Success || dccData.faceController.addStage === CharaMangerModel.Fail\n                    Layout.fillWidth: true\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    wrapMode: Text.WordWrap\n                    color: D.DTK.themeType == D.ApplicationHelper.LightType ? Qt.rgba(0, 0, 0, 1) : Qt.rgba(1, 1, 1, 1)\n                    text: dccData.faceController.addStage === CharaMangerModel.Success ? qsTr(\"Face enrolled\") : qsTr(\"Failed to enroll your face\")\n                }\n\n                Label {\n                    text: dccData.faceController.enrollFaceTips\n                    Layout.fillWidth: true\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    font: D.DTK.fontManager.t8\n                    wrapMode: Text.WordWrap\n                    color: D.DTK.themeType == D.ApplicationHelper.LightType ? Qt.rgba(0, 0, 0, 0.7) : Qt.rgba(1, 1, 1, 0.7)\n                }\n\n                Item {\n                    Layout.fillHeight: true\n                }\n\n                RowLayout {\n                    id: successBtnLayout\n                    visible: dccData.faceController.addStage === CharaMangerModel.Success\n                    spacing: 10\n                    Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n                    Layout.bottomMargin: 0\n                    Layout.leftMargin: 0\n                    Layout.rightMargin: 0\n\n                    Button {\n                        Layout.fillWidth: true\n                        text: qsTr(\"Done\")\n                        onClicked: {\n                            dccData.faceController.stopEnroll()\n                            dialog.close()\n                        }\n                    }\n                }\n\n                RowLayout {\n                    id: failedBtnLayout\n                    visible: dccData.faceController.addStage === CharaMangerModel.Fail\n                    spacing: 10\n                    Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n                    Layout.bottomMargin: 0\n                    Layout.leftMargin: 0\n                    Layout.rightMargin: 0\n\n                    Button {\n                        Layout.fillWidth: true\n                        text: qsTr(\"Cancel\")\n                        onClicked: {\n                            dialog.close();\n                        }\n                    }\n                    D.RecommandButton {\n                        Layout.fillWidth: true\n                        text: qsTr(\"Retry Enroll\")\n                        onClicked: {\n                            listview.currentIndex = 0\n                        }\n                    }\n                }\n            }\n            // 免责声明\n            DisclaimerControl {\n                id: disclaimerControl\n                height: listview.implicitHeight\n                width: listview.implicitWidth\n                content: qsTr(`\"Biometric authentication\" is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through \"biometric authentication\", the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through \"Service and Support\" in the UOS.`)\n                onCancelClicked: {\n                    listview.currentIndex = 0\n                    firstPage.disclaimerAccepted = false\n                }\n                onAgreeClicked: {\n                    listview.currentIndex = 0\n                    firstPage.disclaimerAccepted = true\n                }\n            }\n        }\n        Connections {\n            target: dccData.faceController\n\n            function onAddStageChanged() {\n                if (dccData.faceController.addStage === CharaMangerModel.Success) {\n                    listview.currentIndex = 2\n                } else if (dccData.faceController.addStage === CharaMangerModel.Fail) {\n                    listview.currentIndex = 2\n                }\n            }\n        }\n\n        Connections {\n            target: dccData.model\n            function onTryStartInputFace(res) {\n                listview.currentIndex = 1\n                dialog.show()\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-authentication/qml/AddFingerDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Dialogs\nimport QtQuick.Window\nimport QtQml.Models 2.1\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\nimport org.deepin.dcc.account.biometric 1.0\n\nD.DialogWindow {\n    id: dialog\n    width: 360\n    height: 500\n    minimumWidth: width\n    maximumWidth: minimumWidth\n    modality: Qt.WindowModal\n    title: qsTr(\"Enroll Finger\")\n\n    onVisibleChanged: function() {\n        if (listview.currentIndex != 0 && !visible) {\n            dccData.fingerprintController.stopEnroll()\n        }\n    }\n\n    onActiveChanged: function() {\n        if (listview.currentIndex == 1 && !active) {\n            dccData.fingerprintController.stopEnroll()\n        }\n    }\n\n    D.ListView {\n        id: listview\n        implicitWidth: dialog.width - dialog.leftPadding - dialog.rightPadding\n        implicitHeight: 500 - DS.Style.dialogWindow.titleBarHeight - DS.Style.dialogWindow.contentHMargin\n        spacing: DS.Style.dialogWindow.contentHMargin\n        model: itemModel\n        orientation: ListView.Horizontal\n        layoutDirection: Qt.LeftToRight\n        snapMode: ListView.SnapOneItem\n        boundsBehavior: Flickable.StopAtBounds\n        highlightRangeMode: ListView.StrictlyEnforceRange\n        highlightMoveDuration: 0\n        interactive: false\n\n        ObjectModel {\n            id: itemModel\n            ColumnLayout {\n                height: ListView.view.implicitHeight\n                width: ListView.view.implicitWidth\n\n                Label {\n                    Layout.fillWidth: true\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    text: dialog.title\n                }\n\n                Item {\n                    Layout.preferredHeight: 50\n                }\n\n                D.DciIcon {\n                    name: \"user_biometric_fingerprint_add\"\n                    Layout.alignment: Qt.AlignCenter\n                }\n\n                Item {\n                    Layout.fillHeight: true\n                }\n\n                Label {\n                    Layout.fillWidth: true\n                    Layout.alignment: Qt.AlignHCenter\n                    Layout.leftMargin: 10\n                    Layout.rightMargin: 10\n                    font: D.DTK.fontManager.t8\n                    wrapMode: Text.WordWrap\n                    text: qsTr(\"Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.\")\n                    color: D.DTK.themeType == D.ApplicationHelper.LightType ? Qt.rgba(0, 0, 0, 0.7) : Qt.rgba(1, 1, 1, 0.7)\n                    horizontalAlignment: Text.AlignHCenter\n                }\n\n                Item {\n                    Layout.fillHeight: true\n                }\n\n                Row {\n                    Layout.alignment: Qt.AlignCenter\n\n                    CheckBox {\n                        id: agreeCheckbox\n                        text: qsTr(\"I have read and agree to the\")\n                    }\n\n                    D.ToolButton {\n                        text: qsTr(\"Disclaimer\")\n                        padding: 0\n                        background: null\n                        font: agreeCheckbox.font\n                        textColor: D.Palette {\n                            normal {\n                                common: D.DTK.makeColor(D.Color.Highlight)\n                            }\n                            normalDark: normal\n                            hovered {\n                                common: D.DTK.makeColor(D.Color.Highlight).lightness(+30)\n                            }\n                            hoveredDark: hovered\n                        }\n                        onClicked: {\n                            listview.currentIndex = 2\n                        }\n                    }\n                }\n\n                D.RecommandButton {\n                    spacing: 10\n                    Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n                    Layout.bottomMargin: 0\n                    Layout.leftMargin: 0\n                    Layout.rightMargin: 0\n                    Layout.fillWidth: true\n                    text: qsTr(\"Next\")\n                    enabled: agreeCheckbox.checked\n                    onClicked: {\n                        dccData.fingerprintController.startEnroll();\n                        dialog.hide()\n                    }\n                }\n            }\n\n            ColumnLayout {\n                height: ListView.view.implicitHeight\n                width: ListView.view.implicitWidth\n\n                Label {\n                    text: dialog.title\n                    Layout.alignment: Qt.AlignTop | Qt.AlignHCenter\n                }\n\n                Item {\n                    Layout.alignment: Qt.AlignCenter\n                    Layout.preferredWidth: 200\n                    Layout.preferredHeight: 200\n\n                    D.DciIcon {\n                        id: loaderIcon\n                        anchors.centerIn: parent\n                        name: dccData.fingerprintController.fingertipImagePath\n                        retainWhileLoading: true\n                        sourceSize: Qt.size(150, 150)\n                    }\n                }\n\n                Label {\n                    Layout.fillWidth: true\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    wrapMode: Text.WordWrap\n                    color: D.DTK.themeType == D.ApplicationHelper.LightType ? Qt.rgba(0, 0, 0, 1) : Qt.rgba(1, 1, 1, 1)\n                    text: dccData.fingerprintController.fingerTitleTip\n                }\n\n                Label {\n                    Layout.fillWidth: true\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    wrapMode: Text.WordWrap\n                    font: D.DTK.fontManager.t8\n                    color: D.DTK.themeType == D.ApplicationHelper.LightType ? Qt.rgba(0, 0, 0, 0.7) : Qt.rgba(1, 1, 1, 0.7)\n                    text: dccData.fingerprintController.fingerMsgTip\n                }\n\n\n                Item {\n                    Layout.minimumHeight: 60\n                    Layout.fillHeight: true\n                }\n\n                RowLayout {\n                    id: successBtnLayout\n                    visible: dccData.fingerprintController.addStage === CharaMangerModel.Success\n                    spacing: 10\n                    Layout.bottomMargin: 0\n                    Layout.leftMargin: 0\n                    Layout.rightMargin: 0\n\n                    Button {\n                        Layout.fillWidth: true\n                        text: qsTr(\"Done\")\n                        onClicked: {\n                            dialog.close()\n                        }\n                    }\n                }\n\n                RowLayout {\n                    id: failedBtnLayout\n                    visible: dccData.fingerprintController.addStage === CharaMangerModel.Fail\n                    spacing: 10\n                    Layout.bottomMargin: 0\n                    Layout.leftMargin: 0\n                    Layout.rightMargin: 0\n\n                    Button {\n                        Layout.fillWidth: true\n                        text: qsTr(\"Cancel\")\n                        onClicked: {\n                            dccData.fingerprintController.stopEnroll()\n                            dialog.close()\n                        }\n                    }\n                    D.RecommandButton {\n                        Layout.fillWidth: true\n                        text: qsTr(\"Retry Enroll\")\n                        onClicked: {\n                            listview.currentIndex = 0\n                        }\n                    }\n                }\n\n                RowLayout {\n                    id: processBtnLayout\n                    visible: dccData.fingerprintController.addStage === CharaMangerModel.Processing\n                    spacing: 10\n                    Layout.bottomMargin: 0\n                    Layout.leftMargin: 0\n                    Layout.rightMargin: 0\n\n                    Button {\n                        Layout.fillWidth: true\n                        text: qsTr(\"Cancel\")\n                        onClicked: {\n                            dccData.fingerprintController.stopEnroll()\n                            dialog.close()\n                        }\n                    }\n                }\n            }\n\n            DisclaimerControl {\n                id: disclaimerControl\n                height: ListView.view.implicitHeight\n                width: ListView.view.implicitWidth\n                content: qsTr(`\"Biometric authentication\" is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through \"biometric authentication\", the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through \"Service and Support\" in the UOS.`)\n                onCancelClicked: {\n                    listview.currentIndex = 0\n                    agreeCheckbox.checked = false\n                }\n                onAgreeClicked: {\n                    listview.currentIndex = 0\n                    agreeCheckbox.checked = true\n                }\n            }\n        }\n        Connections {\n            target: dccData.model\n            function onEnrollResult(res) {\n                switch(res) {\n                    case CharaMangerModel.Enroll_AuthSuccess:\n                        listview.currentIndex = 1\n                        dialog.show()\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-authentication/qml/AddIrisDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Dialogs\nimport QtQuick.Window\nimport QtQml.Models 2.1\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\nimport org.deepin.dcc.account.biometric 1.0\n\nD.DialogWindow {\n    id: dialog\n    width: 360\n    height: 500\n    minimumWidth: width\n    maximumWidth: minimumWidth\n    modality: Qt.WindowModal\n    title: qsTr(\"Enroll Iris\")\n\n    onVisibleChanged: function() {\n        if (listview.currentIndex != 0 && !visible) {\n            dccData.irisController.stopEnroll()\n        }\n    }\n\n    D.ListView {\n        id: listview\n        implicitWidth: dialog.width - dialog.leftPadding - dialog.rightPadding\n        implicitHeight: 500 - DS.Style.dialogWindow.titleBarHeight - DS.Style.dialogWindow.contentHMargin\n        spacing: DS.Style.dialogWindow.contentHMargin\n        model: itemModel\n        orientation: ListView.Horizontal\n        layoutDirection: Qt.LeftToRight\n        snapMode: ListView.SnapOneItem\n        boundsBehavior: Flickable.StopAtBounds\n        highlightRangeMode: ListView.StrictlyEnforceRange\n        highlightMoveDuration: 0\n        interactive: false\n\n        ObjectModel {\n            id: itemModel\n            // 添加前\n            ColumnLayout {\n                height: ListView.view.implicitHeight\n                width: ListView.view.implicitWidth\n\n                Label {\n                    Layout.fillWidth: true\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    text: dialog.title\n                }\n\n                Item {\n                    Layout.preferredHeight: 50\n                }\n\n                D.DciIcon {\n                    name: \"iris_add\"\n                    Layout.alignment: Qt.AlignCenter\n                }\n\n                Item {\n                    Layout.fillHeight: true\n                }\n\n                Label {\n                    Layout.fillWidth: true\n                    Layout.alignment: Qt.AlignHCenter\n                    Layout.leftMargin: 10\n                    Layout.rightMargin: 10\n                    font: D.DTK.fontManager.t8\n                    wrapMode: Text.WordWrap\n                    text: qsTr(\"Please keep an eye on the device and ensure that both eyes are within the collection area\")\n                    horizontalAlignment: Text.AlignHCenter\n                    color: D.DTK.themeType == D.ApplicationHelper.LightType ? Qt.rgba(0, 0, 0, 0.7) : Qt.rgba(1, 1, 1, 0.7)\n                }\n\n                Item {\n                    Layout.fillHeight: true\n                }\n\n                Row {\n                    Layout.alignment: Qt.AlignCenter\n                    spacing: 0\n\n                    CheckBox {\n                        id: agreeCheckbox\n                        text: qsTr(\"I have read and agree to the\")\n                    }\n\n                    D.ToolButton {\n                        text: qsTr(\"Disclaimer\")\n                        padding: 0\n                        background: null\n                        font: agreeCheckbox.font\n                        textColor: D.Palette {\n                            normal {\n                                common: D.DTK.makeColor(D.Color.Highlight)\n                            }\n                            normalDark: normal\n                            hovered {\n                                common: D.DTK.makeColor(D.Color.Highlight).lightness(+30)\n                            }\n                            hoveredDark: hovered\n                        }\n                        onClicked: {\n                            listview.currentIndex = 3\n                        }\n                    }\n                }\n\n                D.RecommandButton {\n                    spacing: 10\n                    Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n                    Layout.bottomMargin: 0\n                    Layout.leftMargin: 0\n                    Layout.rightMargin: 0\n                    Layout.fillWidth: true\n                    text: qsTr(\"Next\")\n                    enabled: agreeCheckbox.checked\n                    onClicked: {\n                        dccData.irisController.startEnroll();\n                        dialog.hide()\n                    }\n                }\n            }\n\n            // 添加中\n            ColumnLayout {\n                height: ListView.view.implicitHeight\n                width: ListView.view.implicitWidth\n                spacing: 0\n\n                Label {\n                    text: dialog.title\n                    Layout.alignment: Qt.AlignTop | Qt.AlignHCenter\n                }\n\n                Item {\n                    Layout.preferredHeight: 40\n                }\n\n                Item {\n                    Layout.alignment: Qt.AlignCenter\n                    Layout.preferredWidth: 250\n                    Layout.preferredHeight: 250\n\n                    D.DciIcon {\n                        visible: dccData.irisController.addStage === CharaMangerModel.Processing \n                        anchors.centerIn: parent\n                        name: \"iris_scan\"\n                        sourceSize: Qt.size(250, 250)\n                    }\n\n                    Control {\n                        id: loaderControl\n                        visible: dccData.irisController.addStage === CharaMangerModel.Processing \n                        contentItem: D.DciIcon {\n                            id: shortProgressCircle \n                            anchors.fill: parent\n                            sourceSize: Qt.size(250, 250)\n                            name: \"iris_scanning\"\n                            palette: D.DTK.makeIconPalette(loaderControl.palette)\n                        }\n                    }   \n\n                    // loaderControl 旋转动画\n                    RotationAnimation {\n                        target: loaderControl\n                        property: \"rotation\"\n                        from: 0\n                        to: 360\n                        duration: 2000\n                        running: loaderControl.visible\n                        loops: Animation.Infinite\n                    }\n                }\n\n                Item {\n                    visible: dccData.irisController.addStage === CharaMangerModel.Processing \n                    Layout.preferredHeight: 50\n                }\n\n                Label {\n                    text: dccData.irisController.enrollIrisTips\n                    Layout.fillWidth: true\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    font: D.DTK.fontManager.t8\n                    wrapMode: Text.WordWrap\n                    color: D.DTK.themeType == D.ApplicationHelper.LightType ? Qt.rgba(0, 0, 0, 0.7) : Qt.rgba(1, 1, 1, 0.7)\n                }\n                Item {\n                    Layout.fillHeight: true\n                }\n            }\n\n            // 完成页面\n            ColumnLayout {\n                height: ListView.view.implicitHeight\n                width: ListView.view.implicitWidth\n\n                Label {\n                    Layout.fillWidth: true\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    text: dialog.title\n                }\n\n                Item {\n                    Layout.preferredHeight: 50\n                }\n\n                D.DciIcon {\n                    name: dccData.irisController.enrollIrisSuccess ? \"iris_success\" : \"iris_lose\";\n                    Layout.alignment: Qt.AlignCenter\n                    sourceSize: Qt.size(150, 150)\n                }\n\n                Item {\n                    Layout.preferredHeight: 30\n                }\n\n                Label {\n                    visible: dccData.irisController.addStage === CharaMangerModel.Success || dccData.irisController.addStage === CharaMangerModel.Fail\n                    Layout.fillWidth: true\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    wrapMode: Text.WordWrap\n                    color: D.DTK.themeType == D.ApplicationHelper.LightType ? Qt.rgba(0, 0, 0, 1) : Qt.rgba(1, 1, 1, 1)\n                    text: dccData.irisController.addStage === CharaMangerModel.Success ? qsTr(\"Iris enrolled\") : qsTr(\"Failed to enroll your iris\")\n                }\n\n                Label {\n                    text: dccData.irisController.enrollIrisTips\n                    Layout.fillWidth: true\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    font: D.DTK.fontManager.t8\n                    wrapMode: Text.WordWrap\n                    color: D.DTK.themeType == D.ApplicationHelper.LightType ? Qt.rgba(0, 0, 0, 0.7) : Qt.rgba(1, 1, 1, 0.7)\n                }\n\n                Item {\n                    Layout.fillHeight: true\n                }\n\n                RowLayout {\n                    id: successBtnLayout\n                    visible: dccData.irisController.addStage === CharaMangerModel.Success\n                    spacing: 10\n                    Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n                    Layout.bottomMargin: 0\n                    Layout.leftMargin: 0\n                    Layout.rightMargin: 0\n\n                    Button {\n                        Layout.fillWidth: true\n                        text: qsTr(\"Done\")\n                        onClicked: {\n                            dccData.irisController.stopEnroll()\n                            dialog.close()\n                        }\n                    }\n                }\n\n                RowLayout {\n                    id: failedBtnLayout\n                    visible: dccData.irisController.addStage === CharaMangerModel.Fail\n                    spacing: 10\n                    Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n                    Layout.bottomMargin: 0\n                    Layout.leftMargin: 0\n                    Layout.rightMargin: 0\n\n                    Button {\n                        Layout.fillWidth: true\n                        text: qsTr(\"Cancel\")\n                        onClicked: {\n                            dialog.close();\n                        }\n                    }\n                    D.RecommandButton {\n                        Layout.fillWidth: true\n                        text: qsTr(\"Retry Enroll\")\n                        onClicked: {\n                            listview.currentIndex = 0\n                        }\n                    }\n                }\n            }\n            // 免责声明\n            DisclaimerControl {\n                id: disclaimerControl\n                height: ListView.view.implicitHeight\n                width: ListView.view.implicitWidth\n                content: qsTr(`\"Biometric authentication\" is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through \"biometric authentication\", the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through \"Service and Support\" in the UOS.`)\n                onCancelClicked: {\n                    listview.currentIndex = 0\n                    agreeCheckbox.checked = false\n                }\n                onAgreeClicked: {\n                    listview.currentIndex = 0\n                    agreeCheckbox.checked = true\n                }\n            }\n        }\n        Connections {\n            target: dccData.irisController\n\n            function onAddStageChanged() {\n                if (dccData.irisController.addStage === CharaMangerModel.Success) {\n                    listview.currentIndex = 2\n                } else if (dccData.irisController.addStage === CharaMangerModel.Fail) {\n                    listview.currentIndex = 2\n                }\n            }\n        }\n\n        Connections {\n            target: dccData.model\n            function onTryStartInputIris(res) {\n                listview.currentIndex = 1\n                dialog.show()\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-authentication/qml/Authentication.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport org.deepin.dcc 1.0\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\n\nDccObject {\n    id: authentication\n    property bool hasFingerprint: false\n    property bool hasChara: false\n    name: \"authentication\"\n    parentName: \"accountsloginMethod\"\n    displayName: qsTr(\"Biometric Authentication\")\n    weight: 30\n    visible: (hasFingerprint || hasChara) && !DccApp.isTreeland()\n\n\n    DccDBusInterface {\n        property var driverInfo\n        service: \"org.deepin.dde.Authenticate1\"\n        path: \"/org/deepin/dde/Authenticate1/CharaManger\"\n        inter: \"org.deepin.dde.Authenticate1.CharaManger\"\n        connection: DccDBusInterface.SystemBus\n        onDriverInfoChanged: {\n            let jsonData = JSON.parse(driverInfo)\n            let found = false\n            for (var i = 0; i < jsonData.length; i++) {\n                if (jsonData[i].CharaType !== 0) {\n                    authentication.hasChara = true\n                    return\n                }\n            }\n            authentication.hasChara = found\n        }\n    }\n\n    DccDBusInterface {\n        property var defaultDevice\n        service: \"org.deepin.dde.Authenticate1\"\n        path: \"/org/deepin/dde/Authenticate1/Fingerprint\"\n        inter: \"org.deepin.dde.Authenticate1.Fingerprint\"\n        connection: DccDBusInterface.SystemBus\n        onDefaultDeviceChanged: {\n            authentication.hasFingerprint = defaultDevice !== \"\"\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-authentication/qml/AuthenticationMain.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc.account.biometric 1.0\n\nDccObject {\n    id: root\n    property var objParentName: \"authentication\"\n\n    DccTitleObject {\n        name: \"BiometricAuthenticationTitle\"\n        parentName: objParentName\n        weight: 10\n        displayName: qsTr(\"Biometric Authentication\")\n    }\n\n    DccRepeater {\n        id: rep\n        model: [\n            {\n                authTitle: qsTr(\"Face\"),\n                authDescription: qsTr(\"Up to 5 facial data can be entered\"),\n                authIcon: \"user_biometric_face\",\n                authType: CharaMangerModel.Type_Face,\n                available: dccData.model.faceDriverVaild,\n                max: 5\n            },\n            {\n                authTitle: qsTr(\"Fingerprint\"),\n                authDescription: qsTr(\"Identifying user identity through scanning fingerprints\"),\n                authIcon: \"user_biometric_fingerprint\",\n                authType: CharaMangerModel.Type_Finger,\n                available: dccData.model.fingerDriverVaild,\n                max: 10\n            },\n            {\n                authTitle: qsTr(\"Iris\"),\n                authDescription: qsTr(\"Identity recognition through iris scanning\"),\n                authIcon: \"user_biometric_iris\",\n                authType: CharaMangerModel.Type_Iris,\n                available: dccData.model.irisDriverVaild,\n                max: 5\n            }\n        ]\n        property var listDatas: [dccData.model.facesList, dccData.model.thumbsList, dccData.model.irisList]\n        delegate: DccObject {\n            id: authenticationGroupView\n            name: \"authenticationGroupView\"\n            parentName: root.objParentName\n            weight: 20 + index\n            pageType: DccObject.Item\n            visible: modelData.available\n            page: DccGroupView {}\n\n            DccObject {\n                id: repeaterHeaderView\n                name: \"repeaterHeaderView\"\n                parentName: root.objParentName + \"/authenticationGroupView\"\n                description: modelData.authDescription\n                displayName: modelData.authTitle\n                icon: modelData.authIcon\n                backgroundType: DccObject.Normal\n                property bool listVisible: false\n                property real iconSize: 30\n                weight: 20\n                pageType: DccObject.Editor\n                page: RowLayout {\n                    Control {\n                        id: control\n                        contentItem: D.DciIcon {\n                            Layout.rightMargin: 5\n                            name: \"arrow_ordinary_up\"\n                            sourceSize: Qt.size(12, 12)\n                            theme: D.DTK.themeType\n                            palette: D.DTK.makeIconPalette(control.palette)\n\n                            rotation: repeaterHeaderView.listVisible ? 0 : 180\n\n                            Behavior on rotation {\n                                NumberAnimation {\n                                    duration: 100\n                                }\n                            }\n                        }\n                    }\n                }\n\n                Connections {\n                    target: repeaterHeaderView.parentItem\n                    function onClicked() {\n                        repeaterHeaderView.listVisible = !repeaterHeaderView.listVisible;\n                    }\n                }\n            }\n            DccRepeater {\n                id: itemRep\n                property var authType: modelData.authType\n                model: repeaterHeaderView.listVisible ? rep.listDatas[index] : []\n                delegate: DccObject {\n                    name: modelData\n                    parentName: authenticationGroupView.name\n                    displayName: modelData\n                    pageType: DccObject.Item\n                    weight: 30 + index\n                    page: RowLayout {\n                        id: layout\n\n                        function requestRename(id, newName) {\n                            switch (itemRep.authType) {\n                            case CharaMangerModel.Type_Face:\n                                dccData.faceController.rename(id, newName);\n                                break;\n                            case CharaMangerModel.Type_Finger:\n                                dccData.fingerprintController.rename(id, newName);\n                                break;\n                            case CharaMangerModel.Type_Iris:\n                                dccData.irisController.rename(id, newName);\n                                break;\n                            }\n                        }\n\n                        function requestDelete(id) {\n                            switch (itemRep.authType) {\n                            case CharaMangerModel.Type_Face:\n                                dccData.faceController.remove(id);\n                                break;\n                            case CharaMangerModel.Type_Finger:\n                                dccData.fingerprintController.remove(id);\n                                break;\n                            case CharaMangerModel.Type_Iris:\n                                dccData.irisController.remove(id);\n                                break;\n                            }\n                        }\n\n                        Rectangle {\n                            id: textInputBackground\n                            property D.Palette alertBackgroundColor: DS.Style.edit.alertBackground\n                            Layout.leftMargin: 10\n                            Layout.preferredHeight: DS.Style.itemDelegate.height\n                            Layout.maximumWidth: 200\n                            Layout.minimumWidth: textInputItem.contentWidth + 16\n                            radius: 4\n                            color: alert.visible ? D.ColorSelector.alertBackgroundColor : \"transparent\"\n\n                            TextInput {\n                                id: textInputItem\n                                property int maxLength: 15\n                                anchors.fill: parent\n                                anchors.leftMargin: 8\n                                anchors.rightMargin: 8\n                                text: modelData\n                                verticalAlignment: Text.AlignVCenter\n                                horizontalAlignment: Text.AlignLeft\n                                focus: false\n                                wrapMode: Text.NoWrap\n                                readOnly: true\n                                focusPolicy: Qt.NoFocus\n                                color: palette.text\n                                clip: true\n                                selectByMouse: true\n\n                                onTextEdited: {\n                                    // 实时检测：过滤非法字符并限制长度\n                                    var filteredText = text;\n                                    // 过滤非法字符（只允许字母、数字、中文、下划线）\n                                    filteredText = filteredText.replace(/[^A-Za-z0-9\\u4e00-\\u9fa5_]/g, \"\");\n                                    \n                                    // 检查是否超长\n                                    if (filteredText.length > maxLength) {\n                                        alert.show(qsTr(\"No more than 15 characters\"));\n                                        filteredText = filteredText.slice(0, maxLength);\n                                    }\n                                    \n                                    if (text !== filteredText) {\n                                        text = filteredText;\n                                    }\n                                }\n\n                                onEditingFinished: {\n                                    if (!checkInputInvalid()) {\n                                        text = modelData;\n                                        textInputItem.text = Qt.binding(function() { \n                                            return modelData\n                                        })\n                                        return;\n                                    }\n                                    focus = false;\n                                    if (modelData !== textInputItem.text) {\n                                        layout.requestRename(modelData, text);\n                                    }\n                                    textInputItem.text = Qt.binding(function() { \n                                        return modelData\n                                    })\n                                }\n                                onFocusChanged: {\n                                    if (!focus)\n                                        readOnly = true;\n                                }\n                                Keys.onEnterPressed: {\n                                    focus = false;\n                                }\n                                Keys.onReturnPressed: {\n                                    focus = false;\n                                }\n\n                                function checkInputInvalid() {\n                                    var reg = /^[A-Za-z0-9\\u4e00-\\u9fa5_]+$/;\n                                    var isValid = text.length === 0 || reg.test(textInputItem.text);\n                                    var isOverLength = textInputItem.text.length > maxLength;\n                                    var isEmpty = textInputItem.text.length === 0;\n                                    \n                                    var nameList = [];\n                                    switch (itemRep.authType) {\n                                    case CharaMangerModel.Type_Face:\n                                        nameList = dccData.model.facesList;\n                                        break;\n                                    case CharaMangerModel.Type_Finger:\n                                        nameList = dccData.model.thumbsList;\n                                        break;\n                                    case CharaMangerModel.Type_Iris:\n                                        nameList = dccData.model.irisList;\n                                        break;\n                                    }\n                                    \n                                    var isDuplicate = nameList.includes(textInputItem.text) && \n                                                      textInputItem.text !== modelData;\n\n                                    if (isEmpty) {\n                                        alert.show(qsTr(\"The name cannot be empty\"));\n                                    } else if (!isValid && isOverLength) {\n                                        alert.show(qsTr(\"Use letters, numbers and underscores only, and no more than 15 characters\"));\n                                    } else if (!isValid) {\n                                        alert.show(qsTr(\"Use letters, numbers and underscores only\"));\n                                    } else if (isOverLength) {\n                                        alert.show(qsTr(\"No more than 15 characters\"));\n                                    } else if (isDuplicate) {\n                                        alert.show(qsTr(\"This name already exists\"));\n                                    } else {\n                                        return true;\n                                    }\n                                    return false;\n                                }\n                            }\n                        }\n\n                        D.AlertToolTip {\n                            id: alert\n                            target: layout\n                            timeout: 3000\n                            visible: false\n\n                            function show(msg) {\n                                text = msg;\n                                visible = true;                                \n                            }\n                        }\n\n                        Item {\n                            Layout.fillWidth: true\n                        }\n                        D.ToolButton {\n                            id: editButton\n                            visible: hoverHandler.hovered\n                            icon.name: \"dcc_edit\"\n                            background: Rectangle {\n                                color: \"transparent\"\n                            }\n                            onClicked: {\n                                textInputItem.readOnly = false;\n                                textInputItem.focus = true;\n                            }\n                        }\n                        D.ToolButton {\n                            id: deleteButton\n                            visible: hoverHandler.hovered\n                            icon.name: \"dcc_delete\"\n                            background: Rectangle {\n                                color: \"transparent\"\n                            }\n                            onClicked: {\n                                layout.requestDelete(modelData);\n                            }\n                        }\n\n                        HoverHandler {\n                            id: hoverHandler\n                        }\n                    }\n                }\n            }\n\n            DccObject {\n                name: root.objParentName + \"FaceAuthentication\"\n                visible: repeaterHeaderView.listVisible && rep.listDatas[index].length < modelData.max\n                parentName: authenticationGroupView.name\n                pageType: DccObject.Item\n                weight: 50\n                page: RowLayout {\n                    D.ToolButton {\n                        implicitHeight: DS.Style.itemDelegate.height\n                        Layout.leftMargin: 5\n                        textColor: D.Palette {\n                            normal {\n                                common: D.DTK.makeColor(D.Color.Highlight)\n                            }\n                            normalDark: normal\n                            hovered {\n                                common: D.DTK.makeColor(D.Color.Highlight).lightness(+30)\n                            }\n                            hoveredDark: hovered\n                        }\n                        text: qsTr(\"Add a new %1 ...\").arg(modelData.authTitle)\n                        font: D.DTK.fontManager.t6\n                        background: Item {}\n                        onClicked: {\n                            startEnrollByType(modelData.authType);\n                        }\n\n                        function startEnrollByType(type) {\n                            switch (type) {\n                            case CharaMangerModel.Type_Face:\n                                addFaceDialogLoader.active = true;\n                                addFaceDialogLoader.item.show();\n                                break;\n                            case CharaMangerModel.Type_Finger:\n                                addFingerDialogLoader.active = true;\n                                addFingerDialogLoader.item.show();\n                                break;\n                            case CharaMangerModel.Type_Iris:\n                                addIrisDialogLoader.active = true;\n                                addIrisDialogLoader.item.show();\n                                break;\n                            }\n                        }\n                    }\n                }\n            }\n\n            Loader {\n                id: addFaceDialogLoader\n                active: false\n                sourceComponent: AddFaceinfoDialog {\n                    onClosing: function (close) {\n                        addFaceDialogLoader.active = false;\n                    }\n                }\n            }\n\n            Loader {\n                id: addFingerDialogLoader\n                active: false\n                sourceComponent: AddFingerDialog {\n                    onClosing: function (close) {\n                        addFingerDialogLoader.active = false;\n                    }\n                }\n            }\n\n            Loader {\n                id: addIrisDialogLoader\n                active: false\n                sourceComponent: AddIrisDialog {\n                    onClosing: function (close) {\n                        addIrisDialogLoader.active = false;\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-authentication/qml/DisclaimerControl.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls\nimport QtQuick.Layouts\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nColumnLayout {  \n    id: control\n    property alias content: label.text\n\n    signal cancelClicked()\n    signal agreeClicked()\n\n    spacing: 5\n    Label {\n        Layout.fillWidth: true\n        horizontalAlignment: Text.AlignHCenter\n        verticalAlignment: Text.AlignVCenter\n        text: qsTr(\"Disclaimer\")\n        font: D.DTK.fontManager.t5\n    }\n\n    ScrollView {\n        id: scrollView\n        Layout.fillWidth: true\n        Layout.fillHeight: true\n        Layout.topMargin: 15\n        ScrollBar.horizontal.policy: ScrollBar.AlwaysOff\n        contentWidth: scrollView.width\n\n        D.Label {\n            id: label\n            width: scrollView.availableWidth\n            wrapMode: Text.WordWrap\n            font: D.DTK.fontManager.t8\n        }\n    }\n\n    RowLayout {\n        spacing: 10\n        Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n        Layout.topMargin: 0\n        Layout.leftMargin: 0\n        Layout.rightMargin: 0\n\n        Button {\n            Layout.fillWidth: true\n            text: qsTr(\"Cancel\")\n            onClicked: {\n                control.cancelClicked()\n            }\n        }\n        D.RecommandButton {\n            Layout.fillWidth: true\n            text: qsTr(\"Agree\")\n            onClicked: {\n                control.agreeClicked()\n            }\n        }\n    }\n}"
  },
  {
    "path": "src/plugin-bluetooth/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\nset(BlueTooth_Name blueTooth)\nfile(GLOB_RECURSE blueTooth_SRCS\n    \"operation/*.cpp\"\n    \"operation/*.h\"\n    \"operation/qrc/bluetooth.qrc\"\n)\n\nadd_library(${BlueTooth_Name} MODULE\n    ${blueTooth_SRCS}\n    operation/bluetoothdevicemodel.h operation/bluetoothdevicemodel.cpp\n    operation/bluetoothadaptersmodel.h operation/bluetoothadaptersmodel.cpp\n\n)\n\nset(BlueTooth_Libraries\n    ${DCC_FRAME_Library}\n    ${QT_NS}::DBus\n    ${DTK_NS}::Gui\n)\n\ntarget_link_libraries(${BlueTooth_Name} PRIVATE\n    ${BlueTooth_Libraries}\n)\n\ndcc_install_plugin(NAME ${BlueTooth_Name} TARGET ${BlueTooth_Name})\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothadapter.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"bluetoothadapter.h\"\n#include \"bluetoothdbusproxy.h\"\n\n#include <QDBusObjectPath>\n#include <QJsonArray>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QLoggingCategory>\n\nQ_LOGGING_CATEGORY(DdcBluetoothAdapter, \"dcc-bluetooth-adapter\")\n\nBluetoothAdapter::BluetoothAdapter(BluetoothDBusProxy *proxy, QObject *parent)\n    : QObject(parent)\n    , m_id(\"\")\n    , m_name(\"\")\n    , m_powered(false)\n    , m_discovering(false)\n    , m_discoverable(false)\n    , m_myDevices(new BluetoothDeviceModel(this))\n    , m_otherDevices(new BluetoothDeviceModel(this))\n    , m_myDeviceVisible(false)\n    , m_bluetoothDBusProxy(proxy)\n{\n}\n\nvoid BluetoothAdapter::setName(const QString &name)\n{\n    if (name != m_name) {\n        m_name = name;\n        Q_EMIT nameChanged(name);\n    }\n}\n\nvoid BluetoothAdapter::addDevice(const BluetoothDevice *device)\n{\n    if (!deviceById(device->id())) {\n        m_devicesId << device->id();\n        m_devices[device->id()] = device;\n        \n        connect(device, &BluetoothDevice::stateChanged, this, &BluetoothAdapter::onDeviceStateChanged, Qt::UniqueConnection);\n        \n        //打印配对设备信息,方便查看设备显示顺序\n        if (device->paired()) {\n            qCDebug(DdcBluetoothAdapter) << \"BluetoothAdapter add device \" << device->name();\n            if (device->state() != BluetoothDevice::StateConnected) {\n                m_myDevices->addDevice(const_cast<BluetoothDevice*>(device));\n            } else {\n                m_myDevices->insertItem(0, const_cast<BluetoothDevice*>(device));\n            }\n\n            setMyDeviceVisible(true);\n\n        } else {\n            qCDebug(DdcBluetoothAdapter) << \"BluetoothAdapter add other device \" << device->name();\n            m_otherDevices->insertItem(m_otherDevices->rowCount(), const_cast<BluetoothDevice*>(device));\n        }\n\n        Q_EMIT deviceAdded(device);\n    }\n}\n\nvoid BluetoothAdapter::removeDevice(const QString &deviceId)\n{\n    const BluetoothDevice *device = nullptr;\n\n    device = deviceById(deviceId);\n    if (device) {\n        m_devicesId.removeOne(deviceId);\n        m_devices.remove(deviceId);\n\n        m_myDevices->removeDevice(deviceId);\n        m_otherDevices->removeDevice(deviceId);\n        setMyDeviceVisible(m_myDevices->rowCount());\n        Q_EMIT deviceRemoved(deviceId);\n    }\n}\n\nvoid BluetoothAdapter::setPowered(bool powered, bool discovering)\n{\n    if (!powered) {\n        Q_EMIT closeDetailPage();\n    }\n    if (powered != m_powered || (powered && m_powered && discovering != m_discovering)) {\n        m_powered = powered;\n        m_discovering = discovering;\n        Q_EMIT poweredChanged(powered, discovering);\n    }\n}\n\nvoid BluetoothAdapter::setAdapterPowered(const bool &powered)\n{\n    // 关闭蓝牙之前删除历史蓝牙设备列表，确保完全是删除后再设置开关\n    if (powered) {\n        m_bluetoothDBusProxy->SetAdapterPowered(QDBusObjectPath(id()), true, this, SLOT(onSetAdapterPowered()), SLOT(onSetAdapterPoweredError()));\n    } else {\n        m_bluetoothDBusProxy->ClearUnpairedDevice(this, SLOT(onClearUnpairedDevice()));\n    }\n}\n\nvoid BluetoothAdapter::onClearUnpairedDevice()\n{\n    m_bluetoothDBusProxy->SetAdapterPowered(QDBusObjectPath(id()), false, this, SLOT(onSetAdapterPowered()), SLOT(onSetAdapterPoweredError()));\n}\n\nvoid BluetoothAdapter::onSetAdapterPowered()\n{\n    Q_EMIT loadStatus();\n}\n\nvoid BluetoothAdapter::onSetAdapterPoweredError()\n{\n    Q_EMIT poweredChanged(powered(), discovering());\n}\n\nvoid BluetoothAdapter::onDeviceStateChanged()\n{\n    BluetoothDevice *device = qobject_cast<BluetoothDevice*>(sender());\n    if (device) {\n        updateDeviceData(device);\n    }\n}\n\nbool BluetoothAdapter::otherDeviceVisible() const\n{\n    return m_otherDeviceVisible;\n}\n\nvoid BluetoothAdapter::setOtherDeviceVisible(bool newOtherDeviceVisible)\n{\n    m_otherDeviceVisible = newOtherDeviceVisible;\n}\n\nbool BluetoothAdapter::myDeviceVisible() const\n{\n    return m_myDeviceVisible;\n}\n\nvoid BluetoothAdapter::setMyDeviceVisible(bool newMyDeviceVisible)\n{\n    qDebug() << \"BluetoothAdapter setMyDeviceVisible :\" << newMyDeviceVisible << m_myDeviceVisible;\n    if (newMyDeviceVisible != m_myDeviceVisible) {\n        m_myDeviceVisible = newMyDeviceVisible;\n        Q_EMIT myDeviceVisibleChanged(m_id);\n    }\n}\n\nBluetoothDeviceModel *BluetoothAdapter::otherDevices() const\n{\n    return m_otherDevices;\n}\n\nvoid BluetoothAdapter::updateDeviceData(BluetoothDevice *device)\n{\n    if (device->paired()) {\n        qCDebug(DdcBluetoothAdapter) << \"BluetoothAdapter add device \" << device->name();\n        m_otherDevices->removeDevice(device->id());\n        if (m_myDevices->containDevice(device)) {\n            m_myDevices->updateData(device);\n        } else {\n            if (device->state() != BluetoothDevice::StateConnected) {\n                m_myDevices->addDevice(const_cast<BluetoothDevice*>(device));\n            } else {\n                m_myDevices->insertItem(0, const_cast<BluetoothDevice*>(device));\n            }\n\n            setMyDeviceVisible(true);\n        }\n    } else {\n        qCDebug(DdcBluetoothAdapter) << \"BluetoothAdapter add other device \" << device->name();\n        m_myDevices->removeDevice(device->id());\n        if (m_otherDevices->containDevice(device)) {\n            m_otherDevices->updateData(device);\n        } else {\n            m_otherDevices->insertItem(m_otherDevices->rowCount(), const_cast<BluetoothDevice*>(device));\n        }\n        setMyDeviceVisible(m_myDevices->rowCount());\n    }\n}\n\nvoid BluetoothAdapter::setdisplaySwitch(bool displaySwitch)\n{\n    m_otherDevices->setDisplaySwitch(displaySwitch);\n    m_otherDevices->updateAllData();\n}\n\nBluetoothDeviceModel *BluetoothAdapter::myDevices() const\n{\n    return m_myDevices;\n}\n\nvoid BluetoothAdapter::setDiscoverabled(const bool discoverable)\n{\n    if (m_discoverable == discoverable) {\n        return;\n    }\n    m_discoverable = discoverable;\n    Q_EMIT discoverableChanged(discoverable);\n}\n\nQMap<QString, const BluetoothDevice *> BluetoothAdapter::devices() const\n{\n    return m_devices;\n}\n\nQList<QString> BluetoothAdapter::devicesId() const\n{\n    return m_devicesId;\n}\n\nconst BluetoothDevice *BluetoothAdapter::deviceById(const QString &id) const\n{\n    return m_devices.keys().contains(id) ? m_devices[id] : nullptr;\n}\n\nvoid BluetoothAdapter::setId(const QString &id)\n{\n    m_id = id;\n\n    m_myDevices->setAdapterId(id);\n    m_otherDevices->setAdapterId(id);\n}\n\nvoid BluetoothAdapter::inflate(const QJsonObject &obj)\n{\n    const QString path = obj[\"Path\"].toString();\n    const QString alias = obj[\"Alias\"].toString();\n    const bool powered = obj[\"Powered\"].toBool();\n    const bool discovering = obj[\"Discovering\"].toBool();\n    const bool discovered = obj[\"Discoverable\"].toBool();\n\n    setDiscoverabled(discovered);\n    setId(path);\n    setName(alias);\n    setPowered(powered, discovering);\n\n    QDBusObjectPath dPath(path);\n    m_bluetoothDBusProxy->GetDevices(dPath, this, SLOT(onGetDevices(QString)));\n}\n\nvoid BluetoothAdapter::inflateDevice(BluetoothDevice *device, const QJsonObject &deviceObj)\n{\n    const QString id = deviceObj[\"Path\"].toString();\n    const QString addr = deviceObj[\"Address\"].toString();\n    const QString alias = deviceObj[\"Alias\"].toString();\n    const QString name = deviceObj[\"Name\"].toString();\n    const bool paired = deviceObj[\"Paired\"].toBool();\n    const BluetoothDevice::State state = BluetoothDevice::State(deviceObj[\"State\"].toInt());\n    const bool connectState = deviceObj[\"ConnectState\"].toBool();\n    const QString icon = deviceObj[\"Icon\"].toString();\n    const int battery = deviceObj[\"Battery\"].toInt();\n\n    //    if (icon == \"audio-card\") {\n    //        m_connectingAudioDevice = (BluetoothDevice::StateAvailable == state);\n    //    }\n\n    // FIXME: If the name and alias of the Bluetooth device are both empty, it will not be updated by default.\n    // To solve the problem of blank device name display.\n    if (alias.isEmpty() && name.isEmpty())\n        return;\n\n    device->setId(id);\n    device->setAddress(addr);\n    device->setName(name);\n    device->setAlias(alias);\n    device->setPaired(paired);\n    device->setState(state, connectState);\n    device->setDeviceType(icon);\n    device->setBattery(battery);\n}\n\nvoid BluetoothAdapter::onGetDevices(QString replyStr)\n{\n    QStringList tmpList;\n    QJsonDocument doc = QJsonDocument::fromJson(replyStr.toUtf8());\n    QJsonArray arr = doc.array();\n    for (QJsonValue val : arr) {\n        const QString id = val.toObject()[\"Path\"].toString();\n        const QString name = val.toObject()[\"Name\"].toString();\n\n        const BluetoothDevice *result = deviceById(id);\n        BluetoothDevice *device = const_cast<BluetoothDevice *>(result);\n        if (!device) {\n            device = new BluetoothDevice(this);\n        } else {\n            if (device->name() != name)\n                removeDevice(device->id());\n        }\n        inflateDevice(device, val.toObject());\n        addDevice(device);\n\n        tmpList << id;\n    }\n\n    for (const BluetoothDevice *device : devices()) {\n        if (!tmpList.contains(device->id())) {\n            removeDevice(device->id());\n\n            BluetoothDevice *target = const_cast<BluetoothDevice *>(device);\n            if (target)\n                target->deleteLater();\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothadapter.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCC_BLUETOOTH_ADAPTER_H\n#define DCC_BLUETOOTH_ADAPTER_H\n\n#include <QObject>\n\n#include \"bluetoothdevice.h\"\n#include \"bluetoothdevicemodel.h\"\n\nclass QJsonObject;\nclass BluetoothDBusProxy;\n\nclass BluetoothAdapter : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit BluetoothAdapter(BluetoothDBusProxy *proxy, QObject *parent = 0);\n\n    inline QString name() const { return m_name; }\n    void setName(const QString &name);\n\n    inline QString id() const { return m_id; }\n    void setId(const QString &id);\n\n    QMap<QString, const BluetoothDevice *> devices() const;\n    QList<QString> devicesId() const;\n    const BluetoothDevice *deviceById(const QString &id) const;\n\n    inline bool powered() const { return m_powered; }\n    void setPowered(bool powered, bool discovering);\n    void setAdapterPowered(const bool &powered);\n\n    inline bool discoverabled() const { return m_discoverable; }\n    void setDiscoverabled(const bool discoverable);\n\n    inline bool discovering() const { return m_discovering; }\n\n    void inflate(const QJsonObject &obj);\n    void inflateDevice(BluetoothDevice *device, const QJsonObject &deviceObj);\n\n    BluetoothDeviceModel *myDevices() const;\n\n    BluetoothDeviceModel *otherDevices() const;\n\n    void updateDeviceData(BluetoothDevice *device);\n    void setdisplaySwitch(bool displaySwitch);\n\n    bool myDeviceVisible() const;\n    void setMyDeviceVisible(bool newMyDeviceVisible);\n\n    bool otherDeviceVisible() const;\n    void setOtherDeviceVisible(bool newOtherDeviceVisible);\n\npublic Q_SLOTS:\n    void addDevice(const BluetoothDevice *device);\n    void removeDevice(const QString &deviceId);\n\n    void onGetDevices(QString replyStr);\n\nQ_SIGNALS:\n    void nameChanged(const QString &name) const;\n    void deviceAdded(const BluetoothDevice *device) const;\n    void deviceRemoved(const QString &deviceId) const;\n    void poweredChanged(const bool &powered, const bool &discovering) const;\n    void loadStatus() const;\n    void discoverableChanged(const bool &discoverable) const;\n    void closeDetailPage() const;\n    void myDeviceVisibleChanged(const QString &id);\n\nprivate Q_SLOTS:\n    void onClearUnpairedDevice();\n    void onSetAdapterPowered();\n    void onSetAdapterPoweredError();\n    void onDeviceStateChanged();\n\nprivate:\n    QString m_id;\n    QString m_name;\n    bool m_powered;\n    bool m_discovering;\n    bool m_discoverable;\n    QMap<QString, const BluetoothDevice *> m_devices;\n\n    BluetoothDeviceModel* m_myDevices;\n    BluetoothDeviceModel* m_otherDevices;\n\n    bool m_myDeviceVisible = false;\n    bool m_otherDeviceVisible = false;\n\n    //按序存放设备id,确定设备显示顺序\n    QList<QString> m_devicesId;\n    BluetoothDBusProxy *m_bluetoothDBusProxy;\n};\n\n#endif // DCC_BLUETOOTH_ADAPTER_H\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothadaptersmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"bluetoothadaptersmodel.h\"\n\nBlueToothAdaptersModel::BlueToothAdaptersModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n}\n\nvoid BlueToothAdaptersModel::updateAdapter(BluetoothAdapter *adapter)\n{\n    for(int index = 0; index < m_bluetoothAdapterList.count(); index++ ) {\n        const BluetoothAdapter *item = m_bluetoothAdapterList.at(index);\n        if (item->id() == adapter->id()) {\n            QModelIndex modelIndex = createIndex(index, 0);\n            qDebug() << \"updateAdapter data: \" << adapter->name() << adapter->discovering();\n            emit dataChanged(modelIndex, modelIndex, {});\n            return;\n        }\n    }\n    addAdapter(adapter);\n}\n\nint BlueToothAdaptersModel::rowCount(const QModelIndex &parent) const\n{\n    // For list models only the root node (an invalid parent) should return the list's size. For all\n    // other (valid) parents, rowCount() should return 0 so that it does not become a tree model.\n    if (parent.isValid())\n        return 0;\n\n    return m_bluetoothAdapterList.count();\n}\n\nQVariant BlueToothAdaptersModel::data(const QModelIndex &index, int role) const\n{\n    if (!index.isValid())\n        return QVariant();\n\n    if (index.row() < 0 || index.row() >= m_bluetoothAdapterList.count())\n        return QVariant();\n\n    const BluetoothAdapter* bluetoothAdapterData = m_bluetoothAdapterList[index.row()];\n\n    switch (role) {\n    case  Name:\n        return bluetoothAdapterData->name();\n    case Id:\n        return bluetoothAdapterData->id();\n    case Powered:\n        return bluetoothAdapterData->powered();\n    case Discovering:\n        return bluetoothAdapterData->discovering();\n    case Discoverabled:\n        return bluetoothAdapterData->discoverabled();\n    case NameDetail:\n        return bluetoothAdapterData->powered() ? tr(\"Bluetooth is turned on, and the name is displayed as \\\"%1\\\"\").arg(bluetoothAdapterData->name()) : tr(\"Bluetooth is turned off, and the name is displayed as \\\"%1\\\"\").arg(bluetoothAdapterData->name()) ;\n    case MyDevice:\n        return QVariant::fromValue(bluetoothAdapterData->myDevices());\n    case OtherDevice:\n        return QVariant::fromValue(bluetoothAdapterData->otherDevices());\n    case MyDeviceVisiable:\n        return bluetoothAdapterData->myDeviceVisible() && bluetoothAdapterData->powered();\n    case OtherDeviceVisiable:\n        return bluetoothAdapterData->otherDeviceVisible();\n    default:\n        break;\n    }\n    return QVariant();\n}\n\nvoid BlueToothAdaptersModel::addAdapter(BluetoothAdapter* adapter)\n{\n    int row = rowCount();\n    beginInsertRows(QModelIndex(), row, row);\n    m_bluetoothAdapterList.append(adapter);\n    endInsertRows();\n\n    connect(adapter, &BluetoothAdapter::myDeviceVisibleChanged, this, &BlueToothAdaptersModel::onUpdateAdapter);\n}\n\nvoid BlueToothAdaptersModel::removeAdapter(const QString &adapterId)\n{\n    for(int index = 0; index < m_bluetoothAdapterList.count(); index++ ) {\n        const BluetoothAdapter *item = m_bluetoothAdapterList.at(index);\n        if (item->id() == adapterId) {\n            removeRows(index, 1);\n            return;\n        }\n    }\n}\n\nbool BlueToothAdaptersModel::insertRows(int row, int count, const QModelIndex &parent)\n{\n    beginInsertRows(parent, row, row + count - 1);\n    // FIXME: Implement me!\n\n\n    endInsertRows();\n    return true;\n}\n\nbool BlueToothAdaptersModel::removeRows(int row, int count, const QModelIndex &parent)\n{\n    beginRemoveRows(parent, row, row + count - 1);\n    disconnect(m_bluetoothAdapterList[row], &BluetoothAdapter::myDeviceVisibleChanged, this, &BlueToothAdaptersModel::onUpdateAdapter);\n    m_bluetoothAdapterList.remove(row);\n    endRemoveRows();\n    return true;\n}\n\nvoid BlueToothAdaptersModel::setDisplaySwitch(bool newDisplaySwitch)\n{\n    for (auto item : m_bluetoothAdapterList) {\n        item->setdisplaySwitch(newDisplaySwitch);\n    }\n}\n\nvoid BlueToothAdaptersModel::onUpdateAdapter(const QString &adapterId)\n{\n    for(int index = 0; index < m_bluetoothAdapterList.count(); index++ ) {\n        const BluetoothAdapter *item = m_bluetoothAdapterList.at(index);\n        if (item->id() == adapterId) {\n            QModelIndex modelIndex = createIndex(index, 0);\n            emit dataChanged(modelIndex, modelIndex, {});\n            return;\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothadaptersmodel.h",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef BLUETOOTHADAPTERSMODEL_H\n#define BLUETOOTHADAPTERSMODEL_H\n\n#include <QAbstractListModel>\n\n#include \"bluetoothadapter.h\"\n\nclass BlueToothAdaptersModel : public QAbstractListModel\n{\n    Q_OBJECT\n\npublic:\n\n    enum bluethoothAdapterRoles {\n        Name = Qt::UserRole + 1,\n        Id,\n        Powered,\n        Discovering,\n        Discoverabled,\n        NameDetail,\n        MyDevice,\n        OtherDevice,\n        MyDeviceVisiable,\n        OtherDeviceVisiable\n    };\n\n    explicit BlueToothAdaptersModel(QObject *parent = nullptr);\n\n    void updateAdapter(BluetoothAdapter* adapter);\n\n    // Basic functionality:\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n\n    void addAdapter(BluetoothAdapter* adapter);\n\n    void removeAdapter(const QString &adapterId);\n    // Add data:\n    bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    // Remove data:\n    bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    QHash<int, QByteArray> roleNames() const override {\n        QHash<int, QByteArray> roles;\n        roles[Name] = \"name\";\n        roles[Id] = \"id\";\n        roles[Powered] = \"powered\";\n        roles[Discovering] = \"discovering\";\n        roles[Discoverabled] = \"discoverabled\";\n        roles[NameDetail] = \"nameDetail\";\n        roles[MyDevice] = \"myDevice\";\n        roles[OtherDevice] = \"otherDevice\";\n        roles[MyDeviceVisiable] = \"myDeviceVisiable\";\n        roles[OtherDeviceVisiable] = \"otherDeviceVisiable\";\n        return roles;\n    }\n\n public Q_SLOTS:\n    void setDisplaySwitch(bool newDisplaySwitch);\n    void onUpdateAdapter(const QString & adapterId);\n\nprivate:\n    QList<BluetoothAdapter*> m_bluetoothAdapterList;\n};\n\n#endif // BLUETOOTHADAPTERSMODEL_H\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothdbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"bluetoothdbusproxy.h\"\n\n#include <QMetaObject>\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusPendingReply>\n\nconst static QString BluetoothService = \"org.deepin.dde.Bluetooth1\";\nconst static QString BluetoothPath = \"/org/deepin/dde/Bluetooth1\";\nconst static QString BluetoothInterface = \"org.deepin.dde.Bluetooth1\";\n\nconst static QString AirPlaneModeService = \"org.deepin.dde.AirplaneMode1\";\nconst static QString AirPlaneModePath = \"/org/deepin/dde/AirplaneMode1\";\nconst static QString AirPlaneModeInterface = \"org.deepin.dde.AirplaneMode1\";\n\n\nBluetoothDBusProxy::BluetoothDBusProxy(QObject *parent)\n    : QObject(parent)\n    , m_bluetoothInter(new DDBusInterface(BluetoothService, BluetoothPath, BluetoothInterface, QDBusConnection::sessionBus(), this))\n    , m_airPlaneModeInter(new DDBusInterface(AirPlaneModeService, AirPlaneModePath, AirPlaneModeInterface, QDBusConnection::systemBus(), this))\n{\n}\n\nvoid BluetoothDBusProxy::showBluetoothTransDialog(const QString &address, const QStringList &files)\n{\n    QDBusMessage message = QDBusMessage::createMethodCall(\"com.deepin.filemanager.filedialog\", \"/com/deepin/filemanager/filedialogmanager\", \"com.deepin.filemanager.filedialogmanager\", \"showBluetoothTransDialog\");\n    message << address << files;\n    QDBusConnection::sessionBus().asyncCall(message);\n}\n\nbool BluetoothDBusProxy::bluetoothIsValid()\n{\n    return m_bluetoothInter->isValid();\n}\n// Bluetooth PROPERTY\nuint BluetoothDBusProxy::state()\n{\n    return qvariant_cast<uint>(m_bluetoothInter->property(\"State\"));\n}\n\nbool BluetoothDBusProxy::transportable()\n{\n    return qvariant_cast<bool>(m_bluetoothInter->property(\"Transportable\"));\n}\n\nbool BluetoothDBusProxy::canSendFile()\n{\n    return qvariant_cast<bool>(m_bluetoothInter->property(\"CanSendFile\"));\n}\n\nbool BluetoothDBusProxy::displaySwitch()\n{\n    return qvariant_cast<bool>(m_bluetoothInter->property(\"DisplaySwitch\"));\n}\n\nvoid BluetoothDBusProxy::setDisplaySwitch(bool value)\n{\n    m_bluetoothInter->setProperty(\"DisplaySwitch\", QVariant::fromValue(value));\n}\n// AirplaneMode PROPERTY\nbool BluetoothDBusProxy::enabled()\n{\n    return qvariant_cast<bool>(m_airPlaneModeInter->property(\"Enabled\"));\n}\n\nvoid BluetoothDBusProxy::ClearUnpairedDevice()\n{\n    m_bluetoothInter->asyncCall(QStringLiteral(\"ClearUnpairedDevice\"));\n}\n\nvoid BluetoothDBusProxy::ClearUnpairedDevice(QObject *receiver, const char *member)\n{\n    QList<QVariant> argumentList;\n    m_bluetoothInter->callWithCallback(QStringLiteral(\"ClearUnpairedDevice\"), argumentList, receiver, member);\n}\n\nvoid BluetoothDBusProxy::SetAdapterPowered(const QDBusObjectPath &adapter, bool powered)\n{\n    m_bluetoothInter->asyncCall(QStringLiteral(\"SetAdapterPowered\"), QVariant::fromValue(adapter), QVariant::fromValue(powered));\n}\n\nvoid BluetoothDBusProxy::SetAdapterPowered(const QDBusObjectPath &adapter, bool powered, QObject *receiver, const char *member, const char *errorSlot)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(adapter);\n    argumentList << QVariant::fromValue(powered);\n    m_bluetoothInter->callWithCallback(QStringLiteral(\"SetAdapterPowered\"), argumentList, receiver, member, errorSlot);\n}\n\nvoid BluetoothDBusProxy::DisconnectDevice(const QDBusObjectPath &device)\n{\n    m_bluetoothInter->asyncCall(QStringLiteral(\"DisconnectDevice\"), QVariant::fromValue(device));\n}\n\nvoid BluetoothDBusProxy::RemoveDevice(const QDBusObjectPath &adapter, const QDBusObjectPath &device)\n{\n    m_bluetoothInter->asyncCall(QStringLiteral(\"RemoveDevice\"), QVariant::fromValue(adapter), QVariant::fromValue(device));\n}\n\nvoid BluetoothDBusProxy::ConnectDevice(const QDBusObjectPath &device, const QDBusObjectPath &adapter)\n{\n    m_bluetoothInter->asyncCall(QStringLiteral(\"ConnectDevice\"), QVariant::fromValue(device), QVariant::fromValue(adapter));\n}\n\nQString BluetoothDBusProxy::GetDevices(const QDBusObjectPath &adapter)\n{\n    return QDBusPendingReply<QString>(m_bluetoothInter->asyncCall(QStringLiteral(\"GetDevices\"), QVariant::fromValue(adapter)));\n}\n\nvoid BluetoothDBusProxy::GetDevices(const QDBusObjectPath &adapter, QObject *receiver, const char *member)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(adapter);\n    m_bluetoothInter->callWithCallback(QStringLiteral(\"GetDevices\"), argumentList, receiver, member);\n}\n\nQString BluetoothDBusProxy::GetAdapters()\n{\n    return QDBusPendingReply<QString>(m_bluetoothInter->asyncCall(QStringLiteral(\"GetAdapters\")));\n}\n\nvoid BluetoothDBusProxy::SetAdapterAlias(const QDBusObjectPath &adapter, const QString &alias)\n{\n    m_bluetoothInter->asyncCall(QStringLiteral(\"SetAdapterAlias\"), QVariant::fromValue(adapter), QVariant::fromValue(alias));\n}\n\nvoid BluetoothDBusProxy::SetDeviceAlias(const QDBusObjectPath &device, const QString &alias)\n{\n    m_bluetoothInter->asyncCall(QStringLiteral(\"SetDeviceAlias\"), QVariant::fromValue(device), QVariant::fromValue(alias));\n}\n\nvoid BluetoothDBusProxy::RequestDiscovery(const QDBusObjectPath &adapter)\n{\n    m_bluetoothInter->asyncCall(QStringLiteral(\"RequestDiscovery\"), QVariant::fromValue(adapter));\n}\n\nvoid BluetoothDBusProxy::Confirm(const QDBusObjectPath &device, bool accept)\n{\n    m_bluetoothInter->asyncCall(QStringLiteral(\"Confirm\"), QVariant::fromValue(device), QVariant::fromValue(accept));\n}\n\nvoid BluetoothDBusProxy::SetAdapterDiscovering(const QDBusObjectPath &adapter, bool discovering)\n{\n    m_bluetoothInter->asyncCall(QStringLiteral(\"SetAdapterDiscovering\"), QVariant::fromValue(adapter), QVariant::fromValue(discovering));\n}\n\nvoid BluetoothDBusProxy::SetAdapterDiscoverable(const QDBusObjectPath &adapter, bool discoverable)\n{\n    m_bluetoothInter->asyncCall(QStringLiteral(\"SetAdapterDiscoverable\"), QVariant::fromValue(adapter), QVariant::fromValue(discoverable));\n}\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothdbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef BLUETOOTHDBUSPROXY_H\n#define BLUETOOTHDBUSPROXY_H\n\n#include <DDBusInterface>\n#include <QObject>\nclass QDBusInterface;\nclass QDBusMessage;\nclass QDBusObjectPath;\n\nusing Dtk::Core::DDBusInterface;\n\nclass BluetoothDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit BluetoothDBusProxy(QObject *parent = nullptr);\n\n    void showBluetoothTransDialog(const QString &address, const QStringList &files);\n    // Bluetooth\n    bool bluetoothIsValid();\n    Q_PROPERTY(uint State READ state NOTIFY StateChanged)\n    uint state();\n    Q_PROPERTY(bool Transportable READ transportable NOTIFY TransportableChanged)\n    bool transportable();\n    Q_PROPERTY(bool CanSendFile READ canSendFile NOTIFY CanSendFileChanged)\n    bool canSendFile();\n    Q_PROPERTY(bool DisplaySwitch READ displaySwitch WRITE setDisplaySwitch NOTIFY DisplaySwitchChanged)\n    bool displaySwitch();\n    void setDisplaySwitch(bool value);\n    // AirplaneMode\n    Q_PROPERTY(bool Enabled READ enabled NOTIFY EnabledChanged)\n    bool enabled();\n\nQ_SIGNALS: // SIGNALS\n    // Bluetooth\n    void AdapterAdded(const QString &adapterJSON);\n    void AdapterRemoved(const QString &adapterJSON);\n    void AdapterPropertiesChanged(const QString &adapterJSON);\n    void DeviceAdded(const QString &devJSON);\n    void DeviceRemoved(const QString &devJSON);\n    void DevicePropertiesChanged(const QString &devJSON);\n    void Cancelled(const QDBusObjectPath &device);\n    void RequestAuthorization(const QDBusObjectPath &device);\n    void RequestConfirmation(const QDBusObjectPath &device, const QString &passkey);\n    void RequestPasskey(const QDBusObjectPath &device);\n    void RequestPinCode(const QDBusObjectPath &device);\n    void DisplayPasskey(const QDBusObjectPath &device, uint passkey, uint entered);\n    void DisplayPinCode(const QDBusObjectPath &device, const QString &pinCode);\n    // property changed signals\n    void StateChanged(uint value) const;\n    void TransportableChanged(bool value) const;\n    void CanSendFileChanged(bool value) const;\n    void DisplaySwitchChanged(bool value) const;\n\n    // AirplaneMode\n    // property changed signals\n    void EnabledChanged(bool value) const;\n\npublic Q_SLOTS: // METHODS\n    // Bluetooth\n    void ClearUnpairedDevice();\n    void ClearUnpairedDevice(QObject *receiver, const char *member);\n    void SetAdapterPowered(const QDBusObjectPath &adapter, bool powered);\n    void SetAdapterPowered(const QDBusObjectPath &adapter, bool powered, QObject *receiver, const char *member, const char *errorSlot);\n    void DisconnectDevice(const QDBusObjectPath &device);\n    void RemoveDevice(const QDBusObjectPath &adapter, const QDBusObjectPath &device);\n    void ConnectDevice(const QDBusObjectPath &device, const QDBusObjectPath &adapter);\n    QString GetDevices(const QDBusObjectPath &adapter);\n    void GetDevices(const QDBusObjectPath &adapter, QObject *receiver, const char *member);\n    QString GetAdapters();\n    void SetAdapterAlias(const QDBusObjectPath &adapter, const QString &alias);\n    void SetDeviceAlias(const QDBusObjectPath &device, const QString &alias);\n    void RequestDiscovery(const QDBusObjectPath &adapter);\n    void Confirm(const QDBusObjectPath &device, bool accept);\n    void SetAdapterDiscovering(const QDBusObjectPath &adapter, bool discovering);\n    void SetAdapterDiscoverable(const QDBusObjectPath &adapter, bool discoverable);\n\nprivate:\n    DDBusInterface *m_bluetoothInter;\n    DDBusInterface *m_airPlaneModeInter;\n};\n\n#endif // BLUETOOTHDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothdevice.cpp",
    "content": "// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"bluetoothdevice.h\"\n\nBluetoothDevice::BluetoothDevice(QObject *parent)\n    : QObject(parent)\n    , m_id(\"\")\n    , m_name(\"\")\n    , m_paired(false)\n    , m_trusted(false)\n    , m_connecting(false)\n    , m_connectState(false)\n    , m_state(StateUnavailable)\n{\n}\n\nvoid BluetoothDevice::setId(const QString &id)\n{\n    m_id = id;\n}\n\nvoid BluetoothDevice::setAddress(const QString &addr)\n{\n    m_address = addr;\n}\n\nvoid BluetoothDevice::setName(const QString &name)\n{\n    if (name != m_name) {\n        m_name = name;\n        Q_EMIT nameChanged(name);\n    }\n}\n\nvoid BluetoothDevice::setAlias(const QString &alias)\n{\n    if (alias != m_alias) {\n        m_alias = alias;\n        Q_EMIT aliasChanged(alias);\n    }\n}\n\nvoid BluetoothDevice::setPaired(bool paired)\n{\n    if (paired != m_paired) {\n        m_paired = paired;\n        Q_EMIT pairedChanged(paired);\n    }\n}\n\nvoid BluetoothDevice::setState(const State &state, bool connectState)\n{\n    if ((state != m_state) || (connectState != m_connectState)) {\n        m_state = state;\n        m_connectState = connectState;\n        Q_EMIT stateChanged(state, connectState);\n    }\n}\n\nvoid BluetoothDevice::setTrusted(bool trusted)\n{\n    if (trusted != m_trusted) {\n        m_trusted = trusted;\n        Q_EMIT trustedChanged(trusted);\n    }\n}\n\nvoid BluetoothDevice::setConnecting(bool connecting)\n{\n    if (connecting != m_connecting) {\n        m_connecting = connecting;\n        Q_EMIT connectingChanged(connecting);\n    }\n}\n\nvoid BluetoothDevice::setBattery(int battery)\n{\n    if (m_battery != battery) {\n        m_battery = battery;\n        Q_EMIT batteryChanged(battery);\n    }\n}\n\nvoid BluetoothDevice::setDeviceType(const QString &deviceType)\n{\n    m_deviceType = deviceType2Icon.contains(deviceType) ? deviceType2Icon[deviceType] : \"bluetooth_other\";\n}\n\nbool BluetoothDevice::canSendFile() const\n{\n    // 目前pc和手机可以发送蓝牙文件\n    if ((m_deviceType == \"bluetooth_pc\") || (m_deviceType == \"bluetooth_phone\")) {\n        return true;\n    }\n    return false;\n}\n\nQDebug &operator<<(QDebug &stream, const BluetoothDevice *device)\n{\n    stream << \"BluetoothDevice name:\" << device->name() << \" paired:\" << device->paired()\n           << \" state:\" << device->state();\n\n    return stream;\n}\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothdevice.h",
    "content": "// SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCC_BLUETOOTH_DEVICE_H\n#define DCC_BLUETOOTH_DEVICE_H\n\n#include <QDebug>\n#include <QObject>\n\n// INFO: when meet problem, view the link underline\n// https://github.com/bluez/bluez/blob/master/src/dbus-common.c#L53-L115\n\nstatic const QMap<QString,QString> deviceType2Icon {\n        {\"unknow\",\"bluetooth_other\"},\n        {\"computer\",\"bluetooth_pc\"},\n        {\"phone\",\"bluetooth_phone\"},\n        {\"video-display\",\"bluetooth_vidicon\"},\n        {\"multimedia-player\",\"bluetooth_tv\"},\n        {\"scanner\",\"bluetooth_scaner\"},\n        {\"input-keyboard\",\"bluetooth_keyboard\"},\n        {\"input-mouse\",\"bluetooth_mouse\"},\n        {\"input-gaming\",\"bluetooth_other\"},\n        {\"input-tablet\",\"bluetooth_touchpad\"},\n        {\"audio-card\",\"bluetooth_pheadset\"},\n        {\"audio-headset\",\"bluetooth_pheadset\"},\n        {\"audio-headphones\",\"bluetooth_headset\"},\n        {\"network-wireless\",\"bluetooth_lan\"},\n        {\"camera-video\",\"bluetooth_vidicon\"},\n        {\"printer\",\"bluetooth_print\"},\n        {\"camera-photo\",\"bluetooth_camera\"},\n        {\"modem\",\"bluetooth_other\"}\n};\n\nclass BluetoothDevice : public QObject\n{\n    Q_OBJECT\n\npublic:\n    enum State {\n        StateUnavailable = 0,\n        StateAvailable = 1,\n        StateConnected = 2,\n        StateDisconnecting = 3\n    };\n    Q_ENUM(State)\n\npublic:\n    explicit BluetoothDevice(QObject *parent = nullptr);\n\n    inline QString id() const { return m_id; }\n\n    void setId(const QString &id);\n\n    inline int battery() const { return m_battery; }\n\n    void setBattery(const int battery);\n\n    inline QString address() const { return m_address; }\n\n    void setAddress(const QString &addr);\n\n    inline QString name() const { return m_name; }\n\n    void setName(const QString &name);\n\n    inline QString alias() const { return m_alias; }\n\n    void setAlias(const QString &alias);\n\n    inline bool paired() const { return m_paired; }\n\n    void setPaired(bool paired);\n\n    inline State state() const { return m_state; }\n\n    void setState(const State &state, bool connectState);\n\n    inline bool trusted() const { return m_trusted; }\n\n    void setTrusted(bool trusted);\n\n    inline bool connecting() const { return m_connecting; }\n\n    void setConnecting(bool connecting);\n\n    inline QString deviceType() const { return m_deviceType; }\n\n    void setDeviceType(const QString &deviceType);\n\n    inline bool connectState() const { return m_connectState; }\n\n    bool canSendFile() const;\n\nQ_SIGNALS:\n    void nameChanged(const QString &name) const;\n    void aliasChanged(const QString &alias) const;\n    void pairedChanged(const bool &paired) const;\n    void stateChanged(const State &state, bool paired) const;\n    void trustedChanged(const bool trusted) const;\n    void connectingChanged(const bool &connecting) const;\n    void batteryChanged(const int battery) const;\n\nprivate:\n    QString m_id;\n    QString m_address;\n    QString m_name;\n    QString m_alias;\n    QString m_deviceType;\n    bool m_paired;\n    bool m_trusted;\n    bool m_connecting;\n    bool m_connectState;\n    State m_state;\n    int m_battery = 0;\n};\n\nQDebug &operator<<(QDebug &stream, const BluetoothDevice *device);\n\n#endif // DCC_BLUETOOTH_DEVICE_H\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothdevicemodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"bluetoothdevicemodel.h\"\n\nBluetoothDeviceModel::BluetoothDeviceModel(QObject *parent)\n    : QAbstractListModel(parent)\n    , m_displaySwitch(false)\n{\n}\n\nvoid BluetoothDeviceModel::addDevice(BluetoothDevice *device)\n{\n    int row = rowCount();\n    beginInsertRows(QModelIndex(), row, row);\n    m_deviceData.append(device);\n    endInsertRows();\n}\n\nvoid BluetoothDeviceModel::removeDevice(const QString &deviceId)\n{\n    for (int index = 0; index < m_deviceData.count(); index++) {\n        const BluetoothDevice *item = m_deviceData.at(index);\n        if (item->id() == deviceId) {\n            removeRows(index, 1);\n            return;\n        }\n    }\n}\n\nint BluetoothDeviceModel::deviceIndex(const QString &deviceId)\n{\n    for (int index = 0; index < m_deviceData.count(); index++) {\n        if (m_deviceData.at(index)->id() == deviceId) {\n            return index;\n        }\n    }\n\n    return -1;\n}\n\nbool BluetoothDeviceModel::containDevice(BluetoothDevice *device)\n{\n    return m_deviceData.contains(device);\n}\n\nvoid BluetoothDeviceModel::updateData(BluetoothDevice *device)\n{\n    for (int index = 0; index < m_deviceData.count(); index++) {\n        const BluetoothDevice *item = m_deviceData.at(index);\n        if (item->id() == device->id()) {\n            bool isConnected = (device->state() == BluetoothDevice::StateConnected && device->connectState());\n            if (isConnected && index > 0) {\n                moveToTop(device->id());\n                QModelIndex modelIndex = createIndex(0, 0);\n                emit dataChanged(modelIndex, modelIndex, {Name, ConnectStatus, ConnectStatusText, Battery, BatteryIconPath});\n            } else if (!isConnected) {\n                reorderDevices();\n            } else {\n                QModelIndex modelIndex = createIndex(index, 0);\n                emit dataChanged(modelIndex, modelIndex, {Name, ConnectStatus, ConnectStatusText, Battery, BatteryIconPath});\n            }\n            return;\n        }\n    }\n    qDebug() << \" updateAdapter new device : \" << device->id();\n    addDevice(device);\n    reorderDevices();\n}\n\nvoid BluetoothDeviceModel::updateAllData()\n{\n    for (int index = 0; index < m_deviceData.count(); index++) {\n        QModelIndex modelIndex = createIndex(index, 0);\n        emit dataChanged(modelIndex, modelIndex, {});\n    }\n}\n\nvoid BluetoothDeviceModel::moveToTop(const QString &deviceId)\n{\n    int currentIndex = deviceIndex(deviceId);\n    if (currentIndex <= 0) {\n        return;\n    }\n    \n    beginMoveRows(QModelIndex(), currentIndex, currentIndex, QModelIndex(), 0);\n    BluetoothDevice* device = m_deviceData.takeAt(currentIndex);\n    m_deviceData.prepend(device);\n    endMoveRows();\n}\n\nvoid BluetoothDeviceModel::reorderDevices()\n{\n    QList<BluetoothDevice*> connectedDevices;\n    QList<BluetoothDevice*> disconnectedDevices;\n    \n    for (int i = 0; i < m_deviceData.count(); i++) {\n        BluetoothDevice* device = m_deviceData.at(i);\n        if (device->state() == BluetoothDevice::StateConnected && device->connectState()) {\n            connectedDevices.append(device);\n        } else {\n            disconnectedDevices.append(device);\n        }\n    }\n    \n    if (connectedDevices.isEmpty() || disconnectedDevices.isEmpty()) {\n        updateAllData();\n        return;\n    }\n\n    QList<BluetoothDevice*> newOrder;\n    newOrder.append(connectedDevices);\n    newOrder.append(disconnectedDevices);\n\n    bool orderChanged = false;\n    if (newOrder.count() == m_deviceData.count()) {\n        for (int i = 0; i < newOrder.count(); i++) {\n            if (newOrder.at(i) != m_deviceData.at(i)) {\n                orderChanged = true;\n                break;\n            }\n        }\n    } else {\n        orderChanged = true;\n    }\n\n    if (orderChanged) {\n        beginResetModel();\n        m_deviceData = newOrder;\n        endResetModel();\n    } else {\n        updateAllData();\n    }\n}\n\nint BluetoothDeviceModel::rowCount(const QModelIndex &parent) const\n{\n    // For list models only the root node (an invalid parent) should return the list's size. For all\n    // other (valid) parents, rowCount() should return 0 so that it does not become a tree model.\n    if (parent.isValid())\n        return 0;\n\n    return m_deviceData.count();\n}\n\nQVariant BluetoothDeviceModel::data(const QModelIndex &index, int role) const\n{\n    if (index.row() < 0 || index.row() >= m_deviceData.count())\n        return QVariant();\n\n    const BluetoothDevice* bluetoothDeviceData = m_deviceData[index.row()];\n\n    switch (role) {\n\n    case Name:\n        return bluetoothDeviceData->alias().isEmpty() ? bluetoothDeviceData->name() : bluetoothDeviceData->alias();\n\n    case Id:\n        return bluetoothDeviceData->id();\n    case Visiable:\n        return displaySwitch() ? true : !bluetoothDeviceData->name().isEmpty();\n    case IconName:\n        return bluetoothDeviceData->deviceType();\n    case ConnectStatusText:\n        return getConnectStatusText((int)bluetoothDeviceData->state(), bluetoothDeviceData->connectState());\n    case ConnectStatus:\n        return getConnectStatus(bluetoothDeviceData->state(), bluetoothDeviceData->connectState());\n    case AdapterId:\n        return adapterId();\n    case Battery:\n        return QString(\"%1%\").arg(bluetoothDeviceData->battery());\n    case BatteryIconPath:\n        return getBatteryIconPath(bluetoothDeviceData->battery());\n    case CanSendFile:\n        return bluetoothDeviceData->canSendFile();\n    case Address:\n        return bluetoothDeviceData->address();\n    default:\n        break;\n    }\n    return QVariant();\n}\n\nvoid BluetoothDeviceModel::insertItem(int index, BluetoothDevice *device)\n{\n    if (index < 0 || index > m_deviceData.size()) return; // 确保索引有效\n    beginInsertRows(QModelIndex(), index, index);\n    m_deviceData.insert(index, device);\n    endInsertRows();\n}\n\nbool BluetoothDeviceModel::removeRows(int row, int count, const QModelIndex &parent)\n{\n    beginRemoveRows(parent, row, row + count - 1);\n    m_deviceData.remove(row);\n    endRemoveRows();\n    return true;\n}\n\nQString BluetoothDeviceModel::adapterId() const\n{\n    return m_adapterId;\n}\n\nvoid BluetoothDeviceModel::setAdapterId(const QString &newAdapterId)\n{\n    m_adapterId = newAdapterId;\n}\n\nbool BluetoothDeviceModel::displaySwitch() const\n{\n    return m_displaySwitch;\n}\n\nvoid BluetoothDeviceModel::setDisplaySwitch(bool newDisplaySwitch)\n{\n    m_displaySwitch = newDisplaySwitch;\n}\n\nQString BluetoothDeviceModel::getConnectStatusText(int state, bool connectState) const\n{\n    if (state == BluetoothDevice::StateConnected && connectState) {\n       return tr(\"Connected\");\n    } else if (state == BluetoothDevice::StateUnavailable || state == BluetoothDevice::StateDisconnecting) {\n       return tr(\"Not connected\");\n    }\n\n    return \"\";\n}\n\nQString BluetoothDeviceModel::getBatteryIconPath(int percentage) const\n{\n    /* 0-5%、6-10%、11%-20%、21-30%、31-40%、41-50%、51-60%、61%-70%、71-80%、81-90%、91-100% */\n    QString percentageStr;\n    if (percentage <= 5) {\n        percentageStr = \"000\";\n    } else if (percentage <= 10) {\n        percentageStr = \"010\";\n    } else if (percentage <= 20) {\n        percentageStr = \"020\";\n    } else if (percentage <= 30) {\n        percentageStr = \"030\";\n    } else if (percentage <= 40) {\n        percentageStr = \"040\";\n    } else if (percentage <= 50) {\n        percentageStr = \"050\";\n    } else if (percentage <= 60) {\n        percentageStr = \"060\";\n    } else if (percentage <= 70) {\n        percentageStr = \"070\";\n    } else if (percentage <= 80) {\n        percentageStr = \"080\";\n    } else if (percentage <= 90) {\n        percentageStr = \"090\";\n    } else if (percentage <= 100) {\n        percentageStr = \"100\";\n    } else {\n        percentageStr = \"unknow\";\n    }\n\n    QString iconName = QString(\"battery-%1-symbolic\").arg(percentageStr);\n    return \"qrc:/icons/deepin/builtin/icons/\" + iconName + \"_20px.svg\";\n}\n\nint BluetoothDeviceModel::getConnectStatus(BluetoothDevice::State state, bool connectState) const\n{\n\n    if (state == BluetoothDevice::StateConnected) {\n        return connectState ? state : BluetoothDevice::StateUnavailable;\n    }\n\n    return state;\n}\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothdevicemodel.h",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef BLUETOOTHDEVICEMODEL_H\n#define BLUETOOTHDEVICEMODEL_H\n\n#include <QAbstractListModel>\n\n#include \"bluetoothdevice.h\"\n\nclass BluetoothDeviceModel : public QAbstractListModel\n{\n    Q_OBJECT\n\npublic:\n    enum deviceRoles {\n        Name = Qt::UserRole + 1,\n        Id,\n        Visiable,\n        IconName,\n        ConnectStatus,\n        ConnectStatusText,\n        AdapterId,\n        Battery,\n        BatteryIconPath,\n        CanSendFile,\n        Address\n    };\n\n\n    explicit BluetoothDeviceModel(QObject *parent = nullptr);\n\n    void addDevice(BluetoothDevice* device);\n\n    void removeDevice(const QString &deviceId);\n\n    int deviceIndex(const QString &deviceId);\n\n    bool containDevice(BluetoothDevice* device);\n\n    void updateData(BluetoothDevice* device);\n\n    void updateAllData();\n\n    void moveToTop(const QString &deviceId);\n    \n    void reorderDevices();\n\n    // Basic functionality:\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n\n    void insertItem(int index, BluetoothDevice* device);\n\n    // Remove data:\n    bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    QHash<int, QByteArray> roleNames() const override {\n        QHash<int, QByteArray> roles;\n        roles[Name] = \"name\";\n        roles[Id] = \"id\";\n        roles[Visiable] = \"visiable\";\n        roles[IconName] = \"iconName\";\n        roles[ConnectStatus] = \"connectStatus\";\n        roles[ConnectStatusText] = \"connectStatusText\";\n        roles[AdapterId] = \"adapterId\";\n        roles[Battery] = \"battery\";\n        roles[BatteryIconPath] = \"batteryIconPath\";\n        roles[CanSendFile] = \"canSendFile\";\n        roles[Address] = \"address\";\n        return roles;\n    }\n\n    QString adapterId() const;\n    void setAdapterId(const QString &newAdapterId);\n\n    bool displaySwitch() const;\n    void setDisplaySwitch(bool newDisplaySwitch);\n\n    QString getConnectStatusText(int state, bool connectState) const;\n    QString getBatteryIconPath(int percentage) const;\n    int getConnectStatus(BluetoothDevice::State state, bool connectState) const;\n\nprivate:\n    QString m_adapterId;\n    bool m_displaySwitch;\n    QList<BluetoothDevice*> m_deviceData;\n};\n\n#endif // BLUETOOTHDEVICEMODEL_H\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothinteraction.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"bluetoothinteraction.h\"\n#include \"dccfactory.h\"\n\n#include <QtQml/qqml.h>\n\nBluetoothInteraction::BluetoothInteraction(QObject *parent)\n    : QObject{ parent }\n    , m_model(new BluetoothModel(this))\n    , m_work(new BluetoothWorker(m_model, this))\n{\n    m_work->activate();\n\n    qmlRegisterType<BluetoothWorker>(\"dcc\", 1, 0, \"BluetoothWorker\");\n    qmlRegisterType<BluetoothModel>(\"dcc\", 1, 0, \"BluetoothModel\");\n}\n\nBluetoothModel *BluetoothInteraction::model() const\n{\n    return m_model;\n}\n\nvoid BluetoothInteraction::setModel(BluetoothModel *newModel)\n{\n    m_model = newModel;\n}\n\nBluetoothWorker *BluetoothInteraction::work() const\n{\n    return m_work;\n}\n\nvoid BluetoothInteraction::setWork(BluetoothWorker *newWork)\n{\n    m_work = newWork;\n}\n\n\nDCC_FACTORY_CLASS(BluetoothInteraction)\n\n#include \"bluetoothinteraction.moc\"\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothinteraction.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef BLUETOOTHINTERACTION_H\n#define BLUETOOTHINTERACTION_H\n\n#include <QObject>\n\n#include \"bluetoothmodel.h\"\n#include \"bluetoothworker.h\"\n\nclass BluetoothInteraction : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit BluetoothInteraction(QObject *parent = nullptr);\n\n    Q_INVOKABLE BluetoothModel *model() const;\n    void setModel(BluetoothModel *newModel);\n\n    Q_INVOKABLE BluetoothWorker *work() const;\n    void setWork(BluetoothWorker *newWork);\n\nsignals:\n\nprivate:\n    BluetoothModel* m_model;\n    BluetoothWorker* m_work;\n};\n\n#endif // BLUETOOTHINTERACTION_H\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"bluetoothmodel.h\"\n\nBluetoothModel::BluetoothModel(QObject *parent)\n    : QObject(parent)\n    , m_transPortable(false)\n    , m_canSendFile(false)\n    , m_airplaneEnable(false)\n    , m_displaySwitch(false)\n    , m_showBluetooth(false)\n    , m_blueToothAdaptersModel(new BlueToothAdaptersModel(this))\n{\n    m_adapters.clear();\n\n    connect(this, &BluetoothModel::displaySwitchChanged, m_blueToothAdaptersModel, &BlueToothAdaptersModel::setDisplaySwitch);\n    connect(this, &BluetoothModel::adpaterListChanged, this, [ this ] {\n        setShowBluetooth(m_adapters.count());\n    });\n}\n\nvoid BluetoothModel::addAdapter(BluetoothAdapter *adapter)\n{\n    if (!adapterById(adapter->id())) {\n        adapter->setdisplaySwitch(displaySwitch());\n        m_adapters[adapter->id()] = adapter;\n        m_adapterIds << adapter->id();\n        Q_EMIT adapterAdded(adapter);\n        Q_EMIT adpaterListChanged();\n\n        m_blueToothAdaptersModel->addAdapter(adapter);\n        return;\n    }\n\n    adapter->deleteLater();\n}\n\nconst BluetoothAdapter *BluetoothModel::removeAdapater(const QString &adapterId)\n{\n    const BluetoothAdapter *adapter = nullptr;\n\n    adapter = adapterById(adapterId);\n    if (adapter) {\n        m_adapters.remove(adapterId);\n        m_adapterIds.removeOne(adapterId);\n        m_blueToothAdaptersModel->removeAdapter(adapterId);\n        Q_EMIT adapterRemoved(adapter);\n        Q_EMIT adpaterListChanged();\n    }\n\n    return adapter;\n}\n\nQList<const BluetoothAdapter *> BluetoothModel::adapters() const\n{\n    QList<const BluetoothAdapter *> allAdapters = m_adapters.values();\n    std::sort(allAdapters.begin(), allAdapters.end(), [ & ](const BluetoothAdapter *adapter1, const BluetoothAdapter *adapter2) {\n        return m_adapterIds.indexOf(adapter1->id()) < m_adapterIds.indexOf(adapter2->id());\n    });\n\n    return allAdapters;\n}\n\nconst BluetoothAdapter *BluetoothModel::adapterById(const QString &id)\n{\n    return m_adapters.keys().contains(id) ? m_adapters[id] : nullptr;\n}\n\n/**\n * @brief BluetoothModel::canTransportable\n * @return\n * 返回值表示是否能传输蓝牙文件\n */\nbool BluetoothModel::canTransportable() const\n{\n    return m_transPortable;\n}\n\n/**\n * @brief BluetoothModel::setTransportable\n * @param transPortable\n * 设置是否能传输蓝牙文件\n */\nvoid BluetoothModel::setTransportable(const bool transPortable)\n{\n    if (m_transPortable != transPortable) {\n        m_transPortable = transPortable;\n        Q_EMIT transportableChanged(transPortable);\n    }\n}\n\nvoid BluetoothModel::setCanSendFile(const bool canSendFile)\n{\n    if (m_canSendFile != canSendFile) {\n        m_canSendFile = canSendFile;\n        Q_EMIT canSendFileChanged(canSendFile);\n    }\n}\n\nvoid BluetoothModel::setAirplaneEnable(bool enable)\n{\n    if (m_airplaneEnable == enable)\n        return;\n\n    m_airplaneEnable = enable;\n\n    Q_EMIT airplaneEnableChanged(m_airplaneEnable);\n}\n\nvoid BluetoothModel::setDisplaySwitch(bool on)\n{\n    if (m_displaySwitch == on)\n        return;\n\n    m_displaySwitch = on;\n\n    Q_EMIT displaySwitchChanged(m_displaySwitch);\n}\n\nbool BluetoothModel::showBluetooth() const\n{\n    return m_showBluetooth;\n}\n\nvoid BluetoothModel::setShowBluetooth(bool newShowBluetooth)\n{\n    if (m_showBluetooth == newShowBluetooth)\n        return;\n    m_showBluetooth = newShowBluetooth;\n    emit showBluetoothChanged();\n}\n\nbool BluetoothModel::airplaneEnable() const\n{\n    return m_airplaneEnable;\n}\n\nBlueToothAdaptersModel *BluetoothModel::blueToothAdaptersModel() const\n{\n    return m_blueToothAdaptersModel;\n}\n\nvoid BluetoothModel::updateAdaptersModel(BluetoothAdapter *data)\n{\n    m_blueToothAdaptersModel->updateAdapter(data);\n}\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothmodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCC_BLUETOOTH_BLUETOOTHMODEL_H\n#define DCC_BLUETOOTH_BLUETOOTHMODEL_H\n\n#include <QObject>\n#include <QtQmlIntegration/qqmlintegration.h>\n\n#include \"bluetoothadapter.h\"\n#include \"bluetoothadaptersmodel.h\"\n\nclass BluetoothModel : public QObject\n{\n    Q_OBJECT\n\n    Q_PROPERTY(bool displaySwitch READ displaySwitch NOTIFY displaySwitchChanged FINAL)\n    Q_PROPERTY(bool airplaneEnable READ airplaneEnable NOTIFY airplaneEnableChanged FINAL)\n    Q_PROPERTY(bool showBluetooth READ showBluetooth NOTIFY showBluetoothChanged FINAL)\n\n    QML_NAMED_ELEMENT(BluetoothModel)\n    QML_SINGLETON\npublic:\n    explicit BluetoothModel(QObject *parent = nullptr);\n\n    QList<const BluetoothAdapter *> adapters() const;\n    const BluetoothAdapter *adapterById(const QString &id);\n\n    bool canTransportable() const;\n    inline bool canSendFile() const { return m_canSendFile; }\n\n    inline bool displaySwitch() const { return m_displaySwitch; }\n\n    Q_INVOKABLE BlueToothAdaptersModel *blueToothAdaptersModel() const;\n\n    void updateAdaptersModel(BluetoothAdapter* data);\n\n    bool airplaneEnable() const;\n\n    bool showBluetooth() const;\n    void setShowBluetooth(bool newShowBluetooth);\n\npublic Q_SLOTS:\n    void addAdapter(BluetoothAdapter *adapter);\n    const BluetoothAdapter *removeAdapater(const QString &adapterId);\n    void setTransportable(const bool transPortable);\n    void setCanSendFile(const bool canSendFile);\n    void setAirplaneEnable(bool enable);\n    void setDisplaySwitch(bool on);\n\nQ_SIGNALS:\n    void adapterAdded(const BluetoothAdapter *adapter) const;\n    void adapterRemoved(const BluetoothAdapter *adapter) const;\n    void adpaterListChanged();\n    void transportableChanged(const bool transPortable) const;\n    void canSendFileChanged(const bool canSendFile) const;\n    void airplaneEnableChanged(bool enable) const;\n    void displaySwitchChanged(bool on) const;\n    void showBluetoothChanged();\n\nprivate:\n    QMap<QString, const BluetoothAdapter *> m_adapters;\n    QStringList m_adapterIds;\n    bool m_transPortable;\n    bool m_canSendFile;\n    bool m_airplaneEnable;\n    bool m_displaySwitch;\n    friend class BluetoothWorker;\n\n    bool m_showBluetooth;\n\n    BlueToothAdaptersModel* m_blueToothAdaptersModel;\n\n};\n\n#endif // DCC_BLUETOOTH_BLUETOOTHMODEL_H\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothworker.cpp",
    "content": "// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"bluetoothworker.h\"\n\n#include \"bluetoothdbusproxy.h\"\n\n#include <QDBusInterface>\n#include <QDBusObjectPath>\n#include <QJsonArray>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QLoggingCategory>\n#include <QTimer>\n#include <DDesktopServices>\n\nDGUI_USE_NAMESPACE\nQ_LOGGING_CATEGORY(DdcBluetoothWorkder, \"dcc-bluetooth-worker\")\n\nBluetoothWorker::BluetoothWorker(BluetoothModel *model, QObject *parent)\n    : QObject(parent)\n    , m_bluetoothDBusProxy(new BluetoothDBusProxy(this))\n    , m_model(model)\n    , m_connectingAudioDevice(false)\n    , m_state(m_bluetoothDBusProxy->state())\n{\n    // clang-format off\n    connect(m_bluetoothDBusProxy, &BluetoothDBusProxy::StateChanged, this, &BluetoothWorker::onStateChanged);\n    connect(m_bluetoothDBusProxy, &BluetoothDBusProxy::AdapterAdded, this, &BluetoothWorker::addAdapter);\n    connect(m_bluetoothDBusProxy, &BluetoothDBusProxy::AdapterRemoved, this, &BluetoothWorker::removeAdapter);\n    connect(m_bluetoothDBusProxy, &BluetoothDBusProxy::AdapterPropertiesChanged, this, &BluetoothWorker::onAdapterPropertiesChanged);\n    connect(m_bluetoothDBusProxy, &BluetoothDBusProxy::DeviceAdded, this, &BluetoothWorker::addDevice);\n    connect(m_bluetoothDBusProxy, &BluetoothDBusProxy::DeviceRemoved, this, &BluetoothWorker::removeDevice);\n    connect(m_bluetoothDBusProxy, &BluetoothDBusProxy::DevicePropertiesChanged, this, &BluetoothWorker::onDevicePropertiesChanged);\n\n    connect(m_bluetoothDBusProxy, &BluetoothDBusProxy::TransportableChanged, m_model, &BluetoothModel::setTransportable);\n    connect(m_bluetoothDBusProxy, &BluetoothDBusProxy::CanSendFileChanged, m_model, &BluetoothModel::setCanSendFile);\n    connect(m_bluetoothDBusProxy, &BluetoothDBusProxy::DisplaySwitchChanged, m_model, &BluetoothModel::setDisplaySwitch);\n\n    m_model->setTransportable(m_bluetoothDBusProxy->transportable());\n    m_model->setCanSendFile(m_bluetoothDBusProxy->canSendFile());\n    m_model->setDisplaySwitch(m_bluetoothDBusProxy->displaySwitch());\n\n    connect(m_bluetoothDBusProxy, &BluetoothDBusProxy::EnabledChanged, m_model, &BluetoothModel::setAirplaneEnable);\n    m_model->setAirplaneEnable(m_bluetoothDBusProxy->enabled());\n\n    //第一次调用时传true，refresh 函数会使用同步方式去获取蓝牙设备数据\n    //避免出现当dbus调用控制中心接口直接显示蓝牙模块时，\n    //因为异步的数据获取使控制中心设置了蓝牙模块不可见，\n    //而出现没办法显示蓝牙模块\n    refresh(true);\n    // clang-format on\n}\n\nBluetoothWorker::~BluetoothWorker() { }\n\nvoid BluetoothWorker::onStateChanged(uint state)\n{\n    // 当蓝牙状态由0变成大于0时，强制刷新蓝牙列表\n    if (!m_state && state > 0)\n        refresh(true);\n\n    m_state = state;\n}\n\nvoid BluetoothWorker::activate()\n{\n    if (!m_bluetoothDBusProxy->bluetoothIsValid()) {\n        return;\n    }\n\n    blockDBusSignals(false);\n    m_bluetoothDBusProxy->ClearUnpairedDevice();\n\n    refresh();\n}\n\nvoid BluetoothWorker::deactivate()\n{\n    blockDBusSignals(true);\n}\n\nvoid BluetoothWorker::blockDBusSignals(bool block)\n{\n    if (!m_bluetoothDBusProxy->bluetoothIsValid()) {\n        return;\n    }\n\n    m_bluetoothDBusProxy->blockSignals(block);\n}\n\nvoid BluetoothWorker::disconnectDevice(const QString & deviceId)\n{\n    QDBusObjectPath path(deviceId);\n    m_bluetoothDBusProxy->DisconnectDevice(path);\n    qCDebug(DdcBluetoothWorkder) << \"disconnect from device: \" << deviceId;\n}\n\nvoid BluetoothWorker::ignoreDevice(const QString &deviceId, const QString adapterId)\n{\n    m_bluetoothDBusProxy->RemoveDevice(QDBusObjectPath(adapterId),\n                                       QDBusObjectPath(deviceId));\n    qCDebug(DdcBluetoothWorkder) << \"ignore device: \" << deviceId;\n}\n\nvoid BluetoothWorker::onAdapterPropertiesChanged(const QString &json)\n{\n    const QJsonDocument doc = QJsonDocument::fromJson(json.toUtf8());\n    const QJsonObject obj = doc.object();\n    const QString id = obj[\"Path\"].toString();\n\n    BluetoothAdapter *adapter = const_cast<BluetoothAdapter *>(m_model->adapterById(id));\n    if (adapter) {\n        adapter->inflate(obj);\n        m_model->updateAdaptersModel(adapter);\n    }\n}\n\nvoid BluetoothWorker::onDevicePropertiesChanged(const QString &json)\n{\n    const QJsonDocument doc = QJsonDocument::fromJson(json.toUtf8());\n    const QJsonObject obj = doc.object();\n    const QString id = obj[\"Path\"].toString();\n    const QString name = obj[\"Name\"].toString();\n    for (const BluetoothAdapter *adapter : m_model->adapters()) {\n        BluetoothAdapter *adapterPointer = const_cast<BluetoothAdapter *>(adapter);\n        BluetoothDevice *device = const_cast<BluetoothDevice *>(adapter->deviceById(id));\n        if (device) {\n            if (device->name() == name) {\n                adapterPointer->inflateDevice(device, obj);\n                adapterPointer->updateDeviceData(device);\n            } else {\n                if (!adapterPointer)\n                    return;\n                adapterPointer->removeDevice(device->id());\n                adapterPointer->inflateDevice(device, obj);\n                adapterPointer->addDevice(device);\n            }\n        }\n    }\n}\n\nvoid BluetoothWorker::addAdapter(const QString &json)\n{\n    QJsonDocument doc = QJsonDocument::fromJson(json.toUtf8());\n    QJsonObject obj = doc.object();\n\n    BluetoothAdapter *adapter = new BluetoothAdapter(m_bluetoothDBusProxy, m_model);\n    adapter->inflate(obj);\n    m_model->addAdapter(adapter);\n}\n\nvoid BluetoothWorker::removeAdapter(const QString &json)\n{\n    QJsonDocument doc = QJsonDocument::fromJson(json.toUtf8());\n    QJsonObject obj = doc.object();\n    const QString id = obj[\"Path\"].toString();\n\n    const BluetoothAdapter *result = m_model->removeAdapater(id);\n    BluetoothAdapter *adapter = const_cast<BluetoothAdapter *>(result);\n    if (adapter) {\n        adapter->deleteLater();\n        adapter = nullptr;\n    }\n}\n\nvoid BluetoothWorker::addDevice(const QString &json)\n{\n    QJsonDocument doc = QJsonDocument::fromJson(json.toUtf8());\n    QJsonObject obj = doc.object();\n    const QString adapterId = obj[\"AdapterPath\"].toString();\n    const QString id = obj[\"Path\"].toString();\n    const int battery = obj[\"Battery\"].toInt();\n\n    const BluetoothAdapter *result = m_model->adapterById(adapterId);\n    BluetoothAdapter *adapter = const_cast<BluetoothAdapter *>(result);\n    if (adapter) {\n        const BluetoothDevice *result1 = adapter->deviceById(id);\n        BluetoothDevice *device = const_cast<BluetoothDevice *>(result1);\n        if (!device)\n            device = new BluetoothDevice(adapter);\n        device->setBattery(battery);\n        adapter->inflateDevice(device, obj);\n        adapter->addDevice(device);\n    }\n}\n\nvoid BluetoothWorker::removeDevice(const QString &json)\n{\n    QJsonDocument doc = QJsonDocument::fromJson(json.toUtf8());\n    QJsonObject obj = doc.object();\n    const QString adapterId = obj[\"AdapterPath\"].toString();\n    const QString id = obj[\"Path\"].toString();\n\n    const BluetoothAdapter *result = m_model->adapterById(adapterId);\n    BluetoothAdapter *adapter = const_cast<BluetoothAdapter *>(result);\n    if (adapter) {\n        adapter->removeDevice(id);\n    }\n}\n\nvoid BluetoothWorker::refresh(bool beFirst)\n{\n    Q_UNUSED(beFirst)\n    if (!m_bluetoothDBusProxy->bluetoothIsValid())\n        return;\n\n    const QString replyStr = m_bluetoothDBusProxy->GetAdapters();\n    QJsonDocument doc = QJsonDocument::fromJson(replyStr.toUtf8());\n    QJsonArray arr = doc.array();\n    for (QJsonValue val : arr) {\n        BluetoothAdapter *adapter = new BluetoothAdapter(m_bluetoothDBusProxy, m_model);\n        adapter->inflate(val.toObject());\n\n        m_model->addAdapter(adapter);\n    }\n}\n\n\nvoid BluetoothWorker::setDeviceAlias(const QString &deviceId, const QString &alias)\n{\n    m_bluetoothDBusProxy->SetDeviceAlias(QDBusObjectPath(deviceId), alias);\n}\n\nvoid BluetoothWorker::setAdapterDiscoverable(const QString &path)\n{\n    m_bluetoothDBusProxy->RequestDiscovery(QDBusObjectPath(path));\n}\n\n\nvoid BluetoothWorker::setAdapterDiscovering(const QString &path, bool enable)\n{\n    m_bluetoothDBusProxy->SetAdapterDiscovering(QDBusObjectPath(path), enable);\n}\n\nvoid BluetoothWorker::playErrorSound()\n{\n    DDesktopServices::playSystemSoundEffect(DDesktopServices::SSE_Error);\n}\n\nbool BluetoothWorker::displaySwitch()\n{\n    return m_bluetoothDBusProxy->property(\"DisplaySwitch\").toBool();\n}\n\nvoid BluetoothWorker::setAdapterPowered(const QString adapterId, bool powered)\n{\n    const BluetoothAdapter  *adapter = m_model->adapterById(adapterId);\n    if (adapter) {\n        const_cast<BluetoothAdapter *>(adapter)->setAdapterPowered(powered);\n    }\n}\n\nvoid BluetoothWorker::setAdapterDiscoverable(const QString adapterId, bool discoverable)\n{\n    QDBusObjectPath path(adapterId);\n    m_bluetoothDBusProxy->SetAdapterDiscoverable(path, discoverable);\n}\n\nvoid BluetoothWorker::setAdapterAlias(const QString adapterId, const QString &alias)\n{\n    m_bluetoothDBusProxy->SetAdapterAlias(QDBusObjectPath(adapterId), alias);\n}\n\nvoid BluetoothWorker::connectDevice(const QString &deviceId, const QString adapterId)\n{\n    // INFO: when is headset, not connect twice\n    const BluetoothAdapter *adapter = m_model->adapterById(adapterId);\n    if (adapter == nullptr)\n        return;\n\n    const BluetoothDevice *device = adapter->deviceById(deviceId);\n    if (device\n        && (device->deviceType() == \"audio-headset\" || device->deviceType() == \"audio-headphones\")\n        && device->state() == BluetoothDevice::StateAvailable) {\n        return;\n    }\n    for (const BluetoothAdapter *a : m_model->adapters()) {\n        for (const BluetoothDevice *d : a->devices()) {\n            BluetoothDevice *vd = const_cast<BluetoothDevice *>(d);\n            if (vd)\n                vd->setConnecting(d == device);\n        }\n    }\n\n    QDBusObjectPath path(device->id());\n    m_bluetoothDBusProxy->ConnectDevice(path, QDBusObjectPath(adapter->id()));\n    qCDebug(DdcBluetoothWorkder) << \"connect to device: \" << device->name();\n}\n\nvoid BluetoothWorker::jumpToAirPlaneMode()\n{\n    QDBusMessage message = QDBusMessage::createMethodCall(\"com.deepin.dde.ControlCenter\", // 服务名\n                                                           \"/com/deepin/dde/ControlCenter\", // 对象路径\n                                                           \"com.deepin.dde.ControlCenter\", // 接口名\n                                                           \"ShowPage\"); // 方法名\n\n    message << \"network/airplaneMode\";\n\n    QDBusConnection::sessionBus().asyncCall(message);\n}\n\nvoid BluetoothWorker::setDisplaySwitch(const bool &on)\n{\n    m_bluetoothDBusProxy->setDisplaySwitch(on);\n}\n\nvoid BluetoothWorker::showBluetoothTransDialog(const QString &address, const QStringList &files)\n{\n    qDebug() << \" showBluetoothTransDialog:  \" << address << files;\n    QStringList fileList;\n    for (auto filePath : files) {\n        filePath = filePath.remove(\"file://\");\n        fileList.append(filePath);\n    }\n\n    m_bluetoothDBusProxy->showBluetoothTransDialog(address, fileList);\n}\n\nvoid BluetoothWorker::ignoreDevice(const BluetoothAdapter *adapter, const BluetoothDevice *device)\n{\n    Q_UNUSED(adapter)\n    Q_UNUSED(device)\n}\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/bluetoothworker.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCC_BLUETOOTH_BLUETOOTHWORKER_H\n#define DCC_BLUETOOTH_BLUETOOTHWORKER_H\n\n#include <QObject>\n\n#include \"bluetoothmodel.h\"\n\nclass QDBusObjectPath;\nclass BluetoothDBusProxy;\n\nclass BluetoothWorker : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit BluetoothWorker(BluetoothModel *model, QObject *parent = nullptr);\n\n    BluetoothModel *model() { return m_model; }\n\n    void activate();\n    void deactivate();\n\n    void blockDBusSignals(bool block);\n\n    bool displaySwitch();\n\n    Q_INVOKABLE void setAdapterPowered(const QString adapterId, bool powered);\n    Q_INVOKABLE void setAdapterDiscoverable(const QString adapterId, bool discoverable);\n    Q_INVOKABLE void setAdapterAlias(const QString adapterId, const QString &alias);\n    Q_INVOKABLE void connectDevice(const QString & deviceId, const QString adapterId);\n    Q_INVOKABLE void jumpToAirPlaneMode();\n    Q_INVOKABLE void setDeviceAlias(const QString &deviceId, const QString &alias);\n    Q_INVOKABLE void disconnectDevice(const QString & deviceId);\n    Q_INVOKABLE void ignoreDevice(const QString & deviceId, const QString adapterId);\n    Q_INVOKABLE void setAdapterDiscovering(const QString &path, bool enable);\n    Q_INVOKABLE void playErrorSound();\n\npublic Q_SLOTS:\n\n    void ignoreDevice(const BluetoothAdapter *adapter, const BluetoothDevice *device);\n    void setAdapterDiscoverable(const QString &path);\n\n    void setDisplaySwitch(const bool &on);\n    void showBluetoothTransDialog(const QString &address, const QStringList &files);\n\nprivate Q_SLOTS:\n    void onAdapterPropertiesChanged(const QString &json);\n    void onDevicePropertiesChanged(const QString &json);\n\n    void addAdapter(const QString &json);\n    void removeAdapter(const QString &json);\n\n    void addDevice(const QString &json);\n    void removeDevice(const QString &json);\n\n    void refresh(bool beFirst = false);\n    void onStateChanged(uint state);\n\nprivate:\n    BluetoothWorker(BluetoothWorker const &) = delete;\n    BluetoothWorker &operator=(BluetoothWorker const &) = delete;\n    ~BluetoothWorker();\n\n    BluetoothDBusProxy *m_bluetoothDBusProxy;\n    BluetoothModel *m_model;\n    bool m_connectingAudioDevice;\n    uint m_state;\n};\n\n#endif // DCC_BLUETOOTH_BLUETOOTHWORKER_H\n"
  },
  {
    "path": "src/plugin-bluetooth/operation/qrc/bluetooth.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_bluetooth_42px.svg</file>\n        <file>icons/dcc_nav_bluetooth_84px.svg</file>\n        <file>texts/bluetooth_other_16px.svg</file>\n        <file>texts/dcc_edit_12px.svg</file>\n        <file>texts/dcc_refresh_12px.svg</file>\n        <file>dark/icons/battery-000-symbolic_20px.svg</file>\n        <file>dark/icons/battery-010-symbolic_20px.svg</file>\n        <file>dark/icons/battery-020-symbolic_20px.svg</file>\n        <file>dark/icons/battery-030-symbolic_20px.svg</file>\n        <file>dark/icons/battery-040-symbolic_20px.svg</file>\n        <file>dark/icons/battery-050-symbolic_20px.svg</file>\n        <file>dark/icons/battery-060-symbolic_20px.svg</file>\n        <file>dark/icons/battery-070-symbolic_20px.svg</file>\n        <file>dark/icons/battery-080-symbolic_20px.svg</file>\n        <file>dark/icons/battery-090-symbolic_20px.svg</file>\n        <file>dark/icons/battery-100-symbolic_20px.svg</file>\n        <file>dark/icons/battery-unknow-symbolic_20px.svg</file>\n        <file>light/icons/battery-000-symbolic_20px.svg</file>\n        <file>light/icons/battery-010-symbolic_20px.svg</file>\n        <file>light/icons/battery-020-symbolic_20px.svg</file>\n        <file>light/icons/battery-030-symbolic_20px.svg</file>\n        <file>light/icons/battery-040-symbolic_20px.svg</file>\n        <file>light/icons/battery-050-symbolic_20px.svg</file>\n        <file>light/icons/battery-060-symbolic_20px.svg</file>\n        <file>light/icons/battery-070-symbolic_20px.svg</file>\n        <file>light/icons/battery-080-symbolic_20px.svg</file>\n        <file>light/icons/battery-090-symbolic_20px.svg</file>\n        <file>light/icons/battery-100-symbolic_20px.svg</file>\n        <file>light/icons/battery-unknow-symbolic_20px.svg</file>\n        <file>icons/bluetoothNomal.dci</file>\n        <file>icons/bluetooth_option.dci</file>\n        <file>icons/bluetooth_redo.dci</file>\n        <file>texts/bluetooth_camera_16px.svg</file>\n        <file>texts/bluetooth_clang_16px.svg</file>\n        <file>texts/bluetooth_keyboard_16px.svg</file>\n        <file>texts/bluetooth_lan_16px.svg</file>\n        <file>texts/bluetooth_laptop_16px.svg</file>\n        <file>texts/bluetooth_microphone_16px.svg</file>\n        <file>texts/bluetooth_mouse_16px.svg</file>\n        <file>texts/bluetooth_pad_16px.svg</file>\n        <file>texts/bluetooth_pc.svg</file>\n        <file>texts/bluetooth_pen_16px.svg</file>\n        <file>texts/bluetooth_pheadset_16px.svg</file>\n        <file>texts/bluetooth_phone_16px.svg</file>\n        <file>texts/bluetooth_print_16px.svg</file>\n        <file>texts/bluetooth_scaner_16px.svg</file>\n        <file>texts/bluetooth_touchpad_16px.svg</file>\n        <file>texts/bluetooth_tv_16px.svg</file>\n        <file>texts/bluetooth_video_16px.svg</file>\n        <file>texts/bluetooth_vidicon_16px.svg</file>\n        <file>icons/bluetooth_camera_16px.svg</file>\n        <file>icons/bluetooth_clang_16px.svg</file>\n        <file>icons/bluetooth_keyboard_16px.svg</file>\n        <file>icons/bluetooth_lan_16px.svg</file>\n        <file>icons/bluetooth_laptop_16px.svg</file>\n        <file>icons/bluetooth_microphone_16px.svg</file>\n        <file>icons/bluetooth_mouse_16px.svg</file>\n        <file>icons/bluetooth_other_16px.svg</file>\n        <file>icons/bluetooth_pad_16px.svg</file>\n        <file>icons/bluetooth_pc_16px.svg</file>\n        <file>icons/bluetooth_pen_16px.svg</file>\n        <file>icons/bluetooth_pheadset_16px.svg</file>\n        <file>icons/bluetooth_phone_16px.svg</file>\n        <file>icons/bluetooth_print_16px.svg</file>\n        <file>icons/bluetooth_scaner_16px.svg</file>\n        <file>icons/bluetooth_touchpad_16px.svg</file>\n        <file>icons/bluetooth_tv_16px.svg</file>\n        <file>icons/bluetooth_video_16px.svg</file>\n        <file>icons/bluetooth_vidicon_16px.svg</file>\n        <file>icons/battery-000-symbolic_20px.svg</file>\n        <file>icons/battery-010-symbolic_20px.svg</file>\n        <file>icons/battery-020-symbolic_20px.svg</file>\n        <file>icons/battery-030-symbolic_20px.svg</file>\n        <file>icons/battery-040-symbolic_20px.svg</file>\n        <file>icons/battery-050-symbolic_20px.svg</file>\n        <file>icons/battery-060-symbolic_20px.svg</file>\n        <file>icons/battery-070-symbolic_20px.svg</file>\n        <file>icons/battery-080-symbolic_20px.svg</file>\n        <file>icons/battery-090-symbolic_20px.svg</file>\n        <file>icons/battery-100-symbolic_20px.svg</file>\n        <file>icons/battery-unknow-symbolic_20px.svg</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-bluetooth/qml/Adapters.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\n\nimport org.deepin.dcc 1.0\nimport QtQuick.Layouts 1.15\n\nDccObject{\n    property bool isUserClosingBluetooth: false  // 跟踪用户是否正在关闭蓝牙\n    \n    // 监听蓝牙状态变化，当真正开启时重置隐藏状态\n    Connections {\n        target: model\n        function onPoweredChanged(poweredState, discoveringState) {\n            if (model.powered && isUserClosingBluetooth) {\n                // 蓝牙已真正开启，重置隐藏状态\n                isUserClosingBluetooth = false;\n            }\n        }\n    }\n    \n    DccObject {\n        name: \"blueToothCtl\" + model.id\n        parentName: \"blueToothAdapters\" + model.id + index\n        weight: 10\n        pageType: DccObject.Item\n        page: DccGroupView {\n            spacing: 0\n            isGroup: false\n        }\n        BluetoothCtl{\n            hideWhenUserClosing: isUserClosingBluetooth\n            onUserClickedClose: {\n                // 用户点击关闭时立即隐藏\n                isUserClosingBluetooth = true\n            }\n            onUserClickedOpen: {\n                // 用户点击开启时显示\n                isUserClosingBluetooth = false\n            }\n        }\n    }\n\n    DccObject {\n        name: \"myDevice\" + model.id\n        parentName: \"blueToothAdapters\" + model.id + index\n        weight: 30\n        pageType: DccObject.Item\n        visible: model.powered && !isUserClosingBluetooth\n        page: DccGroupView {\n            spacing: 0\n            isGroup: false\n        }\n\n        MyDevice{}\n    }\n\n    DccObject {\n        name: \"otherDevice\" + model.id\n        parentName: \"blueToothAdapters\" + model.id + index\n        weight: 40\n        pageType: DccObject.Item\n        visible: model.powered && !isUserClosingBluetooth\n        page: DccGroupView {\n            spacing: 0\n            isGroup: false\n        }\n\n        OtherDevice{\n            hideWhenUserClosing: isUserClosingBluetooth\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-bluetooth/qml/BlueTooth.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: root\n    name: \"bluetooth\"\n    parentName: \"device\"\n    displayName: qsTr(\"Bluetooth\")\n    description: qsTr(\"Bluetooth settings, devices\")\n    visible: false\n    icon: \"bluetoothNomal\"\n    weight: 10\n\n    DccDBusInterface {\n        id: bluetoothDbus\n        service: \"org.deepin.dde.Bluetooth1\"\n        path: \"/org/deepin/dde/Bluetooth1\"\n        inter: \"org.deepin.dde.Bluetooth1\"\n        connection: DccDBusInterface.SessionBus\n\n        function errorSlot(adapters) {\n            console.log(\"bluetooth GetAdapters errorSlot : \", adapters)\n        }\n\n        function getAdaptersSlot(adapters) {\n            console.log(\" bluetooth onGetAdapters\", adapters)\n            if (adapters === \"[]\") {\n                root.visible = false\n            } else {\n                root.visible = true\n            }\n        }\n\n        function onAdapterAdded(adapters) {\n            root.visible = true\n        }\n        function onAdapterRemoved(adapters) {\n            bluetoothDbus.callWithCallback(\"GetAdapters\", [], getAdaptersSlot, errorSlot)\n        }\n\n        Component.onCompleted: {\n            callWithCallback(\"GetAdapters\", [], getAdaptersSlot, errorSlot)\n        }\n    }\n}\n\n"
  },
  {
    "path": "src/plugin-bluetooth/qml/BlueToothDeviceListView.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk.style 1.0 as DS\nimport QtQuick.Window 2.15\nimport Qt.labs.platform\n\nRectangle {\n    id: root\n    property alias deviceModel: repeater.model\n    property bool backgroundVisible: true\n    property bool showMoreBtn: true\n    property bool showPowerStatus: true\n    property bool showConnectStatus: true\n    signal clicked(int index, bool checked)\n\n    color: \"transparent\"\n    implicitHeight: layoutView.height\n    Layout.fillWidth: true\n    ColumnLayout {\n        id: layoutView\n        width: parent.width\n        clip: true\n        spacing: 0\n        Repeater {\n            id: repeater\n            delegate: D.ItemDelegate {\n                readonly property bool showSendFile: model.canSendFile && model.connectStatus === 2\n\n                id: itemCtl\n                Layout.fillWidth: true\n                Layout.fillHeight: true\n\n                topPadding: 0\n                bottomPadding: 0\n\n                cascadeSelected: true\n                visible: model.visiable\n                backgroundVisible: root.backgroundVisible\n                icon.name: model.iconName\n                contentFlow: true\n                hoverEnabled: true\n\n                corners: getCornersForBackground(index, repeater.count)\n\n                background: DccItemBackground {\n                    separatorVisible: true\n                }\n\n                content: Rectangle {\n                    width: parent.width\n                    implicitHeight: Math.max(50, deviceRow.statusItem.implicitHeight + 10)\n                    color: \"transparent\"\n                    MouseArea {\n                        anchors.fill: parent\n                        onDoubleClicked: {\n                            console.log(\"双击了项 \", model.id, model.adapterId);\n                            // 处理双击事件\n                            if (model.connectStatus !== 2) {\n                                dccData.work().connectDevice(model.id, model.adapterId)\n                            }\n                        }\n                    }\n\n                    RowLayout {\n                        id: deviceRow\n                        property alias statusItem: status\n                        width: parent.width\n                        anchors.fill: parent\n\n                        ColumnLayout {\n                            id: status\n                            Layout.fillHeight: true\n                            Layout.fillWidth: true\n                            spacing: 0\n                            Layout.leftMargin: 10\n                            implicitHeight: Math.max(myDeviceName.implicitHeight, loader.implicitHeight) + 10\n                            Label {\n                                id: myDeviceName\n                                text: model.name\n                                font: D.DTK.fontManager.t6\n                                horizontalAlignment: Qt.AlignLeft\n                                verticalAlignment: Qt.AlignVCenter\n                                elide: Text.ElideRight\n                                Layout.fillWidth: true\n                                Layout.fillHeight: !showConnectStatus\n                            }\n\n                            Loader {\n                                id: loader\n                                active: showConnectStatus\n                                sourceComponent:\n                                    RowLayout {\n                                    id: deatilShow\n                                    Layout.fillWidth: true\n                                    Layout.fillHeight: true\n                                    Label {\n                                        id: nameDetail\n                                        width: 60\n                                        text: model.connectStatusText\n                                        horizontalAlignment: Qt.AlignLeft\n                                        verticalAlignment: Qt.AlignTop\n                                        font: D.DTK.fontManager.t10\n                                        Layout.fillHeight: true\n                                        wrapMode: Text.WordWrap\n                                        maximumLineCount: 2\n                                        height: Math.min(implicitHeight, 30)\n                                    }\n\n                                    D.DciIcon {\n                                        id: powerIcon\n                                        visible: model.battery !== \"0%\"\n                                        width: 20\n                                        name: model.batteryIconPath\n                                        sourceSize: Qt.size(14, 14)\n                                    }\n\n                                    Label {\n                                        id: power\n                                        visible: model.battery !== \"0%\"\n                                        text: model.battery\n                                        horizontalAlignment: Qt.AlignLeft\n                                        verticalAlignment: Qt.AlignTop\n                                        font.pointSize: 8\n                                    }\n                                }\n                            }\n                        }\n\n                        Loader {\n                            id: nameEditLoader\n                            active: false\n                            visible: active\n                            Layout.fillWidth: true\n                            Layout.fillHeight: true\n                            Layout.topMargin: 10\n                            Layout.bottomMargin: 10\n\n                            sourceComponent: D.LineEdit {\n                                id: nameEdit\n                                text: model.name\n\n                                onEditingFinished: {\n                                    nameEditLoader.active = false\n                                    deviceRow.statusItem.visible = true\n                                    itemCtl.hoverEnabled = true\n\n                                    console.log(\"set device name \", model.id, nameEdit.text)\n                                    dccData.work().setDeviceAlias(model.id, nameEdit.text)\n                                }\n                                onVisibleChanged: {\n                                    if (visible) {\n                                        text = model.name\n                                    }\n                                }\n                                Keys.onPressed: function(event) {\n                                    if (event.key === Qt.Key_Return) {\n                                        nameEdit.forceActiveFocus(false); // 结束编辑\n                                    }\n                                }\n                                Component.onCompleted: {\n                                    nameEdit.forceActiveFocus(true)\n                                    nameEdit.selectAll()\n                                }\n                            }\n                        }\n\n                        RowLayout {\n                            id: rowCtl\n                            Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                            spacing: 10\n                            D.BusyIndicator {\n                                id: connectBusyIndicator\n                                implicitHeight: 20\n                                implicitWidth: 20\n                                Layout.rightMargin: showMoreBtn ? 0 : 10\n                                Layout.alignment: Qt.AlignVCenter\n                                running: model.connectStatus === 1\n                                visible: model.connectStatus === 1\n                            }\n                            D.ToolButton {\n                                id: connectBtn\n                                implicitHeight: 30\n                                background.visible: true\n                                text: model.connectStatus === 2 ? qsTr(\"Disconnect\") : qsTr(\"Connect\")\n                                enabled: model.connectStatus === 2 || model.connectStatus === 0\n                                font: D.DTK.fontManager.t6\n                                visible: itemCtl.hovered && model.connectStatus !== 1\n\n                                Layout.alignment: Qt.AlignVCenter\n                                onClicked: {\n                                    if (model.connectStatus === 2) {\n                                        dccData.work().disconnectDevice(model.id)\n                                    } else {\n                                        dccData.work().connectDevice(model.id, model.adapterId)\n                                    }\n                                }\n                            }\n\n                            Loader {\n                                active: showMoreBtn\n                                visible: active\n                                Layout.alignment: Qt.AlignRight\n\n                                sourceComponent: D.ActionButton {\n                                    id: moreBtn\n                                    palette.windowText: D.ColorSelector.textColor\n                                    icon.name: \"bluetooth_option\"\n                                    icon.width: 16\n                                    icon.height: 16\n                                    implicitHeight: 30\n                                    implicitWidth: 30\n                                    flat: !hovered\n\n                                    property bool menuShown: false\n\n                                    background: Rectangle {\n                                        property D.Palette pressedColor: D.Palette {\n                                            normal: Qt.rgba(0, 0, 0, 0.2)\n                                            normalDark: Qt.rgba(1, 1, 1, 0.25)\n                                        }\n                                        property D.Palette hoveredColor: D.Palette {\n                                            normal: Qt.rgba(0, 0, 0, 0.1)\n                                            normalDark: Qt.rgba(1, 1, 1, 0.1)\n                                        }\n                                        radius: DS.Style.control.radius\n                                        color: parent.pressed ? D.ColorSelector.pressedColor : (parent.hovered ? D.ColorSelector.hoveredColor : \"transparent\")\n                                        border {\n                                            color: parent.palette.highlight\n                                            width: parent.visualFocus ? DS.Style.control.focusBorderWidth : 0\n                                        }\n                                    }\n\n                                    D.Menu {\n                                        id: contextMenu\n                                        implicitWidth: 150\n\n                                        D.MenuItem {\n                                            id: connectDev\n                                            padding: 0\n                                            text: model.connectStatus === 2 ? qsTr(\"Disconnect\") : qsTr(\"Connect\")\n                                            enabled: model.connectStatus === 2 || model.connectStatus === 0\n                                            onTriggered: {\n                                                if (model.connectStatus === 2) {\n                                                    dccData.work().disconnectDevice(model.id)\n                                                } else {\n                                                    dccData.work().connectDevice(model.id, model.adapterId)\n                                                }\n                                            }\n                                        }\n                                        D.MenuItem {\n                                            id: sendFile\n                                            padding: 0\n                                            text: qsTr(\"Send Files\")\n                                            visible: itemCtl.showSendFile\n                                            height : sendFile.visible ? implicitHeight : 0\n                                            topPadding: sendFile.visible ? undefined : 0\n                                            bottomPadding: sendFile.visible ? undefined : 0\n\n                                            onTriggered: {\n                                                fileDlg.open()\n                                            }\n\n                                        }\n\n                                        D.MenuItem {\n                                            id: rename\n                                            text: qsTr(\"Rename\")\n                                            padding: 0\n                                            onTriggered: {\n                                                nameEditLoader.active = true\n                                                deviceRow.statusItem.visible = false\n                                                itemCtl.hoverEnabled = false\n                                            }\n                                        }\n\n                                        D.MenuSeparator {\n                                        }\n\n                                        D.MenuItem {\n                                            id: removeDev\n                                            text: qsTr(\"Remove Device\")\n                                            enabled: model.connectStatus === 2 || model.connectStatus === 0\n                                            padding: 0\n                                            onTriggered: {\n                                                dccData.work().ignoreDevice(model.id, model.adapterId)\n                                            }\n                                        }\n                                    }\n\n                                    FileDialog {\n                                        id: fileDlg\n                                        title: qsTr(\"Select file\")\n                                        fileMode: FileDialog.OpenFiles\n                                        folder: StandardPaths.writableLocation(StandardPaths.DocumentsLocation)\n                                        onAccepted: {\n                                            console.log(\" Select file : \", fileDlg.files)\n                                            dccData.work().showBluetoothTransDialog(model.address, fileDlg.files)\n                                        }\n                                    }\n\n                                    MouseArea {\n                                        anchors.fill: parent\n                                        hoverEnabled: true\n                                        onEntered: {\n                                            moreBtn.menuShown = contextMenu.visible\n                                        }\n                                        onClicked: {\n                                            console.log(\" contextMenu 单击事件 \");\n                                            if (moreBtn.menuShown) {\n                                                moreBtn.menuShown = false\n                                                return\n                                            }\n                                            // 在点击位置下方显示菜单\n                                            // 获取按钮的全局位置，确保菜单在按钮的正下方显示\n                                            var buttonGlobalX = moreBtn.x + moreBtn.width / 2 - contextMenu.width\n                                            var buttonGlobalY = moreBtn.y + moreBtn.height + 5\n                                            contextMenu.popup(buttonGlobalX, buttonGlobalY)\n                                            moreBtn.menuShown = true\n                                        }\n                                    }\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-bluetooth/qml/BlueToothMain.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\n\nimport org.deepin.dcc 1.0\nimport QtQuick.Layouts 1.15\nimport Qt.labs.platform 1.1\nimport Qt.labs.qmlmodels 1.2\n\nDccObject{\n    name: \"bluetoothSetting\"\n    parentName: \"bluetooth\"\n    weight: 10\n    pageType: DccObject.Item\n    page: DccGroupView {\n        spacing: 0\n        isGroup: false\n    }\n    DccRepeater {\n        model: dccData.model().blueToothAdaptersModel()\n\n        delegate: DccObject {\n            name: \"blueToothAdapters\" + model.id + index\n            parentName: \"bluetoothSetting\"\n            weight: 10\n            pageType: DccObject.Item\n\n            page: DccGroupView {\n                spacing: 0\n                isGroup: false\n            }\n\n            Adapters{}\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-bluetooth/qml/BluetoothCtl.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n// import org.deepin.dtk 1.0 as D\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\n\nimport org.deepin.dcc 1.0\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0\nimport org.deepin.dtk.style 1.0 as DS\n\nDccObject{\n    signal userClickedClose()\n    signal userClickedOpen()\n    property bool hideWhenUserClosing: false  // 接收来自父组件的隐藏状态\n    \n    DccObject {\n        name: \"blueToothSwitch\"\n        parentName: \"blueToothCtl\" + model.id\n        displayName: model.name\n        pageType: DccObject.Item\n        weight: 10\n        backgroundType: DccObject.Normal\n        page: RowLayout {\n            id: root\n            Layout.fillWidth: true\n            spacing: 0\n\n            property bool isSwitching: false\n\n            Connections {\n                target: model\n                function onPoweredChanged(poweredState, discoveringState) {\n                    if (!dccData.model().airplaneEnable) {\n                        if (deviceSwitch.checked !== model.powered) {\n                            deviceSwitch.checked = model.powered;\n                        }\n                    } else {\n                        if (deviceSwitch.checked) {\n                            deviceSwitch.checked = false;\n                        }\n                    }\n\n                    if (deviceSwitch.checked === model.powered || dccData.model().airplaneEnable) {\n                       if (isSwitching) {\n                           if (model.powered && !dccData.model().airplaneEnable) {\n                               dccData.work().setAdapterDiscovering(model.id, true);\n                               dccData.work().setAdapterDiscoverable(model.id);\n                           } else {\n                               dccData.work().setAdapterDiscovering(model.id, false);\n                           }\n                       }\n                        isSwitching = false;\n                    } else {\n                        isSwitching = true;\n                    }\n               }\n            }\n\n            DciIcon {\n                id: deviceIcon\n                Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter\n                name: \"bluetoothNomal\"\n                sourceSize: Qt.size(24, 24)\n                Layout.preferredHeight: 50\n                Layout.preferredWidth: 40\n            }\n\n            ColumnLayout {\n                spacing: 0\n                id: devName\n                Layout.fillWidth: true\n                Label {\n                    id: myDeviceName\n                    Layout.alignment: Qt.AlignLeft\n                    text: dccObj.displayName\n                    font: DTK.fontManager.t6\n                    horizontalAlignment: Qt.AlignLeft\n                    verticalAlignment: Qt.AlignBottom\n                    leftPadding: 0\n                    topPadding: 5\n                    elide: Text.ElideRight\n                    Layout.fillWidth: true\n                }\n\n                Rectangle {\n                    color: \"transparent\"\n                    id: nameDetaillay\n                    Layout.fillWidth: true\n                    implicitHeight: Math.max(nameDetail.height, editBtn.height) + 5\n\n                    Label {\n                        id: nameDetail\n                        anchors.left: parent.left\n                        anchors.top: parent.top\n                        width: Math.min(implicitWidth, parent.width - editBtn.implicitWidth - 10)\n                        text: model.nameDetail\n                        horizontalAlignment: Qt.AlignLeft\n                        verticalAlignment: Text.AlignTop\n                        font: DTK.fontManager.t10\n                        elide: Text.ElideRight\n                        wrapMode: Text.WordWrap\n                        maximumLineCount: 2\n                        height: Math.min(implicitHeight, 40)\n                    }\n\n                    ToolButton {\n                        id: editBtn\n                        anchors.left: nameDetail.right\n                        anchors.verticalCenter: nameDetail.verticalCenter\n                        font: DTK.fontManager.t10\n                        text: qsTr(\"Edit\")\n                        background: null\n\n                        hoverEnabled: true\n                        implicitHeight: 20\n                        textColor: Palette {\n                            normal {\n                                common: DTK.makeColor(Color.Highlight)\n                            }\n                            normalDark: normal\n                            hovered {\n                                common: DTK.makeColor(Color.Highlight).lightness(+10)\n                            }\n                            hoveredDark: hovered\n                            pressed {\n                                common: DTK.makeColor(Color.Highlight).lightness(-10)\n                            }\n                            pressedDark: pressed\n                        }\n\n                        onClicked: {\n                            nameEdit.visible = true\n                            devName.visible =false\n                            nameEdit.forceActiveFocus(true)\n                            nameEdit.selectAll()\n                        }\n                    }\n                }\n            }\n\n            LineEdit {\n                id: nameEdit\n                visible: false\n                Layout.fillWidth: true\n              //  implicitWidth: root.width - deviceSwitch.width - 40 - 32\n                text: myDeviceName.text\n                topPadding: 5\n                bottomPadding: 5\n                Layout.rightMargin: 10\n                implicitHeight: 30\n\n                onTextChanged: {\n                    if (text.length > 64) {\n                        text = text.substr(0, 64);  // 截断到31个字符\n                        nameEdit.alertText = qsTr(\"Bluetooth name cannot exceed 64 characters\")\n                        nameEdit.showAlert = true\n                        dccData.work().playErrorSound()\n                        alertTimer.start()\n                    } else {\n                        nameEdit.showAlert = false\n                    }\n                }\n                Timer {\n                    id: alertTimer\n                    interval: 2000\n                    repeat: false\n                    onTriggered: {\n                        nameEdit.showAlert = false\n                    }\n                }\n\n                function updateAlias() {\n                    if (nameEdit.text === \"\") {\n                        nameEdit.text = myDeviceName.text\n                    } else {\n                        dccData.work().setAdapterAlias(model.id, nameEdit.text)\n                    }\n                    nameEdit.visible = false\n                    devName.visible = true\n                }\n\n                onEditingFinished: {\n                    updateAlias()\n                }\n\n                onFocusChanged: {\n                    if (!focus) {\n                        updateAlias()\n                    }\n                }\n\n                Keys.onPressed: {\n                    if (event.key === Qt.Key_Return) {\n                        nameEdit.forceActiveFocus(false); // 结束编辑\n                    }\n                }\n            }\n\n            BusyIndicator {\n                id: initAnimation\n                running: true\n                visible: isSwitching\n                implicitWidth: 32\n                implicitHeight: 32\n            }\n\n            Switch {\n                id: deviceSwitch\n                Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                Layout.rightMargin: 10\n\n                enabled: !dccData.model().airplaneEnable && !isSwitching               \n                checked: !dccData.model().airplaneEnable && model.powered\n\n                Component.onCompleted: {\n                    if (dccData.model().airplaneEnable) {\n                        if (checked) checked = false;\n                    } else {\n                        if (checked !== model.powered) {\n                            checked = model.powered;\n                        }\n                    }\n                }\n\n                Connections {\n                    target: dccData.model()\n                    function onAirplaneEnableChanged(airplaneModeEnabled) {\n                        if (airplaneModeEnabled) {\n                            checked = false;\n                        } else {\n                            checked = model.powered;\n                        }\n                    }\n                }\n\n                onClicked: {\n                    if (enabled) {\n                        isSwitching = true;\n\n                        // 立即发送信号通知父组件\n                        if (!checked) {\n                            // 用户点击关闭蓝牙\n                            userClickedClose();\n                        } else {\n                            // 用户点击开启蓝牙\n                            userClickedOpen();\n                        }\n\n                        dccData.work().setAdapterPowered(model.id, checked);\n                    }\n                }\n            }\n\n        }\n    }\n\n    DccObject {\n        name: \"blueToothSwitch\"\n        parentName: \"blueToothCtl\"  + model.id\n        icon: \"audio\"\n        pageType: DccObject.Item\n        weight: 20\n        visible: !dccData.model().airplaneEnable && model.powered && !hideWhenUserClosing\n\n        page: RowLayout {\n            CheckBox {\n                checked: model.discoverabled\n                Layout.alignment: Qt.AlignLeft\n                leftPadding: 10\n                text: qsTr(\"Allow other Bluetooth devices to find this device\")\n                \n                onCheckedChanged: {\n                    dccData.work().setAdapterDiscoverable(model.id ,checked)\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"airplaneModeTips\"\n        parentName: \"blueToothCtl\"  + model.id\n        pageType: DccObject.Item\n        weight: 30\n        visible: dccData.model().airplaneEnable\n        page: Item {\n            height: 25\n\n            Label {\n                id: airplaneModeTextLabel\n                text: qsTr(\"To use the Bluetooth function, please turn off\")\n                anchors.left: parent.left\n                anchors.top: parent.top\n                font.pointSize: 8\n                width: implicitWidth\n            }\n            Label {\n                id: airplaneModeLinkLabel\n                text: \"<a href=\\\"airplaneMode\\\" style=\\\"text-decoration:none;\\\">\" + qsTr(\"Airplane Mode\") +\"</a>\"\n                anchors.left: airplaneModeTextLabel.right\n                anchors.top: parent.top\n                font.pointSize: 8\n                textFormat: Text.RichText\n                width: implicitWidth\n\n                // 超链接点击事件\n                onLinkActivated: function(url) {\n                    console.log(\"点击的链接是: \" + url)\n                    dccData.work().jumpToAirPlaneMode()\n                }\n\n                MouseArea {\n                    anchors.fill: parent\n                    hoverEnabled: true\n                    cursorShape: Qt.ArrowCursor\n                    acceptedButtons: Qt.NoButton\n\n                    onEntered: {\n                        cursorShape = Qt.PointingHandCursor;\n                    }\n                    onExited: {\n                        cursorShape = Qt.ArrowCursor;\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-bluetooth/qml/MyDevice.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\n\nimport org.deepin.dcc 1.0\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0\n\nDccObject{\n    DccObject {\n        name: \"myDeviceTitle\"\n        parentName: \"myDevice\" + model.id\n        displayName: qsTr(\"My Devices\")\n        weight: 10\n        pageType: DccObject.Item\n        visible: model.myDeviceVisiable\n        page: Label {\n            leftPadding: 10\n            font.bold: true\n            font.pixelSize: DTK.fontManager.t5.pixelSize\n            text: dccObj.displayName\n        }\n\n    }\n\n    DccObject {\n        name: \"myDeviceList\"\n        parentName: \"myDevice\" + model.id\n        weight: 11\n        backgroundType: DccObject.Normal\n        visible: model.myDeviceVisiable\n        pageType: DccObject.Item\n        page: BlueToothDeviceListView {\n            deviceModel: model.myDevice\n            onClicked: function (index, checked) {\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-bluetooth/qml/OtherDevice.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\n\nimport org.deepin.dcc 1.0\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0\n\nDccObject{\n    property bool refreshEnable: true\n    property bool lastPoweredState: false  // 记录上次蓝牙开关状态\n    property bool hideWhenUserClosing: false  // 接收来自父组件的隐藏状态\n\n    Connections {\n        target: DccApp\n        function onActiveObjectChanged(object) {\n           if (object.name === \"bluetooth\") {\n                refreshEnable = true\n                // 初始化状态记录\n                lastPoweredState = model.powered\n                if (model.powered && !model.discovering) {\n                    deferDiscoverTimer.restart()\n                }\n           }\n        }\n    }\n\n    // 监听蓝牙开关状态变化，确保重新开启时能立即启动扫描\n    Connections {\n        target: model\n        function onPoweredChanged(poweredState, discoveringState) {\n            if (model.powered && !dccData.model().airplaneEnable) {\n                // 蓝牙开启时，重置刷新状态\n                refreshEnable = true\n                \n                // 只有当蓝牙从关闭变为开启时才立即启动扫描\n                if (!lastPoweredState && !model.discovering) {\n                    dccData.work().setAdapterDiscovering(model.id, true);\n                    dccData.work().setAdapterDiscoverable(model.id);\n                }\n            }\n            \n            // 更新状态记录\n            lastPoweredState = model.powered\n        }\n    }\n\n    Timer {\n        id: autoRefreshTimer\n        interval: 5000\n        repeat: false\n        onTriggered: {\n            if (model.powered && refreshEnable && !model.discovering) {\n                dccData.work().setAdapterDiscoverable(model.id)\n            }\n        }\n    }\n\n    Timer {\n        id: deferDiscoverTimer\n        interval: 300\n        repeat: false\n        onTriggered: {\n            if (model.powered && !model.discovering) {\n                dccData.work().setAdapterDiscoverable(model.id)\n            }\n        }\n    }\n\n    DccObject {\n        name: \"OtherDeviceTitle\"\n        parentName: \"otherDevice\" + model.id\n        displayName: qsTr(\"Other Devices\")\n        weight: 10\n        visible: model.powered\n        pageType: DccObject.Item\n        page: ColumnLayout {\n            Label {\n                Layout.leftMargin: 10\n                font.bold: true\n                font.pixelSize: DTK.fontManager.t5.pixelSize\n                text: dccObj.displayName\n            }\n        }\n    }\n\n    DccObject {\n        name: \"blueToothSwitch\"\n        parentName: \"otherDevice\" + model.id\n        pageType: DccObject.Item\n        weight: 20\n        visible: model.powered && !hideWhenUserClosing\n\n        page: RowLayout {\n            CheckBox {\n                Layout.leftMargin: 10\n                Layout.alignment: Qt.AlignLeft\n                checked: dccData.model().displaySwitch\n                text: qsTr(\"Show Bluetooth devices without names\")\n                onCheckedChanged: {\n                    dccData.work().setDisplaySwitch(checked)\n                }\n            }\n\n            IconButton {\n                id: redobtn\n                Layout.alignment: Qt.AlignRight\n                flat: true\n                visible: !model.discovering\n\n                icon.name: \"redo\"\n                onClicked: {\n                    dccData.work().setAdapterDiscoverable(model.id)\n                }\n            }\n\n            BusyIndicator {\n                id: scanAnimation\n                Layout.alignment: Qt.AlignRight\n                running: model.discovering\n                visible: model.discovering\n                implicitWidth: 20\n                implicitHeight: 20\n            }\n        }\n\n        Component.onCompleted: {\n            if (typeof DccApp !== 'undefined' && DccApp.activeObject && DccApp.activeObject.name === \"bluetooth\") {\n                if (model.powered && !model.discovering) {\n                    deferDiscoverTimer.restart()\n                }\n            }\n        }\n    }\n\n    Connections {\n        target: model\n        function onDiscoveringChanged() {\n            if (!model.discovering && model.powered && refreshEnable) {\n                autoRefreshTimer.restart()\n            } else if (model.discovering) {\n                // 正在扫描时停止定时器\n                autoRefreshTimer.stop()\n            }\n        }\n    }\n\n    DccObject {\n        name: \"otherDeviceList\"\n        parentName: \"otherDevice\" + model.id\n        weight: 40\n        visible: model.powered\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: BlueToothDeviceListView {\n            id: deviceListView\n            showMoreBtn: false\n            showConnectStatus: false\n            showPowerStatus: false\n\n            Timer {\n                interval: 300\n                repeat: false\n                running: true\n                onTriggered: {\n                    deviceListView.deviceModel = model.otherDevice\n                }\n            }\n\n            onClicked: function (index, checked) {\n            }\n\n            onVisibleChanged: {\n                refreshEnable = visible\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-bluetooth/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-commoninfo/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\nset(CommonInfo_Name commonInfo)\n\npkg_check_modules(DEEPIN_PW_CHECK REQUIRED libdeepin_pw_check)\n\n\nfile(GLOB_RECURSE commonInfo_SRCS\n    \"operation/*.cpp\"\n    \"operation/*.h\"\n    \"operation/qrc/commoninfo.qrc\"\n)\n\nadd_library(${CommonInfo_Name} MODULE\n    ${commonInfo_SRCS}\n    operation/grubmenulistmodel.h\n    operation/grubmenulistmodel.cpp\n)\n\nset(CommonInfo_Libraries\n    ${DCC_FRAME_Library}\n    ${QT_NS}::DBus\n    ${DTK_NS}::Gui\n)\n\ntarget_link_libraries(${CommonInfo_Name} PRIVATE\n    ${CommonInfo_Libraries}\n    ${DEEPIN_PW_CHECK_LIBRARIES}\n)\n\ndcc_install_plugin(NAME ${CommonInfo_Name} TARGET ${CommonInfo_Name})\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/commoninfointeraction.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"commoninfointeraction.h\"\n#include \"dccfactory.h\"\n\n#include <QtQml/qqml.h>\n\nCommonInfoInteraction::CommonInfoInteraction(QObject *parent)\n    : QObject{ parent }\n    , m_work(NULL)\n    , m_mode(NULL)\n{\n    qmlRegisterType<CommonInfoWork>(\"org.deepin.dcc.systemInfo\", 1, 0, \"CommonInfoWork\");\n    qmlRegisterType<CommonInfoModel>(\"org.deepin.dcc.systemInfo\", 1, 0, \"CommonInfoModel\");\n\n    m_mode = new CommonInfoModel(this);\n    m_work = new CommonInfoWork(m_mode, this);\n\n    m_work->active();\n}\n\nCommonInfoWork *CommonInfoInteraction::work() const\n{\n    return m_work;\n}\n\nvoid CommonInfoInteraction::setWork(CommonInfoWork *newWork)\n{\n    m_work = newWork;\n}\n\nCommonInfoModel *CommonInfoInteraction::mode() const\n{\n    return m_mode;\n}\n\nvoid CommonInfoInteraction::setMode(CommonInfoModel *newMode)\n{\n    m_mode = newMode;\n}\n\nDCC_FACTORY_CLASS(CommonInfoInteraction)\n\n\n#include \"commoninfointeraction.moc\"\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/commoninfointeraction.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef COMMONINFOINTERACTION_H\n#define COMMONINFOINTERACTION_H\n\n#include \"commoninfomodel.h\"\n#include \"commoninfowork.h\"\n\n#include <QObject>\n\nclass CommonInfoInteraction : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit CommonInfoInteraction(QObject *parent = nullptr);\n\n    Q_INVOKABLE CommonInfoWork *work() const;\n    void setWork(CommonInfoWork *newWork);\n\n    Q_INVOKABLE CommonInfoModel *mode() const;\n    void setMode(CommonInfoModel *newMode);\n\nsignals:\n\n\nprivate:\n    CommonInfoWork* m_work;\n    CommonInfoModel* m_mode;\n};\n\n#endif // COMMONINFOINTERACTION_H\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/commoninfomodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"commoninfomodel.h\"\n\n#include <QDebug>\n#include <QLoggingCategory>\n#include <DSysInfo>\n\nnamespace {\n    Q_LOGGING_CATEGORY(dcCommonLog, \"org.deepin.dde.dcc.commoninfo\")\n}\n\nCommonInfoModel::CommonInfoModel(QObject *parent)\n    : QObject(parent)\n    , m_bootDelay(false)\n    , m_themeEnabled(false)\n    , m_updating(false)\n    , m_joinUeProgram(false)\n    , m_activation(false)\n    , m_plymouthscale(0)\n    , m_plymouththeme(QString())\n    , m_GrubAnimationModel(new GrubAnimationModel(this))\n    , m_GrubMenuListModel(new GrubMenuListModel(this))\n    , m_debugLogCurrentIndex(0)\n    , m_needShowModalDialog(false)\n{\n}\n\nvoid CommonInfoModel::setEntryLists(const QStringList &list)\n{\n    if (list != m_entryLists) {\n        m_entryLists = list;\n        Q_EMIT entryListsChanged(list);\n    }\n}\n\nvoid CommonInfoModel::setThemeEnabled(const bool enabled)\n{\n    if (m_themeEnabled != enabled) {\n        m_themeEnabled = enabled;\n        Q_EMIT themeEnabledChanged(m_themeEnabled);\n    }\n}\n\nvoid CommonInfoModel::setShowGrubEditAuth(const bool enabled)\n{\n    m_isShowGrubEditAuth = enabled;\n}\n\nvoid CommonInfoModel::setGrubEditAuthEnabled(const bool enabled)\n{\n    m_grubEditAuthEnabled = enabled;\n    Q_EMIT grubEditAuthEnabledChanged(m_grubEditAuthEnabled);\n}\n\nvoid CommonInfoModel::setDefaultEntry(const QString &entry)\n{\n    if (m_defaultEntry != entry) {\n        m_defaultEntry = entry;\n        Q_EMIT defaultEntryChanged(entry);\n    }\n\n    m_GrubMenuListModel->updateCheckIndex(m_defaultEntry);\n}\n\nvoid CommonInfoModel::setUpdating(bool updating)\n{\n    if (updating != m_updating) {\n        m_updating = updating;\n        Q_EMIT updatingChanged(updating);\n    }\n}\n\nvoid CommonInfoModel::setUeProgram(const bool ueProgram)\n{\n    if (m_joinUeProgram != ueProgram) {\n        m_joinUeProgram = ueProgram;\n    }\n    Q_EMIT ueProgramChanged(m_joinUeProgram);\n}\n\nvoid CommonInfoModel::setDeveloperModeState(const bool state)\n{\n    if (m_developerModeState != state) {\n        m_developerModeState = state;\n        Q_EMIT developerModeStateChanged(state);\n    }\n}\n\nvoid CommonInfoModel::setIsLogin(const bool log)\n{\n    if (m_isLogin == log)\n        return;\n\n    m_isLogin = log;\n    Q_EMIT isLoginChenged(log);\n}\n\nbool CommonInfoModel::bootDelay() const\n{\n    return m_bootDelay;\n}\n\nvoid CommonInfoModel::setBootDelay(bool bootDelay)\n{\n    if (m_bootDelay != bootDelay) {\n        m_bootDelay = bootDelay;\n        Q_EMIT bootDelayChanged(bootDelay);\n    }\n}\n\nvoid CommonInfoModel::setActivation(bool value)\n{\n    if (m_activation != value) {\n        m_activation = value;\n        Q_EMIT LicenseStateChanged(value);\n    }\n}\n\nQPixmap CommonInfoModel::background() const\n{\n    return m_background;\n}\n\nvoid CommonInfoModel::setBackground(const QPixmap &background)\n{\n    m_background = background;\n\n    Q_EMIT backgroundChanged(background);\n}\n\nbool CommonInfoModel::ueProgram() const\n{\n    return m_joinUeProgram;\n}\n\nbool CommonInfoModel::developerModeState() const\n{\n    return m_developerModeState;\n}\n\nvoid CommonInfoModel::setPlymouthScale(int scale)\n{\n    m_plymouthscale = scale;\n\n    m_GrubAnimationModel->updateCheckIndex(scale, false);\n    Q_EMIT plymouthScaleChanged(scale);\n}\n\nvoid CommonInfoModel::setPlymouthTheme(const QString &themeName)\n{\n    m_plymouththeme = themeName;\n\n    Q_EMIT plymouthThemeChanged(themeName);\n}\n\nbool CommonInfoModel::isDeveloperMode() const\n{\n    return m_isDeveloperMode;\n}\n\nbool CommonInfoModel::readOnlyProtectionEnabled() const\n{\n    return m_readOnlyProtectionEnabled;\n}\n\nvoid CommonInfoModel::setBootWallpaperEnabled(bool bootWallpaperEnabled)\n{\n    if (m_bootWallpaperEnabled != bootWallpaperEnabled)\n    {\n        m_bootWallpaperEnabled = bootWallpaperEnabled;\n        Q_EMIT bootWallpaperEnabledChanged();\n    }\n}\n\nbool CommonInfoModel::bootWallpaperEnabled() const\n{\n    return m_bootWallpaperEnabled;\n}\n\nvoid CommonInfoModel::setBootGrubUserNameVisible(bool bootGrubUserNameVisible)\n{\n    if (m_bootGrubUserNameVisible != bootGrubUserNameVisible)\n    {\n        m_bootGrubUserNameVisible = bootGrubUserNameVisible;\n        Q_EMIT bootGrubUserNameVisibleChanged();\n    }\n}\n\nbool CommonInfoModel::bootGrubUserNameVisible() const\n{\n    return m_bootGrubUserNameVisible;\n}\n\nvoid CommonInfoModel::setIsDeveloperMode(bool newIsDeveloperMode)\n{\n    if (m_isDeveloperMode == newIsDeveloperMode)\n        return;\n    m_isDeveloperMode = newIsDeveloperMode;\n    emit isDeveloperModeChanged();\n}\n\nvoid CommonInfoModel::setReadOnlyProtectionEnabled(bool enabled)\n{\n    qCDebug(dcCommonLog) << \"setReadOnlyProtectionEnabled:\" << enabled;\n    m_readOnlyProtectionEnabled = enabled;\n    emit readOnlyProtectionEnabledChanged();\n}\n\n\nbool CommonInfoModel::needShowModalDialog() const\n{\n    return m_needShowModalDialog;\n}\n\nvoid CommonInfoModel::setNeedShowModalDialog(bool newNeedShowModalDialog)\n{\n    if (m_needShowModalDialog == newNeedShowModalDialog)\n        return;\n    m_needShowModalDialog = newNeedShowModalDialog;\n    emit needShowModalDialogChanged();\n}\n\nQString CommonInfoModel::grubThemePath() const\n{\n    return m_grubThemePath;\n}\n\nvoid CommonInfoModel::setGrubThemePath(const QString &newGrubThemePath)\n{\n    m_grubThemePath = newGrubThemePath;\n    emit grubThemePathChanged();\n}\n\nint CommonInfoModel::debugLogCurrentIndex() const\n{\n    return m_debugLogCurrentIndex;\n}\n\nvoid CommonInfoModel::setDebugLogCurrentIndex(int newDebugLogCurrentIndex)\n{\n    if (m_debugLogCurrentIndex == newDebugLogCurrentIndex)\n        return;\n    m_debugLogCurrentIndex = newDebugLogCurrentIndex;\n    emit debugLogCurrentIndexChanged();\n}\n\nGrubAnimationModel *CommonInfoModel::grubAnimationModel()\n{\n    return m_GrubAnimationModel;\n}\n\nGrubMenuListModel * CommonInfoModel::grubMenuListModel()\n{\n    return m_GrubMenuListModel;\n}\n\nbool CommonInfoModel::isCommunitySystem() const\n{\n    return Dtk::Core::DSysInfo::UosCommunity == Dtk::Core::DSysInfo::DSysInfo::uosEditionType();\n}\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/commoninfomodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#pragma once\n\n#include \"grubanimationmodel.h\"\n#include \"grubmenulistmodel.h\"\n\n#include <QtQml/qqml.h>\n#include <QObject>\n#include <QPixmap>\n\nclass CommonInfoModel : public QObject\n{\n    Q_OBJECT\n\n    QML_NAMED_ELEMENT(CommonInfoModel)\n    QML_SINGLETON\n\n    Q_PROPERTY(bool bootDelay READ bootDelay NOTIFY bootDelayChanged FINAL)\n    Q_PROPERTY(bool themeEnabled READ themeEnabled NOTIFY themeEnabledChanged FINAL)\n    Q_PROPERTY(bool grubEditAuthEnabled READ grubEditAuthEnabled NOTIFY grubEditAuthEnabledChanged FINAL)\n    Q_PROPERTY(int debugLogCurrentIndex READ debugLogCurrentIndex NOTIFY debugLogCurrentIndexChanged FINAL)\n    Q_PROPERTY(bool developerModeState READ developerModeState NOTIFY developerModeStateChanged FINAL)\n    Q_PROPERTY(bool isLogin READ isLogin NOTIFY isLoginChenged FINAL)\n    Q_PROPERTY(bool isActivate READ isActivate NOTIFY LicenseStateChanged FINAL)\n    Q_PROPERTY(QString grubThemePath READ grubThemePath NOTIFY grubThemePathChanged FINAL)\n    Q_PROPERTY(bool needShowModalDialog READ needShowModalDialog NOTIFY needShowModalDialogChanged FINAL)\n    Q_PROPERTY(bool isDeveloperMode READ isDeveloperMode NOTIFY isDeveloperModeChanged FINAL)\n    Q_PROPERTY(bool readOnlyProtectionEnabled READ readOnlyProtectionEnabled NOTIFY readOnlyProtectionEnabledChanged FINAL)\n    Q_PROPERTY(bool bootWallpaperEnabled READ bootWallpaperEnabled NOTIFY bootWallpaperEnabledChanged FINAL)\n    Q_PROPERTY(bool bootGrubUserNameVisible READ bootGrubUserNameVisible NOTIFY bootGrubUserNameVisibleChanged FINAL)\n\n\npublic:\n    explicit CommonInfoModel(QObject *parent = nullptr);\n\n    void setEntryLists(const QStringList &list);\n    inline QStringList entryLists() const { return m_entryLists;}\n    inline QString defaultEntry() const { return m_defaultEntry;}\n    bool bootDelay() const;\n    bool themeEnabled() const { return m_themeEnabled; }\n    inline bool isShowGrubEditAuth() { return m_isShowGrubEditAuth; }\n    bool grubEditAuthEnabled() { return m_grubEditAuthEnabled; }\n    inline bool updating() const { return m_updating; }\n    QPixmap background() const;\n    void setBackground(const QPixmap &background);\n    bool ueProgram() const; // for user experience program\n    bool developerModeState() const;\n    inline bool isLogin() const { return m_isLogin; }\n    inline bool isActivate() const { return m_activation; }\n    void setActivation(bool value);\n    inline int plymouthScale() const { return m_plymouthscale; }\n    inline QString plymouthTheme() const { return m_plymouththeme; }\n\n    Q_INVOKABLE GrubAnimationModel *grubAnimationModel();\n    Q_INVOKABLE GrubMenuListModel *grubMenuListModel();\n    Q_INVOKABLE bool isCommunitySystem() const;\n\n    int debugLogCurrentIndex() const;\n    void setDebugLogCurrentIndex(int newDebugLogCurrentIndex);\n\n    QString grubThemePath() const;\n    void setGrubThemePath(const QString &newGrubThemePath);\n\n    bool needShowModalDialog() const;\n    void setNeedShowModalDialog(bool newNeedShowModalDialog);\n\n\n    bool isDeveloperMode() const;\n    bool readOnlyProtectionEnabled() const;\n\n    void setBootWallpaperEnabled(bool bootWallpaperEnabled);\n    bool bootWallpaperEnabled() const;\n\n    void setBootGrubUserNameVisible(bool bootGrubUserNameVisible);\n    bool bootGrubUserNameVisible() const;\n\nQ_SIGNALS:\n    void bootDelayChanged(const bool enabled) const;\n    void themeEnabledChanged(const bool enabled) const;\n    void grubEditAuthEnabledChanged(const bool enabled) const;\n    void entryListsChanged(const QStringList &list);\n    void defaultEntryChanged(const QString &entry);\n    void updatingChanged(const bool &updating);\n    void backgroundChanged(const QPixmap &pixmap);\n    void ueProgramChanged(const bool enable) const; // for user experience program\n    void developerModeStateChanged(const bool enable) const;\n    void isLoginChenged(bool log) const;\n    void LicenseStateChanged(bool state);\n    void plymouthScaleChanged(int scale);\n    void plymouthThemeChanged(const QString &themeName);\n\n    void GrubAnimationModelChanged();\n\n    void debugLogCurrentIndexChanged();\n\n    void grubThemePathChanged();\n\n    void needShowModalDialogChanged();\n\n    void isDeveloperModeChanged();\n    void readOnlyProtectionEnabledChanged();\n    void bootWallpaperEnabledChanged();\n    void bootGrubUserNameVisibleChanged();\n\npublic Q_SLOTS:\n    void setBootDelay(bool bootDelay);\n    void setThemeEnabled(const bool enabled);\n    void setShowGrubEditAuth(const bool enabled);\n    void setGrubEditAuthEnabled(const bool enabled);\n    void setDefaultEntry(const QString &entry);\n    void setUpdating(bool updating);\n    void setUeProgram(const bool ueProgram); // for user experience program\n    void setDeveloperModeState(const bool state);\n    void setIsLogin(const bool log);\n    void setPlymouthScale(int scale);\n    void setPlymouthTheme(const QString &themeName);\n    void setIsDeveloperMode(bool newIsDeveloperMode);\n    void setReadOnlyProtectionEnabled(bool enabled);\n\n\nprivate:\n    bool m_bootDelay;\n    bool m_themeEnabled;\n    bool m_isShowGrubEditAuth = false;\n    bool m_grubEditAuthEnabled = false;\n    bool m_updating;\n    QStringList m_entryLists;\n    QString m_defaultEntry;\n    QPixmap m_background;\n    bool m_joinUeProgram;   // for user experience program\n    bool m_developerModeState{false}; // for developer mode state\n    bool m_isLogin{false};\n    bool m_activation;\n    int m_plymouthscale;\n    QString m_plymouththeme;\n    QString m_grubThemePath;\n\n    GrubAnimationModel* m_GrubAnimationModel;\n    GrubMenuListModel* m_GrubMenuListModel;\n\n    int m_debugLogCurrentIndex;\n    bool m_needShowModalDialog;\n\n    bool m_isDeveloperMode;\n    bool m_readOnlyProtectionEnabled{false};\n    bool m_bootWallpaperEnabled{true};\n    bool m_bootGrubUserNameVisible{true};\n};\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/commoninfoproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"commoninfoproxy.h\"\n\n#include <DNotifySender>\n#include <DDBusSender>\n\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusArgument>\n#include <QDBusReply>\n#include <QDBusConnectionInterface>\n#include <QLoggingCategory>\n\nnamespace {\n    Q_LOGGING_CATEGORY(dcCommonLog, \"dcc.commoninfo\")\n}\n\nconst QString &GrubService = QStringLiteral(\"org.deepin.dde.Grub2\");\nconst QString &GrubPath = QStringLiteral(\"/org/deepin/dde/Grub2\");\nconst QString &GrubInterface = QStringLiteral(\"org.deepin.dde.Grub2\");\n\nconst QString &GrubThemePath = QStringLiteral(\"/org/deepin/dde/Grub2/Theme\");\nconst QString &GrubThemeInterface = QStringLiteral(\"org.deepin.dde.Grub2.Theme\");\n\nconst QString &GrubEditAuthPath = QStringLiteral(\"/org/deepin/dde/Grub2/EditAuthentication\");\nconst QString &GrubEditAuthInterface = QStringLiteral(\"org.deepin.dde.Grub2.EditAuthentication\");\n\nconst QString &DeepinIdService = QStringLiteral(\"com.deepin.deepinid\");\nconst QString &DeepinIdPath = QStringLiteral(\"/com/deepin/deepinid\");\nconst QString &DeepinIdInterface = QStringLiteral(\"com.deepin.deepinid\");\n\nconst QString &LicenseService = QStringLiteral(\"com.deepin.license\");\nconst QString &LicensePath = QStringLiteral(\"/com/deepin/license/Info\");\nconst QString &LicenseInterface = QStringLiteral(\"com.deepin.license.Info\");\n\nconst QString &UserexperienceService = QStringLiteral(\"com.deepin.userexperience.Daemon\");\nconst QString &UserexperiencePath = QStringLiteral(\"/com/deepin/userexperience/Daemon\");\nconst QString &UserexperienceInterface = QStringLiteral(\"com.deepin.userexperience.Daemon\");\n\nconst QString &PlyMouthScaleService = QStringLiteral(\"org.deepin.dde.Daemon1\");\nconst QString &PlyMouthScalePath = QStringLiteral(\"/org/deepin/dde/Daemon1\");\nconst QString &PlyMouthScaleInterface = QStringLiteral(\"org.deepin.dde.Daemon1\");\n\nconst QString &SyncHelperService = QStringLiteral(\"com.deepin.sync.Helper\");\nconst QString &SyncHelperPath = QStringLiteral(\"/com/deepin/sync/Helper\");\nconst QString &SyncHelperInterface = QStringLiteral(\"com.deepin.sync.Helper\");\n\nstatic const QString &ACLHelperService = QStringLiteral(\"com.deepin.daemon.ACL\");\nstatic const QString &ACLHelperPath = QStringLiteral(\"/com/uos/usec/DeveloperMode\");\nstatic const QString &ACLHelperInterface = QStringLiteral(\"com.uos.usec.DeveloperMode\");\n\nstatic const QString &ReadOnlyProtectionService = QStringLiteral(\"org.deepin.dde.Daemon1\");\nstatic const QString &ReadOnlyProtectionPath = QStringLiteral(\"/org/deepin/dde/Daemon1\");\nstatic const QString &ReadOnlyProtectionInterface = QStringLiteral(\"org.deepin.dde.Daemon1\");\n\n// 判断是否可以使用ACL服务来处理开发者模式\nstatic bool isACLActivatable()\n{\n    const bool enableACL = qEnvironmentVariableIsSet(\"DCC_ACL_ENABLED\");\n    if (enableACL)\n        return true;\n\n    if (!QDBusConnection::systemBus().interface()->isServiceRegistered(ACLHelperService))\n        return false;\n\n    QDBusInterface interface(ACLHelperService, ACLHelperPath, ACLHelperInterface, QDBusConnection::systemBus());\n    return interface.isValid();\n}\n\nCommonInfoProxy::CommonInfoProxy(QObject *parent)\n    : QObject(parent)\n    , m_grubInter(new DDBusInterface(GrubService, GrubPath, GrubInterface, QDBusConnection::systemBus(), this))\n    , m_grubThemeInter(new DDBusInterface(GrubService, GrubThemePath, GrubThemeInterface, QDBusConnection::systemBus(), this))\n    , m_grubEditAuthInter(new DDBusInterface(GrubService, GrubEditAuthPath, GrubEditAuthInterface, QDBusConnection::systemBus(), this))\n    , m_deepinIdInter(nullptr)\n    , m_licenseInter(new DDBusInterface(LicenseService, LicensePath, LicenseInterface, QDBusConnection::systemBus(), this))\n    , m_userexperienceInter(new DDBusInterface(UserexperienceService, UserexperiencePath, UserexperienceInterface, QDBusConnection::sessionBus(), this))\n    , m_grubScaleInter(new DDBusInterface(PlyMouthScaleService, PlyMouthScalePath, PlyMouthScaleInterface, QDBusConnection::systemBus(), this))\n    , m_syncHelperInter(nullptr)\n    , m_aclInter(nullptr)\n{\n    // in this function, it will wait for 50 seconds finall return\n    m_grubScaleInter->setTimeout(50000);\n\n    QDBusConnection::systemBus().connect(\n        GrubService,\n        GrubThemePath,\n        GrubThemeInterface,\n        \"BackgroundChanged\",\n        this,\n        SIGNAL(BackgroundChanged())\n    );\n\n    QDBusConnection::systemBus().connect(\n        LicenseService,\n        LicensePath,\n        LicenseInterface,\n        \"LicenseStateChange\",\n        this, SLOT(onLicenseStateChanged()));\n\n    m_isACLController =  isACLActivatable();\n    if (m_isACLController) {\n        qInfo(dcCommonLog) << \"DeveloperMode uses ACL service to work.\";\n    } else {\n        qInfo(dcCommonLog) << \"ACL is unActivatable, DeveloperMode uses deepinId service to work.\";\n    }\n    if (m_isACLController) {\n        m_aclInter = new DDBusInterface(ACLHelperService, ACLHelperPath, ACLHelperInterface, QDBusConnection::systemBus(), this);\n        if (!m_aclInter->isValid()) {\n            qWarning(dcCommonLog) << \"ACL is invalid, error msg:\" << m_aclInter->lastError();\n        }\n        QDBusConnection::systemBus().connect(ACLHelperService, ACLHelperPath, ACLHelperInterface, \"NotifyDeveloperMode\",\n                                             this,\n                                             SIGNAL(DeveloperModeChanged(bool)));\n        QDBusConnection::systemBus().connect(ACLHelperService, ACLHelperPath, ACLHelperInterface, \"NotifyDeveloperMode\",\n                                             this,\n                                             SIGNAL(DeviceUnlockedChanged(bool)));\n        QDBusConnection::systemBus().connect(ACLHelperService, ACLHelperPath, ACLHelperInterface, \"NotifyDeveloperModeError\",\n                                             this,\n                                             SLOT(onACLError(quint32)));\n    } else {\n        m_syncHelperInter = new DDBusInterface(SyncHelperService, SyncHelperPath, SyncHelperInterface, QDBusConnection::systemBus(), this);\n        m_deepinIdInter = new DDBusInterface(DeepinIdService, DeepinIdPath, DeepinIdInterface, QDBusConnection::sessionBus(), this);\n        QDBusConnection::sessionBus().connect(DeepinIdService, DeepinIdPath, DeepinIdInterface, \"Error\", this, SIGNAL(onDeepinIdError(const int, const QString &)));\n    }\n}\n\nbool CommonInfoProxy::IsLogin()\n{\n    if (m_isACLController) {\n        qWarning(dcCommonLog) << \"Don't need to check isLogin deepinId when using ACL service.\";\n        return false;\n    } else {\n        return qvariant_cast<bool>(m_deepinIdInter->property(\"IsLogin\"));\n    }\n}\n\nbool CommonInfoProxy::DeviceUnlocked()\n{\n    if (m_isACLController) {\n        QDBusReply<bool> reply = m_aclInter->call(\"GetDeveloperModeStatus\");\n        if (reply.isValid()) {\n            return reply.value();\n        }\n        qWarning(dcCommonLog) << \"Failed to GetDeveloperModeStatus\";\n        return false;\n    } else {\n        return qvariant_cast<bool>(m_deepinIdInter->property(\"DeviceUnlocked\"));\n    }\n}\n\nvoid CommonInfoProxy::UnlockDevice()\n{\n    if (m_isACLController) {\n        QDBusPendingCall call = m_aclInter->asyncCall(\"AsyncEnableDeveloperModeCompatible\");\n        QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n        connect(watcher, &QDBusPendingCallWatcher::finished, this, [this](QDBusPendingCallWatcher *w) {\n            if (w->isError()) {\n                qWarning(dcCommonLog) << \"EnableDeveloperModeCompatible DBus call failed:\" << w->error().message();\n                Q_EMIT developModeError(\"1001\");\n            }\n            w->deleteLater();\n        });\n    } else {\n        m_deepinIdInter->asyncCall(\"UnlockDevice\");\n    }\n}\n\nvoid CommonInfoProxy::Login()\n{\n    if (m_isACLController) {\n        qWarning(dcCommonLog) << \"Don't need login deepinId when using ACL service.\";\n    } else {\n        m_deepinIdInter->asyncCall(\"Login\");\n    }\n}\n\nQStringList CommonInfoProxy::GetSimpleEntryTitles()\n{\n    QDBusReply<QStringList> reply = m_grubInter->call(QStringLiteral(\"GetSimpleEntryTitles\"));\n    if (reply.isValid())\n        return reply.value();\n    return {};\n}\n\nbool CommonInfoProxy::EnableTheme()\n{\n    return qvariant_cast<bool>(m_grubInter->property(\"EnableTheme\"));\n}\n\nvoid CommonInfoProxy::setEnableTheme(const bool value)\n{\n    QDBusPendingCall call = m_grubInter->asyncCallWithArgumentList(\"SetEnableTheme\", { value });\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            Q_EMIT resetEnableTheme();\n        } else {\n            Q_EMIT EnableThemeChanged(value);\n        }\n        watcher->deleteLater();\n    });\n}\n\nbool CommonInfoProxy::Updating()\n{\n    return qvariant_cast<bool>(m_grubInter->property(\"Updating\"));\n}\n\nQString CommonInfoProxy::DefaultEntry()\n{\n    return qvariant_cast<QString>(m_grubInter->property(\"DefaultEntry\"));\n}\n\nvoid CommonInfoProxy::setDefaultEntry(const QString &entry)\n{\n    m_grubInter->asyncCallWithArgumentList(\"SetDefaultEntry\", { entry });\n}\n\nuint CommonInfoProxy::Timeout()\n{\n    return qvariant_cast<uint>(m_grubInter->property(\"Timeout\"));\n}\n\nvoid CommonInfoProxy::setTimeout(const uint timeout)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(timeout);\n    m_grubInter->callWithCallback(QStringLiteral(\"SetTimeout\"), argumentList, this, nullptr, SLOT(onSetTimeoutError(QDBusError)));\n}\n\nQStringList CommonInfoProxy::EnabledUsers()\n{\n    return qvariant_cast<QStringList>(m_grubEditAuthInter->property(\"EnabledUsers\"));\n}\n\nvoid CommonInfoProxy::DisableUser(const QString &username)\n{\n    QDBusPendingCall call = m_grubEditAuthInter->asyncCallWithArgumentList(\"Disable\", { username });\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            Q_EMIT resetGrubEditAuthEnabled();\n        }\n        watcher->deleteLater();\n    });\n}\n\nvoid CommonInfoProxy::EnableUser(const QString &username, const QString &password)\n{\n    QDBusPendingCall call = m_grubEditAuthInter->asyncCallWithArgumentList(\"Enable\", { username, password });\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            Q_EMIT resetGrubEditAuthEnabled();\n        }\n        watcher->deleteLater();\n    });\n}\n\nQDBusPendingCall CommonInfoProxy::SetScalePlymouth(int scale)\n{\n    return m_grubScaleInter->asyncCallWithArgumentList(\"ScalePlymouth\", { scale });\n}\n\nbool CommonInfoProxy::DeveloperMode()\n{\n    if (m_isACLController) {\n        return DeviceUnlocked();\n    } else {\n        return qvariant_cast<bool>(m_syncHelperInter->property(\"DeveloperMode\"));\n    }\n}\n\nQString CommonInfoProxy::Background()\n{\n    QDBusReply<QString> reply = m_grubThemeInter->call(QStringLiteral(\"GetBackground\"));\n    if (reply.isValid())\n        return reply.value();\n    return QString();\n}\n\nvoid CommonInfoProxy::setBackground(const QString &name)\n{\n    m_grubThemeInter->asyncCallWithArgumentList(\"SetBackgroundSourceFile\", { name });\n}\n\nint CommonInfoProxy::AuthorizationState()\n{\n    return qvariant_cast<int>(m_licenseInter->property(\"AuthorizationState\"));\n}\n\nint CommonInfoProxy::LicenseState()\n{\n    return qvariant_cast<int>(m_licenseInter->property(\"LicenseState\"));\n}\n\nvoid CommonInfoProxy::Enable(const bool value)\n{\n    m_userexperienceInter->asyncCallWithArgumentList(\"Enable\", { value });\n}\n\nbool CommonInfoProxy::IsEnabled()\n{\n    QDBusReply<bool> reply = m_userexperienceInter->call(QStringLiteral(\"IsEnabled\"));\n    if (reply.isValid())\n        return reply.value();\n    return false;\n}\n\nvoid CommonInfoProxy::Notify(const QString &inAppName, const uint replacesId, const QString &appIcon, const QString &summary, const QString &body, const QStringList &actions, const QVariantMap &hints, const int expireTimeout)\n{\n    Dtk::Core::DUtil::DNotifySender(summary).appName(inAppName).replaceId(replacesId).appIcon(appIcon).appBody(body).actions(actions).hints(hints).timeOut(expireTimeout).call();\n}\n\nbool CommonInfoProxy::isACLController() const\n{\n    return m_isACLController;\n}\n\nbool CommonInfoProxy::setReadOnlyProtectionEnabled(bool enabled)\n{\n    qCInfo(dcCommonLog) << \"setReadOnlyProtectionEnabled:\" << enabled;\n    auto call = DDBusSender::system()\n        .service(ReadOnlyProtectionService)\n        .path(ReadOnlyProtectionPath)\n        .interface(ReadOnlyProtectionInterface)\n        .method(\"SetReadOnlyProtection\")\n        .arg(enabled)\n        .call();\n\n    call.waitForFinished();\n    if (call.isError()) {\n        qCWarning(dcCommonLog) << \"setReadOnlyProtectionEnabled failed:\" << call.error().message();\n        return false;\n    }\n    return true;\n}\n\nvoid CommonInfoProxy::onDeepinIdError(const int code, const QString &msg)\n{\n    Q_UNUSED(code);\n\n    QString msgCode = msg;\n    msgCode = msgCode.split(\":\").at(0);\n\n    Q_EMIT developModeError(msgCode);\n}\n\nvoid CommonInfoProxy::onACLError(quint32 exitCode)\n{\n    if (exitCode != 256) {\n        qWarning(dcCommonLog) << \"AsyncEnableDeveloperModeCompatible DBus call exitCode:\" << exitCode;\n        Q_EMIT developModeError(\"1001\");\n    }\n}\n\nvoid CommonInfoProxy::onLicenseStateChanged()\n{\n    const auto state = AuthorizationState();\n    Q_EMIT AuthorizationStateChanged(state);\n}\n\nvoid CommonInfoProxy::onSetTimeoutError(const QDBusError &error)\n{\n    Q_UNUSED(error);\n    Q_EMIT resetBootDelay();\n}\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/commoninfoproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QDBusReply>\n#include <QObject>\n#include <DDBusInterface>\n\nusing Dtk::Core::DDBusInterface;\n\nclass CommonInfoProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit CommonInfoProxy(QObject *parent = nullptr);\n\n    // deepin id\n    Q_PROPERTY(bool IsLogin READ IsLogin NOTIFY IsLoginChanged)\n    bool IsLogin();\n    Q_PROPERTY(bool DeviceUnlocked READ DeviceUnlocked NOTIFY DeviceUnlockedChanged)\n    bool DeviceUnlocked();\n    void UnlockDevice();\n    void Login();\n\n    // grub2\n    QStringList GetSimpleEntryTitles();\n    Q_PROPERTY(bool EnableTheme READ EnableTheme WRITE setEnableTheme NOTIFY EnableThemeChanged)\n    bool EnableTheme();\n    void setEnableTheme(const bool value);\n    Q_PROPERTY(bool Updating READ Updating NOTIFY UpdatingChanged)\n    bool Updating();\n    Q_PROPERTY(QString DefaultEntry READ DefaultEntry WRITE setDefaultEntry NOTIFY DefaultEntryChanged)\n    QString DefaultEntry();\n    void setDefaultEntry(const QString &entry);\n    Q_PROPERTY(uint Timeout READ Timeout WRITE setTimeout NOTIFY TimeoutChanged)\n    uint Timeout();\n    void setTimeout(const uint timeout);\n    // grub2.EditAuth\n    Q_PROPERTY(QStringList EnabledUsers READ EnabledUsers NOTIFY EnabledUsersChanged)\n    QStringList EnabledUsers();\n    void DisableUser(const QString &username);\n    void EnableUser(const QString &username, const QString &password);\n    // grub2.Theme\n    Q_PROPERTY(QString Background READ Background WRITE setBackground NOTIFY BackgroundChanged)\n    QString Background();\n    void setBackground(const QString &name);\n\n    // license\n    Q_PROPERTY(int AuthorizationState READ AuthorizationState NOTIFY AuthorizationStateChanged)\n    int AuthorizationState();\n    Q_PROPERTY(int LicenseState READ LicenseState NOTIFY LicenseStateChanged)\n    int LicenseState();\n\n    // userexperience\n    void Enable(const bool value);\n    bool IsEnabled();\n\n    // notification\n    void Notify(const QString &inAppName, const uint replacesId, const QString &appIcon, const QString &summary, const QString &body, const QStringList &actions, const QVariantMap &hints, const int expireTimeout);\n    // groubScale\n    QDBusPendingCall SetScalePlymouth(int scale);\n\n    Q_PROPERTY(bool DeveloperMode READ DeveloperMode NOTIFY DeveloperModeChanged)\n    bool DeveloperMode();\n\n    bool isACLController() const;\n    \n    // Solid System Read-Only Protection\n    bool setReadOnlyProtectionEnabled(bool enabled);\n\nQ_SIGNALS: // SIGNALS\n    // deepin id\n    void IsLoginChanged(const bool value);\n    void DeviceUnlockedChanged(const bool value);\n    void DeveloperModeChanged(const bool value);\n    // grub2\n    void EnableThemeChanged(const bool value);\n    void UpdatingChanged(const bool value);\n    void DefaultEntryChanged(const QString &entry);\n    void TimeoutChanged(const uint value);\n    // grub2.EditAuth\n    void EnabledUsersChanged(const QStringList &users);\n    // grub2.Theme\n    void BackgroundChanged();\n\n\n    // license\n    void AuthorizationStateChanged(const int code);\n    void LicenseStateChanged(const int code);\n\n    void developModeError(const QString &msgCode);\n\n    // reset signals\n    void resetEnableTheme();\n    void resetGrubEditAuthEnabled();\n    void resetBootDelay();\n\nprivate Q_SLOTS:\n    void onDeepinIdError(const int code, const QString &msg);\n    void onACLError(quint32 exitCode);\n    void onLicenseStateChanged();\n    void onSetTimeoutError(const QDBusError &error);\n\nprivate:\n    DDBusInterface *m_grubInter;\n    DDBusInterface *m_grubThemeInter;\n    DDBusInterface *m_grubEditAuthInter;\n    DDBusInterface *m_deepinIdInter;\n    DDBusInterface *m_licenseInter;\n    DDBusInterface *m_userexperienceInter;\n    DDBusInterface *m_grubScaleInter;\n    DDBusInterface *m_syncHelperInter;\n    DDBusInterface *m_aclInter = nullptr;\n    bool m_isACLController = false;\n};\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/commoninfowork.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"commoninfowork.h\"\n#include \"commoninfomodel.h\"\n#include \"commoninfoproxy.h\"\n#include \"utils.h\"\n\n#include <DNotifySender>\n#include <DGuiApplicationHelper>\n\n#include <signal.h>\n#include <QStandardPaths>\n#include <QDebug>\n#include <QDateTime>\n#include <QProcess>\n#include <QRegularExpression>\n#include <QSettings>\n#include <QLoggingCategory>\n#include <QDir>\n#include <QFile>\n#include <QFileInfo>\n#include <DDBusSender>\n#include <DConfig>\n\n#include <mutex>\n#include <qdbusmetatype.h>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QJsonParseError>\n#include <QDBusConnection>\n#include <QDBusConnectionInterface>\n#include <QDBusMessage>\n\nQ_LOGGING_CATEGORY(DccCommonInfoWork, \"dcc-commoninfo-work\");\n\n#define IS_COMMUNITY_SYSTEM (DSysInfo::UosCommunity == DSysInfo::uosEditionType())       // 是否是社区版\n\nstd::mutex SCALE_SETTING_GUARD;\n\nstatic const QString PlyMouthConf = QStringLiteral(\"/etc/plymouth/plymouthd.conf\");\nstatic const QString kTmpGrubBgDir = QStringLiteral(\"/tmp/dcc-grub-backgrounds\");\n\nconstexpr const char* const BOOT_WALLPAPER_ENABLED = \"bootWallpaperEnabled\";\nconstexpr const char* const BOOT_GRUB_USERNAME_VISIBLE = \"bootGrubUserNameVisible\";\n\nconst QString &GRUB_EDIT_AUTH_ACCOUNT(\"root\");\n\nconst QStringList &SYSTEM_LOCAL_LIST {\n    \"zh_CN\",\n    \"zh_HK\",\n    \"zh_TW\",\n    \"ug_CN\",    // 维语\n    \"bo_CN\"     // 藏语\n};\n\nconst QMap<QString, QString> &SYSTEM_LOCAL_MAP {\n    {\"zh_CN\", \"zh_CN\"},\n    {\"zh_HK\", \"zh_HK\"},\n    {\"zh_TW\", \"zh_TW\"},\n};\n\nstatic const QString getLicensePath(const QString &filePath, const QString &type)\n{\n    const QString& locale { QLocale::system().name() };\n    QString lang = SYSTEM_LOCAL_LIST.contains(locale) ? locale : \"en_US\";\n\n    QString path = QString(filePath).arg(lang).arg(type);\n    if (QFile(path).exists())\n        return path;\n    else\n        return QString(filePath).arg(\"en_US\").arg(type);\n\n}\n\nstatic QString getUserExpContent()\n{\n    QString userExpContent = getLicensePath(\"/usr/share/protocol/userexperience-agreement/User-Experience-Program-License-Agreement-CN-%1.md\", \"\");\n    if (DSysInfo::isCommunityEdition()) {\n        userExpContent = getLicensePath(\"/usr/share/deepin-deepinid-client/privacy/User-Experience-Program-License-Agreement-Community/User-Experience-Program-License-Agreement-CN-%1.md\", \"\");\n        return userExpContent;\n    }\n    QFile newfile(userExpContent);\n    if (false == newfile.exists()) {\n        userExpContent = getLicensePath(\"/usr/share/deepin-deepinid-client/privacy/User-Experience-Program-License-Agreement/User-Experience-Program-License-Agreement-CN-%1.md\", \"\");\n        QFile file(userExpContent);\n        if (false == file.exists()) {\n            userExpContent = getLicensePath(\"/usr/share/deepin-deepinid-client/privacy/User-Experience-Program-License-Agreement-%1.md\", \"\");\n        }\n    }\n    return userExpContent;\n}\n\nstatic const QString getDevelopModeLicense(const QString &filePath, const QString &type)\n{\n    const QString& locale { QLocale::system().name() };\n    QString lang;\n    if (SYSTEM_LOCAL_MAP.keys().contains(locale)) {\n        lang = { SYSTEM_LOCAL_MAP.value(QLocale::system().name(), \"en_US\") };\n    }\n\n    if (lang.isEmpty()) {\n        lang = { SYSTEM_LOCAL_MAP.value(QLocale::system().name(), \"en_US\") };\n    }\n\n    QString path = QString(filePath).arg(lang).arg(type);\n    QFile license(path);\n    if (!license.open(QIODevice::ReadOnly))\n        return QString();\n\n    const QByteArray buf = license.readAll();\n    license.close();\n\n    return buf;\n}\n\nstatic void notifyInfo(const QString &summary)\n{\n    DUtil::DNotifySender(summary)\n            .appIcon(\"\")\n            .appName(\"org.deepin.dde.control-center\")\n            .timeOut(5000)\n            .call();\n}\n\nstatic void notifyInfoWithBody(const QString &summary, const QString &body)\n{\n    DUtil::DNotifySender(summary)\n            .appIcon(\"\")\n            .appName(\"org.deepin.dde.control-center\")\n            .appBody(body)\n            .timeOut(5000)\n            .call();\n}\n\nQDBusArgument &operator<<(QDBusArgument &argument, const DebugArg &debugArg)\n{\n    argument.beginStructure();\n    argument << debugArg.module;\n    argument << debugArg.state;\n    argument.endStructure();\n    return argument;\n}\n\nconst QDBusArgument &operator>>(const QDBusArgument &argument,  DebugArg&debugArg)\n{\n    argument.beginStructure();\n    argument >> debugArg.module;\n    argument >> debugArg.state;\n    argument.endStructure();\n    return argument;\n}\n\n\nCommonInfoWork::CommonInfoWork(CommonInfoModel *model, QObject *parent)\n    : QObject(parent)\n    , m_commomModel(model)\n    , m_commonInfoProxy(new CommonInfoProxy(this))\n    , m_title(\"\")\n    , m_content(\"\")\n    , m_scaleIsSetting(false)\n    , m_debugConfigInter(new QDBusInterface(\"org.deepin.DebugConfig\",\n                            \"/org/deepin/DebugConfig\",\n                            \"org.deepin.DebugConfig\",\n                            QDBusConnection::systemBus(), this))\n    , m_inter(new QDBusInterface(\"com.deepin.sync.Helper\",\n                                 \"/com/deepin/sync/Helper\",\n                                 \"com.deepin.sync.Helper\",\n                                 QDBusConnection::systemBus(), this))\n    , m_dtkConfig(Dtk::Core::DConfig::create(\"org.deepin.dde.control-center\", \n                                             \"org.deepin.dde.control-center.commoninfo\", \n                                             QString(), this))\n{\n    //注册类型\n    qRegisterMetaType<DebugArg>(\"DebugArg\");\n    qDBusRegisterMetaType<DebugArg>();\n    qRegisterMetaType<DebugArgList>(\"DebugArgList\");\n    qDBusRegisterMetaType<DebugArgList>();\n\n    qRegisterMetaType<DMIInfo>(\"DMIInfo\");\n    qDBusRegisterMetaType<DMIInfo>();\n    qRegisterMetaType<HardwareInfo>(\"HardwareInfo\");\n    qDBusRegisterMetaType<HardwareInfo>();\n\n\n    //监听开发者在线认证失败的错误接口信息\n    connect(m_commonInfoProxy, &CommonInfoProxy::developModeError, this, &CommonInfoWork::onDevelopModeError);\n    connect(m_commonInfoProxy, &CommonInfoProxy::IsLoginChanged, m_commomModel, &CommonInfoModel::setIsLogin);\n    connect(m_commonInfoProxy, &CommonInfoProxy::DeviceUnlockedChanged, m_commomModel, &CommonInfoModel::setDeveloperModeState);\n    connect(m_commonInfoProxy, &CommonInfoProxy::DefaultEntryChanged, m_commomModel, &CommonInfoModel::setDefaultEntry);\n    // connect(m_commonInfoProxy, &CommonInfoProxy::EnableThemeChanged, m_commomModel, &CommonInfoModel::setThemeEnabled);\n    connect(m_commonInfoProxy, &CommonInfoProxy::EnableThemeChanged, m_commomModel, [this](bool ThemeEnable) {\n        m_commomModel->setGrubThemePath(m_commonInfoProxy->Background());\n        m_commomModel->setThemeEnabled(ThemeEnable);\n    });\n    connect(m_commonInfoProxy, &CommonInfoProxy::TimeoutChanged, m_commomModel, [this] (const uint timeout) {\n        m_commomModel->setBootDelay(timeout > 1);\n    });\n    connect(m_commonInfoProxy, &CommonInfoProxy::UpdatingChanged, m_commomModel, &CommonInfoModel::setUpdating);\n    connect(m_commonInfoProxy, &CommonInfoProxy::BackgroundChanged, m_commomModel, [this] () {\n        if (!m_commomModel->themeEnabled()) {\n            setEnableTheme(true);\n            m_commomModel->setThemeEnabled(true);\n        }\n        QString backgroundPath = m_commonInfoProxy->Background();\n        QPixmap pix = QPixmap(backgroundPath);\n        m_commomModel->setGrubThemePath(backgroundPath);\n        m_commomModel->setBackground(pix);\n        m_tmpBackgroundPath.clear();\n        QDir dir(kTmpGrubBgDir);\n        if (dir.exists()) {\n            dir.removeRecursively();\n        }\n    });\n    connect(m_commonInfoProxy, &CommonInfoProxy::EnabledUsersChanged, m_commomModel, [this] (const QStringList &users) {\n        m_commomModel->setGrubEditAuthEnabled(users.contains(GRUB_EDIT_AUTH_ACCOUNT));\n    });\n    connect(m_commonInfoProxy, &CommonInfoProxy::AuthorizationStateChanged, m_commomModel, [this] (const int code) {\n        m_commomModel->setActivation(code == 1 || code == 3);\n    });\n\n    connect(m_commonInfoProxy, &CommonInfoProxy::resetEnableTheme, this, [=](){\n        m_commomModel->themeEnabledChanged(m_commomModel->themeEnabled());\n    });\n\n    connect(m_commonInfoProxy, &CommonInfoProxy::resetGrubEditAuthEnabled, this, &CommonInfoWork::resetEditAuthEnabled);\n\n    connect(m_commonInfoProxy, &CommonInfoProxy::resetBootDelay, this, [=](){\n        Q_EMIT m_commomModel->bootDelayChanged(m_commomModel->bootDelay());\n    });\n\n    connect(m_commonInfoProxy, &CommonInfoProxy::DeveloperModeChanged, m_commomModel, &CommonInfoModel::setIsDeveloperMode);\n\n    initDtkConfig();\n}\n\nCommonInfoWork::~CommonInfoWork()\n{\n    if (m_process) {\n        //如果控制中心被强制关闭，需要用kill来杀掉没有被关闭的窗口\n        kill(static_cast<__pid_t>(m_process->processId()), 15);\n        m_process->deleteLater();\n        m_process = nullptr;\n    }\n}\n\nvoid CommonInfoWork::active()\n{\n    m_commomModel->setShowGrubEditAuth(true);\n    m_commomModel->setIsLogin(m_commonInfoProxy->IsLogin());\n    m_commomModel->setDeveloperModeState(m_commonInfoProxy->DeviceUnlocked());\n    m_commomModel->setIsDeveloperMode(m_commonInfoProxy->DeveloperMode());\n    m_commomModel->setThemeEnabled(m_commonInfoProxy->EnableTheme());\n    m_commomModel->setBootDelay(m_commonInfoProxy->Timeout() > 1);\n    m_commomModel->setGrubEditAuthEnabled(m_commonInfoProxy->EnabledUsers().contains(GRUB_EDIT_AUTH_ACCOUNT));\n    m_commomModel->setUpdating(m_commonInfoProxy->Updating());\n\n    updateImmutableWritableStatus();\n    m_commomModel->setReadOnlyProtectionEnabled(isReadOnlyProtectionEnabled());\n    \n    \n\n    auto AuthorizationState = m_commonInfoProxy->AuthorizationState();\n    m_commomModel->setActivation(AuthorizationState == 1 || AuthorizationState == 3);\n    m_commomModel->setUeProgram(m_commonInfoProxy->IsEnabled());\n    m_commomModel->setEntryLists(m_commonInfoProxy->GetSimpleEntryTitles());\n    m_commomModel->setDefaultEntry(m_commonInfoProxy->DefaultEntry());\n\n    initGrubAnimationModel();\n    initGrubMenuListModel();\n    initDebugLogLevel();\n\n    m_commomModel->setGrubThemePath(m_commonInfoProxy->Background());\n}\n\nvoid CommonInfoWork::initGrubAnimationModel()\n{\n    QList<QPair<int, QString>> scaleThemeList;\n    if (IS_COMMUNITY_SYSTEM) {\n        scaleThemeList.append(QPair<int, QString>(2, \"boot_deepin\"));\n        scaleThemeList.append(QPair<int, QString>(1, \"boot_deepin\"));\n    } else {\n        scaleThemeList.append(QPair<int, QString>(2, \"boot_uos\"));\n        scaleThemeList.append(QPair<int, QString>(1, \"boot_uos\"));\n    }\n\n    auto [factor, themeName] = getPlyMouthInformation();\n    m_commomModel->setPlymouthScale(factor);\n    m_commomModel->setPlymouthTheme(themeName);\n\n    QList<GrubAnimationData> list;\n    for (auto item : scaleThemeList) {\n        GrubAnimationData tempData;\n        tempData.startAnimation = false;\n        tempData.imagePath = item.second;\n        tempData.text = item.first == 2 ? tr(\"Large size\") : tr(\"Small size\");\n        tempData.plymouthScale = item.first;\n        tempData.checkStatus = factor == item.first;\n        if (item.first == 2) {\n            tempData.scale = 1;\n        } else if (item.first == 1) {\n            tempData.scale = 0.65;\n        } else {\n            tempData.scale = 1;\n        }\n        list.append(tempData);\n    }\n\n    m_commomModel->grubAnimationModel()->initData(list);\n}\n\nvoid CommonInfoWork::initGrubMenuListModel()\n{\n    QList<GrubMenuData> list;\n    for (QString item : m_commomModel->entryLists()) {\n        GrubMenuData data;\n        data.text = item;\n        data.checkStatus = QString::compare(m_commomModel->defaultEntry(), item, Qt::CaseSensitive) == 0;\n        list.append(data);\n    }\n\n    m_commomModel->grubMenuListModel()->initData(list);\n}\n\nvoid CommonInfoWork::initDebugLogLevel()\n{\n    QStringList arg = {\"all\"};\n    QDBusPendingCall state = m_debugConfigInter->asyncCall(\"GetState\", arg);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(state, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, [this, watcher, state] {\n        if (!state.isError()) {\n            QDBusReply<QStringList> res = state.reply();\n            qInfo() << \"GetState:\" << res.value();\n\n            bool debugState = res.value().first() == \"debug\";         \n            int index = debugState ? 1 : 0;\n            m_commomModel->setDebugLogCurrentIndex(index);\n        } else {\n            qWarning() << \"GetState failed:\" << state.error();\n        }\n        watcher->deleteLater();\n    });\n}\n\nvoid CommonInfoWork::initDtkConfig()\n{\n    if (!m_dtkConfig)\n        return;\n\n    connect(m_dtkConfig, &Dtk::Core::DConfig::valueChanged, this, &CommonInfoWork::onDTKConfigChanged);\n\n    const QStringList configKeys = {\n        BOOT_WALLPAPER_ENABLED,\n        BOOT_GRUB_USERNAME_VISIBLE\n    };\n\n    for (const QString& key : configKeys) {\n        onDTKConfigChanged(key);\n    }\n}\n\nQString CommonInfoWork::verifyPassword(QString text)\n{\n    PwqualityManager::ERROR_TYPE error = PwqualityManager::instance()->verifyPassword(\"\", text, PwqualityManager::CheckType::Grub2);\n    return error != PwqualityManager::ERROR_TYPE::PW_NO_ERR ? PwqualityManager::instance()->getErrorTips(error, PwqualityManager::CheckType::Grub2) : \"\";\n}\n\nvoid CommonInfoWork::jumpToSecurityCenter()\n{\n    DDBusSender()\n    .service(\"com.deepin.defender.hmiscreen\")\n    .interface(\"com.deepin.defender.hmiscreen\")\n    .path(\"/com/deepin/defender/hmiscreen\")\n    .method(QString(\"ShowPage\"))\n    .arg(QString(\"securitytools\"))\n    .arg(QString(\"application-safety\"))\n    .call();\n}\n\nvoid CommonInfoWork::setLogDebug(int index)\n{\n    const bool isOn = index == 1;\n    const QString &state = isOn ? \"debug\" : \"warning\";\n\n    qInfo() << \"SetDebug arg:\" << state;\n    DebugArg arg;\n    arg.state = state;\n    arg.module = \"all\";\n    DebugArgList argList;\n    argList << arg;\n    QDBusPendingCall reply = m_debugConfigInter->asyncCall(\"SetDebug\", QVariant::fromValue(argList));\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(reply, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, [watcher, reply, this] {\n        if (reply.isError()) {\n                qWarning() << \"SetDebug failed:\" << reply.error();\n        }\n        // Todo 由于org.deepin.DebugConfig后端AllDebugLevel属性变化后没有发送信号，当前临时手动取数据，后端加上信号后改成监听信号\n        initDebugLogLevel();\n        watcher->deleteLater();\n    });\n}\n\nvoid CommonInfoWork::importCertificate(QString filePath)\n{\n    filePath = filePath.remove(\"file://\");\n    //读取机器信息证书\n    QFile fFile(filePath);\n    if (!fFile.open(QIODevice::ReadOnly)) {\n        qDebug() << \"Can't open file for writing\";\n    }\n\n    QByteArray data = fFile.readAll();\n    QDBusMessage msg =  m_inter->call(\"EnableDeveloperMode\", data);\n\n           //当返回信息为错误接口信息才处理\n    if (msg.type() == QDBusMessage::MessageType::ErrorMessage) {\n        //系统通知弹窗qdbus 接口\n        QDBusInterface  tInterNotify(\"org.deepin.dde.Notification1\",\n                                    \"/org/deepin/dde/Notification1\",\n                                    \"org.deepin.dde.Notification1\",\n                                    QDBusConnection::sessionBus());\n\n               //初始化Notify 七个参数\n        QString in0(QObject::tr(\"dde-control-center\"));\n        uint in1 = 0;\n        QString in2(\"preferences-system\");\n        QString in3(\"\");\n        QString in4(\"\");\n        QStringList in5;\n        QVariantMap in6;\n        int in7 = 5000;\n\n               //截取error接口 1001:未导入证书 1002:未登录 1003:无法获取硬件信息 1004:网络异常 1005:证书加载失败 1006:签名验证失败 1007:文件保存失败\n        QString msgcode = msg.errorMessage();\n        msgcode = msgcode.split(\":\").at(0);\n        if (msgcode == \"1001\") {\n            in3 = tr(\"Failed to get root access\");\n        } else if (msgcode == \"1002\") {\n            in3 = tr(\"Please sign in to your Union ID first\");\n        } else if (msgcode == \"1003\") {\n            in3 = tr(\"Cannot read your PC information\");\n        } else if (msgcode == \"1004\") {\n            in3 = tr(\"No network connection\");\n        } else if (msgcode == \"1005\") {\n            in3 = tr(\"Certificate loading failed, unable to get root access\");\n        } else if (msgcode == \"1006\") {\n            in3 = tr(\"Signature verification failed, unable to get root access\");\n        } else if (msgcode == \"1007\") {\n            in3 = tr(\"Failed to get root access\");\n        }\n\n               //系统通知认证失败 无法进入开发模式\n        tInterNotify.call(\"Notify\", in0, in1, in2, in3, in4, in5, in6, in7);\n    }\n\n}\n\nvoid CommonInfoWork::exportMessage(QString filePath)\n{\n    filePath = filePath.remove(\"file://\");\n    qDebug() << \" importCertificate file path :  \" << filePath;\n    QDBusInterface licenseInfo(\"com.deepin.sync.Helper\",\n                               \"/com/deepin/sync/Helper\",\n                               \"com.deepin.sync.Helper\",\n                               QDBusConnection::systemBus());\n\n    QDBusReply<HardwareInfo> hardwareInfo = licenseInfo.call(QDBus::AutoDetect, \"GetHardware\");\n    QString fileName = filePath;\n    if (fileName.isEmpty())\n        return;\n\n    QFile file(fileName);\n    if (!file.open(QIODevice::ReadWrite))\n        qWarning() << \"File open error, file name: \" << fileName;\n    else\n        qInfo() << \"Open file: \" << fileName;\n\n           // 使用QJsonObject对象插入键值对。\n    QJsonObject jsonObject;\n    auto hardwareInfoValue = hardwareInfo.value();\n    auto hardwareDMIValue = hardwareInfo.value().dmi;\n    jsonObject.insert(\"id\", hardwareInfoValue.id);\n    jsonObject.insert(\"hostname\", hardwareInfoValue.hostName);\n    jsonObject.insert(\"username\", hardwareInfoValue.username);\n    jsonObject.insert(\"cpu\", hardwareInfoValue.cpu);\n    jsonObject.insert(\"laptop\", hardwareInfoValue.laptop);\n    jsonObject.insert(\"memory\", hardwareInfoValue.memory);\n    jsonObject.insert(\"network_cards\", hardwareInfoValue.networkCards);\n\n    QJsonObject objectDMI;\n    objectDMI.insert(\"bios_vendor\", hardwareDMIValue.biosVendor);\n    objectDMI.insert(\"bios_version\", hardwareDMIValue.biosVersion);\n    objectDMI.insert(\"bios_date\", hardwareDMIValue.biosDate);\n    objectDMI.insert(\"board_name\", hardwareDMIValue.boardName);\n    objectDMI.insert(\"board_serial\", hardwareDMIValue.boardSerial);\n    objectDMI.insert(\"board_vendor\", hardwareDMIValue.boardVendor);\n    objectDMI.insert(\"board_version\", hardwareDMIValue.boardVersion);\n    objectDMI.insert(\"product_name\", hardwareDMIValue.productName);\n    objectDMI.insert(\"product_family\", hardwareDMIValue.productFamily);\n    objectDMI.insert(\"product_serial\", hardwareDMIValue.producctSerial);\n    objectDMI.insert(\"product_uuid\", hardwareDMIValue.productUUID);\n    objectDMI.insert(\"product_version\", hardwareDMIValue.productVersion);\n\n    jsonObject.insert(\"dmi\", objectDMI);\n    //使用QJsonDocument设置该json对象\n    QJsonDocument jsonDoc;\n    jsonDoc.setObject(jsonObject);\n\n           //将json以文本形式写入文件并关闭文件\n    file.write(jsonDoc.toJson());\n    file.close();\n}\n\nvoid CommonInfoWork::resetEditAuthEnabled()\n{\n    Q_EMIT m_commomModel->grubEditAuthEnabledChanged(m_commomModel->grubEditAuthEnabled());\n}\n\nvoid CommonInfoWork::setReadOnlyProtectionEnabled(bool enabled)\n{\n    auto ret = m_commonInfoProxy->setReadOnlyProtectionEnabled(enabled);\n    if (!ret) {\n        qCWarning(DccCommonInfoWork) << \"setReadOnlyProtectionEnabled failed, enabled:\" << enabled;\n    }\n\n    updateImmutableWritableStatus();\n    const bool status = isReadOnlyProtectionEnabled();\n    if (enabled == status) {\n        qCInfo(DccCommonInfoWork) << \"setReadOnlyProtectionEnabled applied successfully, enabled:\" << enabled;\n\n        const QStringList rebootCommand{\"dbus-send\", \"--session\", \"--print-reply\", \"--dest=org.deepin.dde.ShutdownFront1\", \"/org/deepin/dde/ShutdownFront1\", \"org.deepin.dde.ShutdownFront1.Restart\"};\n        DUtil::DNotifySender(\"\")\n            .appBody(tr(\"Restart device to finish applying Solid System Read-Only Protection settings\"))\n            .actions({\"reboot\", tr(\"Restart now\"), \"dismiss\", tr(\"Dismiss\")})\n            .hints({\n                {\"x-deepin-action-reboot\", rebootCommand}\n            })\n            .timeOut(5000)\n            .call();\n    } else {\n        qCWarning(DccCommonInfoWork) << \"setReadOnlyProtectionEnabled failed to apply, enabled:\" << enabled;\n    }\n    \n    m_commomModel->setReadOnlyProtectionEnabled(status);\n}\n\nbool CommonInfoWork::showReadOnlyProtection() const\n{\n    if (!existImmutableWritable()) {\n        qCDebug(DccCommonInfoWork) << \"showReadOnlyProtection: false, immutable writable not exist\";\n        return false;\n    }\n\n    if (isImmutableAutoRecovery()) {\n        qCDebug(DccCommonInfoWork) << \"showReadOnlyProtection: false, immutable writable in auto recovery\";\n        return false;\n    }\n\n    Dtk::Core::DConfig config(\"org.deepin.dde.control-center.commoninfo\");\n    bool ret = config.value(\"showReadOnlyProtection\", true).toBool();\n\n    qCDebug(DccCommonInfoWork) << \"showReadOnlyProtection:\" << ret;\n    return ret;\n}\n\nvoid CommonInfoWork::onDTKConfigChanged(const QString& key)\n{\n    if (!m_dtkConfig || !m_dtkConfig->isValid())\n    {\n        qCWarning(DccCommonInfoWork) << \"Invalid CommonInfo DConfig.\";\n        return;\n    }\n\n    if (!m_commomModel)\n    {\n        qCWarning(DccCommonInfoWork) << \"Invalid CommonInfo Model.\";\n        return;\n    }\n\n    if (key == BOOT_WALLPAPER_ENABLED)\n        m_commomModel->setBootWallpaperEnabled(m_dtkConfig->value(key).toBool());\n    else if (key == BOOT_GRUB_USERNAME_VISIBLE)\n        m_commomModel->setBootGrubUserNameVisible(m_dtkConfig->value(key).toBool());\n}\n\nvoid CommonInfoWork::setBootDelay(bool value)\n{\n    qDebug()<<\" CommonInfoWork::setBootDelay  value =  \"<< value;\n    m_commonInfoProxy->setTimeout(value ? 5 : 1);\n}\n\nvoid CommonInfoWork::setEnableTheme(bool value)\n{\n    m_commonInfoProxy->setEnableTheme(value);\n}\n\nvoid CommonInfoWork::disableGrubEditAuth()\n{\n    m_commonInfoProxy->DisableUser(GRUB_EDIT_AUTH_ACCOUNT);\n}\n\nvoid CommonInfoWork::onSetGrubEditPasswd(const QString &password, const bool &isReset)\n{\n    Q_UNUSED(isReset);\n    // 密码加密后发送到后端存储\n    m_commonInfoProxy->EnableUser(GRUB_EDIT_AUTH_ACCOUNT, passwdEncrypt(password));\n}\n\nvoid CommonInfoWork::setDefaultEntry(const QString &entry)\n{\n    m_commonInfoProxy->setDefaultEntry(entry);\n}\n\nvoid CommonInfoWork::setBackground(const QString &path)\n{\n    QFileInfo fileInfo(path);\n    QString realPath = path;\n\n    if (fileInfo.exists() && fileInfo.isSymLink()) {\n        realPath = fileInfo.symLinkTarget();\n        if (QFileInfo(realPath).isRelative()) {\n            realPath = fileInfo.dir().absoluteFilePath(realPath);\n        }\n        qCDebug(DccCommonInfoWork) << \"Resolved symlink\" << path << \"to\" << realPath;\n    }\n\n    QString suffix = QFileInfo(realPath).suffix();\n    if (suffix.isEmpty()) {\n        suffix = \"img\";\n    }\n    QString baseName = QFileInfo(realPath).completeBaseName();\n    if (baseName.isEmpty()) {\n        baseName = \"dcc_bg\";\n    }\n    QDir tmpDir(kTmpGrubBgDir);\n    if (!tmpDir.exists()) {\n        tmpDir.mkpath(\".\");\n    }\n\n    QString tmpName = tmpDir.filePath(QString(\"%1_%2.%3\")\n                                      .arg(baseName)\n                                      .arg(QDateTime::currentMSecsSinceEpoch())\n                                      .arg(suffix));\n\n    bool copied = QFile::copy(realPath, tmpName);\n    if (copied) {\n        m_tmpBackgroundPath = tmpName;\n        m_commonInfoProxy->setBackground(tmpName);\n    } else {\n        m_tmpBackgroundPath.clear();\n        m_commonInfoProxy->setBackground(realPath);\n    }\n}\n\nvoid CommonInfoWork::setUeProgram(bool enabled)\n{\n    QString current_date = QDateTime::currentDateTime().toString(\"yyyy-MM-dd hh:mm::ss.zzz\");\n    if (enabled) {\n        qInfo(\"suser opened experience project switch.\");\n        // 打开license-dialog必要的三个参数:标题、license文件路径、checkBtn的Text\n        QString allowContent(tr(\"Agree and Join User Experience Program\"));\n\n        // license路径\n        m_content = getUserExpContent();\n\n        m_process = new QProcess(this);\n\n        auto pathType = \"-c\";\n        if (!SYSTEM_LOCAL_LIST.contains(QLocale::system().name()))\n            pathType = \"-e\";\n        \n        auto themeType = Dtk::Gui::DGuiApplicationHelper::instance()->themeType();\n        QString theme = themeType == Dtk::Gui::DGuiApplicationHelper::DarkType ? \"dark\" : \"light\";\n        \n        m_process->start(\"dde-license-dialog\",\n                                      QStringList() << \"-t\" << m_title << pathType << m_content << \"-a\" << allowContent << \"-p\" << theme);\n        qDebug()<<\" Deliver content QStringList() = \"<<\"dde-license-dialog\"\n                                                     << \"-t\" << m_title << pathType << m_content << \"-a\" << allowContent << \"-p\" << theme;\n        connect(m_process, static_cast<void (QProcess::*)(int, QProcess::ExitStatus)>(&QProcess::finished), this, [=](int result) {\n            if (96 == result) {\n                m_commonInfoProxy->Enable(enabled);\n                m_commomModel->setUeProgram(enabled);\n            } else {\n                m_commomModel->setUeProgram(!enabled);\n                qInfo() << QString(\"On %1, users cancel the switch to join the user experience program!\").arg(current_date);\n            }\n            m_process->deleteLater();\n            m_process = nullptr;\n        });\n    } else {\n        m_commonInfoProxy->Enable(enabled);\n        m_commomModel->setUeProgram(enabled);\n    }\n}\n\nvoid CommonInfoWork::closeUeProgram()\n{\n    if (m_process) {\n        m_process->kill();\n    }\n}\n\nvoid CommonInfoWork::setEnableDeveloperMode(bool enabled)\n{\n    QDateTime current_date_time = QDateTime::currentDateTime();\n    QString current_date = current_date_time.toString(\"yyyy-MM-dd hh:mm::ss.zzz\");\n\n    if (!enabled)\n        return;\n    // 打开license-dialog必要的三个参数:标题、license文件路径、checkBtn的Text\n    QString title(tr(\"The Disclaimer of Developer Mode\"));\n    QString allowContent(tr(\"Agree and Request Root Access\"));\n\n    // license内容\n    QString content = getDevelopModeLicense(\":/systeminfo/license/deepin-end-user-license-agreement_developer_community_%1.txt\", \"\");\n    QString contentPath = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation).append(\"tmpDeveloperMode.txt\");// 临时存储路径\n    QFile *contentFile = new QFile(contentPath);\n    // 如果文件不存在，则创建文件\n    if (!contentFile->exists()) {\n        contentFile->open(QIODevice::WriteOnly);\n        contentFile->close();\n    }\n    // 写入文件内容\n    if (!contentFile->open(QFile::ReadWrite | QIODevice::Text | QIODevice::Truncate))\n        return;\n    contentFile->write(content.toLocal8Bit());\n    contentFile->close();\n\n    m_commomModel->setNeedShowModalDialog(true);\n    auto pathType = \"-c\";\n    QStringList sl;\n    sl << \"zh_CN\" << \"zh_TW\";\n    if (!sl.contains(QLocale::system().name()))\n        pathType = \"-e\";\n\n    auto themeType = Dtk::Gui::DGuiApplicationHelper::instance()->themeType();\n    QString theme = themeType == Dtk::Gui::DGuiApplicationHelper::DarkType ? \"dark\" : \"light\";\n\n    m_process = new QProcess(this);\n    m_process->start(\"dde-license-dialog\", QStringList() << \"-t\" << title << pathType << contentPath << \"-a\" << allowContent << \"-p\" << theme);\n\n    connect(m_process, static_cast<void (QProcess::*)(int, QProcess::ExitStatus)>(&QProcess::finished), this, [=](int result) {\n        if (96 == result) {\n            m_commonInfoProxy->UnlockDevice();\n        } else {\n            qInfo() << QString(\"On %1, Remove developer mode Disclaimer!\").arg(current_date);\n        }\n        m_commomModel->setNeedShowModalDialog(false);\n        contentFile->remove();\n        contentFile->deleteLater();\n        m_process->deleteLater();\n        m_process = nullptr;\n    });\n}\n\nvoid CommonInfoWork::login()\n{\n    m_commonInfoProxy->Login();\n}\n\nQString CommonInfoWork::passwdEncrypt(const QString &password)\n{\n    if (password.isEmpty()) {\n        qCWarning(DccCommonInfoWork) << \"Empty password provided\";\n        return QString();\n    }\n\n    QProcess pbkdf2;\n    pbkdf2.setProgram(\"grub-mkpasswd-pbkdf2\");\n    pbkdf2.setProcessChannelMode(QProcess::SeparateChannels);\n\n    pbkdf2.start();\n    if (!pbkdf2.waitForStarted()) {\n        qCWarning(DccCommonInfoWork) << \"Failed to start grub-mkpasswd-pbkdf2:\" << pbkdf2.errorString();\n        return QString();\n    }\n\n    // 通过标准输入传递密码（避免命令行注入）\n    // grub-mkpasswd-pbkdf2 期望格式: password\\npassword\\n\n    QString input = password + \"\\n\" + password + \"\\n\";\n    pbkdf2.write(input.toUtf8());\n    pbkdf2.closeWriteChannel();\n\n    if (!pbkdf2.waitForFinished()) {\n        qCWarning(DccCommonInfoWork) << \"grub-mkpasswd-pbkdf2 execution failed:\" << pbkdf2.errorString();\n        return QString();\n    }\n\n    if (pbkdf2.exitCode() != 0) {\n        qCWarning(DccCommonInfoWork) << \"grub-mkpasswd-pbkdf2 exited with code:\" << pbkdf2.exitCode()\n                                      << \"stderr:\" << pbkdf2.readAllStandardError();\n        return QString();\n    }\n\n    // 解析输出：grep PBKDF2 并提取第4个字段\n    QString output = QString::fromUtf8(pbkdf2.readAllStandardOutput());\n    QStringList lines = output.split('\\n', Qt::SkipEmptyParts);\n\n    for (const QString &line : lines) {\n        if (line.contains(\"PBKDF2\")) {\n            QStringList fields = line.split(QRegularExpression(\"\\\\s+\"), Qt::SkipEmptyParts);\n            if (fields.size() >= 4) {\n                return fields.at(3);  // 返回第4个字段（下标3）\n            }\n        }\n    }\n\n    qCWarning(DccCommonInfoWork) << \"Failed to parse PBKDF2 output\";\n    return QString();\n}\n\nstd::pair<int, QString> CommonInfoWork::getPlyMouthInformation()\n{\n    QSettings settings(PlyMouthConf, QSettings::IniFormat);\n\n    QString themeName = settings.value(\"Daemon/Theme\").toString();\n\n    static QStringList ScaleLowDpiThemeNames = {\"deepin-logo\", \"deepin-ssd-logo\", \"uos-ssd-logo\"};\n    static QStringList ScaleHighDpiThemeNames = {\"deepin-hidpi-logo\", \"deepin-hidpi-ssd-logo\", \"uos-hidpi-ssd-logo\"};\n    if (ScaleLowDpiThemeNames.contains(themeName)) {\n        return {1, themeName};\n    } else if (ScaleHighDpiThemeNames.contains(themeName)) {\n        return {2, themeName};\n    }\n\n    return {0, QString()};\n}\n\nbool CommonInfoWork::existImmutableWritable() const\n{\n    return m_immutableWritableStatus != \"error\";\n}\n\nbool CommonInfoWork::isImmutableAutoRecovery() const\n{\n    return m_immutableWritableStatus == \"overlay\";\n}\n\nbool CommonInfoWork::isReadOnlyProtectionEnabled() const\n{\n    return m_immutableWritableStatus == \"remount\";\n}\n\nstatic QString getDeepinImmutableWritableStatus()\n{\n    QProcess process;\n    process.setProgram(\"/usr/bin/deepin-immutable-writable\");\n    process.setArguments({\"status\", \"-j\"});\n    process.start();\n    process.waitForFinished(5000);\n    \n    if (process.exitCode() != 0) {\n        qWarning() << \"deepin-immutable-writable status command failed, exit code:\" << process.exitCode();\n        return QString(\"error\");\n    }\n\n    const QByteArray data = process.readAllStandardOutput();\n\n    // 解析 JSON 格式的输出\n    QJsonParseError error;\n    QJsonDocument doc = QJsonDocument::fromJson(data, &error);\n    if (error.error != QJsonParseError::NoError) {\n        qWarning() << \"Failed to parse deepin-immutable-writable JSON output:\" << error.errorString();\n        return QString(\"error\");\n    }\n\n    QJsonObject rootObj = doc.object();\n    \n    // 检查返回状态\n    int code = rootObj.value(\"code\").toInt(-1);\n    if (code != 0) {\n        qWarning() << \"deepin-immutable-writable returned error code:\" << code \n                    << \"message:\" << rootObj.value(\"message\").toString();\n        return QString(\"error\");\n    }\n    \n    QJsonObject dataObj = rootObj.value(\"data\").toObject();\n    QJsonObject confObj = dataObj.value(\"conf\").toObject();\n    \n    bool enable = confObj.value(\"enable\").toBool(false);\n\n    bool clearAfterReboot = confObj.value(\"clearAfterReboot\").toBool(false);\n    bool cleanData = confObj.value(\"cleanData\").toBool(false);\n\n    // Enable 为 true, 表明功能已开启\n    // ClearAfterReboot和CleanData在开启无忧还原的时候才会是true\n    if (clearAfterReboot && cleanData) {\n        return QStringLiteral(\"overlay\");  // 无忧还原\n    } else if (!enable) {\n        return QStringLiteral(\"remount\");  // 只读保护\n    }\n    \n    return QString();\n}\n\nvoid CommonInfoWork::updateImmutableWritableStatus()\n{\n    m_immutableWritableStatus = getDeepinImmutableWritableStatus();\n}\n\nvoid CommonInfoWork::onDevelopModeError(const QString &msgCode)\n{\n    //初始化Notify 七个参数\n    QString in0(QObject::tr(\"dde-control-center\"));\n    uint in1 = 0;\n    QString in2(\"preferences-system\");\n    QString in3(\"\");\n    QString in4(\"\");\n    QStringList in5;\n    QVariantMap in6;\n    int in7 = 5000;\n\n    //截取error接口 1001:未导入证书 1002:未登录 1003:无法获取硬件信息 1004:网络异常 1005:证书加载失败 1006:签名验证失败 1007:文件保存失败\n    if (msgCode == \"1001\") {\n        in3 = tr(\"Failed to get root access\");\n    } else if (msgCode == \"1002\") {\n        in3 = tr(\"Please sign in to your Union ID first\");\n    } else if (msgCode == \"1003\") {\n        in3 = tr(\"Cannot read your PC information\");\n    } else if (msgCode == \"1004\") {\n        in3 = tr(\"No network connection\");\n    } else if (msgCode == \"1005\") {\n        in3 = tr(\"Certificate loading failed, unable to get root access\");\n    } else if (msgCode == \"1006\") {\n        in3 = tr(\"Signature verification failed, unable to get root access\");\n    } else if (msgCode == \"1007\") {\n        in3 = tr(\"Failed to get root access\");\n    }\n    //系统通知 认证失败 无法进入开发模式\n    m_commonInfoProxy->Notify(in0, in1, in2, in3, in4, in5, in6, in7);\n}\n\nvoid CommonInfoWork::setPlymouthFactor(int factor)\n{\n    if (factor == m_commomModel->plymouthScale()) {\n        return;\n    }\n    if (m_scaleIsSetting) {\n        return;\n    }\n    std::lock_guard<std::mutex> guard(SCALE_SETTING_GUARD);\n    m_scaleIsSetting = true;\n\n    m_commomModel->grubAnimationModel()->updateCheckIndex(factor, true);\n    QDBusPendingCall call = m_commonInfoProxy->SetScalePlymouth(factor);\n    notifyInfo(tr(\"Start setting the new boot animation, please wait for a minute\"));\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [this, watcher, call] {\n        if (call.isError()) {\n            qCWarning(DccCommonInfoWork) << \"DBus Error: \" << call.error();\n        }\n        auto [factor, themeName] = getPlyMouthInformation();\n        m_commomModel->setPlymouthTheme(themeName);\n        m_commomModel->setPlymouthScale(factor);\n        notifyInfoWithBody(tr(\"Setting new boot animation finished\"),\n                           tr(\"The settings will be applied after rebooting the system\"));\n        m_scaleIsSetting = false;\n        watcher->deleteLater();\n        Q_EMIT settingScaling(false);\n    });\n    Q_EMIT settingScaling(true);\n}\n\nbool CommonInfoWork::isSecurityCenterInstalled()\n{\n    auto isDbusNameAvailable = [](const QDBusConnection &conn, const QString &serviceName) -> bool {\n        auto *iface = conn.interface();\n        if (!iface)\n            return false;\n        return iface->isServiceRegistered(serviceName);\n    };\n\n    if (isDbusNameAvailable(QDBusConnection::sessionBus(), QStringLiteral(\"com.deepin.defender.hmiscreen\")))\n        return true;\n\n    if (isDbusNameAvailable(QDBusConnection::systemBus(), QStringLiteral(\"com.deepin.defender.AutostartManager\")))\n        return true;\n\n    return QFileInfo::exists(\"/usr/libexec/deepin/deepin-defender\");\n}\n\nbool CommonInfoWork::isACLController() const\n{\n    return m_commonInfoProxy->isACLController();\n}\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/commoninfowork.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#pragma once\n\n#include <QDBusInterface>\n#include <QObject>\n\n\n#include \"pwqualitymanager.h\"\n\n#include <QDBusArgument>\n\nclass QProcess;\nclass CommonInfoProxy;\n\nclass CommonInfoModel;\nnamespace Dtk::Core {\n    class DConfig;\n}\n\nstruct DebugArg {\n    QString module;\n    QString state;\n};\nQ_DECLARE_METATYPE(DebugArg)\ntypedef QList<DebugArg> DebugArgList;\nQ_DECLARE_METATYPE(DebugArgList)\n\n\nclass CommonInfoWork : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit CommonInfoWork(CommonInfoModel *model, QObject *parent = nullptr);\n    virtual ~CommonInfoWork();\n\n    void active();\n    bool isSettingPlymouth() { return m_scaleIsSetting; }\n\n    void initGrubAnimationModel();\n    void initGrubMenuListModel();\n    void initDebugLogLevel();\n    void initDtkConfig();\n\n    Q_INVOKABLE QString verifyPassword(QString text);\n    Q_INVOKABLE void jumpToSecurityCenter();\n    Q_INVOKABLE void setLogDebug(int index);\n    Q_INVOKABLE void importCertificate(QString filePath);\n    Q_INVOKABLE void exportMessage(QString filePath);\n    Q_INVOKABLE void setBackground(const QString &path);\n    Q_INVOKABLE bool isSecurityCenterInstalled();\n    Q_INVOKABLE bool isACLController() const;\n\npublic Q_SLOTS:\n    void setBootDelay(bool value);\n    void setEnableTheme(bool value);\n    void setDefaultEntry(const QString &entry);\n    void disableGrubEditAuth();\n    void onSetGrubEditPasswd(const QString &password, const bool &isReset);\n    void setUeProgram(bool enabled);\n    void closeUeProgram();\n    void setEnableDeveloperMode(bool enabled);\n    void login();\n    void onDevelopModeError(const QString &msgCode);\n    void setPlymouthFactor(int factor);\n    void resetEditAuthEnabled();\n    void setReadOnlyProtectionEnabled(bool enabled);\n    bool showReadOnlyProtection() const;\n    void onDTKConfigChanged(const QString& key);\n\nQ_SIGNALS:\n    void settingScaling(bool);\n\nprivate:\n    QString passwdEncrypt(const QString &password);\n    std::pair<int, QString> getPlyMouthInformation();\n    void updateImmutableWritableStatus();\n    bool existImmutableWritable() const;\n    bool isImmutableAutoRecovery() const;\n    bool isReadOnlyProtectionEnabled() const;\n\nprivate:\n    CommonInfoModel *m_commomModel;\n    CommonInfoProxy *m_commonInfoProxy;\n    QProcess *m_process = nullptr;\n    QString m_title;\n    QString m_content;\n    bool m_scaleIsSetting;\n    QDBusInterface *m_debugConfigInter;\n    QDBusInterface *m_inter;\n    QString m_tmpBackgroundPath;\n    QString m_immutableWritableStatus;\n    Dtk::Core::DConfig *m_dtkConfig = nullptr;\n};\n\n\nclass DMIInfo\n{\npublic:\n    DMIInfo(){}\n\n    friend QDebug operator<<(QDebug debug, const DMIInfo &info)\n    {\n        debug << QString(\"DMIInfo(\") << info.biosVendor << \", \" << info.biosVersion << \", \"\n              << info.biosDate << \", \" << info.boardName << \", \" << info.boardSerial << \", \"\n              << info.boardVendor << \", \" << info.boardVersion << \", \"\n              << info.productName << \", \" << info.productFamily << \", \"\n              << info.producctSerial << \", \" << info.productUUID << \", \"\n              << info.productVersion << \")\";\n\n        return debug;\n    }\n    friend const QDBusArgument &operator>>(const QDBusArgument &arg, DMIInfo &info)\n    {\n        arg.beginStructure();\n        arg >> info.biosVendor >> info.biosVersion >> info.biosDate\n                >> info.boardName >> info.boardSerial >> info.boardVendor >> info.boardVersion\n                >> info.productName >> info.productFamily\n                >> info.producctSerial >> info.productUUID >> info.productVersion;\n        arg.endStructure();\n\n        return arg;\n    }\n    friend QDBusArgument &operator<<(QDBusArgument &arg, const DMIInfo &info)\n    {\n        arg.beginStructure();\n        arg << info.biosVendor << info.biosVersion << info.biosDate\n            << info.boardName << info.boardSerial << info.boardVendor << info.boardVersion\n            << info.productName << info.productFamily\n            << info.producctSerial << info.productUUID << info.productVersion;\n        arg.endStructure();\n\n        return arg;\n    }\n\npublic:\n    QString biosVendor{\"\"};\n    QString biosVersion{\"\"};\n    QString biosDate{\"\"};\n    QString boardName{\"\"};\n    QString boardSerial{\"\"};\n    QString boardVendor{\"\"};\n    QString boardVersion{\"\"};\n    QString productName{\"\"};\n    QString productFamily{\"\"};\n    QString producctSerial{\"\"};\n    QString productUUID{\"\"};\n    QString productVersion{\"\"};\n};\n\nclass HardwareInfo\n{\npublic:\n    HardwareInfo(){}\n\n    friend QDebug operator<<(QDebug debug, const HardwareInfo &info)\n    {\n        debug << \"HardwareInfo(\" <<info.id << \", \" << info.hostName  << \", \"\n              << info.username  << \", \" << info.os  << \", \" << info.cpu << \", \"\n              << info.laptop  << \", \" << info.memory  << \", \" << info.diskTotal\n              << \", \" << info.networkCards << \", \" << info.diskList  << \", \" << info.dmi << ')';\n\n        return debug;\n    }\n    friend QDBusArgument &operator<<(QDBusArgument &arg, const HardwareInfo &info)\n    {\n        arg.beginStructure();\n        arg << info.id << info.hostName << info.username << info.os << info.cpu\n            << info.laptop << info.memory << info.diskTotal << info.networkCards\n            << info.diskList << info.dmi;\n        arg.endStructure();\n\n        return arg;\n    }\n    friend const QDBusArgument &operator>>(const QDBusArgument &arg, HardwareInfo &info)\n    {\n        arg.beginStructure();\n        arg >> info.id >> info.hostName >> info.username >> info.os >> info.cpu\n                >> info.laptop >> info.memory >> info.diskTotal >> info.networkCards\n                >> info.diskList >> info.dmi;\n        arg.endStructure();\n\n        return arg;\n    }\n\npublic:\n    QString id{\"\"};\n    QString hostName{\"\"};\n    QString username{\"\"};\n    QString os{\"\"};\n    QString cpu{\"\"};\n    bool laptop{false};\n    qint64 memory{0};\n    qint64 diskTotal{0};\n    QString networkCards{\"\"};\n    QString diskList{\"\"};\n    DMIInfo dmi;\n};\n\nQ_DECLARE_METATYPE(DMIInfo)\nQ_DECLARE_METATYPE(HardwareInfo)\n\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/grubanimationmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"grubanimationmodel.h\"\n\nGrubAnimationModel::GrubAnimationModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n}\n\nvoid GrubAnimationModel::initData(const QList<GrubAnimationData> &data)\n{\n    m_grubAnimationDataList.clear();\n\n    for (GrubAnimationData item : data) {\n        m_grubAnimationDataList.append({item.imagePath, item.text, item.checkStatus, item.startAnimation, item.scale, item.plymouthScale});\n    }\n}\n\nvoid GrubAnimationModel::addAnimation(const GrubAnimationData &data)\n{\n    int row = rowCount();\n    beginInsertRows(QModelIndex(), row, row);\n    m_grubAnimationDataList.append({data.imagePath, data.text, data.checkStatus, data.startAnimation, data.scale, data.plymouthScale});\n    endInsertRows();\n}\n\nint GrubAnimationModel::rowCount(const QModelIndex &parent) const\n{\n    // For list models only the root node (an invalid parent) should return the list's size. For all\n    // other (valid) parents, rowCount() should return 0 so that it does not become a tree model.\n    if (parent.isValid())\n        return 0;\n\n    return m_grubAnimationDataList.count();\n}\n\nQVariant GrubAnimationModel::data(const QModelIndex &index, int role) const\n{\n    if (!index.isValid() || index.row() < 0 || index.row() >= m_grubAnimationDataList.count())\n        return QVariant();\n\n    const GrubAnimationData &grubAnimationData = m_grubAnimationDataList[index.row()];\n   // qDebug() << \" ================== \" << role << grubAnimationData.text << grubAnimationData.checkStatus;\n\n    if (role == Qt::DisplayRole || role == ImagePath) {\n        return grubAnimationData.imagePath;\n    } else if (role == Text) {\n        return grubAnimationData.text;\n    } else if (role == CheckStatus) {\n        return grubAnimationData.checkStatus;\n    } else if (role == StartAnimation) {\n        return grubAnimationData.startAnimation;\n    } else if (role == Scale) {\n        return grubAnimationData.scale;\n    } else if (role == PlymouthScale) {\n        return grubAnimationData.plymouthScale;\n    }\n\n    return QVariant();\n}\n\nbool GrubAnimationModel::insertRows(int row, int count, const QModelIndex &parent)\n{\n    beginInsertRows(parent, row, row + count - 1);\n    // FIXME: Implement me!\n\n    endInsertRows();\n    return true;\n}\n\nbool GrubAnimationModel::removeRows(int row, int count, const QModelIndex &parent)\n{\n    beginRemoveRows(parent, row, row + count - 1);\n    // FIXME: Implement me!\n\n    endRemoveRows();\n    return true;\n}\n\nQHash<int, QByteArray> GrubAnimationModel::roleNames() const\n{\n    QHash<int, QByteArray> roles;\n    roles[ImagePath] = \"imagePath\";\n    roles[Text] = \"text\";\n    roles[CheckStatus] = \"checkStatus\";\n    roles[StartAnimation] = \"startAnimation\";\n    roles[Scale] = \"scale\";\n    roles[PlymouthScale] = \"plymouthScale\";\n    return roles;\n}\n\nvoid GrubAnimationModel::addModel(const GrubAnimationData &data)\n{\n    int row = rowCount();\n    beginInsertRows(QModelIndex(), row, row);\n    m_grubAnimationDataList.append(data);\n    endInsertRows();\n}\n\nvoid GrubAnimationModel::updateCheckIndex(int plymouthScale, bool startAnimation)\n{\n    for (int index = 0; index < m_grubAnimationDataList.count(); index++) {\n        m_grubAnimationDataList[index].checkStatus = false;\n        m_grubAnimationDataList[index].startAnimation = startAnimation;\n        if (plymouthScale == m_grubAnimationDataList[index].plymouthScale) {\n            m_grubAnimationDataList[index].checkStatus = true;\n        }\n        QModelIndex modelIndex = createIndex(index, 0);\n        Q_EMIT dataChanged(modelIndex, modelIndex, {CheckStatus, StartAnimation});\n    }\n}\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/grubanimationmodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef GRUBANIMATIONMODEL_H\n#define GRUBANIMATIONMODEL_H\n\n#include <QAbstractListModel>\n\nstruct  GrubAnimationData {\n    QString imagePath;\n    QString text;\n    bool checkStatus;\n    bool startAnimation;\n    double scale;\n    int plymouthScale;\n};\n\nclass GrubAnimationModel : public QAbstractListModel\n{\n    Q_OBJECT\n\n    enum grubAnimationDataRoles{\n        ImagePath = Qt::UserRole + 1,\n        Text,\n        CheckStatus,\n        StartAnimation,\n        Scale,\n        PlymouthScale,\n    };\n\npublic:\n    explicit GrubAnimationModel(QObject *parent = nullptr);\n\n    void initData(const QList<GrubAnimationData> &data);\n\n    void addAnimation(const GrubAnimationData& data);\n\n    // Basic functionality:\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n\n    // Add data:\n    bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    // Remove data:\n    bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    // 角色名映射\n    QHash<int, QByteArray> roleNames() const override;\n\n    void addModel(const GrubAnimationData &data);\n\n    void updateCheckIndex(int plymouthScale, bool startAnimation);\n\nprivate:\n    QList<GrubAnimationData> m_grubAnimationDataList;\n};\n\n#endif // GRUBANIMATIONMODEL_H\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/grubmenulistmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"grubmenulistmodel.h\"\n\nGrubMenuListModel::GrubMenuListModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n}\n\nvoid GrubMenuListModel::initData(const QList<GrubMenuData> &data)\n{\n    m_grubMenuDataList.clear();\n    for (GrubMenuData item : data) {\n        m_grubMenuDataList.append({item.text, item.checkStatus});\n    }\n}\n\nvoid GrubMenuListModel::addGrubMenu(const GrubMenuData &data)\n{\n    int row = rowCount();\n    beginInsertRows(QModelIndex(), row, row);\n    m_grubMenuDataList.append({data.text, data.checkStatus});\n    endInsertRows();\n}\n\nint GrubMenuListModel::rowCount(const QModelIndex &parent) const\n{\n    // For list models only the root node (an invalid parent) should return the list's size. For all\n    // other (valid) parents, rowCount() should return 0 so that it does not become a tree model.\n    if (parent.isValid())\n        return 0;\n\n    return m_grubMenuDataList.count();\n}\n\nQVariant GrubMenuListModel::data(const QModelIndex &index, int role) const\n{\n    if (!index.isValid())\n        return QVariant();\n\n    const GrubMenuData &grubMenuData = m_grubMenuDataList[index.row()];\n\n    if (role == Qt::DisplayRole || role == Text) {\n        return grubMenuData.text;\n    } else if (role == CheckStatus) {\n        return grubMenuData.checkStatus;\n    }\n\n    return QVariant();\n}\n\nQHash<int, QByteArray> GrubMenuListModel::roleNames() const\n{\n    QHash<int, QByteArray> roles;\n    roles[Text] = \"text\";\n    roles[CheckStatus] = \"checkStatus\";\n    return roles;\n}\n\nvoid GrubMenuListModel::updateCheckIndex(const QString &text)\n{\n    for (int index = 0; index < m_grubMenuDataList.count(); index++) {\n        m_grubMenuDataList[index].checkStatus = false;\n        if (QString::compare(text, m_grubMenuDataList[index].text, Qt::CaseSensitive) == 0) {\n            m_grubMenuDataList[index].checkStatus = true;\n        }\n        QModelIndex modelIndex = createIndex(index, 0);\n        Q_EMIT dataChanged(modelIndex, modelIndex, {CheckStatus});\n    }\n}\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/grubmenulistmodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef GRUBMENULISTMODEL_H\n#define GRUBMENULISTMODEL_H\n\n#include <QAbstractListModel>\n\nstruct GrubMenuData\n{\n    QString text;\n    bool checkStatus;\n};\n\nclass GrubMenuListModel : public QAbstractListModel\n{\n    Q_OBJECT\n\n    enum grubMenuListModelRoles{\n        Text = Qt::UserRole + 1,\n        CheckStatus\n    };\n\npublic:\n    explicit GrubMenuListModel(QObject *parent = nullptr);\n\n    void initData(const QList<GrubMenuData> &data);\n\n    void addGrubMenu(const GrubMenuData &data);\n\n    // Basic functionality:\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n\n    // 角色名映射\n    QHash<int, QByteArray> roleNames() const override;\n\n    void updateCheckIndex(const QString &text);\nprivate:\n    QList<GrubMenuData> m_grubMenuDataList;\n};\n\n#endif // GRUBMENULISTMODEL_H\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/pwqualitymanager.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"pwqualitymanager.h\"\n#include <QMap>\n#include <DSysInfo>\n\nDCORE_USE_NAMESPACE\n\nPwqualityManager::PwqualityManager()\n    : m_passwordMinLen(0)\n    , m_passwordMaxLen(0)\n{\n}\n\nPwqualityManager *PwqualityManager::instance()\n{\n    static PwqualityManager pwquality;\n    return &pwquality;\n}\n\nPwqualityManager::ERROR_TYPE PwqualityManager::verifyPassword(const QString &user, const QString &password, CheckType checkType)\n{\n    switch (checkType) {\n    case PwqualityManager::Default: {\n        ERROR_TYPE error = deepin_pw_check(user.toLocal8Bit().data(), password.toLocal8Bit().data(), LEVEL_STRICT_CHECK, nullptr);\n\n        if (error == PW_ERR_PW_REPEAT) {\n            error = PW_NO_ERR;\n        }\n        return error;\n    }\n    case PwqualityManager::Grub2: {\n        // LEVEL_STRICT_CHECK?\n        ERROR_TYPE error = deepin_pw_check_grub2(user.toLocal8Bit().data(), password.toLocal8Bit().data(), LEVEL_STANDARD_CHECK, nullptr);\n\n        if (error == PW_ERR_PW_REPEAT) {\n            error = PW_NO_ERR;\n        }\n        return error;\n    }\n    }\n\n    return PW_NO_ERR;\n}\n\nPASSWORD_LEVEL_TYPE PwqualityManager::GetNewPassWdLevel(const QString &newPasswd)\n{\n    return get_new_passwd_strength_level(newPasswd.toLocal8Bit().data());\n}\n\nQString PwqualityManager::getErrorTips(PwqualityManager::ERROR_TYPE type, CheckType checkType)\n{\n    int passwordPalimdromeNum = (checkType == Default ? get_pw_palimdrome_num(LEVEL_STRICT_CHECK) : get_pw_palimdrome_num_grub2(LEVEL_STRICT_CHECK));\n    int passwordMonotoneCharacterNum = (checkType == Default ? get_pw_monotone_character_num(LEVEL_STRICT_CHECK) : get_pw_monotone_character_num_grub2(LEVEL_STRICT_CHECK));\n    int passwordConsecutiveSameCharacterNum = (checkType == Default ? get_pw_consecutive_same_character_num(LEVEL_STRICT_CHECK) : get_pw_consecutive_same_character_num_grub2(LEVEL_STRICT_CHECK));\n    m_passwordMinLen = (checkType == Default ? get_pw_min_length(LEVEL_STRICT_CHECK) : get_pw_min_length_grub2(LEVEL_STRICT_CHECK));\n    m_passwordMaxLen = (checkType == Default ? get_pw_max_length(LEVEL_STRICT_CHECK) : get_pw_max_length_grub2(LEVEL_STRICT_CHECK));\n\n    //通用校验规则\n    QMap<int, QString> PasswordFlagsStrMap = {\n        {PW_ERR_PASSWORD_EMPTY, tr(\"Password cannot be empty\")},\n        {PW_ERR_LENGTH_SHORT, tr(\"Password must have at least %1 characters\").arg(m_passwordMinLen)},\n        {PW_ERR_LENGTH_LONG, tr(\"Password must be no more than %1 characters\").arg(m_passwordMaxLen)},\n        {PW_ERR_CHARACTER_INVALID, tr(\"Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&*()-_+=|\\\\{}[]:\\\"'<>,.?/)\")},\n        {PW_ERR_PALINDROME, tr(\"No more than %1 palindrome characters please\").arg(passwordPalimdromeNum)},\n        {PW_ERR_PW_MONOTONE, tr(\"No more than %1 monotonic characters please\").arg(passwordMonotoneCharacterNum)},\n        {PW_ERR_PW_CONSECUTIVE_SAME, tr(\"No more than %1 repeating characters please\").arg(passwordConsecutiveSameCharacterNum)},\n\n    };\n\n    //服务器版校验规则\n    if (DSysInfo::UosServer == DSysInfo::uosType()) {\n        PasswordFlagsStrMap[PW_ERR_CHARACTER_INVALID] = tr(\"Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&*()-_+=|\\\\{}[]:\\\"'<>,.?/)\");\n        PasswordFlagsStrMap[PW_ERR_PALINDROME] = tr(\"Password must not contain more than 4 palindrome characters\");\n        PasswordFlagsStrMap[PW_ERR_WORD] = tr(\"Do not use common words and combinations as password\");\n        PasswordFlagsStrMap[PW_ERR_PW_MONOTONE] = tr(\"Create a strong password please\");\n        PasswordFlagsStrMap[PW_ERR_PW_CONSECUTIVE_SAME] = tr(\"Create a strong password please\");\n        PasswordFlagsStrMap[PW_ERR_PW_FIRST_UPPERM] = tr(\"Do not use common words and combinations as password\");\n    }\n\n    //规则校验以外的情况统一返回密码不符合安全要求\n    if (PasswordFlagsStrMap.value(type).isEmpty()) {\n        PasswordFlagsStrMap[type] = tr(\"It does not meet password rules\");\n    }\n\n    return PasswordFlagsStrMap.value(type);\n}\n\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/pwqualitymanager.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DEEPIN_INSTALLER_PWQUALITY_MANAGER_H\n#define DEEPIN_INSTALLER_PWQUALITY_MANAGER_H\n\n#include <QObject>\n#include <QString>\n\n#include <deepin_pw_check.h>\n\nclass PwqualityManager : public QObject\n{\nQ_OBJECT\npublic:\n    typedef PW_ERROR_TYPE ERROR_TYPE;\n\n    enum CheckType {\n        Default,\n        Grub2\n    };\n\n    /**\n    * @brief PwqualityManager::instance 构造一个 单例\n    * @return 返回一个静态实例\n    */\n    static PwqualityManager* instance();\n\n    /**\n    * @brief PwqualityManager::verifyPassword 校验密码\n    * @param password 带检密码字符串\n    * @return 若找到，返回text，反之返回空\n    */\n    ERROR_TYPE verifyPassword(const QString &user, const QString &password, CheckType checkType = Default);\n    PASSWORD_LEVEL_TYPE GetNewPassWdLevel(const QString &newPasswd);\n    QString getErrorTips(ERROR_TYPE type, CheckType checkType = Default);\n\nprivate:\n    PwqualityManager();\n    PwqualityManager(const PwqualityManager&) = delete;\n\n    int m_passwordMinLen;\n    int m_passwordMaxLen;\n};\n\n#endif  // DEEPIN_INSTALLER_PWQUALITY_MANAGER_H\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/qrc/commoninfo.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_commoninfo_42px.svg</file>\n        <file>icons/dcc_nav_commoninfo_84px.svg</file>\n        <file>icons/inner_shadow.dci</file>\n        <file>icons/selected.dci</file>\n        <file>icons/tick.dci</file>\n        <file>icons/develop_bind.dci</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-commoninfo/operation/utils.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef UTILS_H\n#define UTILS_H\n#include <DSysInfo>\n#include <DPlatformHandle>\n\n#include <QMargins>\n#include <QSize>\n#include <QVariant>\n#include <QSettings>\n#include <QMetaMethod>\n#include <QString>\n#include <QLocale>\n#include <QFile>\n#include <QSettings>\n#include <QImageReader>\n#include <QGuiApplication>\n#include <QIcon>\n\nDCORE_USE_NAMESPACE\n\ninline const QMargins ZeroMargins(0, 0, 0, 0);\n\ninline constexpr int ComboxWidgetHeight = 48;\ninline constexpr int SwitchWidgetHeight = 36;\ninline constexpr int ComboxTitleWidth = 110;\n\ninline constexpr qint32 ActionIconSize=30;//大图标角标大小\ninline constexpr qint32 ActionListSize=26;//list图标角标大小\n\n\nconst DSysInfo::UosType UosType = DSysInfo::uosType();\nconst DSysInfo::UosEdition UosEdition = DSysInfo::uosEditionType();\nconst bool IsServerSystem = (DSysInfo::UosServer == UosType);//是否是服务器版\nconst bool IsCommunitySystem = (DSysInfo::UosCommunity == UosEdition);//是否是社区版\nconst bool IsProfessionalSystem = (DSysInfo::UosProfessional == UosEdition);//是否是专业版\nconst bool IsHomeSystem = (DSysInfo::UosHome == UosEdition);//是否是个人版\nconst bool IsEducationSystem = (DSysInfo::UosEducation == UosEdition); // 是否是教育版\nconst bool IsDeepinDesktop = (DSysInfo::DeepinDesktop == DSysInfo::deepinType());//是否是Deepin桌面\nconst bool IsNotDeepinUos = !DSysInfo::isDeepin(); // 是否是 Deepin/Uos 以外的发行版\n\n\ntemplate <typename T>\nT valueByQSettings(const QStringList& configFiles,\n                   const QString&     group,\n                   const QString&     key,\n                   const QVariant&    failback)\n{\n    for (const QString& path : configFiles) {\n        QSettings settings(path, QSettings::IniFormat);\n        if (!group.isEmpty()) {\n            settings.beginGroup(group);\n        }\n\n        const QVariant& v = settings.value(key);\n        if (v.isValid()) {\n            T t = v.value<T>();\n            return t;\n        }\n    }\n\n    return failback.value<T>();\n}\n\ninline QPixmap loadPixmap(const QString &path)\n{\n    qreal ratio = 1.0;\n    QPixmap pixmap;\n\n    const qreal devicePixelRatio = qApp->devicePixelRatio();\n\n    if (!qFuzzyCompare(ratio, devicePixelRatio)) {\n        QImageReader reader;\n        reader.setFileName(qt_findAtNxFile(path, devicePixelRatio, &ratio));\n        if (reader.canRead()) {\n            reader.setScaledSize(reader.size() * (devicePixelRatio / ratio));\n            pixmap = QPixmap::fromImage(reader.read());\n            pixmap.setDevicePixelRatio(devicePixelRatio);\n        }\n    } else {\n        pixmap.load(path);\n    }\n\n    return pixmap;\n}\n\n\n#endif // UTILS_H\n"
  },
  {
    "path": "src/plugin-commoninfo/qml/BootPage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.11\nimport QtQuick.Controls 2.4\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\nimport QtQuick.Effects\nimport org.deepin.dtk 1.0\n\nimport Qt5Compat.GraphicalEffects\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n\n    DccObject {\n        name: \"grubSettingText\"\n        parentName: \"bootMenu\"\n        displayName: qsTr(\"Startup Settings\")\n        weight: 10\n        pageType: DccObject.Item\n        page: Label {\n            leftPadding: 14\n            font.pixelSize: DTK.fontManager.t5.pixelSize\n            font.weight: 500\n            color: DTK.themeType === ApplicationHelper.LightType ?\n                    Qt.rgba(0, 0, 0, 1) : Qt.rgba(1, 1, 1, 1)\n            text: dccObj.displayName\n        }\n    }\n\n    DccObject {\n        name: \"grubSettingList\"\n        parentName: \"bootMenu\"\n        weight: 20\n        pageType: DccObject.Item\n        page: Rectangle {\n\n            readonly property int itemDelegateMinWidth: parent.width\n            readonly property int itemDelegateMaxWidth: 600\n            readonly property int itemDelegateHeight: 40\n\n            id: grublist\n            implicitWidth: parent.width\n            implicitHeight: menuViewList.height + 20\n            color: \"transparent\"\n            Layout.fillWidth: true\n            Layout.topMargin: 0\n\n            DropArea {\n                anchors.fill: parent\n                keys: [\"text/uri-list\"]\n                enabled: dccData.mode().bootWallpaperEnabled\n\n                onDropped: (drop) => {\n                    if (drop.hasUrls) {\n                        let filePath = drop.urls[0].toString()\n                        if (filePath.endsWith(\".png\") || filePath.endsWith(\".jpg\") || filePath.endsWith(\".jpeg\") || filePath.endsWith(\".bmp\")) {\n                            console.log(\"Image dropped:\", filePath)\n                            if (filePath.startsWith(\"file://\")) {\n                                filePath = filePath.substring(7)\n                            }\n                            dccData.work().setBackground(filePath)\n                        } else {\n                            console.log(\"Dropped file is not a supported image:\", filePath)\n                        }\n                    }\n                }\n            }\n\n            Image {\n                id: image\n                source: \"file://\" + dccData.mode().grubThemePath + \"?timestamp=\" + Date.now()\n                asynchronous: true\n                anchors.fill: parent\n                width: parent.width\n                height: menuViewList.height\n                fillMode: Image.PreserveAspectCrop\n                mipmap: true\n                \n                layer.enabled: true\n                layer.effect: MultiEffect {\n                    maskEnabled: true\n                    maskSource: imageMask\n                    antialiasing: true\n                    maskThresholdMin: 0.5\n                    maskSpreadAtMin: 1.0\n                }\n            }\n\n            Rectangle {\n                id: overlayLayer\n                anchors.fill: image\n                color: \"#33000000\"\n                radius: 10\n                antialiasing: true\n                smooth: true\n                \n                layer.enabled: true\n                layer.effect: MultiEffect {\n                    maskEnabled: true\n                    maskSource: imageMask\n                    antialiasing: true\n                    maskThresholdMin: 0.5\n                    maskSpreadAtMin: 1.0\n                }\n            }\n\n            Item {\n                id: imageMask\n                anchors.fill: image\n                layer.enabled: true\n                visible: false\n                \n                Rectangle {\n                    anchors.fill: parent\n                    anchors.margins: 0.5\n                    radius: 10\n                    color: \"white\"\n                }\n            }\n\n            Rectangle {\n                visible: dccData.mode().grubThemePath === \"\"\n                anchors.fill: image\n                color: \"black\"\n                radius: 10\n                antialiasing: true\n                smooth: true\n            }\n\n            Column {\n                spacing: 5\n                leftPadding: 10\n                rightPadding: 10\n                id: menuViewList\n                Layout.fillWidth: true\n                width: parent.width\n                height: childrenRect.height\n                clip: false\n\n                Label {\n                    id: grubSettingText\n                    width: grublist.implicitWidth - 30\n                    topPadding: 10\n                    bottomPadding: 5\n                    leftPadding: 10\n                    elide: Text.ElideRight\n                    text: qsTr(\"You can click the menu to change the default startup items, or drag the image to the window to change the background image.\")\n                    font: DTK.fontManager.t8\n                    color: \"white\"\n                    opacity: 0.7\n\n                    TextMetrics {\n                        id: textMetrics\n                        font: grubSettingText.font\n                        text: grubSettingText.text\n                    }\n\n                    ToolTip {\n                        text: grubSettingText.text\n                        visible: grubSettingMouseArea.containsMouse && textMetrics.width > grubSettingText.width\n                    }\n\n                    MouseArea {\n                        id: grubSettingMouseArea\n                        anchors.fill: parent\n                        hoverEnabled: true\n                    }\n                }\n\n                // 在图片背景上使用Repeater\n                Repeater {\n                    id: grubMenuList\n                    model: dccData.mode().grubMenuListModel()\n\n                    delegate: Rectangle {\n                        width: grublist.width - 20\n                        height: 30\n                        color: \"transparent\"\n                        \n                        Rectangle {\n                            id: backgru\n                            property bool isHovered: false\n\n                            width: grublist.width - 20\n                            height: 30\n                            radius: 8\n                            color: {\n                                if (model.checkStatus) {\n                                    return \"#34FFFFFF\"\n                                } else if (isHovered) {\n                                    return \"#1AFFFFFF\"\n                                } else {\n                                    return \"transparent\"\n                                }\n                            }\n\n                            RowLayout {\n                                Layout.alignment: Qt.AlignVCenter\n                                width: parent.width\n                                height: 30\n\n                                Label {\n                                    height: 20\n                                    Layout.alignment: Qt.AlignLeft\n                                    Layout.leftMargin: 10\n                                    horizontalAlignment: Text.AlignLeft\n                                    verticalAlignment: Text.AlignVCenter\n                                    text: model.text\n                                    font: DTK.fontManager.t6\n                                    color: \"white\"\n                                }\n\n                                DccCheckIcon {\n                                    Layout.alignment: Qt.AlignRight\n                                    Layout.rightMargin: 10\n                                    checked: model.checkStatus\n                                    visible: model.checkStatus\n                                    size: 16\n                                }\n                            }\n\n                            MouseArea {\n                                anchors.fill: parent\n                                hoverEnabled: true\n                                onClicked: {\n                                    dccData.work().setDefaultEntry(model.text)\n                                }\n                                onEntered: {\n                                    parent.isHovered = true\n                                }\n                                onExited: {\n                                    parent.isHovered = false\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"startDelay\"\n        parentName: \"bootMenu\"\n        displayName: qsTr(\"grub start delay\")\n        weight: 30\n        pageType: DccObject.Editor\n        backgroundType: DccObject.Normal\n        page: Switch {\n            id: bootDelaySwitch\n            Layout.alignment: Qt.AlignRight\n            checked: dccData.mode().bootDelay\n\n            Connections {\n                target: dccData.mode()\n                function onBootDelayChanged() {\n                    bootDelaySwitch.checked = dccData.mode().bootDelay\n                }\n            }\n\n            onCheckedChanged: {\n                if (dccData.mode().bootDelay != checked) {\n                    dccData.work().setBootDelay(checked)\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"grubTheme\"\n        parentName: \"bootMenu\"\n        displayName: qsTr(\"theme\")\n        description: qsTr(\"After turning on the theme, you can see the theme background when you turn on the computer\")\n        weight: 40\n        pageType: DccObject.Editor\n        backgroundType: DccObject.Normal\n        page: Switch {\n            Layout.alignment: Qt.AlignRight\n            checked: dccData.mode().themeEnabled\n\n            onCheckedChanged: {\n                if (checked != dccData.mode().themeEnabled) {\n                    dccData.work().setEnableTheme(checked)\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"bootMenuVerification\"\n        parentName: \"bootMenu\"\n        visible: !dccData.mode().isCommunitySystem()\n        displayName: qsTr(\"Boot menu verification\")\n        description: qsTr(\"After opening, entering the menu editing requires a password.\")\n        weight: 50\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n\n        page: RowLayout {\n            property var passwordDlgStatus: {\"Init\" : 0, \"Cancel\" : 1, \"Sure\" : 2}\n            property int dlgStatus: passwordDlgStatus.Init\n            Column {\n                spacing: 0\n                Layout.topMargin: 4\n                Layout.bottomMargin: 9\n                Layout.fillWidth: true\n                Layout.maximumWidth: parent.width - 100\n                \n                Label {\n                    text: dccObj.displayName\n                    font: DTK.fontManager.t6\n                    horizontalAlignment: Qt.AlignLeft\n                    verticalAlignment: Qt.AlignVCenter\n                    leftPadding: 15\n                    bottomPadding: 4\n                }\n\n                Row {\n                    spacing: 0\n                    width: parent.width\n                    clip: true\n                    \n                    Label {\n                        id: descriptionLabel\n                        text: dccObj.description\n                        font: DTK.fontManager.t10\n                        horizontalAlignment: Qt.AlignLeft\n                        verticalAlignment: Qt.AlignVCenter\n                        leftPadding: 15\n                        opacity: 0.5\n                        elide: Text.ElideRight\n                        width: Math.min(implicitWidth, changePasswordLabel.visible ? \n                               (parent.width - changePasswordLabel.implicitWidth - 15) : \n                               (parent.width - 15))\n                        \n                        TextMetrics {\n                            id: descriptionTextMetrics\n                            font: descriptionLabel.font\n                            text: descriptionLabel.text\n                        }\n                        \n                        ToolTip {\n                            text: dccObj.description\n                            visible: descriptionMouseArea.containsMouse && descriptionLabel.implicitWidth > descriptionLabel.width\n                        }\n                        \n                        MouseArea {\n                            id: descriptionMouseArea\n                            anchors.fill: parent\n                            hoverEnabled: true\n                        }\n                    }\n\n                    Label {\n                        id: changePasswordLabel\n                        text: \"<a href=\\\"Change Password\\\">\" + qsTr(\"Change Password\") +\"</a>\"\n                        visible: dccData.mode().grubEditAuthEnabled\n                        horizontalAlignment: Qt.AlignLeft\n                        verticalAlignment: Qt.AlignVCenter\n                        font: DTK.fontManager.t10\n                        color:\"#5A000000\"\n                        // 超链接点击事件\n                        onLinkActivated: function(url) {\n                            console.log(\"点击的链接是: \" + url)\n                            dlgStatus = passwordDlgStatus.Init\n                            passwordDlg.show()\n                        }\n                    }\n\n                    Item {\n                        id: item\n                        width: Math.max(0, parent.width - descriptionLabel.width - \n                        (changePasswordLabel.visible ? changePasswordLabel.implicitWidth : 0))\n                    }\n                }\n            }\n\n            Row {\n                Layout.alignment: Qt.AlignRight\n                Switch {\n                    id: verificationSwitch\n\n                    rightPadding: 13\n                    bottomPadding: 5\n                    checked: dccData.mode().grubEditAuthEnabled\n                    onCheckedChanged: {\n                        if (checked && !dccData.mode().grubEditAuthEnabled) {\n                            passwordDlg.show()\n                            return\n                        }\n                        if (!checked && dccData.mode().grubEditAuthEnabled) {\n                            dccData.work().disableGrubEditAuth()\n                            return\n                        }\n                    }\n                }\n\n                DialogWindow {\n                    id: passwordDlg\n                    width: 360\n                    height: columnLayout.implicitHeight + 50\n\n                    icon: \"preferences-system\"\n                    flags: Qt.Dialog | Qt.WindowCloseButtonHint\n                    modality: Qt.ApplicationModal\n\n                    onVisibleChanged: {\n                        if (visible) {\n                            newPasswordEdit.text = \"\"\n                            repeatPasswordEdit.text = \"\"\n                            newPasswordEdit.showAlert = false\n                            repeatPasswordEdit.showAlert = false\n                            submitbtn.enabled = false\n                            dlgStatus = passwordDlgStatus.Init\n                        }\n                    }\n\n                    onClosing: function(close) {\n                        close.accepted = true\n                        if (dlgStatus !== passwordDlgStatus.Sure) {\n                            dlgStatus = passwordDlgStatus.Init\n                            dccData.work().resetEditAuthEnabled()\n                        }\n                    }\n                    ColumnLayout {\n                        id: columnLayout\n                        width: parent.width\n                        spacing: 0\n\n                        Label {\n                            id: passwdTitle\n                            Layout.topMargin: 10\n                            Layout.bottomMargin: 10\n                            Layout.alignment: Qt.AlignHCenter\n                            Layout.preferredWidth: parent.width - 20\n                            Layout.leftMargin: 10\n                            Layout.rightMargin: 10\n                            font: DTK.fontManager.t5\n                            text: dccData.mode().grubEditAuthEnabled ? qsTr(\"Change boot menu verification password\") : qsTr(\"Set the boot menu authentication password\")\n                            wrapMode: Text.Wrap\n                            horizontalAlignment: Text.AlignHCenter\n                        }\n\n                        Label {\n                            Layout.alignment: Qt.AlignLeft\n                            horizontalAlignment: Text.AlignLeft\n                            verticalAlignment: Text.AlignVCenter\n                            Layout.leftMargin: 5\n                            font: DTK.fontManager.t6\n                            text: qsTr(\"User Name :\")\n                            Layout.preferredWidth: 50\n                            visible: dccData.mode().bootGrubUserNameVisible\n                        }\n\n                        LineEdit {\n                            id: userEdit\n                            text: qsTr(\"root\")\n                            readOnly: true\n                            enabled: false\n                            clearButton.visible: true\n                            Layout.preferredWidth: parent.width\n                            visible: dccData.mode().bootGrubUserNameVisible\n                        }\n\n                        Label {\n                            height: 20\n                            topPadding: 10\n                            Layout.preferredWidth: 60\n                            Layout.alignment: Qt.AlignLeft\n                            horizontalAlignment: Text.AlignLeft\n                            verticalAlignment: Text.AlignVCenter\n                            Layout.leftMargin: 5\n                            font: DTK.fontManager.t6\n                            text: qsTr(\"New Password :\")\n                        }\n\n                        PasswordEdit {\n                            id: newPasswordEdit\n                            placeholderText: qsTr(\"Required\")\n                            Layout.preferredWidth: parent.width\n                            height: 30\n                            showAlert: false\n                            canCopy: false\n                            canCut: false\n\n                            Timer {\n                                id: newPasswordAlertTimer\n                                interval: 3000\n                                repeat: false\n                                onTriggered: {\n                                    newPasswordEdit.showAlert = false\n                                }\n                            }\n\n                            onTextChanged: {\n                                newPasswordAlertTimer.stop()\n                                console.log(\" newPasswordEdit text changed \", newPasswordEdit.text)\n                                if (newPasswordEdit.text.length === 0) {\n                                    submitbtn.enabled = false\n                                    if (repeatPasswordEdit.text.length !== 0) {\n                                        newPasswordEdit.alertText = qsTr(\"Password cannot be empty\")\n                                        newPasswordEdit.showAlert = true\n                                        newPasswordAlertTimer.start()\n                                    } else {\n                                        newPasswordEdit.showAlert = false\n                                    }\n                                    return\n                                }\n\n                                var errorText = dccData.work().verifyPassword(newPasswordEdit.text)\n                                console.log(\" newPasswordEdit text changed \", errorText)\n                                if (errorText.length !== 0) {\n                                    newPasswordEdit.alertText = errorText\n                                    newPasswordEdit.showAlert = true\n                                    newPasswordAlertTimer.start()\n                                    submitbtn.enabled = false\n                                } else {\n                                    newPasswordEdit.showAlert = false\n                                    if (repeatPasswordEdit.text.length > 0) {\n                                        if (repeatPasswordEdit.text !== newPasswordEdit.text) {\n                                            repeatPasswordEdit.alertText = qsTr(\"Passwords do not match\")\n                                            repeatPasswordEdit.showAlert = true\n                                            repeatPasswordAlertTimer.start()\n                                            submitbtn.enabled = false\n                                        } else {\n                                            repeatPasswordEdit.showAlert = false\n                                            submitbtn.enabled = true\n                                        }\n                                    } else {\n                                         submitbtn.enabled = false\n                                    }\n                                }\n                            }\n                        }\n\n                        Label {\n                            height: 20\n                            topPadding: 10\n                            Layout.preferredWidth: 60\n                            Layout.alignment: Qt.AlignLeft\n                            horizontalAlignment: Text.AlignLeft\n                            verticalAlignment: Text.AlignVCenter\n                            Layout.leftMargin: 5\n                            font: DTK.fontManager.t6\n                            text: qsTr(\"Repeat password:\")\n                        }\n\n                        PasswordEdit {\n                            id: repeatPasswordEdit\n                            Layout.preferredWidth: parent.width\n                            placeholderText: qsTr(\"Required\")\n                            height: 30\n                            canCopy: false\n                            canCut: false\n\n                            Timer {\n                                id: repeatPasswordAlertTimer\n                                interval: 3000\n                                repeat: false\n                                onTriggered: {\n                                    repeatPasswordEdit.showAlert = false\n                                }\n                            }\n\n                            onTextChanged: {\n                                repeatPasswordAlertTimer.stop()\n                                console.log(\" repeatPasswordEdit text changed \", repeatPasswordEdit.text)\n                                if (repeatPasswordEdit.text.length === 0) {\n                                    submitbtn.enabled = false\n                                    if (newPasswordEdit.text.length !== 0) {\n                                        repeatPasswordEdit.alertText = qsTr(\"Password cannot be empty\")\n                                        repeatPasswordEdit.showAlert = true\n                                        repeatPasswordAlertTimer.start()\n                                    } else {\n                                        repeatPasswordEdit.showAlert = false\n                                    }\n                                    return\n                                }\n\n                                var errorText = dccData.work().verifyPassword(repeatPasswordEdit.text)\n                                console.log(\" repeatPasswordEdit text changed \", errorText)\n                                if (errorText.length !== 0) {\n                                    repeatPasswordEdit.alertText = errorText\n                                    repeatPasswordEdit.showAlert = true\n                                    repeatPasswordAlertTimer.start()\n                                    submitbtn.enabled = false\n                                } else {\n                                    if (repeatPasswordEdit.text !== newPasswordEdit.text) {\n                                        repeatPasswordEdit.alertText = qsTr(\"Passwords do not match\")\n                                        repeatPasswordEdit.showAlert = true\n                                        repeatPasswordAlertTimer.start()\n                                        submitbtn.enabled = false\n                                    } else {\n                                        repeatPasswordEdit.showAlert = false\n                                        if (newPasswordEdit.text.length > 0 && !newPasswordEdit.showAlert) {\n                                             submitbtn.enabled = true\n                                        } else {\n                                             submitbtn.enabled = false\n                                        }\n                                        if (newPasswordEdit.alertText === qsTr(\"Passwords do not match\")) {\n                                            newPasswordEdit.showAlert = false\n                                        }\n                                    }\n                                }\n                            }\n                        }\n\n                        RowLayout {\n                            Layout.topMargin: 15\n                            Layout.bottomMargin: 6\n                            Layout.preferredWidth: parent.width\n                            Layout.fillWidth: true\n\n                            Button {\n                                Layout.alignment: Qt.AlignLeft\n                                text: qsTr(\"Cancel\")\n                                Layout.preferredWidth: 170\n                                onClicked: {\n                                    dlgStatus = passwordDlgStatus.Cancel\n                                    passwordDlg.close()\n                                }\n                            }\n\n                            RecommandButton {\n                                id: submitbtn\n                                text: qsTr(\"Sure\")\n                                enabled: false\n                                Layout.preferredWidth: 170\n                                Layout.alignment: Qt.AlignRight\n                                onClicked: {\n                                    dlgStatus = passwordDlgStatus.Sure\n                                    dccData.work().onSetGrubEditPasswd(newPasswordEdit.text, true)\n                                    passwordDlg.close()\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n        }\n        onParentItemChanged: item => { if (item) item.bottomPadding = 0 }\n    }\n\n    DccObject {\n        name: \"startAnimation\"\n        parentName: \"bootMenu\"\n        displayName: qsTr(\"Start animation\")\n        description: qsTr(\"Adjust the size of the logo animation on the system startup interface\")\n        weight: 60\n        pageType: DccObject.Item\n        page: ColumnLayout {\n            Layout.topMargin: 0\n            Layout.bottomMargin: 0\n            width: parent.width - 28\n            spacing: 0\n            Label {\n                leftPadding: 14\n                topPadding: 10\n                font.pixelSize: DTK.fontManager.t5.pixelSize\n                font.weight: 500\n                color: DTK.themeType === ApplicationHelper.LightType ?\n                        Qt.rgba(0, 0, 0, 1) : Qt.rgba(1, 1, 1, 1)\n                text: dccObj.displayName\n            }\n            Label {\n                id: startAnimationDescriptionLabel\n                leftPadding: 14\n                bottomPadding: 5\n                font: DTK.fontManager.t8\n                text: dccObj.description\n                opacity: 0.7\n                elide: Text.ElideRight\n                Layout.fillWidth: true\n                \n                property bool showToolTip: false\n                \n                TextMetrics {\n                    id: startAnimationDescriptionTextMetrics\n                    font: DTK.fontManager.t8\n                    text: dccObj.description\n                }\n                \n                ToolTip {\n                    text: dccObj.description\n                    visible: startAnimationDescriptionLabel.showToolTip && startAnimationDescriptionTextMetrics.width > parent.width\n                }\n                \n                MouseArea {\n                    id: startAnimationDescriptionMouseArea\n                    anchors.fill: parent\n                    hoverEnabled: true\n                    \n                    onEntered: {\n                        if (startAnimationDescriptionTextMetrics.width > parent.width) {\n                            startAnimationDescriptionLabel.showToolTip = true\n                        }\n                    }\n                    \n                    onExited: {\n                        startAnimationDescriptionLabel.showToolTip = false\n                    }\n                }\n            }\n        }\n        onParentItemChanged: item => { \n            if (item) {\n                item.topPadding = 0\n                item.bottomPadding = 0\n            }\n        }\n    }\n\n    DccObject {\n        name: \"checkAnimation\"\n        parentName: \"bootMenu\"\n        weight: 70\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: Rectangle {\n            implicitHeight: aniRoot.height\n            Layout.fillWidth: true\n            width: parent.width\n            radius: 8\n            color: \"transparent\"\n            property color baseColor: \"#0065FF\"\n\n            RowLayout {\n                id: aniRoot\n                spacing: 0\n                Repeater {\n                    id: repeater\n                    model: dccData.mode().grubAnimationModel()\n                    delegate: ItemDelegate {\n\n                        Layout.fillWidth: true\n                        Layout.fillHeight: true\n                        leftPadding: 10\n                        rightPadding: 0\n                        topPadding: 20\n                        bottomPadding: 0\n                        spacing: 0\n                        contentFlow: true\n                        hoverEnabled: true\n                        cascadeSelected: true\n\n                        background: DccItemBackground {\n                            backgroundType: DccObject.AutoBg\n                           // separatorVisible: true\n                        }\n\n                        content: ColumnLayout {\n                            spacing: 0\n                            Rectangle {\n                                id: externalRect\n                                width: 228\n                                height: 148\n                                border.width: model.checkStatus ? 2 : 0\n                                border.color: parent.palette.highlight\n                                radius: 10\n\n                                color: \"transparent\"\n\n                                Rectangle {\n                                    id: imgRect\n                                    anchors.centerIn: parent\n                                    width: 220\n                                    height: 140\n                                    border.width: 0\n                                    color: DTK.themeType === ApplicationHelper.LightType ?\n                                               Qt.rgba(baseColor.r, baseColor.g, baseColor.a, 0.10) : Qt.rgba(baseColor.r, baseColor.g, baseColor.a, 0.15)\n\n                                    radius: 6\n\n                                    Rectangle {\n                                        anchors.fill: parent\n                                        color: \"transparent\"\n                                        border.color: DTK.themeType === ApplicationHelper.LightType ? \"#0D000000\" : \"#1AFFFFFF\"\n                                        radius: 6\n                                        border.width: 1\n\n                                        Image {\n                                            id: backgroundImage\n                                            anchors.centerIn: parent\n                                            source: model.imagePath\n                                            width: 130 * model.scale\n                                            height: 130 * model.scale\n                                            visible: !(model.startAnimation && model.checkStatus) || blurContainer.grabbing\n                                            fillMode: Image.PreserveAspectCrop\n                                            opacity: model.startAnimation ? 0.4 : 1\n                                        }\n                                    }\n\n                                    // 使用 MouseArea 来捕捉点击事件\n                                    MouseArea {\n                                        anchors.fill: parent\n                                        onClicked: {\n                                            dccData.work().setPlymouthFactor(\n                                                        model.plymouthScale)\n                                        }\n                                    }\n                                }\n\n                                //模糊效果容器\n                                Rectangle {\n                                    id: blurContainer\n                                    anchors.centerIn: parent\n                                    width: 220\n                                    height: 140\n                                    radius: 6\n                                    visible: model.startAnimation && model.checkStatus\n                                    color: \"transparent\"\n\n                                    property alias grabbedImage: grabbedImageItem\n                                    property bool grabbing: false\n\n                                    Image {\n                                        id: grabbedImageItem\n                                        anchors.fill: parent\n                                        fillMode: Image.PreserveAspectCrop\n                                        visible: false\n                                    }\n\n                                    GaussianBlur {\n                                        anchors.fill: parent\n                                        source: grabbedImageItem\n                                        radius: 25 // 模糊半径，值越大，模糊越强\n                                        samples: 16\n                                    }\n\n                                    BusyIndicator {\n                                        anchors.centerIn: parent\n                                        running: model.startAnimation && model.checkStatus\n                                        visible: model.startAnimation && model.checkStatus\n                                        implicitWidth: 32\n                                        implicitHeight: 32\n                                    }\n\n                                    onVisibleChanged: {\n                                        if (visible && model.startAnimation && model.checkStatus) {\n                                            grabbing = true\n                                            imgRect.grabToImage(function(result) {\n                                                grabbedImageItem.source = result.url\n                                                grabbing = false\n                                            })\n                                        }\n                                    }\n                                }\n\n                            }\n\n                            RadioButton {\n                                autoExclusive: false\n                                text: model.text\n                                checked: model.checkStatus\n                                enabled: !model.startAnimation\n                                padding: 0\n                                icon.width: 0\n                                icon.height: 0\n                                onClicked: {\n                                    dccData.work().setPlymouthFactor(\n                                                model.plymouthScale)\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-commoninfo/qml/CommonInfoMain.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n// import org.deepin.dtk 1.0 as D\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\n\nimport org.deepin.dcc 1.0\nimport QtQuick.Layouts 1.15\n\nDccObject {\n    DccObject {\n        name: \"bootMenu\"\n        parentName: \"system\"\n        displayName: qsTr(\"Boot Menu\")\n        description: qsTr(\"Manage your boot menu\")\n        icon: \"meau\"\n        weight: 80\n        BootPage {}\n    }\n    DccObject {\n        name: \"developerMode\"\n        parentName: \"system\"\n        displayName: qsTr(\"Developer Options\")\n        description: !dccData.mode().isCommunitySystem() ? qsTr(\"Developer root permission management\") : qsTr(\"Developer debugging options\")\n        icon: \"developer\"\n        weight: 90\n        DevelopModePage {}\n    }\n}\n"
  },
  {
    "path": "src/plugin-commoninfo/qml/DevelopModePage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n// import org.deepin.dtk 1.0 as D\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport org.deepin.dtk 1.0 as D\n\nimport org.deepin.dcc 1.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\nimport Qt.labs.platform 1.1\nimport org.deepin.dtk.style 1.0 as DS\n\nDccObject {\n    DccObject {\n        name: \"developTitle\"\n        parentName: \"developerMode\"\n        displayName: qsTr(\"Root Access\")\n        weight: 10\n        visible: !dccData.mode().isCommunitySystem()\n        pageType: DccObject.Item\n        page: Label {\n            leftPadding: 15\n            bottomPadding: -2\n            text: dccObj.displayName\n            font.pixelSize: D.DTK.fontManager.t5.pixelSize\n            font.weight: 500\n            color: D.DTK.themeType === D.ApplicationHelper.LightType ?\n                    Qt.rgba(0, 0, 0, 1) : Qt.rgba(1, 1, 1, 1)\n        }\n    }\n\n    DccObject {\n        name: \"developerModeSetting\"\n        parentName: \"developerMode\"\n        weight: 20\n        visible: !dccData.mode().isCommunitySystem()\n        pageType: DccObject.Item\n        page: DccGroupView {\n\n            Layout.topMargin: 0\n        }\n\n        DccObject {\n            name: \"developerModeStatus\"\n            parentName: \"developerModeSetting\"\n            displayName: qsTr(\"Request Root Access\")\n            pageType: DccObject.Item\n            backgroundType: DccObject.Normal\n            weight: 20\n            enabled: dccData.work().isACLController() ? dccData.mode().isActivate : true\n            page: RowLayout {\n                id: root\n                Layout.topMargin: 5\n                ColumnLayout {\n                    spacing: 2\n                    Layout.leftMargin: 15\n                    Layout.topMargin: 5\n                    Layout.bottomMargin: 5\n                    Label {\n                        text: dccObj.displayName\n                        font: D.DTK.fontManager.t6\n                    }\n\n                    Label {\n                        horizontalAlignment: Text.AlignLeft\n                        wrapMode: Text.WordWrap\n                        text: (dccData.work().isACLController() ? dccData.mode().isActivate : true)\n                                                        ? qsTr(\"After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.\")\n                                                        : qsTr(\"The feature is not available at present, please activate your system first.\")\n                        font: D.DTK.fontManager.t10\n                        opacity: 0.5\n\n                        Layout.fillWidth: true\n                    }\n                }\n\n                Label {\n                    Layout.alignment: Qt.AlignRight\n                    Layout.rightMargin: 10\n                    visible: dccData.mode().developerModeState || dccData.mode().isDeveloperMode\n                    text: qsTr(\"Allowed\")\n                    font: D.DTK.fontManager.t8\n                }\n\n                Button {\n                    id: enterBtn\n                    Layout.alignment: Qt.AlignRight\n                    Layout.rightMargin: 10\n                    implicitHeight: 30\n                    implicitWidth: enterBtnMetrics.width + 2 * (DS.Style.button.hPadding + DS.Style.control.borderWidth)\n                    visible: !(dccData.mode().developerModeState || dccData.mode().isDeveloperMode)\n                    text: qsTr(\"Enter\")\n\n                    onClicked: {\n                        if (dccData.work().isACLController()) {\n                            dccData.work().setEnableDeveloperMode(true)\n                        } else {\n                            developDlg.show()\n                        }\n                    }\n\n                    TextMetrics {\n                        id: enterBtnMetrics\n                        font: enterBtn.font\n                        text: enterBtn.text\n                    }\n                }\n\n                Loader {\n                    id: loader\n                    active: dccData.mode().needShowModalDialog\n                    sourceComponent: Window {\n                        id: modalDialog\n                        flags: Qt.Window\n                        modality: Qt.ApplicationModal\n                        color: \"transparent\"\n                        opacity: 0.0\n                    }\n                    onLoaded: {\n                        item.show()\n                    }\n                }\n\n                D.DialogWindow {\n                    id: developDlg\n                    width: 360\n                    height: 360\n\n                    minimumWidth: 360\n                    minimumHeight: 360\n                    maximumWidth: 360\n                    maximumHeight: 360\n\n                    icon: \"preferences-system\"\n                    flags: Qt.Dialog | Qt.WindowCloseButtonHint\n                    modality: Qt.ApplicationModal\n\n                    property real currentStackIndex: 0\n\n                    property bool showSuccess: false\n\n                    onClosing: function(close) {\n                        close.accepted = true\n                    }\n\n                    ColumnLayout {\n                        visible: !developDlg.showSuccess\n                        Label {\n                            visible: !developDlg.showSuccess\n                            font: D.DTK.fontManager.t5\n                            Layout.alignment: Qt.AlignHCenter\n                            text: qsTr(\"Root Access\")\n                        }\n\n                        // 单选按钮用于切换页面\n                        RowLayout {\n                            visible: !developDlg.showSuccess\n                            spacing: 20\n                            Layout.alignment: Qt.AlignHCenter\n                            RadioButton {\n                                id: radio1\n                                text: qsTr(\"Online\")\n                                font: D.DTK.fontManager.t6\n                                checked: true\n                                onClicked: {\n                                    if (developDlg.currentStackIndex === 0) {\n                                        return\n                                    }\n                                    developDlg.currentStackIndex = 0;\n                                    stackView.replace(page1Component);\n                                }\n                            }\n\n                            RadioButton {\n                                id: radio2\n                                text: qsTr(\"Offline\")\n                                font: D.DTK.fontManager.t6\n                                onClicked: {\n                                    if (developDlg.currentStackIndex === 1) {\n                                        return\n                                    }\n\n                                    developDlg.currentStackIndex = 1;\n                                    stackView.replace(page2Component);\n                                }\n                            }\n                        }\n\n                        // StackView 用于显示不同页面\n                        StackView {\n                            visible: !developDlg.showSuccess\n                            id: stackView\n                            width: 340\n                            height: 180\n                            initialItem: page1Component\n                        }\n\n                        D.RecommandButton {\n                            visible: !developDlg.showSuccess\n                            id: confirmBtn\n                            text: developDlg.currentStackIndex === 1 ? qsTr(\"Import Certificate\") : (dccData.mode().isLogin ? qsTr(\"Request Root Access\") : qsTr(\"Login UOS ID\"))\n                            font: D.DTK.fontManager.t7\n\n                            Layout.fillWidth: true\n                            Layout.bottomMargin: 10\n\n                            onClicked: {\n                                if (developDlg.currentStackIndex === 1) {\n                                    fileDlg.open()\n                                    return\n                                }\n\n                                if (dccData.mode().isLogin) {\n                                    dccData.work().setEnableDeveloperMode(true)\n                                    developDlg.close()\n                                } else {\n                                    dccData.work().login()\n                                }\n                            }\n                        }\n                        FileDialog {\n                            id: exportFileDlg\n                            title: qsTr(\"Select file\")\n                            nameFilters: \"Text files (*.json)\"\n                            fileMode: FileDialog.SaveFile\n                            folder: StandardPaths.writableLocation(StandardPaths.DocumentsLocation)\n                            onAccepted: {\n                                dccData.work().exportMessage(exportFileDlg.file)\n                                developDlg.close()\n                            }\n                        }\n\n                        FileDialog {\n                            id: fileDlg\n                            title: qsTr(\"Select file\")\n                            folder: StandardPaths.writableLocation(StandardPaths.DocumentsLocation)\n                            onAccepted: {\n                                dccData.work().importCertificate(fileDlg.file)\n\n                            }\n                        }\n\n                        // 页面1\n                        Component {\n                            id: page1Component\n                            ColumnLayout {\n                                Rectangle {\n                                    color: \"transparent\"\n                                    width: parent.width\n                                    height: 128\n                                    Image {\n                                        id: tikc\n                                        source: dccData.mode().isLogin ? \"common_tick\" : \"develop_bind\"\n                                        width: 128\n                                        height: 128\n                                        z: 2\n                                        anchors.centerIn: parent\n                                    }\n\n                                    Image {\n                                        id: ok\n                                        visible: dccData.mode().isLogin\n                                        source: \"common_ok\"\n                                        z: 1\n                                        anchors.centerIn: parent\n                                        width: 128\n                                        height: 128\n                                    }\n                                    Image {\n                                        id: shadow\n                                        visible: dccData.mode().isLogin\n                                        source: \"common_inner_shadow\"\n                                        z: 0\n                                        anchors.centerIn: parent\n                                        width: 128\n                                        height: 128\n                                    }\n                                }\n\n                                Item {\n                                    Layout.fillHeight: true\n                                }\n                                Label {\n                                    wrapMode: Text.WordWrap\n\n                                    horizontalAlignment: Qt.AlignHCenter\n                                    Layout.fillWidth: true\n                                    font.pixelSize: 12\n                                    Layout.bottomMargin: 10\n                                    text: dccData.mode().isLogin ? qsTr(\"Your UOS ID has been logged in, click to enter developer mode\") : qsTr(\"Please sign in to your UOS ID first and continue\")\n                                }\n                            }\n                        }\n\n                        // 页面2\n                        Component {\n                            id: page2Component\n                            ColumnLayout {\n                                id: offlinePanel\n                                spacing: 1\n                                property int radius: 6\n                                \n                                Control {\n                                    Layout.fillWidth: true\n                                    height: 42\n                                    padding: 0\n                                    property bool checked: false\n                                    property bool cascadeSelected: false\n                                    property int corners: D.RoundRectangle.TopCorner\n                                    background: DccItemBackground {\n                                        backgroundType: DccObject.Normal\n                                        radius: offlinePanel.radius\n                                        shadowVisible: false\n                                        backgroundColor: D.Palette {\n                                            normal: Qt.rgba(0, 0, 0, 0.05)\n                                            normalDark: Qt.rgba(247, 247, 247, 0.05)\n                                        }\n                                    }\n                                    contentItem: RowLayout {\n                                        Layout.leftMargin: 10\n                                        Layout.rightMargin: 10\n                                        Label {\n                                            Layout.fillWidth: true\n                                            Layout.leftMargin: 6\n                                            text: qsTr(\"1.Export PC Info\")\n                                            font: D.DTK.fontManager.t6\n                                            elide: Text.ElideMiddle\n                                            verticalAlignment: Text.AlignVCenter\n                                        }\n                                        Button {\n                                            id: exportBtn\n                                            Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                                            Layout.rightMargin: 6\n                                            implicitWidth: 60\n                                            implicitHeight: 30\n                                            text: qsTr(\"Export\")\n                                            onClicked: exportFileDlg.open()\n                                        }\n                                    }\n                                }\n\n                                Control {\n                                    Layout.fillWidth: true\n                                    padding: 0\n                                    implicitHeight: 55\n                                    property bool checked: false\n                                    property bool cascadeSelected: false\n                                    property int corners: 0\n                                    background: DccItemBackground {\n                                        backgroundType: DccObject.Normal\n                                        radius: offlinePanel.radius\n                                        shadowVisible: false\n                                        backgroundColor: D.Palette {\n                                            normal: Qt.rgba(0, 0, 0, 0.05)\n                                            normalDark: Qt.rgba(247, 247, 247, 0.05)\n                                        }\n                                    }\n                                    contentItem: ColumnLayout {\n                                        Label {\n                                            id: offlineLinkLabel\n                                            Layout.fillWidth: true\n                                            Layout.leftMargin: 6\n                                            Layout.rightMargin: 10\n                                            text: qsTr(\"2.please go to %1 to Download offline certificate.\")\n                                            .arg(\"<a style='text-decoration: none;' href=\\\"http://www.chinauos.com/developMode\\\">http：//www.chinauos.com/developMode</a>\")\n                                            textFormat: Text.RichText\n                                            wrapMode: Text.WordWrap\n                                            font: D.DTK.fontManager.t6\n                                            onLinkActivated: function(link) {\n                                                Qt.openUrlExternally(link)\n                                            }\n                                            \n                                            MouseArea {\n                                                anchors.fill: parent\n                                                acceptedButtons: Qt.LeftButton\n                                                hoverEnabled: true\n                                                cursorShape: offlineLinkLabel.linkAt(mouseX, mouseY) ? Qt.PointingHandCursor : Qt.ArrowCursor\n                                                onClicked: function(mouse) {\n                                                    var link = offlineLinkLabel.linkAt(mouse.x, mouse.y)\n                                                    if (link) {\n                                                        Qt.openUrlExternally(link)\n                                                    }\n                                                }\n                                            }\n                                        }\n                                    }\n                                }\n\n                                Control {\n                                    Layout.fillWidth: true\n                                    height: 40\n                                    padding: 0\n                                    property bool checked: false\n                                    property bool cascadeSelected: false\n                                    property int corners: D.RoundRectangle.BottomCorner\n                                    background: DccItemBackground {\n                                        backgroundType: DccObject.Normal\n                                        radius: offlinePanel.radius\n                                        shadowVisible: false\n                                        backgroundColor: D.Palette {\n                                            normal: Qt.rgba(0, 0, 0, 0.05)\n                                            normalDark: Qt.rgba(247, 247, 247, 0.05)\n                                        }\n                                    }\n                                    contentItem: RowLayout {\n                                        Layout.leftMargin: 10\n                                        Layout.rightMargin: 10\n                                        Label {\n                                            Layout.fillWidth: true\n                                            Layout.leftMargin: 6\n                                            text: qsTr(\"3.Import Certificate\")\n                                            font: D.DTK.fontManager.t6\n                                            verticalAlignment: Text.AlignVCenter\n                                        }\n                                    }\n                                }\n\n                                Item {\n                                    Layout.fillHeight: true\n                                }\n                            }\n                        }\n                    }\n\n                        ColumnLayout {\n                            id: successView\n                            visible: developDlg.showSuccess\n                            anchors.fill: parent\n                            spacing: 10\n                            Label {\n                                font: D.DTK.fontManager.t5\n                                Layout.alignment: Qt.AlignHCenter\n                                Layout.bottomMargin: 24\n                                text: qsTr(\"Root Access\")\n                            }\n                            Rectangle {\n                                color: \"transparent\"\n                                width: 128\n                                height: 128\n                                Layout.alignment: Qt.AlignHCenter\n                                Image { source: \"common_tick\"; width: 128; height: 128; z: 2; anchors.centerIn: parent }\n                                Image { source: \"common_ok\"; z: 1; anchors.centerIn: parent; width: 128; height: 128 }\n                                Image { source: \"common_inner_shadow\"; z: 0; anchors.centerIn: parent; width: 128; height: 128 }\n                            }\n                            Label {\n                                Layout.alignment: Qt.AlignHCenter\n                                horizontalAlignment: Qt.AlignHCenter\n                                text: qsTr(\"You have entered developer mode\")\n                                font: D.DTK.fontManager.t8\n                            }\n                            D.RecommandButton {\n                                Layout.fillWidth: true\n                                Layout.alignment: Qt.AlignHCenter\n                                Layout.bottomMargin: 6\n                                text: qsTr(\"OK\")\n                                font: D.DTK.fontManager.t7\n                                onClicked: developDlg.close()\n                            }\n                        }\n                }\n                Connections {\n                    target: dccData.mode()\n                    onDeveloperModeStateChanged: function(enable) {\n                        if (enable && developDlg.currentStackIndex === 1) {\n                            developDlg.showSuccess = true\n                        }\n                    }\n                    onIsDeveloperModeChanged: {\n                        if (dccData.mode().isDeveloperMode && developDlg.currentStackIndex === 1) {\n                            developDlg.showSuccess = true\n                        }\n                    }\n                }\n            }\n        }\n\n\n        DccObject {\n            name: \"developTips\"\n            parentName: \"developerModeSetting\"\n            weight: 40\n            pageType: DccObject.Item\n            visible: dccData.work().isACLController() ? dccData.mode().isActivate : true\n            page: Label {\n                id: securityCenterLinkLabel\n                leftPadding: 15\n                topPadding: 5\n                bottomPadding: 5\n                color: D.DTK.themeType === D.ApplicationHelper.LightType ? \"#64000000\" : \"#64FFFFFF\"\n                textFormat: Text.RichText\n                text: dccData.work().isSecurityCenterInstalled() ?\n                    qsTr(\"To install and run unsigned apps, please go to <a style='text-decoration: none;' href='Security Center'> Security Center </a> to change the settings.\") :\n                    qsTr(\"To install and run unsigned apps, please go to Security Center to change the settings.\")\n                font: D.DTK.fontManager.t10\n                wrapMode: Text.WordWrap\n                Layout.fillWidth: true\n                // 超链接点击事件\n                onLinkActivated: function(url) {\n                    if (dccData.work().isSecurityCenterInstalled()) {\n                        console.log(\"点击的链接是: \" + url)\n                        dccData.work().jumpToSecurityCenter();\n                    }\n                }\n                \n                MouseArea {\n                    anchors.fill: parent\n                    acceptedButtons: Qt.LeftButton\n                    hoverEnabled: true\n                    cursorShape: securityCenterLinkLabel.linkAt(mouseX, mouseY) ? Qt.PointingHandCursor : Qt.ArrowCursor\n                    onClicked: function(mouse) {\n                        var link = securityCenterLinkLabel.linkAt(mouse.x, mouse.y)\n                        if (link && dccData.work().isSecurityCenterInstalled()) {\n                            dccData.work().jumpToSecurityCenter();\n                        }\n                    }\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"developDebugTitle\"\n        parentName: \"developerMode\"\n        displayName: qsTr(\"Development and debugging options\")\n        weight: 50\n        pageType: DccObject.Item\n        page: Label {\n            topPadding: 5\n            leftPadding: 15\n            bottomPadding: -2\n            text: dccObj.displayName\n            font.pixelSize: D.DTK.fontManager.t5.pixelSize\n            font.weight: 500\n            color: D.DTK.themeType === D.ApplicationHelper.LightType ?\n                    Qt.rgba(0, 0, 0, 1) : Qt.rgba(1, 1, 1, 1)\n        }\n    }\n\n    DccObject {\n        name: \"developDebugGrp\"\n        parentName: \"developerMode\"\n        weight: 60\n        pageType: DccObject.Item\n\n        page: DccGroupView {\n\n            Layout.topMargin: 0\n        }\n\n        DccObject {\n            name: \"developDebug\"\n            parentName: \"developDebugGrp\"\n            displayName: qsTr(\"System logging level\")\n            description: qsTr(\"Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.\")\n            weight: 10\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            page:  Row{\n                ComboBox {\n                    id: debugLogCombo\n                    model: [ qsTr(\"Off\"), qsTr(\"Debug\") ]\n                    flat: true\n                    font: D.DTK.fontManager.t8\n                    currentIndex: dccData.mode().debugLogCurrentIndex\n                    onCurrentIndexChanged: {\n                        console.log(\"Selected index:\", currentIndex)\n                        if (currentIndex !== dccData.mode().debugLogCurrentIndex) {\n                            dccData.work().setLogDebug(currentIndex)\n                        }\n                    }\n                }\n            }\n        }\n\n        DccObject {\n            name: \"developDebugTips\"\n            parentName: \"developDebugGrp\"\n            weight: 20\n            pageType: DccObject.Item\n            page: Label {\n                leftPadding: 15\n                bottomPadding: 5\n                topPadding: 5\n                rightPadding: 10\n                text: qsTr(\"Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.\")\n                font: D.DTK.fontManager.t10\n                opacity: 0.5\n                wrapMode: Text.WordWrap\n            }\n        }\n\n\n    }\n\n    DccObject {\n        name: \"developReadOnlyProtection\"\n        parentName: \"developerMode\"\n        displayName: qsTr(\"Solid System Read-Only Protection\")\n        weight: 70\n        visible: dccData.work().showReadOnlyProtection()\n        canSearch: visible\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: RowLayout {\n            Layout.topMargin: 5\n            ColumnLayout {\n                spacing: 2\n                Layout.leftMargin: 15\n                Layout.topMargin: 5\n                Layout.bottomMargin: 5\n                Label {\n                    text: dccObj.displayName\n                    font: D.DTK.fontManager.t6\n                }\n\n                Label {\n                    horizontalAlignment: Text.AlignLeft\n                    wrapMode: Text.WordWrap\n                    text: dccData.mode().readOnlyProtectionEnabled\n                            ? qsTr(\"Disabling protection unlocks system directories，This action carries a high risk of system damage.\")\n                            : qsTr(\"Enable protection to lock system directories and ensure optimal stability.\")\n                    font: D.DTK.fontManager.t10\n                    opacity: 0.5\n\n                    Layout.fillWidth: true\n                }\n            }\n\n            Switch {\n                Layout.alignment: Qt.AlignRight\n                Layout.rightMargin: 10\n                implicitWidth: 50\n                checked: dccData.mode().readOnlyProtectionEnabled\n                onClicked: {\n                    console.log(\"Read-Only Protection switched to:\", checked, \"current state:\", dccData.mode().readOnlyProtectionEnabled)\n\n                    dccData.work().setReadOnlyProtectionEnabled(checked)\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-commoninfo/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-datetime/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\nset(pluginName datetime)\nfile(GLOB_RECURSE datetime_SRCS\n    \"operation/*.cpp\"\n    \"operation/*.h\"\n    \"operation/timezoneMap/*.h\"\n    \"operation/timezoneMap/*.cpp\"\n    \"operation/qrc/datetime.qrc\"\n)\n\nadd_library(${pluginName} MODULE\n    ${datetime_SRCS}\n)\n\nfind_package(ICU COMPONENTS i18n uc)\n\nset(dateTime_Libraries\n    ${DCC_FRAME_Library}\n    ${QT_NS}::DBus\n    ${QT_NS}::Concurrent\n     ${DTK_NS}::Gui\n     ICU::i18n\n     ICU::uc\n)\n\ntarget_link_libraries(${pluginName} PRIVATE\n    ${dateTime_Libraries}\n    dcc-shared-utils\n)\n\ndcc_install_plugin(NAME ${pluginName} TARGET ${pluginName})\n\n# keyboard_language_*.ts生成使用脚本misc/translate_language2ts.sh手动执行\n"
  },
  {
    "path": "src/plugin-datetime/operation/datetimedbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"datetimedbusproxy.h\"\n\n#include <QMetaObject>\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusPendingReply>\n#include <QDateTime>\n#include <QLoggingCategory>\n\nQ_LOGGING_CATEGORY(DdcDateTimeDbusProxy, \"dcc-datetime-dbusproxy\")\n\nconst QString TimedateService = QStringLiteral(\"org.deepin.dde.Timedate1\");\nconst QString TimedatePath = QStringLiteral(\"/org/deepin/dde/Timedate1\");\nconst QString TimedateInterface = QStringLiteral(\"org.deepin.dde.Timedate1\");\n\nconst QString SystemTimedatedService = QStringLiteral(\"org.deepin.dde.Timedate1\");\nconst QString SystemTimedatedPath = QStringLiteral(\"/org/deepin/dde/Timedate1\");\nconst QString SystemTimedatedInterface = QStringLiteral(\"org.deepin.dde.Timedate1\");\n\nconst QString PropertiesInterface = QStringLiteral(\"org.freedesktop.DBus.Properties\");\nconst QString PropertiesChanged = QStringLiteral(\"PropertiesChanged\");\n\nconst QString LangSelectorService = QStringLiteral(\"org.deepin.dde.LangSelector1\");\nconst QString LangSelectorPath = QStringLiteral(\"/org/deepin/dde/LangSelector1\");\nconst QString LangSelectorInterface = QStringLiteral(\"org.deepin.dde.LangSelector1\");\n\nconst QString FormatService = QStringLiteral(\"org.deepin.dde.Format1\");\nconst QString FormatPath = QStringLiteral(\"/org/deepin/dde/Format1\");\nconst QString FormatInterface = QStringLiteral(\"org.deepin.dde.Format1\");\n\nDatetimeDBusProxy::DatetimeDBusProxy(QObject *parent)\n    : QObject(parent)\n    , m_localeInter(new QDBusInterface(LangSelectorService, LangSelectorPath, LangSelectorInterface, QDBusConnection::sessionBus(), this))\n    , m_timedateInter(new QDBusInterface(TimedateService, TimedatePath, TimedateInterface, QDBusConnection::sessionBus(), this))\n    , m_systemtimedatedInter(new QDBusInterface(SystemTimedatedService, SystemTimedatedPath, SystemTimedatedInterface, QDBusConnection::systemBus(), this))\n    , m_formatInter(new QDBusInterface(FormatService, FormatPath, FormatInterface, QDBusConnection::sessionBus(), this))\n{\n    registerZoneInfoMetaType();\n\n    qRegisterMetaType<LocaleInfo>(\"LocaleInfo\");\n    qDBusRegisterMetaType<LocaleInfo>();\n\n    qRegisterMetaType<LocaleList>(\"LocaleList\");\n    qDBusRegisterMetaType<LocaleList>();\n    QDBusConnection::sessionBus().connect(TimedateService, TimedatePath, PropertiesInterface, PropertiesChanged, this, SLOT(onPropertiesChanged(QDBusMessage)));\n    QDBusConnection::sessionBus().connect(FormatService, FormatPath, PropertiesInterface, PropertiesChanged, this, SLOT(onPropertiesChanged(QDBusMessage)));\n}\n\nbool DatetimeDBusProxy::use24HourFormat()\n{\n    return qvariant_cast<bool>(m_timedateInter->property(\"Use24HourFormat\"));\n}\nvoid DatetimeDBusProxy::setUse24HourFormat(bool value)\n{\n    m_timedateInter->setProperty(\"Use24HourFormat\", QVariant::fromValue(value));\n}\n\nint DatetimeDBusProxy::weekdayFormat()\n{\n    return qvariant_cast<int>(m_timedateInter->property(\"WeekdayFormat\"));\n}\nvoid DatetimeDBusProxy::setWeekdayFormat(int value)\n{\n    m_timedateInter->setProperty(\"WeekdayFormat\", QVariant::fromValue(value));\n}\n\nint DatetimeDBusProxy::longDateFormat()\n{\n    return qvariant_cast<int>(m_timedateInter->property(\"LongDateFormat\"));\n}\nvoid DatetimeDBusProxy::setLongDateFormat(int value)\n{\n    m_timedateInter->setProperty(\"LongDateFormat\", QVariant::fromValue(value));\n}\n\nint DatetimeDBusProxy::shortDateFormat()\n{\n    return qvariant_cast<int>(m_timedateInter->property(\"ShortDateFormat\"));\n}\nvoid DatetimeDBusProxy::setShortDateFormat(int value)\n{\n    m_timedateInter->setProperty(\"ShortDateFormat\", QVariant::fromValue(value));\n}\n\nint DatetimeDBusProxy::longTimeFormat()\n{\n    return qvariant_cast<int>(m_timedateInter->property(\"LongTimeFormat\"));\n}\nvoid DatetimeDBusProxy::setLongTimeFormat(int value)\n{\n    m_timedateInter->setProperty(\"LongTimeFormat\", QVariant::fromValue(value));\n}\n\nint DatetimeDBusProxy::shortTimeFormat()\n{\n    return qvariant_cast<int>(m_timedateInter->property(\"ShortTimeFormat\"));\n}\nvoid DatetimeDBusProxy::setShortTimeFormat(int value)\n{\n    m_timedateInter->setProperty(\"ShortTimeFormat\", QVariant::fromValue(value));\n}\n\nint DatetimeDBusProxy::weekBegins()\n{\n    return qvariant_cast<int>(m_timedateInter->property(\"WeekBegins\"));\n}\nvoid DatetimeDBusProxy::setWeekBegins(int value)\n{\n    m_timedateInter->setProperty(\"WeekBegins\", QVariant::fromValue(value));\n}\n\nQString DatetimeDBusProxy::nTPServer()\n{\n    return qvariant_cast<QString>(m_timedateInter->property(\"NTPServer\"));\n}\n\nQString DatetimeDBusProxy::timezone()\n{\n    return qvariant_cast<QString>(m_timedateInter->property(\"Timezone\"));\n}\n\nbool DatetimeDBusProxy::nTP()\n{\n    return qvariant_cast<bool>(m_timedateInter->property(\"NTP\"));\n}\n\nQStringList DatetimeDBusProxy::userTimezones()\n{\n    return qvariant_cast<QStringList>(m_timedateInter->property(\"UserTimezones\"));\n}\n\nvoid DatetimeDBusProxy::onPropertiesChanged(const QDBusMessage &message)\n{\n    QVariantMap changedProps = qdbus_cast<QVariantMap>(message.arguments().at(1).value<QDBusArgument>());\n    for (QVariantMap::const_iterator it = changedProps.cbegin(); it != changedProps.cend(); ++it) {\n        QMetaObject::invokeMethod(this, it.key().toLatin1() + \"Changed\", Qt::DirectConnection, QGenericArgument(it.value().typeName(), it.value().data()));\n    }\n}\n\n// Timedate\nvoid DatetimeDBusProxy::SetNTP(bool useNTP)\n{\n    m_timedateInter->asyncCall(QStringLiteral(\"SetNTP\"), useNTP);\n}\nvoid DatetimeDBusProxy::SetNTP(bool useNTP, QObject *receiver, const char *member, const char *errorSlot)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(useNTP);\n    m_timedateInter->callWithCallback(QStringLiteral(\"SetNTP\"), argumentList, receiver, member, errorSlot);\n}\n\nvoid DatetimeDBusProxy::SetDate(int year, int month, int day, int hour, int min, int sec, int nsec)\n{\n    m_timedateInter->asyncCall(QStringLiteral(\"SetDate\"), year, month, day, hour, min, sec, nsec);\n}\nvoid DatetimeDBusProxy::SetDate(const QDateTime &datetime, QObject *receiver, const char *member)\n{\n    const QDate date = datetime.date();\n    const QTime time = datetime.time();\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(date.year()) << QVariant::fromValue(date.month()) << QVariant::fromValue(date.day());\n    argumentList << QVariant::fromValue(time.hour()) << QVariant::fromValue(time.minute()) << QVariant::fromValue(time.second()) << 0;\n    m_timedateInter->callWithCallback(QStringLiteral(\"SetDate\"), argumentList, receiver, member);\n}\nvoid DatetimeDBusProxy::DeleteUserTimezone(const QString &zone)\n{\n    m_timedateInter->asyncCall(QStringLiteral(\"DeleteUserTimezone\"), zone);\n}\n\nvoid DatetimeDBusProxy::AddUserTimezone(const QString &zone)\n{\n    m_timedateInter->asyncCall(QStringLiteral(\"AddUserTimezone\"), zone);\n}\n\nQStringList DatetimeDBusProxy::GetSampleNTPServers()\n{\n    return QDBusPendingReply<QStringList>(m_timedateInter->asyncCall(QStringLiteral(\"GetSampleNTPServers\")));\n}\n\nbool DatetimeDBusProxy::GetSampleNTPServers(QObject *receiver, const char *member)\n{\n    QList<QVariant> argumentList;\n    return m_timedateInter->callWithCallback(QStringLiteral(\"GetSampleNTPServers\"), argumentList, receiver, member);\n}\n\nZoneInfo DatetimeDBusProxy::GetZoneInfo(const QString &zone)\n{\n    return QDBusPendingReply<ZoneInfo>(m_timedateInter->asyncCall(QStringLiteral(\"GetZoneInfo\"), zone));\n}\nbool DatetimeDBusProxy::GetZoneInfo(const QString &zone, QObject *receiver, const char *member)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(zone);\n    return m_timedateInter->callWithCallback(QStringLiteral(\"GetZoneInfo\"), argumentList, receiver, member);\n}\n\n// System Timedate\nQDBusPendingCall DatetimeDBusProxy::SetTimezone(const QString &timezone, const QString &message)\n{\n    return m_systemtimedatedInter->asyncCall(QStringLiteral(\"SetTimezone\"), timezone, message);\n}\n\nvoid DatetimeDBusProxy::SetNTPServer(const QString &server, const QString &message)\n{\n    m_systemtimedatedInter->asyncCall(QStringLiteral(\"SetNTPServer\"), server, message);\n}\n\nvoid DatetimeDBusProxy::SetNTPServer(const QString &server, const QString &message, QObject *receiver, const char *member, const char *errorSlot)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(server) << QVariant::fromValue(message);\n    m_systemtimedatedInter->callWithCallback(QStringLiteral(\"SetNTPServer\"), argumentList, receiver, member, errorSlot);\n}\n\nQString DatetimeDBusProxy::currentLocale()\n{\n    QDBusInterface dbus(LangSelectorService, LangSelectorPath, LangSelectorInterface, QDBusConnection::sessionBus());\n    return qvariant_cast<QString>(dbus.property(\"CurrentLocale\"));\n}\n\nstd::optional<LocaleList> DatetimeDBusProxy::getLocaleListMap()\n{\n    QDBusPendingReply<LocaleList> reply = m_localeInter->asyncCall(QStringLiteral(\"GetLocaleList\"));\n    reply.waitForFinished();\n    if (reply.isError()) {\n        qCDebug(DdcDateTimeDbusProxy) << \"Can not get localeRegion: \"<< reply.error();\n        return std::nullopt;\n    }\n    return reply.value();\n}\n\nstd::optional<QString> DatetimeDBusProxy::getLocaleRegion()\n{\n    QDBusPendingReply<QString> reply = m_localeInter->asyncCall(QStringLiteral(\"GetLocaleRegion\"));\n    reply.waitForFinished();\n    if (reply.isError()) {\n        qCDebug(DdcDateTimeDbusProxy) << \"Can not get localeRegion: \"<< reply.error();\n        return std::nullopt;\n    }\n    if (reply.value().isEmpty()) {\n        return std::nullopt;\n    } else {\n        return reply.value();\n    }\n}\n\nvoid DatetimeDBusProxy::setLocaleRegion(const QString &locale)\n{\n    m_localeInter->asyncCall(QStringLiteral(\"SetLocaleRegion\"), locale);\n}\n\nQString DatetimeDBusProxy::decimalSymbol() const\n{\n    return qvariant_cast<QString>(m_formatInter->property(\"DecimalSymbol\"));\n}\n\nvoid DatetimeDBusProxy::setDecimalSymbol(const QString &newDecimalSymbol)\n{\n    m_formatInter->setProperty(\"DecimalSymbol\", QVariant::fromValue(newDecimalSymbol));\n}\n\nQString DatetimeDBusProxy::digitGrouping() const\n{\n    return qvariant_cast<QString>(m_formatInter->property(\"DigitGrouping\"));\n}\n\nvoid DatetimeDBusProxy::setDigitGrouping(const QString &newDigitGrouping)\n{\n    m_formatInter->setProperty(\"DigitGrouping\", QVariant::fromValue(newDigitGrouping));\n}\n\nQString DatetimeDBusProxy::digitGroupingSymbol() const\n{\n    return qvariant_cast<QString>(m_formatInter->property(\"DigitGroupingSymbol\"));\n}\n\nvoid DatetimeDBusProxy::setDigitGroupingSymbol(const QString &newDigitGroupingSymbol)\n{\n    m_formatInter->setProperty(\"DigitGroupingSymbol\", QVariant::fromValue(newDigitGroupingSymbol));\n}\n\nQString DatetimeDBusProxy::currencySymbol() const\n{\n    return qvariant_cast<QString>(m_formatInter->property(\"CurrencySymbol\"));\n}\n\nvoid DatetimeDBusProxy::setCurrencySymbol(const QString &newCurrencySymbol)\n{\n    m_formatInter->setProperty(\"CurrencySymbol\", QVariant::fromValue(newCurrencySymbol));\n}\n\nQString DatetimeDBusProxy::negativeCurrencyFormat() const\n{\n    return qvariant_cast<QString>(m_formatInter->property(\"NegativeCurrencyFormat\"));\n}\n\nvoid DatetimeDBusProxy::setNegativeCurrencyFormat(const QString &newNegativeCurrencyFormat)\n{\n    m_formatInter->setProperty(\"NegativeCurrencyFormat\", QVariant::fromValue(newNegativeCurrencyFormat));\n}\n\nQString DatetimeDBusProxy::positiveCurrencyFormat() const\n{\n    return qvariant_cast<QString>(m_formatInter->property(\"PositiveCurrencyFormat\"));\n}\n\nvoid DatetimeDBusProxy::setPositiveCurrencyFormat(const QString &newPositiveCurrencyFormat)\n{\n    m_formatInter->setProperty(\"PositiveCurrencyFormat\", QVariant::fromValue(newPositiveCurrencyFormat));\n}\n\nvoid DatetimeDBusProxy::GenLocale(const QString &locale)\n{\n    m_localeInter->asyncCall(QStringLiteral(\"GenLocale\"), locale);\n}\n"
  },
  {
    "path": "src/plugin-datetime/operation/datetimedbusproxy.h",
    "content": "// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DATETIMEDBUSPROXY_H\n#define DATETIMEDBUSPROXY_H\n\n#include \"zoneinfo.h\"\n#include <QDBusArgument>\n#include <QDBusPendingCall>\n#include <QObject>\n\n#include <optional>\nclass QDBusInterface;\nclass QDBusMessage;\nclass QDateTime;\n\nclass LocaleInfo\n{\npublic:\n    LocaleInfo() { }\n\n    friend QDBusArgument &operator<<(QDBusArgument &arg, const LocaleInfo &info)\n    {\n        arg.beginStructure();\n        arg << info.id << info.name;\n        arg.endStructure();\n\n        return arg;\n    }\n\n    friend const QDBusArgument &operator>>(const QDBusArgument &arg, LocaleInfo &info)\n    {\n        arg.beginStructure();\n        arg >> info.id >> info.name;\n        arg.endStructure();\n\n        return arg;\n    }\n\n    friend QDataStream &operator<<(QDataStream &ds, const LocaleInfo &info)\n    {\n        return ds << info.id << info.name;\n    }\n\n    friend const QDataStream &operator>>(QDataStream &ds, LocaleInfo &info)\n    {\n        return ds >> info.id >> info.name;\n    }\n\n    bool operator==(const LocaleInfo &info) { return id == info.id && name == info.name; }\n\npublic:\n    QString id{ \"\" };\n    QString name{ \"\" };\n};\n\ntypedef QList<LocaleInfo> LocaleList;\nQ_DECLARE_METATYPE(LocaleInfo)\nQ_DECLARE_METATYPE(LocaleList)\n\nclass DatetimeDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit DatetimeDBusProxy(QObject *parent = nullptr);\n    static QString currentLocale();\n    // Timedate\n    Q_PROPERTY(bool Use24HourFormat READ use24HourFormat WRITE setUse24HourFormat NOTIFY Use24HourFormatChanged)\n    bool use24HourFormat();\n    void setUse24HourFormat(bool value);\n    Q_PROPERTY(int WeekdayFormat READ weekdayFormat WRITE setWeekdayFormat NOTIFY WeekdayFormatChanged)\n    int weekdayFormat();\n    void setWeekdayFormat(int value);\n    Q_PROPERTY(int LongDateFormat READ longDateFormat WRITE setLongDateFormat NOTIFY LongDateFormatChanged)\n    int longDateFormat();\n    void setLongDateFormat(int value);\n    Q_PROPERTY(int ShortDateFormat READ shortDateFormat WRITE setShortDateFormat NOTIFY ShortDateFormatChanged)\n    int shortDateFormat();\n    void setShortDateFormat(int value);\n    Q_PROPERTY(int LongTimeFormat READ longTimeFormat WRITE setLongTimeFormat NOTIFY LongTimeFormatChanged)\n    int longTimeFormat();\n    void setLongTimeFormat(int value);\n    Q_PROPERTY(int ShortTimeFormat READ shortTimeFormat WRITE setShortTimeFormat NOTIFY ShortTimeFormatChanged)\n    int shortTimeFormat();\n    void setShortTimeFormat(int value);\n    Q_PROPERTY(int WeekBegins READ weekBegins WRITE setWeekBegins NOTIFY WeekBeginsChanged)\n    int weekBegins();\n    void setWeekBegins(int value);\n    Q_PROPERTY(QString NTPServer READ nTPServer NOTIFY NTPServerChanged)\n    QString nTPServer();\n    Q_PROPERTY(QString Timezone READ timezone NOTIFY TimezoneChanged)\n    QString timezone();\n    Q_PROPERTY(bool NTP READ nTP NOTIFY NTPChanged)\n    bool nTP();\n    Q_PROPERTY(QStringList UserTimezones READ userTimezones NOTIFY UserTimezonesChanged)\n    QStringList userTimezones();\n\n    Q_PROPERTY(QString decimalSymbol READ decimalSymbol WRITE setDecimalSymbol NOTIFY DecimalSymbolChanged)\n    Q_PROPERTY(QString digitGrouping READ digitGrouping WRITE setDigitGrouping NOTIFY DigitGroupingChanged)\n    Q_PROPERTY(QString digitGroupingSymbol READ digitGroupingSymbol WRITE setDigitGroupingSymbol NOTIFY DigitGroupingSymbolChanged)\n    Q_PROPERTY(QString currencySymbol READ currencySymbol WRITE setCurrencySymbol NOTIFY CurrencySymbolChanged)\n    Q_PROPERTY(QString negativeCurrencyFormat READ negativeCurrencyFormat WRITE setNegativeCurrencyFormat NOTIFY NegativeCurrencyFormatChanged)\n    Q_PROPERTY(QString positiveCurrencyFormat READ positiveCurrencyFormat WRITE setPositiveCurrencyFormat NOTIFY PositiveCurrencyFormatChanged)\n\n    // Locale\n    std::optional<LocaleList> getLocaleListMap();\n    std::optional<QString> getLocaleRegion();\n\n    void setLocaleRegion(const QString &locale);\n\n    QString decimalSymbol() const;\n    void setDecimalSymbol(const QString &newDecimalSymbol);\n\n    QString digitGrouping() const;\n    void setDigitGrouping(const QString &newDigitGrouping);\n\n    QString digitGroupingSymbol() const;\n    void setDigitGroupingSymbol(const QString &newDigitGroupingSymbol);\n\n    QString currencySymbol() const;\n    void setCurrencySymbol(const QString &newCurrencySymbol);\n\n    QString negativeCurrencyFormat() const;\n    void setNegativeCurrencyFormat(const QString &newNegativeCurrencyFormat);\n\n    QString positiveCurrencyFormat() const;\n    void setPositiveCurrencyFormat(const QString &newPositiveCurrencyFormat);\n\n    void GenLocale(const QString &locale);\n\nQ_SIGNALS: // SIGNALS\n    // Timedate\n    // begin property changed signals\n    void CanNTPChanged(bool value) const;\n    void DSTOffsetChanged(int value) const;\n    void LocalRTCChanged(bool value) const;\n    void LongDateFormatChanged(int value) const;\n    void LongTimeFormatChanged(int value) const;\n    void NTPChanged(bool value) const;\n    void NTPServerChanged(const QString &value) const;\n    void ShortDateFormatChanged(int value) const;\n    void ShortTimeFormatChanged(int value) const;\n    void TimezoneChanged(const QString &value) const;\n    void Use24HourFormatChanged(bool value) const;\n    void UserTimezonesChanged(const QStringList &value) const;\n    void WeekBeginsChanged(int value) const;\n    void WeekdayFormatChanged(int value) const;\n\n    void DecimalSymbolChanged(const QString &value) const;\n    void DigitGroupingChanged(const QString &value) const;\n    void DigitGroupingSymbolChanged(const QString &value) const;\n    void CurrencySymbolChanged(const QString &value) const;\n    void NegativeCurrencyFormatChanged(const QString &value) const;\n    void PositiveCurrencyFormatChanged(const QString &value) const;\n\npublic Q_SLOTS:\n    // Timedate\n    void SetNTP(bool useNTP);\n    void SetNTP(bool useNTP, QObject *receiver, const char *member, const char *errorSlot);\n    void SetDate(int year, int month, int day, int hour, int min, int sec, int nsec);\n    void SetDate(const QDateTime &datetime, QObject *receiver, const char *member);\n    void DeleteUserTimezone(const QString &zone);\n    void AddUserTimezone(const QString &zone);\n    QStringList GetSampleNTPServers();\n    bool GetSampleNTPServers(QObject *receiver, const char *member);\n    ZoneInfo GetZoneInfo(const QString &zone);\n    bool GetZoneInfo(const QString &zone, QObject *receiver, const char *member);\n    // System Timedate\n    QDBusPendingCall SetTimezone(const QString &timezone, const QString &message);\n    void SetNTPServer(const QString &server, const QString &message);\n    void SetNTPServer(const QString &server,\n                      const QString &message,\n                      QObject *receiver,\n                      const char *member,\n                      const char *errorSlot);\n\nprivate Q_SLOTS:\n    void onPropertiesChanged(const QDBusMessage &message);\n\nprivate:\n    QDBusInterface *m_localeInter;\n    QDBusInterface *m_timedateInter;\n    QDBusInterface *m_systemtimedatedInter;\n    QDBusInterface *m_formatInter;\n};\n\n#endif // DATETIMEDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-datetime/operation/datetimemodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"datetimemodel.h\"\n#include \"dccfactory.h\"\n#include \"timezoneMap/timezone_map_util.h\"\n#include \"datetimeworker.h\"\n#include \"zoneinfomodel.h\"\n#include \"keyboard/keyboardmodel.h\"\n#include \"languagelistmodel.h\"\n#include \"langregionmodel.h\"\n#include \"dcclocale.h\"\n\n#include <unicode/locid.h>\n#include <unicode/unistr.h>\n\n#include <QDateTime>\n#include <QTimeZone>\n#include <QSettings>\n#include <QCoreApplication>\n#include <QStringListModel>\n#include <QTimer>\n#include <QtQml/qqml.h>\n\nstatic installer::ZoneInfoList g_totalZones;\n\nstatic QString getDescription(const ZoneInfo &zoneInfo)\n{\n    const QDateTime localTime(QDateTime::currentDateTime());\n    const double timeDelta = (zoneInfo.getUTCOffset() - localTime.offsetFromUtc()) / 3600.0;\n    QString dateLiteral;\n    if (localTime.time().hour() + timeDelta >= 24) {\n        dateLiteral = DatetimeModel::tr(\"Tomorrow\");\n    } else if (localTime.time().hour() + timeDelta <= 0) {\n        dateLiteral = DatetimeModel::tr(\"Yesterday\");\n    } else {\n        dateLiteral = DatetimeModel::tr(\"Today\");\n    }\n\n    int decimalNumber = 1;\n    //小时取余,再取分钟,将15分钟的双倍只显示一位小数,其他的都显示两位小数\n    switch ((zoneInfo.getUTCOffset() - localTime.offsetFromUtc()) % 3600 / 60 / 15) {\n    case -1:\n    case -3:\n    case 1:\n    case 3:\n        decimalNumber = 2;\n        break;\n    default:\n        decimalNumber = 1;\n        break;\n    }\n\n    QString description;\n    if (timeDelta > 0) {\n        description = DatetimeModel::tr(\"%1 hours earlier than local\").arg(QString::number(timeDelta, 'f', decimalNumber));\n    } else {\n        description = DatetimeModel::tr(\"%1 hours later than local\").arg(QString::number(-timeDelta, 'f', decimalNumber));\n    }\n\n    QDateTime targetTime = localTime.addSecs(static_cast<qint64>(timeDelta * 3600));\n    QString timeText = targetTime.toString(\"HH:mm\");\n\n    return QString(\"%1, %2, %3\").arg(dateLiteral).arg(description).arg(timeText);\n}\n\nstatic QString getDisplayText(const ZoneInfo &zoneInfo)\n{\n    QString gmData = zoneInfo.getUtcOffsetText();\n    QString cityName = zoneInfo.getZoneCity().isEmpty() ? zoneInfo.getZoneName() : zoneInfo.getZoneCity();\n\n    return QString(\"%1 %2\").arg(cityName).arg(gmData);\n}\n\nstatic QStringList timeZoneList(const installer::ZoneInfoList &zoneInfoList, QMap<QString, QString> &cache)\n{\n    using namespace installer;\n    if (g_totalZones.empty())\n        g_totalZones =  GetZoneInfoList();\n\n    const QString locale = QLocale::system().name();\n    QStringList timezoneList;\n    for (const auto& info : zoneInfoList) {\n        auto localzone = GetLocalTimezoneName(info.timezone, locale);\n\n        if (!cache.contains(localzone)) {\n            // \"上海\": \"Asia/Shanghai\"\n            cache[localzone] = info.timezone;\n        }\n\n        timezoneList << localzone;\n    }\n\n    return timezoneList;\n}\n\nstatic inline QStringList getCurrencySymbol(bool positive, const QString &symbol)\n{\n    const QString money(\"1.1\");\n    if (positive)\n        return {\n            QString(\"%1%2\").arg(symbol).arg(money),  // ￥1.1\n            QString(\"%1%2\").arg(money).arg(symbol),  // ￥1.1\n            QString(\"%1 %2\").arg(symbol).arg(money), // ￥ 1.1\n            QString(\"%1 %2\").arg(money).arg(symbol)  // 1.1 ￥\n        };\n\n    return {\n        QString(\"-%1%2\").arg(symbol).arg(money), // -￥1.1\n        QString(\"%1-%2\").arg(symbol).arg(money), // ￥-1.1\n        QString(\"%1%2-\").arg(symbol).arg(money), // ￥1.1-\n        QString(\"-%1%2\").arg(money).arg(symbol), // 1.1-￥\n        QString(\"%1-%2\").arg(money).arg(symbol), // 1.1-￥\n        QString(\"%1%2-\").arg(money).arg(symbol)  // 1.1￥-\n    };\n}\n\nstatic inline QString escapSpace(const QString &space)\n{\n    if (space.isEmpty())\n        return QLatin1String(\" \");\n    // 不同语言下空格可能不同。。详情看 QChar::isSpace 实现\n    bool isSpace = space.at(0).isSpace() || space == DatetimeModel::tr(\"Space\");\n    return isSpace ? QLatin1String(\" \") : space;\n}\n\nstatic inline QString normalizeSpace(const QString &value)\n{\n    // 如果是 \"Space\" 字符串，转换为普通空格\n    if (value == \"Space\" || value == DatetimeModel::tr(\"Space\")) {\n        return QString(\" \");\n    }\n    // 其他所有字符（包括特殊分隔符）都保持原样\n    return value;\n}\n\nstatic inline QString unEscapSpace(const QString &space)\n{\n    if (space.isEmpty())\n        return QLatin1String(\" \");\n\n    // 将所有空格类字符（包括普通空格和特殊空格）都转换为 \"Space\" 显示\n    // 这样用户在UI中看到的都是 \"Space\"，但实际使用的是区域对应的空格字符\n    return space.at(0).isSpace() ? DatetimeModel::tr(\"Space\") : space;\n}\n\n// 将显示用的符号转换回实际的字符\n// 如果用户选择了 \"Space\"，返回区域对应的实际空格字符\nstatic inline QString escapSpace(const QString &displaySymbol, const QLocale &locale, bool grouping)\n{\n    if (displaySymbol == DatetimeModel::tr(\"Space\")) {\n        // 用户选择了 \"Space\"，返回区域对应的实际空格字符\n        return grouping ? locale.groupSeparator() : QStringLiteral(\" \");\n    }\n    return displaySymbol;\n}\n\nstatic inline QStringList separatorSymbol(const QLocale &locale, bool grouping)\n{\n    QStringList symbols{ QString(\".\"), QString(\",\"), QString(\"'\"), DatetimeModel::tr(\"Space\") };\n    \n    // 只有千位分隔符需要添加区域特殊字符，小数点只使用默认的四个选项\n    if (grouping) {\n        QString separator = locale.groupSeparator();\n        separator = unEscapSpace(separator);\n\n        if (!symbols.contains(separator)) {\n            symbols.prepend(separator);\n        }\n    }\n\n    return symbols;\n}\n\nstatic QString translate(const QString &localeName, const QString &langRegion)\n{\n    QStringList langRegions = langRegion.split(\":\");\n    if (langRegions.size() < 2) {\n        return langRegion;\n    }\n\n    auto res = DCCLocale::languageAndRegionName(localeName);\n    QString langCountry = QObject::tr(\"%1 (%2)\", \"Language and region name, e.g. Chinese (China)\").arg(res.first).arg(res.second);\n\n    return langCountry;\n}\n\nDatetimeModel::DatetimeModel(QObject *parent)\n    : QObject(parent)\n    , m_ntp(true)\n    , m_bUse24HourType(true)\n    , m_previousServerAddress(\"\")\n    , m_work(new DatetimeWorker(this, this))\n{\n    connect(this, &DatetimeModel::ntpChanged, m_work, &DatetimeWorker::setNTP);\n    connect(this, &DatetimeModel::hourTypeChanged, m_work, &DatetimeWorker::set24HourType);\n    connect(this, &DatetimeModel::NTPServerChanged, m_work, &DatetimeWorker::setNtpServer);\n    // 设置ntp地址失败回退到之前的地址\n    connect(this, &DatetimeModel::NTPServerNotChanged, this, &DatetimeModel::setNtpServerAddress);\n\n    // set timezone\n    // connect(this, &DatetimeModel::timeZoneChanged, m_work, &DatetimeWorker::setTimezone);\n\n    connect(this, &DatetimeModel::currencyFormatChanged, this, [this](const QString &oldFormat, const QString &newFormat){\n        // get PositiveCurrency/NegativeCurrency\n        auto posFmt = m_work->positiveCurrencyFormat();\n        auto negFmt = m_work->negativeCurrencyFormat();\n\n        m_work->setPositiveCurrencyFormat(posFmt.replace(oldFormat, newFormat));\n        m_work->setNegativeCurrencyFormat(negFmt.replace(oldFormat, newFormat));\n    });\n    connect(this, &DatetimeModel::digitGroupingSymbolChanged, this, [this](const QString &oldFormat, const QString &newFormat){\n        QString fmt1 = escapSpace(oldFormat);\n        QString fmt2 = escapSpace(newFormat);\n        auto digitGrouping = m_work->digitGrouping();\n        m_work->setDigitGrouping(digitGrouping.replace(fmt1, fmt2));\n    });\n\n    connect(this, &DatetimeModel::symbolChanged, this, [this](int format) {\n        Q_EMIT numberExampleFormatChanged(numberExampleParts());\n        if (format != CurrencySymbol && format != DigitGroupingSymbol && format != DecimalSymbol)\n            return;\n\n        Q_EMIT currentFormatChanged(format);\n    });\n\n    connect(this, &DatetimeModel::currentLanguageAndRegionChanged, this, [this]() {\n        Q_EMIT currentFormatChanged(-1);\n    });\n    connect(this, &DatetimeModel::shortDateFormatChanged, this, [this]() {\n        Q_EMIT currentFormatChanged(ShortDate);\n    });\n    connect(this, &DatetimeModel::longDateFormatChanged, this, [this]() {\n        Q_EMIT currentFormatChanged(LongDate);\n    });\n    connect(this, &DatetimeModel::shortTimeFormatChanged, this, [this]() {\n        Q_EMIT currentFormatChanged(ShortTime);\n    });\n    connect(this, &DatetimeModel::longTimeFormatChanged, this, [this]() {\n        Q_EMIT currentFormatChanged(LongTime);\n    });\n\n    qmlRegisterType<dccV25::ZoneInfoModel>(\"ZoneInfoModel\", 1, 0, \"ZoneInfoModel\");\n}\n\nDatetimeModel::~DatetimeModel()\n{\n    bool isCustomizeMode = !m_NtpServerList.contains(m_strNtpServerAddress);\n    if (isCustomizeMode && m_strNtpServerAddress.isEmpty() && !m_previousServerAddress.isEmpty()) {\n        if (m_work) {\n            m_work->setNtpServer(m_previousServerAddress);\n        }\n    }\n}\n\nvoid DatetimeModel::setNTP(bool ntp)\n{\n    if (m_ntp != ntp) {\n        m_ntp = ntp;\n        Q_EMIT ntpChanged(ntp);\n    }\n}\n\nvoid DatetimeModel::set24HourFormat(bool state)\n{\n    if (m_bUse24HourType != state) {\n        m_bUse24HourType = state;\n        Q_EMIT hourTypeChanged(state);\n    }\n}\n\nvoid DatetimeModel::setDateTime(const QDateTime &dateTime)\n{\n    if (m_work)\n        m_work->setDatetime(dateTime);\n}\n\nQStringList DatetimeModel::zones(int x, int y, int map_width, int map_height)\n{\n    using namespace installer;\n    if (g_totalZones.empty())\n        g_totalZones =  GetZoneInfoList();\n\n    const double kDistanceThreshold = 64.0;\n    auto zonelist = GetNearestZones(g_totalZones, kDistanceThreshold, x, y, map_width, map_height);\n\n    return timeZoneList(zonelist, m_timezoneCache);\n}\n\nQPoint DatetimeModel::zonePosition(const QString &timezone, int map_width, int map_height)\n{\n    using namespace installer;\n    if (g_totalZones.empty())\n        g_totalZones =  GetZoneInfoList();\n\n    auto enZone = m_timezoneCache.value(timezone, timezone);\n\n    int index = GetZoneInfoByZone(g_totalZones, enZone);\n    if (index < 0)\n        return QPoint();\n\n    auto currentZone = g_totalZones.at(index);\n\n    const int x = int(ConvertLongitudeToX(currentZone.longitude) * map_width);\n    const int y = int(ConvertLatitudeToY(currentZone.latitude) * map_height);\n    return QPoint(x, y);\n}\n\nQStringList DatetimeModel::zoneIdList()\n{\n    using namespace installer;\n    if (g_totalZones.empty())\n        g_totalZones =  GetZoneInfoList();\n\n    QStringList list;\n    for (const auto& info : g_totalZones) {\n        list << info.timezone;\n    }\n\n    return list;\n}\n\nQString DatetimeModel::zoneDisplayName(const QString &zoneName)\n{\n    if (m_work) {\n        auto zoneInfo = m_work->GetZoneInfo(zoneName);\n        QString utcOffsetText = zoneInfo.getUtcOffsetText();\n        QString cityName = zoneInfo.getZoneCity().isEmpty() ? zoneInfo.getZoneName() : zoneInfo.getZoneCity();\n        return QString(\"%1 %2\").arg(cityName).arg(utcOffsetText);\n    }\n    return QString();\n}\n\nQAbstractListModel *DatetimeModel::userTimezoneModel()\n{\n    if (m_userTimezoneModel)\n        return m_userTimezoneModel;\n\n    m_userTimezoneModel = new dccV25::UserTimezoneModel(this);\n    connect(this, &DatetimeModel::userTimeZoneAdded, m_userTimezoneModel, &dccV25::UserTimezoneModel::reset);\n    connect(this, &DatetimeModel::userTimeZoneRemoved, m_userTimezoneModel, &dccV25::UserTimezoneModel::reset);\n    connect(this, &DatetimeModel::timeZoneChanged, m_userTimezoneModel, [this]() {\n        auto indexBegin = m_userTimezoneModel->index(0);\n        auto indexEnd = m_userTimezoneModel->index(m_userTimeZones.count() - 1);\n        Q_EMIT m_userTimezoneModel->dataChanged(indexBegin, indexEnd);\n    });\n    connect(this, &DatetimeModel::currentTimeChanged, m_userTimezoneModel, [this]() {\n        static int lastMinute = -1;\n        int curMinute = QTime::currentTime().minute();\n        if (curMinute == lastMinute)\n            return;\n        lastMinute = curMinute;\n\n        if (!m_userTimeZones.isEmpty()) {\n            auto indexBegin = m_userTimezoneModel->index(0);\n            auto indexEnd = m_userTimezoneModel->index(m_userTimeZones.count() - 1);\n            Q_EMIT m_userTimezoneModel->dataChanged(indexBegin, indexEnd);\n        }\n    });\n\n    return m_userTimezoneModel;\n}\n\nQSortFilterProxyModel *DatetimeModel::zoneSearchModel()\n{\n    if (m_zoneSearchModel)\n        return m_zoneSearchModel;\n\n    m_zoneSearchModel = new QSortFilterProxyModel(this);\n\n    auto sourceModel = new dccV25::ZoneInfoModel(this);\n    m_zoneSearchModel->setSourceModel(sourceModel);\n    m_zoneSearchModel->setFilterRole(dccV25::ZoneInfoModel::SearchTextRole);\n    m_zoneSearchModel->setFilterCaseSensitivity(Qt::CaseInsensitive);\n\n    return m_zoneSearchModel;\n}\n\nQSortFilterProxyModel *DatetimeModel::langSearchModel()\n{\n    if (m_langSearchModel)\n        return m_langSearchModel;\n\n    m_langSearchModel = new QSortFilterProxyModel(this);\n\n    ensureLangModel();\n\n    auto sourceModel = new dccV25::LanguageListModel(this);\n    sourceModel->setMetaData(m_langModel->langLists());\n    sourceModel->setLocalLang(m_langModel->localLang());\n    connect(m_langModel, &dccV25::KeyboardModel::langChanged, sourceModel, &dccV25::LanguageListModel::setMetaData);\n    connect(m_langModel, &dccV25::KeyboardModel::curLocalLangChanged, sourceModel, &dccV25::LanguageListModel::setLocalLang);\n\n    m_langSearchModel->setSourceModel(sourceModel);\n    m_langSearchModel->setFilterRole(dccV25::LanguageListModel::SearchTextRole);\n    m_langSearchModel->setFilterCaseSensitivity(Qt::CaseInsensitive);\n\n    return m_langSearchModel;\n}\n\nQSortFilterProxyModel *DatetimeModel::langRegionSearchModel()\n{\n    if (m_regionSearchModel)\n        return m_regionSearchModel;\n\n    m_regionSearchModel = new QSortFilterProxyModel(this);\n\n    auto sourceModel = new dccV25::LangRegionModel(this);\n    m_regionSearchModel->setSourceModel(sourceModel);\n    m_regionSearchModel->setFilterRole(dccV25::ZoneInfoModel::SearchTextRole);\n    m_regionSearchModel->setFilterCaseSensitivity(Qt::CaseInsensitive);\n\n    return m_regionSearchModel;\n}\n\nQSortFilterProxyModel *DatetimeModel::regionSearchModel()\n{\n    if (m_countrySearchModel)\n        return m_countrySearchModel;\n\n    for (const auto &locale : m_regions) {\n        auto langCountry = DCCLocale::languageAndRegionName(locale.name());\n        // { 中国: CN }\n        m_langRegionsCache[langCountry.second] = locale.territoryToCode(locale.territory());\n    }\n\n    m_countrySearchModel = new QSortFilterProxyModel(this);\n    QStringListModel *sourceModel = new QStringListModel(m_langRegionsCache.keys(), m_countrySearchModel);\n    m_countrySearchModel->setSourceModel(sourceModel);\n    m_countrySearchModel->setFilterCaseSensitivity(Qt::CaseInsensitive);\n\n    return m_countrySearchModel;\n}\n\nvoid DatetimeModel::initModes(const QStringList &names, int indexBegin, int indexEnd, QAbstractListModel *model)\n{\n    auto m = dynamic_cast<dccV25::FormatsModel *>(model);\n    if (!m)\n        return;\n\n    QList<dccV25::FormatsInfo> datas;\n    for (int i = indexBegin; i <= indexEnd && (i - indexBegin) < names.count(); ++i) {\n        dccV25::FormatsInfo info;\n        info.name = names[i - indexBegin];\n        info.values = availableFormats(i);\n        info.index = currentFormatIndex(i);\n        info.indexBegin = indexBegin;\n        datas << info;\n    }\n\n    m->setDatas(datas);\n}\n\nQAbstractListModel *DatetimeModel::timeDateModel()\n{\n    if (m_timeDateModel)\n        return m_timeDateModel;\n\n    auto model = new dccV25::FormatsModel(this);\n    QStringList names = { tr(\"Week\"), tr(\"First day of week\"), tr(\"Short date\"),\n                          tr(\"Long date\"), tr(\"Short time\"), tr(\"Long time\") };\n\n    auto initFormattedModes = [this, model](const QStringList &names) {\n        QStringList nameList = names;\n        int indexBegin = DayAbbreviations;\n        QStringList langRegions = langRegion().split(\":\");\n        if (langRegions.size() >= 2 && !langRegions.first().contains(\"Chinese\", Qt::CaseInsensitive)) {\n            indexBegin += 1;\n            nameList.removeFirst();\n        }\n        initModes(nameList, indexBegin, LongTime, model);\n    };\n\n    initFormattedModes(names);\n    connect(this, &DatetimeModel::currentFormatChanged, model, [model, names, this, initFormattedModes](int format){\n        if ((format >= DayAbbreviations && format <= LongTime) || format < 0) {\n            initFormattedModes(names);\n        }\n    });\n\n    m_timeDateModel = model;\n    return m_timeDateModel;\n}\n\nQAbstractListModel *DatetimeModel::currencyModel()\n{\n    if (m_currencyModel)\n        return m_currencyModel;\n\n    auto model = new dccV25::FormatsModel(this);\n    QStringList names = { tr(\"Currency symbol\"), tr(\"Positive currency\"), tr(\"Negative currency\") };\n\n    initModes(names, CurrencySymbol, NegativeCurrency, model);\n    connect(this, &DatetimeModel::currentFormatChanged, model, [model, names, this](int format){\n        if ((format >= CurrencySymbol && format <= NegativeCurrency) || format < 0)\n            initModes(names, CurrencySymbol, NegativeCurrency, model);\n    });\n    m_currencyModel = model;\n    return m_currencyModel;\n}\n\nQAbstractListModel *DatetimeModel::decimalModel()\n{\n    if (m_decimalModel)\n        return m_decimalModel;\n\n    auto model = new dccV25::FormatsModel(this);\n    QStringList names = { tr(\"Decimal symbol\"), tr(\"Digit grouping symbol\"),\n                          tr(\"Digit grouping\"), tr(\"Page size\") };\n\n    initModes(names, DecimalSymbol, PageSize, model);\n    connect(this, &DatetimeModel::currentFormatChanged, model, [model, names, this](int format){\n        if ((format >= DecimalSymbol && format <= PageSize) || format < 0)\n            initModes(names, DecimalSymbol, PageSize, model);\n    });\n    m_decimalModel = model;\n    return m_decimalModel;\n}\n\nQString DatetimeModel::region()\n{\n    if (m_regionName.isEmpty()) {\n        QString localeName;\n        for (const auto &locale : m_regions) {\n            if (locale.territoryToString(locale.territory()) == m_country) {\n                localeName = locale.name();\n                break;\n            }\n            if (locale.territoryToCode(locale.territory()) == m_country) {\n                localeName = locale.name();\n                break;\n            }\n        }\n        auto langCountry = DCCLocale::languageAndRegionName(localeName);\n        m_regionName = langCountry.second;\n    }\n\n    return m_regionName;\n}\n\nint DatetimeModel::currentRegionIndex()\n{\n    return m_langRegionsCache.keys().indexOf(region());\n}\n\nvoid DatetimeModel::setRegion(const QString &region)\n{\n    if (m_regionName == region)\n        return;\n\n    m_regionName = region;\n    auto reg = m_langRegionsCache.value(region, region);\n    for (const auto &tmplocale : m_regions) {\n        if (tmplocale.territoryToCode(tmplocale.territory()) == reg) {\n            qDebug() << \"set locale:\" << tmplocale.name();\n            QString country = tmplocale.territoryToString(tmplocale.territory());\n            QString language = QLocale::languageToString(tmplocale.language());\n            QString langCountry = QString(\"%1:%2\").arg(language).arg(country);\n            m_work->setConfigValue(country_key, country);\n\n            Q_EMIT regionChanged(region);\n            Q_EMIT currentRegionIndexChanged(currentRegionIndex());\n            break;\n        }\n    }\n}\n\nQStringList DatetimeModel::languagesAndRegions()\n{\n    QStringList langAndRegions;\n    for (auto locale : m_regions) {\n        const QString &langCountry = translate(locale.name(), m_regions.key(locale));\n        langAndRegions << langCountry;\n    }\n\n    return langAndRegions;\n}\n\nQString DatetimeModel::currentLanguageAndRegion()\n{\n    return translate(localeName(), langRegion());\n}\n\nvoid DatetimeModel::setCurrentLocaleAndLangRegion(const QString &localeName, const QString& langAndRegion)\n{\n    QStringList langRegions = langAndRegion.split(\":\");\n    if (langRegions.size() < 2) {\n        qWarning() << \"invalid langAndRegion\" << langAndRegion;\n        return;\n    }\n\n    if (!m_work)\n        return;\n\n    // 立即更新 m_localeName，确保后续的 availableFormats 使用正确的 locale\n    setLocaleName(localeName);\n    setLangRegion(langAndRegion);\n\n    // 从 m_regions 中获取 locale，而不是重新创建\n    // 这样可以保留完整的 locale 信息（包括数字系统等）\n    QLocale locale;\n    if (m_regions.contains(langAndRegion)) {\n        locale = m_regions.value(langAndRegion);\n    } else {\n        locale = QLocale(localeName);\n    }\n    \n    m_work->setConfigValue(languageRegion_key, langAndRegion);\n    m_work->setConfigValue(localeName_key, localeName);\n\n    RegionFormat regionFormat = RegionProxy::regionFormat(locale);\n    // case FirstDayOfWeek:\n    m_work->setConfigValue(firstDayOfWeek_key, regionFormat.firstDayOfWeekFormat);\n    m_work->setWeekStartDayFormat(regionFormat.firstDayOfWeekFormat < 1 ? 0 : regionFormat.firstDayOfWeekFormat - 1);\n    setFirstDayOfWeek(regionFormat.firstDayOfWeekFormat);\n    // case ShortDate:\n    m_work->setConfigValue(shortDateFormat_key, regionFormat.shortDateFormat);\n    // case LongDate:\n    m_work->setConfigValue(longDateFormat_key, regionFormat.longDateFormat);\n    // case ShortTime:\n    m_work->setConfigValue(shortTimeFormat_key, regionFormat.shortTimeFormat);\n    // case LongTime:\n    m_work->setConfigValue(longTimeFormat_key, regionFormat.longTimeFormat);\n    // case Currency:\n    m_work->setConfigValue(currencyFormat_key, regionFormat.currencyFormat.toUtf8());\n    m_work->setCurrencySymbol(locale.currencySymbol());\n    // case Digit:\n    m_work->setConfigValue(numberFormat_key, regionFormat.numberFormat.toUtf8());\n    m_work->setDigitGrouping(regionFormat.numberFormat.toUtf8());\n    \n    // 获取当前小数点符号（在设置之前）\n    QString currentDecimal = m_work->decimalSymbol();\n    // 保留原始的分隔符字符（包括特殊空格字符）\n    QString newSeparator = regionFormat.digitgroupFormat;\n    \n    // 检查新传入的区域格式是否为中文区域\n    bool isNewLocaleChinese = locale.language() == QLocale::Chinese;\n    \n    // 检查新传入的区域格式是否为中文区域，如果是则直接应用中文默认设置\n    if (isNewLocaleChinese) {\n        // 中文区域直接应用默认设置：小数点\".\"，分隔符\",\"\n        m_work->setDecimalSymbol(\".\");\n        m_work->setDigitGroupingSymbol(\",\");\n    } else {\n        // 非中文区域：先设置新区域的千位分隔符（遵循区域格式）\n        m_work->setDigitGroupingSymbol(newSeparator);\n        \n        // 检查当前小数点是否与新分隔符冲突，如果冲突则自动调整小数点\n        // 小数点保持当前设置不变，只有在冲突时才调整\n        if (symbolsConflict(currentDecimal, newSeparator)) {\n            // 如果当前小数点与新分隔符冲突，使用冲突解决逻辑调整小数点\n            QString resolvedDecimal = resolveDecimalSymbol(currentDecimal, newSeparator);\n            m_work->setDecimalSymbol(resolvedDecimal);\n        }\n    }\n    \n    // case PaperSize:\n    m_work->setConfigValue(paperFormat_key, regionFormat.paperFormat.toUtf8());\n    m_work->genLocale(locale.name());\n}\n\nQStringList DatetimeModel::availableFormats(int format) const\n{\n    // 从 m_regions 中获取 locale，保留完整的 locale 信息（包括数字系统）\n    QLocale locale;\n    if (m_regions.contains(m_langCountry)) {\n        locale = m_regions.value(m_langCountry);\n    } else {\n        locale = QLocale(m_localeName);\n    }\n    RegionAvailableData regionFormatsAvailable = RegionProxy::allTextData(locale);\n    switch (format) {\n    // date time formats\n    case DayAbbreviations:\n        return QStringList{ locale.standaloneDayName(1, QLocale::LongFormat), locale.standaloneDayName(1, QLocale::ShortFormat) };\n    case DayOfWeek: {\n        QStringList days;\n        for (int i = 1; i < 8; ++i)\n            days << locale.standaloneDayName(i, QLocale::LongFormat);\n        return days;\n    }\n    case LongDate:\n        return regionFormatsAvailable.longDatesAvailable;\n    case ShortDate:\n        return regionFormatsAvailable.shortDatesAvailable;\n    case LongTime:\n        return regionFormatsAvailable.longTimesAvailable;\n    case ShortTime:\n        return regionFormatsAvailable.shortTimesAvailable;\n    // currency formats\n    case CurrencySymbol: {\n        QStringList defaultSymbols { QString::fromLocal8Bit(\"¥\"),\n                                QString::fromLocal8Bit(\"$\"),\n                                QString::fromLocal8Bit(\"€\") };\n        const QString &current = RegionProxy::regionFormat(locale).currencyFormat;\n        if (!defaultSymbols.contains(current))\n            defaultSymbols.prepend(current);\n\n        return defaultSymbols;\n    }\n    case PositiveCurrency: {\n        return getCurrencySymbol(true, currencyFormat());\n    }\n    case NegativeCurrency: {\n        return getCurrencySymbol(false, currencyFormat());\n    }\n    // number formats\n    case DecimalSymbol:{\n        return separatorSymbol(locale, false);\n    }\n    case DigitGroupingSymbol: {\n        return separatorSymbol(locale, true);\n    }\n    case DigitGrouping: {\n        QString dgSymbol = escapSpace(m_work->digitGroupingSymbol());\n        // 不带数字分隔符，方便自定义追加\n        locale.setNumberOptions(QLocale::OmitGroupSeparator);\n        // 有的国家使用的是阿拉伯*文*数字（东阿拉伯数字）\n        // 如伊朗、阿富汗、巴基斯坦及印度部分地区  ١٢٣٤٥٦٧٨٩\n        // https://zh.wikipedia.org/wiki/%E9%98%BF%E6%8B%89%E4%BC%AF%E6%96%87%E6%95%B0%E5%AD%97\n        // 始终使用阿拉伯数字（0-9）显示，避免字体渲染问题\n        const QString numString = \"123456789\";\n        return {\n            numString,                                                                      // 123456789\n            QString(numString).insert(3, dgSymbol).insert(7, dgSymbol),                     // 123,456,789\n            QString(numString).insert(6, dgSymbol),                                         // 123456,789\n            QString(numString).insert(2, dgSymbol).insert(5, dgSymbol).insert(8, dgSymbol), // 12,34,56,789\n        };\n    }\n    case PageSize:\n        return {\"A4\"};\n    default:\n        break;\n    }\n\n    return QStringList();\n}\n\nint DatetimeModel::currentFormatIndex(int format) const\n{\n#define INDEX_OF(format, MEMBER, isDate) { \\\n        const QDate CurrentDate(2024, 1, 1); \\\n        const QTime CurrentTime(1, 1, 1); \\\n        QLocale locale(m_localeName); \\\n        RegionAvailableData regionFormatsAvailable = RegionProxy::allTextData(locale); \\\n        const auto &fmt = isDate ? locale.toString(CurrentDate, format) : locale.toString(CurrentTime, format); \\\n        return regionFormatsAvailable.MEMBER.indexOf(fmt); \\\n    }\n\n    switch (format) {\n    // date time formats\n    case DayAbbreviations:\n        return weekdayFormat();\n    case DayOfWeek: {\n        return firstDayOfWeekFormat() - 1; // combo index start from 0\n    }\n    case LongDate: {\n        INDEX_OF(longDateFormat(), longDatesAvailable, true);\n    }\n    case ShortDate: {\n        INDEX_OF(shortDateFormat(), shortDatesAvailable, true);\n    }\n    case LongTime:{\n        INDEX_OF(longTimeFormat(), longTimesAvailable, false);\n    }\n    case ShortTime: {\n        INDEX_OF(shortTimeFormat(), shortTimesAvailable, false);\n    }\n    // currency formats\n    case CurrencySymbol: {\n        const QString &currencySymbol = currencyFormat();\n        QStringList defaultSymbols = availableFormats(format);\n        return defaultSymbols.indexOf(currencySymbol);\n    }\n    case PositiveCurrency: {\n        auto fmt = m_work->positiveCurrencyFormat();\n        auto fmts = getCurrencySymbol(true, currencyFormat());\n        return fmts.indexOf(fmt);\n    }\n    case NegativeCurrency: {\n        auto fmt = m_work->negativeCurrencyFormat();\n        auto fmts = getCurrencySymbol(false, currencyFormat());\n        return fmts.indexOf(fmt);\n    }\n    // number formats\n    case DecimalSymbol: {\n        const QString &current = m_work->decimalSymbol();\n        QStringList defaultSymbols = separatorSymbol(QLocale(m_localeName), false);\n        int index = defaultSymbols.indexOf(current);\n        return (index != -1) ? index : defaultSymbols.indexOf(DatetimeModel::tr(\"Space\"));\n    }\n    case DigitGroupingSymbol: {\n        const QString &current = m_work->digitGroupingSymbol();\n        QStringList defaultSymbols = separatorSymbol(m_regions.contains(m_langCountry)?m_regions.value(m_langCountry):QLocale(m_localeName), true);\n        int index = defaultSymbols.indexOf(unEscapSpace(current));\n        return (index != -1) ? index : defaultSymbols.indexOf(DatetimeModel::tr(\"Space\"));\n    }\n    case DigitGrouping: {\n        const QString &current = normalizeSpace(m_work->digitGrouping());\n        QStringList defaultSymbols = availableFormats(format);\n        auto index = defaultSymbols.indexOf(current);\n        return index;\n    }\n    default:\n        break;\n    }\n\n    return 0;\n}\n\nvoid DatetimeModel::setCurrentFormat(int format, int index)\n{\n    if (index < 0) {\n        qWarning() << \"Invalide index!\";\n        return;\n    }\n\n    RegionAvailableData regionFormat = RegionProxy::allFormat();\n    QLocale locale(m_localeName);\n    // const QString &symbol = RegionProxy::regionFormat(locale).currencyFormat;\n\n    auto setConfig = [this](int index, const QString &key, const QStringList &availableList) {\n        if (index < availableList.count()) {\n            m_work->setConfigValue(key, availableList.at(index));\n        } else {\n            qWarning() << \"Set [\" << key << \"] faild, invalid index\" << index << availableList.count();\n        }\n    };\n\n    switch (format) {\n    // date time formats\n    case DayAbbreviations: {\n        setWeekdayFormat(index);\n        break;\n    }\n    case DayOfWeek: {\n        // dconfig\n        m_work->setConfigValue(firstDayOfWeek_key, index + 1);\n        // dbus (from 0 to 6)\n        m_work->setWeekStartDayFormat(index);\n        setFirstDayOfWeek(index + 1);\n        break;\n    }\n    case LongDate: {\n        setConfig(index, longDateFormat_key, regionFormat.longDatesAvailable);\n        break;\n    }\n    case ShortDate: {\n        setConfig(index, shortDateFormat_key, regionFormat.shortDatesAvailable);\n        break;\n    }\n    case LongTime:{\n        setConfig(index, longTimeFormat_key, regionFormat.longTimesAvailable);\n        break;\n    }\n    case ShortTime: {\n        setConfig(index, shortTimeFormat_key, regionFormat.shortTimesAvailable);\n        break;\n    }\n    // currency formats\n    case CurrencySymbol: {\n        QStringList defaultSymbols = availableFormats(format);\n        if (index >= defaultSymbols.count())\n            return;\n\n        // dconfig\n        setConfig(index, currencyFormat_key, defaultSymbols);\n        // dbus\n        m_work->setCurrencySymbol(defaultSymbols.value(index));\n    }\n    break;\n    case PositiveCurrency: {\n        auto fmts = getCurrencySymbol(true, currencyFormat());\n        if (index < fmts.count())\n            m_work->setPositiveCurrencyFormat(fmts.value(index));\n    }\n    break;\n    case NegativeCurrency: {\n        auto fmts = getCurrencySymbol(false, currencyFormat());\n        if (index < fmts.count())\n            m_work->setNegativeCurrencyFormat(fmts.value(index));\n    }\n    break;\n    // number formats\n    case DecimalSymbol: {\n        auto fmts = separatorSymbol(locale, false);\n        if (index < fmts.count()) {\n            QString displaySymbol = fmts.value(index);\n            // 将显示用的符号转换回实际的字符（如果是 \"Space\"，使用区域对应的空格字符）\n            QString newDecimal = escapSpace(displaySymbol, locale, false);\n            QString currentSeparator = m_work->digitGroupingSymbol();\n            \n            // 验证符号变更是否会导致冲突\n            if (m_work->validateSymbolChange(newDecimal, currentSeparator)) {\n                m_work->setDecimalSymbol(newDecimal);\n            } else {\n                qWarning() << \"Decimal symbol change rejected due to conflict:\" << newDecimal << \"conflicts with separator:\" << currentSeparator;\n                // 不设置会导致冲突的符号组合，保持当前设置\n                return;\n            }\n        }\n    }\n    break;\n    case DigitGroupingSymbol: {\n        auto fmts = separatorSymbol(m_regions.contains(m_langCountry)?m_regions.value(m_langCountry):locale, true);\n        if (index < fmts.count()) {\n            // 将显示用的符号转换回实际的字符（如果是 \"Space\"，使用区域对应的空格字符）\n            QString newSeparator = fmts.value(index);\n            QString currentDecimal = m_work->decimalSymbol();\n            \n            // 验证符号变更是否会导致冲突\n            if (m_work->validateSymbolChange(currentDecimal, newSeparator)) {\n                m_work->setDigitGroupingSymbol(newSeparator);\n            } else {\n                qWarning() << \"Digit grouping symbol change rejected due to conflict:\" << newSeparator << \"conflicts with decimal:\" << currentDecimal;\n                // 不设置会导致冲突的符号组合，保持当前设置\n                return;\n            }\n        }\n    }\n    break;\n    case DigitGrouping: {\n        QStringList fmts = availableFormats(format);\n        if (index >= fmts.count())\n            return;\n\n        // dconfig\n        setConfig(index, numberFormat_key, fmts);\n        // dbus\n        m_work->setDigitGrouping(fmts.value(index));\n    }\n    break;\n    default:\n        break;\n    }\n\n    Q_EMIT currentFormatChanged(format);\n}\n\nQString DatetimeModel::currentDate() const\n{\n    return m_currentDate;\n}\n\nQString DatetimeModel::getCurrentDate() const\n{\n    QLocale locale;\n    if (m_regions.contains(m_langCountry)) {\n        locale = m_regions.value(m_langCountry);\n    } else {\n        locale = QLocale(m_localeName);\n    }\n    QString week = weekdayFormat() == 1 ? \"ddd\" : \"dddd\";\n    QString dateFormat = shortDateFormat() + \" \" + week;\n\n    return locale.toString(QDate::currentDate(), dateFormat);\n}\n\nQString DatetimeModel::currentTime() const\n{\n    return m_currentTime;\n}\n\nQString DatetimeModel::getCurrentTime() const\n{\n    QLocale locale;\n    if (m_regions.contains(m_langCountry)) {\n        locale = m_regions.value(m_langCountry);\n    } else {\n        locale = QLocale(m_localeName);\n    }\n    QString timeFormat = longTimeFormat();\n    // remove all occurrences of 't' and '[tttt]' or similar patterns\n    timeFormat.remove(QRegularExpression(\"(\\\\[t+?\\\\]|t+)\"));\n    return locale.toString(QTime::currentTime(), timeFormat).trimmed();\n}\n\nQString DatetimeModel::getCustomNtpServer() const\n{\n    if (m_work) {\n        return m_work->getCustomNtpServer();\n    }\n    return QString();\n}\n\nint DatetimeModel::currentLanguageAndRegionIndex()\n{\n    return m_regions.keys().indexOf(m_langCountry);\n}\n\nvoid DatetimeModel::addUserTimeZoneById(const QString &zoneId)\n{\n    if (zoneId.isEmpty() || !m_work)\n        return;\n\n    m_work->addUserTimeZone(zoneId);\n}\n\nvoid DatetimeModel::removeUserTimeZoneById(const QString &zoneId)\n{\n    if (zoneId.isEmpty() || !m_work)\n        return;\n\n    m_work->removeUserTimeZone(zoneId);\n}\n\nvoid DatetimeModel::setSystemTimeZone(const QString &zoneId)\n{\n    if (zoneId.isEmpty() || !m_work)\n        return;\n\n    m_work->setTimezone(zoneId);\n}\n\n#ifndef DCC_DISABLE_TIMEZONE\nQString DatetimeModel::systemTimeZoneId() const\n{\n    return m_systemTimeZoneId;\n}\n\nvoid DatetimeModel::setSystemTimeZoneId(const QString &systemTimeZoneId)\n{\n    if (m_systemTimeZoneId != systemTimeZoneId) {\n        m_systemTimeZoneId = systemTimeZoneId;\n        Q_EMIT systemTimeZoneIdChanged(systemTimeZoneId);\n    }\n}\n#endif\n\nQList<ZoneInfo> DatetimeModel::userTimeZones() const\n{\n    return m_userTimeZones;\n}\n\nvoid DatetimeModel::addUserTimeZone(const ZoneInfo &zone)\n{\n    const QString zoneName = zone.getZoneName();\n\n    if (!m_userZoneIds.contains(zoneName) && zoneName != m_currentSystemTimeZone.getZoneName()) {\n        m_userZoneIds.append(zoneName);\n        m_userTimeZones.append(zone);\n        Q_EMIT userTimeZoneAdded(zone);\n    }\n}\n\nvoid DatetimeModel::removeUserTimeZone(const ZoneInfo &zone)\n{\n    const QString zoneName = zone.getZoneName();\n\n    if (m_userZoneIds.contains(zoneName)) {\n        m_userZoneIds.removeAll(zoneName);\n        m_userTimeZones.removeAll(zone);\n        Q_EMIT userTimeZoneRemoved(zone);\n    }\n}\n\nvoid DatetimeModel::setCurrentTimeZone(const ZoneInfo &currentTimeZone)\n{\n    if (m_currentTimeZone == currentTimeZone)\n        return;\n\n    m_currentTimeZone = currentTimeZone;\n\n    Q_EMIT currentTimeZoneChanged(currentTimeZone);\n}\n\nvoid DatetimeModel::setCurrentUseTimeZone(const ZoneInfo &currentSysTimeZone)\n{\n    if (m_currentSystemTimeZone == currentSysTimeZone)\n        return;\n\n    m_currentSystemTimeZone = currentSysTimeZone;\n\n    Q_EMIT currentSystemTimeZoneChanged(currentSysTimeZone);\n}\n\nvoid DatetimeModel::setNtpServerAddress(const QString &ntpServer)\n{\n    if (m_strNtpServerAddress != ntpServer) {\n        m_strNtpServerAddress = ntpServer;\n        Q_EMIT NTPServerChanged(ntpServer);\n    }\n}\n\nvoid DatetimeModel::setPreviousServerAddress(const QString &address)\n{\n    if (m_previousServerAddress != address) {\n        m_previousServerAddress = address;\n        Q_EMIT previousServerAddressChanged(address);\n    }\n}\n\nvoid DatetimeModel::setNTPServerList(const QStringList &list)\n{\n    if (m_NtpServerList != list) {\n        m_NtpServerList = list;\n        Q_EMIT NTPServerListChanged(list);\n    }\n}\n\nvoid DatetimeModel::setTimeZoneInfo(const QString &timeZone)\n{\n    if (m_timeZones != timeZone) {\n        m_timeZones = timeZone;\n        Q_EMIT timeZoneChanged(timeZone);\n    }\n}\n\nvoid DatetimeModel::setCountry(const QString &country)\n{\n    if (m_country != country) {\n        m_country = country;\n        Q_EMIT countryChanged(country);\n    }\n}\n\nvoid DatetimeModel::setLocaleName(const QString &localeName)\n{\n    if (m_localeName != localeName) {\n        m_localeName = localeName;\n        Q_EMIT localeNameChanged(localeName);\n        Q_EMIT currentLanguageAndRegionChanged(currentLanguageAndRegion());\n    }\n}\n\nvoid DatetimeModel::setLangRegion(const QString &langCountry)\n{\n    if (m_langCountry != langCountry) {\n        m_langCountry = langCountry;\n        Q_EMIT langCountryChanged(langCountry);\n        Q_EMIT currentLanguageAndRegionChanged(currentLanguageAndRegion());\n    }\n}\n\nvoid DatetimeModel::setFirstDayOfWeek(const int &firstDayOfWeekFormat)\n{\n    if (m_firstDayOfWeekFormat != firstDayOfWeekFormat) {\n        m_firstDayOfWeekFormat = firstDayOfWeekFormat;\n        Q_EMIT firstDayOfWeekFormatChanged(firstDayOfWeekFormat);\n    }\n}\n\nvoid DatetimeModel::setShortDateFormat(const QString &shortDateFormat)\n{\n    if (m_shortDateFormat != shortDateFormat) {\n        m_shortDateFormat = shortDateFormat;\n        Q_EMIT shortDateFormatChanged(shortDateFormat);\n    }\n}\n\nvoid DatetimeModel::setLongDateFormat(const QString &longDateFormat)\n{\n    if (m_longDateFormat != longDateFormat) {\n        m_longDateFormat = longDateFormat;\n        Q_EMIT longDateFormatChanged(longDateFormat);\n    }\n}\n\nvoid DatetimeModel::setShortTimeFormat(const QString &shortTimeFormat)\n{\n    if (m_shortTimeFormat != shortTimeFormat) {\n        m_shortTimeFormat = shortTimeFormat;\n        Q_EMIT shortTimeFormatChanged(shortTimeFormat);\n    }\n}\n\nvoid DatetimeModel::setLongTimeFormat(const QString &longTimeFormat)\n{\n    if (m_longTimeFormat != longTimeFormat) {\n        m_longTimeFormat = longTimeFormat;\n        Q_EMIT longTimeFormatChanged(longTimeFormat);\n    }\n}\n\nvoid DatetimeModel::setCurrencyFormat(const QString &currencyFormat)\n{\n    if (m_currencyFormat != currencyFormat) {\n        QString oldFormat = m_currencyFormat;\n        m_currencyFormat = currencyFormat;\n        Q_EMIT currencyFormatChanged(oldFormat, currencyFormat);\n    }\n}\n\nvoid DatetimeModel::setDigitGroupingSymbol(const QString &digitGroupingSymbol)\n{\n    if (m_digitGroupingSymbol == digitGroupingSymbol)\n        return;\n\n    QString oldFormat = m_digitGroupingSymbol;\n    m_digitGroupingSymbol = digitGroupingSymbol;\n\n    Q_EMIT digitGroupingSymbolChanged(oldFormat, digitGroupingSymbol);\n}\n\nvoid DatetimeModel::setNumberFormat(const QString &numberFormat)\n{\n    if (m_numberFormat != numberFormat) {\n        m_numberFormat = numberFormat;\n        Q_EMIT numberFormatChanged(numberFormat);\n    }\n}\n\nvoid DatetimeModel::setPaperFormat(const QString &paperFormat)\n{\n    if (m_paperFormat != paperFormat) {\n        m_paperFormat = paperFormat;\n        Q_EMIT paperFormatChanged(paperFormat);\n    }\n}\n\nvoid DatetimeModel::setRegionFormat(const RegionFormat &regionFormat)\n{\n    if (m_regionFormat != regionFormat) {\n        m_regionFormat = regionFormat;\n    }\n}\n\nvoid DatetimeModel::setCountries(const QStringList &countries)\n{\n    if (m_countries != countries) {\n        m_countries = countries;\n        Q_EMIT countriesChanged(countries);\n    }\n}\n\nvoid DatetimeModel::setRegions(const Regions &regions)\n{\n    if (m_regions != regions) {\n        m_regions = regions;\n    }\n}\n\nQString DatetimeModel::timeZoneDescription(const ZoneInfo &zone) const\n{\n    return getDescription(zone);\n}\n\nQString DatetimeModel::timeZoneDispalyName() const\n{\n    return getDisplayText(m_currentSystemTimeZone);\n}\n\nint DatetimeModel::currentTimeZoneIndex() const\n{\n    using namespace installer;\n    if (g_totalZones.empty())\n        g_totalZones =  GetZoneInfoList();\n\n    int index = -1;\n    const QString &zoneName = m_currentSystemTimeZone.getZoneName();\n    for (int i = 0; i < g_totalZones.size(); ++i) {\n        const auto &zoneInfo = g_totalZones.value(i);\n        if (zoneName == zoneInfo.timezone) {\n            index = i;\n            break;\n        }\n    }\n\n    return index;\n}\n\nvoid DatetimeModel::ensureLangModel()\n{\n    if (m_langModel)\n        return;\n\n    m_langModel = new dccV25::KeyboardModel(this);\n    connect(m_langModel, &dccV25::KeyboardModel::curLocalLangChanged, this, &DatetimeModel::langListChanged);\n    connect(m_langModel, &dccV25::KeyboardModel::curLangChanged, this, &DatetimeModel::currentLangChanged);\n    connect(m_langModel, &dccV25::KeyboardModel::onSetCurLangFinish, this, &DatetimeModel::langStateChanged);\n}\n\nvoid DatetimeModel::addLang(const QString &lang)\n{\n    ensureLangModel();\n    m_langModel->addLang(lang);\n}\n\nvoid DatetimeModel::deleteLang(const QString &lang)\n{\n    ensureLangModel();\n    m_langModel->deleteLang(lang);\n}\n\nvoid DatetimeModel::setCurrentLang(const QString &lang)\n{\n    ensureLangModel();\n    m_langModel->doSetLang(lang);\n}\n\nQStringList DatetimeModel::langList()\n{\n    ensureLangModel();\n\n    if (m_langModel)\n        return m_langModel->localLang();\n\n    return {};\n}\n\nQString DatetimeModel::currentLang()\n{\n    ensureLangModel();\n\n    if (m_langModel)\n        return m_langModel->curLang();\n\n    return {};\n}\n\nint DatetimeModel::weekdayFormat() const\n{\n    return m_work ? m_work->weekdayFormat() : 0;\n}\n\nvoid DatetimeModel::setWeekdayFormat(int newWeekdayFormat)\n{\n    if (!m_work)\n        return;\n\n    m_work->setWeekdayFormat(newWeekdayFormat);\n}\n\nint DatetimeModel::langState() const\n{\n    if (!m_langModel)\n        return 0;\n\n    return m_langModel->getLangChangedState();\n}\n\nQStringList DatetimeModel::numberExampleParts() const\n{\n    QString numberExampleFormat = tr(\"Example\") + \":\";\n    QStringList parts;\n\n    QStringList digitGroupingValues = availableFormats(DigitGrouping);\n    int digitGroupingIndex = currentFormatIndex(DigitGrouping);\n    if (!digitGroupingValues.isEmpty() && (digitGroupingIndex < 0 || digitGroupingIndex >= digitGroupingValues.size())) {\n        digitGroupingIndex = 0;\n    }\n    QStringList decimalValues = availableFormats(DecimalSymbol);\n    int decimalIndex = currentFormatIndex(DecimalSymbol);\n    if (!decimalValues.isEmpty() && (decimalIndex < 0 || decimalIndex >= decimalValues.size())) {\n        decimalIndex = 0;\n    }\n    QStringList currencyValues = availableFormats(CurrencySymbol);\n    int currencyIndex = currentFormatIndex(CurrencySymbol);\n    if (!currencyValues.isEmpty() && (currencyIndex < 0 || currencyIndex >= currencyValues.size())) {\n        currencyIndex = 0;\n    }\n\n    QString numberData;\n    if (digitGroupingIndex >= 0 && digitGroupingIndex < digitGroupingValues.size() &&\n        decimalIndex >= 0 && decimalIndex < decimalValues.size() &&\n        currencyIndex >= 0 && currencyIndex < currencyValues.size()) {\n\n        numberData += digitGroupingValues.at(digitGroupingIndex);\n        numberData += normalizeSpace(decimalValues.at(decimalIndex));\n        numberData += \"00\";\n\n        QString currencySymbol = currencyValues.at(currencyIndex);\n        // Wrap numbers with LTR isolate marks to prevent reversal while maintaining RTL layout\n        QString protectedNumber = QString::fromUtf8(\"\\u2066\") + numberData + QString::fromUtf8(\"\\u2069\");\n\n        // Add title\n        parts << numberExampleFormat;\n\n        // Construct complete positive currency format string\n        QString positiveCurrencyFormat;\n        int positiveCurrencyIndex = currentFormatIndex(PositiveCurrency);\n        switch (positiveCurrencyIndex) {\n        case 0://¥1.1\n            positiveCurrencyFormat = currencySymbol + protectedNumber;\n            break;\n        case 1://1.1¥\n            positiveCurrencyFormat = protectedNumber + currencySymbol;\n            break;\n        case 2://¥ 1.1\n            positiveCurrencyFormat = currencySymbol + \" \" + protectedNumber;\n            break;\n        case 3://1.1 ¥\n            positiveCurrencyFormat = protectedNumber + \" \" + currencySymbol;\n            break;\n        default:\n            positiveCurrencyFormat = protectedNumber + \" \" + currencySymbol;\n            break;\n        }\n        parts << positiveCurrencyFormat;\n\n        // Construct complete negative currency format string\n        QString negativeCurrencyFormat;\n        int negativeCurrencyIndex = currentFormatIndex(NegativeCurrency);\n        switch (negativeCurrencyIndex) {\n        case 0://-¥1.1\n            negativeCurrencyFormat = \"-\" + currencySymbol + protectedNumber;\n            break;\n        case 1://¥-1.1\n            negativeCurrencyFormat = currencySymbol + \"-\" + protectedNumber;\n            break;\n        case 2://¥1.1-\n            negativeCurrencyFormat = currencySymbol + protectedNumber + \"-\";\n            break;\n        case 3://-1.1¥\n            negativeCurrencyFormat = \"-\" + protectedNumber + currencySymbol;\n            break;\n        case 4://1.1-¥\n            negativeCurrencyFormat = protectedNumber + \"-\" + currencySymbol;\n            break;\n        case 5://1.1¥-\n            negativeCurrencyFormat = protectedNumber + currencySymbol + \"-\";\n            break;\n        default:\n            negativeCurrencyFormat = protectedNumber + \" \" + currencySymbol + \"-\";\n            break;\n        }\n        parts << negativeCurrencyFormat;\n    }\n\n    return parts;\n}\n\n// 符号冲突检测功能实现\nbool DatetimeModel::hasSymbolConflict() const\n{\n    if (!m_work) {\n        return false;\n    }\n    \n    QString decimal = m_work->decimalSymbol();\n    QString separator = m_work->digitGroupingSymbol();\n    \n    return symbolsConflict(decimal, separator);\n}\n\nbool DatetimeModel::symbolsConflict(const QString &decimal, const QString &separator) const\n{\n    // 检查两个符号是否非空且相同\n    return !decimal.isEmpty() && !separator.isEmpty() && decimal == separator;\n}\n\nQStringList DatetimeModel::getAllSupportedSymbols() const\n{\n    // 返回所有支持的符号列表，与separatorSymbol函数中的符号保持一致\n    // 小数点只使用默认的四个选项，千位分隔符可以包含区域特殊字符\n    QStringList symbols;\n    symbols << QString(\".\") << QString(\",\") << QString(\"'\") << tr(\"Space\");\n    \n    // 只添加千位分隔符的特殊字符（如果不在列表中）\n    QLocale locale(m_localeName);\n    QString groupSep = unEscapSpace(locale.groupSeparator());\n    \n    if (!symbols.contains(groupSep) && !groupSep.isEmpty())\n        symbols.append(groupSep);\n    \n    return symbols;\n}\n\n// 自动冲突解决功能实现\nvoid DatetimeModel::resolveSymbolConflict()\n{\n    if (!m_work) {\n        return;\n    }\n    \n    QString decimal = m_work->decimalSymbol();\n    QString separator = m_work->digitGroupingSymbol();\n    \n    // 如果没有冲突，直接返回\n    if (!symbolsConflict(decimal, separator)) {\n        return;\n    }\n    \n    // 使用解决规则获取新的小数点符号\n    QString newDecimal = resolveDecimalSymbol(decimal, separator);\n    \n    // 设置新的小数点符号\n    if (newDecimal != decimal) {\n        m_work->setDecimalSymbol(newDecimal);\n    }\n}\n\nQString DatetimeModel::resolveDecimalSymbol(const QString &decimal, const QString &separator) const\n{\n    // 如果没有冲突，返回原始小数点符号\n    if (!symbolsConflict(decimal, separator)) {\n        return decimal;\n    }\n    \n    // 实现四种冲突情况的自动调整逻辑\n    if (separator == \",\") {\n        // 逗号→点：当分隔符是逗号时，小数点改为点\n        return \".\";\n    } else if (separator == \".\") {\n        // 点→逗号：当分隔符是点时，小数点改为逗号\n        return \",\";\n    } else if (separator == \" \" || separator == tr(\"Space\")) {\n        // 空格→点：当分隔符是空格时，小数点改为点\n        return \".\";\n    } else if (separator == \"'\") {\n        // 引号→点：当分隔符是引号时，小数点改为点\n        return \".\";\n    }\n    \n    // 默认情况：返回点作为小数点符号\n    return \".\";\n}\n\n// UI符号列表过滤功能实现\nQStringList DatetimeModel::getFilteredDecimalSymbols() const\n{\n    if (!m_work) {\n        return QStringList();\n    }\n    \n    // 使用与原始模型相同的符号列表生成方式\n    QLocale locale(m_localeName);\n    QStringList symbols = separatorSymbol(locale, false);  // false表示小数点符号\n    \n    // 获取当前的千位分隔符符号\n    QString currentSeparator = m_work->digitGroupingSymbol();\n    \n    // 处理空格符号的特殊情况 - unEscapSpace将空格字符转换为\"Space\"字符串\n    QString displaySeparator = unEscapSpace(currentSeparator);\n    \n    // 检查当前分隔符是否在符号列表中\n    bool isSeparatorInList = symbols.contains(displaySeparator) || symbols.contains(currentSeparator);\n    \n    if (isSeparatorInList) {\n        // 从小数点符号列表中排除当前选择的千位分隔符符号\n        symbols.removeAll(displaySeparator);\n        symbols.removeAll(currentSeparator);\n        \n        // 如果当前分隔符是空格字符，也要排除实际的空格字符\n        if (currentSeparator.contains(' ')) {\n            symbols.removeAll(\" \");\n        }\n    }\n    \n    return symbols;\n}\n\nQStringList DatetimeModel::getFilteredSeparatorSymbols() const\n{\n    if (!m_work) {\n        return QStringList();\n    }\n    \n    // 使用与原始模型相同的符号列表生成方式\n    QLocale locale(m_localeName);\n    QStringList symbols = separatorSymbol(m_regions.contains(m_langCountry)?m_regions.value(m_langCountry):locale, true);   // true表示千位分隔符符号\n    \n    // 获取当前的小数点和分隔符符号\n    QString currentDecimal = m_work->decimalSymbol();\n    QString currentSeparator = m_work->digitGroupingSymbol();\n    \n    // 检查小数点是否为空格（空字符串或空格字符）\n    bool isDecimalSpace = currentDecimal.isEmpty() || currentDecimal.contains(' ');\n    // 检查分隔符是否为空格\n    bool isSeparatorSpace = currentSeparator.isEmpty() || currentSeparator.contains(' ');\n    \n    // 场景1：小数点为空格，分隔符也为空格 → 冲突！需要自动调整小数点\n    if (isDecimalSpace && isSeparatorSpace) {\n        // 获取第一个可用的小数点符号（通常是\".\"）\n        QString firstDecimal = symbols.isEmpty() ? \".\" : symbols.first();\n        // 如果第一个符号是\"Space\"，则使用\".\"\n        if (firstDecimal == tr(\"Space\") || firstDecimal == \" \") {\n            firstDecimal = \".\";\n        }\n        // 立即设置新的小数点，避免冲突\n        m_work->setDecimalSymbol(firstDecimal);\n        // 从分隔符列表中排除这个新的小数点符号\n        symbols.removeAll(firstDecimal);\n    }\n    // 场景2：小数点为空格，分隔符不为空格 → 排除空格选项\n    else if (isDecimalSpace) {\n        symbols.removeAll(tr(\"Space\"));\n        symbols.removeAll(\" \");\n    }\n    // 场景3：小数点不为空格 → 正常排除小数点符号\n    else {\n        // 处理空格符号的特殊情况 - unEscapSpace将空格字符转换为\"Space\"字符串\n        QString displayDecimal = unEscapSpace(currentDecimal);\n        \n        // 检查当前小数点是否在符号列表中\n        bool isDecimalInList = symbols.contains(displayDecimal) || symbols.contains(currentDecimal);\n        \n        if (isDecimalInList) {\n            // 从千位分隔符符号列表中排除当前选择的小数点符号\n            symbols.removeAll(displayDecimal);\n            symbols.removeAll(currentDecimal);\n            \n            // 如果当前小数点是空格字符，也要排除实际的空格字符\n            if (currentDecimal.contains(' ')) {\n                symbols.removeAll(\" \");\n            }\n        } else {\n            // 当前小数点不在列表中（可能是其他区域的符号）\n            // UI会显示为\"Space\"，所以需要从分隔符列表中排除\"Space\"\n            symbols.removeAll(tr(\"Space\"));\n            symbols.removeAll(\" \");\n        }\n    }\n    \n    return symbols;\n}\n\n// 中文区域默认设置功能实现\nbool DatetimeModel::isChineseLocale() const\n{\n    return QLocale::Chinese == QLocale(m_localeName).language();\n}\n\nvoid DatetimeModel::applyChineseDefaults()\n{\n    if (!m_work) {\n        return;\n    }\n    \n    // 只有在当前是中文区域时才应用默认设置\n    if (!isChineseLocale()) {\n        return;\n    }\n    \n    // 中文区域默认设置：小数点为点，千位分隔符为逗号\n    const QString chineseDecimal = \".\";\n    const QString chineseSeparator = \",\";\n    \n    // 强制应用中文区域默认设置（按照需求3.2的要求）\n    // 当切换到中文区域时，必须重置为中文默认设置\n    m_work->setDecimalSymbol(chineseDecimal);\n    m_work->setDigitGroupingSymbol(chineseSeparator);\n}\n\nvoid DatetimeModel::updateCurrentTime()\n{\n    auto currentTime = getCurrentTime();\n    if (m_currentTime != currentTime) {\n        m_currentTime = currentTime;\n        Q_EMIT currentTimeChanged();\n    }\n    auto currentDate = getCurrentDate();\n    if (m_currentDate != currentDate) {\n        m_currentDate = currentDate;\n        Q_EMIT currentDateChanged();\n    }\n}\n\nDCC_FACTORY_CLASS(DatetimeModel)\n\n#include \"datetimemodel.moc\"\n"
  },
  {
    "path": "src/plugin-datetime/operation/datetimemodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DATETIMEMODEL_H\n#define DATETIMEMODEL_H\n\n#include <QObject>\n#include <QPoint>\n#include <QAbstractListModel>\n\n#include \"zoneinfo.h\"\n#include \"regionproxy.h\"\n#include \"zoneinfomodel.h\"\n\nclass DatetimeWorker;\nnamespace dccV25 {\nclass KeyboardModel;\n}\nclass DatetimeModel : public QObject\n{\n    Q_OBJECT\n    friend class DatetimeWorker;\n    Q_PROPERTY(bool ntpEnabled READ nTP WRITE setNTP NOTIFY ntpChanged FINAL)\n    Q_PROPERTY(bool use24HourFormat READ use24HourFormat WRITE set24HourFormat NOTIFY hourTypeChanged FINAL)\n    Q_PROPERTY(QString ntpServerAddress READ ntpServerAddress WRITE setNtpServerAddress NOTIFY NTPServerChanged FINAL)\n    Q_PROPERTY(QString previousServerAddress READ previousServerAddress WRITE setPreviousServerAddress NOTIFY previousServerAddressChanged FINAL)\n    Q_PROPERTY(QStringList ntpServerList READ ntpServerList WRITE setNTPServerList NOTIFY NTPServerListChanged FINAL)\n    Q_PROPERTY(QString timeZoneDispalyName READ timeZoneDispalyName NOTIFY currentSystemTimeZoneChanged)\n    Q_PROPERTY(int currentTimeZoneIndex READ currentTimeZoneIndex NOTIFY currentSystemTimeZoneChanged)\n    Q_PROPERTY(QString systemTimeZone READ getTimeZone WRITE setTimeZoneInfo NOTIFY timeZoneChanged FINAL)\n    Q_PROPERTY(QString country READ country WRITE setCountry NOTIFY countryChanged FINAL)\n    Q_PROPERTY(QStringList countries READ countries WRITE setCountries NOTIFY countriesChanged FINAL)\n    Q_PROPERTY(QString region READ region WRITE setRegion NOTIFY regionChanged FINAL)\n    Q_PROPERTY(int currentRegionIndex READ currentRegionIndex NOTIFY currentRegionIndexChanged FINAL)\n\n    Q_PROPERTY(QStringList langList READ langList NOTIFY langListChanged FINAL)\n    Q_PROPERTY(QString currentLang READ currentLang  NOTIFY currentLangChanged FINAL)\n\n    Q_PROPERTY(QString langRegion READ langRegion WRITE setLangRegion NOTIFY langCountryChanged FINAL)\n\n    Q_PROPERTY(int weekdayFormat READ weekdayFormat WRITE setWeekdayFormat NOTIFY weekdayFormatChanged FINAL)\n    Q_PROPERTY(int firstDayOfWeek READ firstDayOfWeekFormat WRITE setFirstDayOfWeek NOTIFY firstDayOfWeekFormatChanged FINAL)\n    Q_PROPERTY(QString shortDateFormat READ shortDateFormat WRITE setShortDateFormat NOTIFY shortDateFormatChanged FINAL)\n    Q_PROPERTY(QString longDateFormat READ longDateFormat WRITE setLongDateFormat NOTIFY longDateFormatChanged FINAL)\n    Q_PROPERTY(QString shortTimeFormat READ shortTimeFormat WRITE setShortTimeFormat NOTIFY shortTimeFormatChanged FINAL)\n    Q_PROPERTY(QString longTimeFormat READ longTimeFormat WRITE setLongTimeFormat NOTIFY longTimeFormatChanged FINAL)\n\n    Q_PROPERTY(QString currentLanguageAndRegion READ currentLanguageAndRegion NOTIFY currentLanguageAndRegionChanged FINAL)\n    Q_PROPERTY(QString currentDate READ currentDate NOTIFY currentDateChanged FINAL)\n    Q_PROPERTY(QString currentTime READ currentTime NOTIFY currentTimeChanged FINAL)\n\n    Q_PROPERTY(QString digitGroupingSymbol READ digitGroupingSymbol WRITE setDigitGroupingSymbol NOTIFY digitGroupingSymbolChanged FINAL)\n    Q_PROPERTY(int langState READ langState NOTIFY langStateChanged FINAL)\n    Q_PROPERTY(QStringList numberExampleParts READ numberExampleParts NOTIFY numberExampleFormatChanged FINAL)\n\npublic:\n    using Regions = QMap<QString, QLocale>;\n    enum Format {\n        // date time formats\n        DayAbbreviations,     // Monday/Mon ; 星期一 / 周一\n        DayOfWeek,            // 一周首日\n        ShortDate,            // 短日期\n        LongDate,             // 长日期\n        ShortTime,            // 短时间\n        LongTime,             // 长时间\n\n        // currency formats\n        CurrencySymbol,       // 货币符号 ￥\n        PositiveCurrency,     // 货币正数 ￥1.0\n        NegativeCurrency,     // 货币负数 ￥-1.0\n\n        // number formats\n        DecimalSymbol,        // 小数点\n        DigitGroupingSymbol,  // 分隔符（数字分组）\n        DigitGrouping,        // 数字分组\n\n        PageSize              // 纸张大小 A4\n    };\n\n    explicit DatetimeModel(QObject *parent = nullptr);\n    ~DatetimeModel();\n\n    inline bool nTP() const { return m_ntp; }\n    void setNTP(bool ntp);\n    inline bool use24HourFormat() const { return m_bUse24HourType; }\n\n    QList<ZoneInfo> userTimeZones() const;\n    void addUserTimeZone(const ZoneInfo &zone);\n    void removeUserTimeZone(const ZoneInfo &zone);\n#ifndef DCC_DISABLE_TIMEZONE\n    QString systemTimeZoneId() const;\n    void setSystemTimeZoneId(const QString &systemTimeZoneId);\n#endif\n    inline ZoneInfo currentTimeZone() const\n    {\n        return m_currentTimeZone;\n    }\n    void setCurrentTimeZone(const ZoneInfo &currentTimeZone);\n\n    inline ZoneInfo currentSystemTimeZone() const { return m_currentSystemTimeZone; }\n    void setCurrentUseTimeZone(const ZoneInfo &currentTimeZone);\n\n    inline QString ntpServerAddress() const { return m_strNtpServerAddress; }\n    void setNtpServerAddress(const QString &ntpServer);\n\n    inline QString previousServerAddress() const { return m_previousServerAddress; }\n    void setPreviousServerAddress(const QString &address);\n\n    inline QStringList ntpServerList() const { return m_NtpServerList; }\n    void setNTPServerList(const QStringList &list);\n\n    inline QString getTimeZone() const { return m_timeZones; }\n    void setTimeZoneInfo(const QString &timeZone);\n\n    inline QString country() const { return m_country; }\n    void setCountry(const QString &country);\n\n    inline QString localeName() const { return m_localeName; }\n    void setLocaleName(const QString &localeName);\n\n    inline QString langRegion() const { return m_langCountry; }\n    void setLangRegion(const QString &langCountry);\n\n    inline int firstDayOfWeekFormat() const { return m_firstDayOfWeekFormat; }\n    void setFirstDayOfWeek(const int &firstDayOfWeekFormat);\n\n    inline QString shortDateFormat() const { return m_shortDateFormat; }\n    void setShortDateFormat(const QString &shortDateFormat);\n\n    inline QString longDateFormat() const { return m_longDateFormat; }\n    void setLongDateFormat(const QString &longDateFormat);\n\n    inline QString shortTimeFormat() const { return m_shortTimeFormat; }\n    void setShortTimeFormat(const QString &shortTimeFormat);\n\n    inline QString longTimeFormat() const { return m_longTimeFormat; }\n    void setLongTimeFormat(const QString &longTimeFormat);\n\n    inline QString currencyFormat() const { return m_currencyFormat; }\n    void setCurrencyFormat(const QString &currencyFormat);\n\n    QString digitGroupingSymbol() const { return m_digitGroupingSymbol; }\n    void setDigitGroupingSymbol(const QString &digitGroupingSymbol);\n\n    inline QString numberFormat() const { return m_numberFormat; }\n    void setNumberFormat(const QString &numberFormat);\n\n    inline QString paperFormat() const { return m_paperFormat; }\n    void setPaperFormat(const QString &paperFormat);\n\n    inline RegionFormat regionFormat() const { return m_regionFormat; }\n    void setRegionFormat(const RegionFormat &regionFormat);\n\n    inline QStringList countries() const { return m_countries; }\n    void setCountries(const QStringList &countries);\n\n    inline Regions regions() const { return m_regions; }\n    void setRegions(const Regions &regions);\n\n    QString timeZoneDispalyName() const;\n    int currentTimeZoneIndex() const;\n\n    QStringList langList();\n    QString currentLang();\n\n    int weekdayFormat() const;\n    void setWeekdayFormat(int newWeekdayFormat);\n    int langState() const;\n\n    QStringList numberExampleParts() const;\n\nQ_SIGNALS:\n    void ntpChanged(bool value);\n    void hourTypeChanged(bool value);\n    void userTimeZoneAdded(const ZoneInfo &zone);\n    void userTimeZoneRemoved(const ZoneInfo &zone);\n    void systemTimeZoneIdChanged(const QString &zone);\n    void systemTimeChanged();\n    void currentTimeZoneChanged(const ZoneInfo &zone) const;\n    void currentSystemTimeZoneChanged(const ZoneInfo &zone) const;\n    void NTPServerChanged(QString server);\n    void NTPServerListChanged(QStringList list);\n    void NTPServerNotChanged(QString server);\n    void previousServerAddressChanged(const QString &address);\n    void timeZoneChanged(QString value);\n    void localeNameChanged(const QString &localeName);\n    void countryChanged(const QString &country);\n    void langCountryChanged(const QString &langCountry);\n    void firstDayOfWeekFormatChanged(const int firstDayOfWeekFormat);\n    void shortDateFormatChanged(const QString &shortDateFormat);\n    void longDateFormatChanged(const QString &longDate);\n    void shortTimeFormatChanged(const QString &shortTimeFormat);\n    void longTimeFormatChanged(const QString &longTimeFormat);\n    void currencyFormatChanged(const QString &oldFormat, const QString &newFormat);\n    void digitGroupingSymbolChanged(const QString &oldFormat, const QString &newFormat);\n    void numberFormatChanged(const QString &numberFormat);\n    void paperFormatChanged(const QString &numberFormat);\n    // Language List changed\n    void langListChanged(const QStringList &langList);\n    void currentLangChanged(const QString &lang);\n    void currentLanguageAndRegionChanged(const QString &lang);\n    void weekdayFormatChanged(int format);\n    void symbolChanged(int format, const QString &symbol);\n    void countriesChanged(const QStringList &countries);\n    void regionChanged(const QString &region);\n    void currentRegionIndexChanged(int index);\n    void currentDateChanged();\n    void currentTimeChanged();\n    void currentFormatChanged(int format);\n    void langStateChanged(int state);\n    void numberExampleFormatChanged(const QStringList &numberExampleParts);\n\npublic Q_SLOTS:\n    void set24HourFormat(bool state);\n    void setDateTime(const QDateTime &dateTime);\n    QStringList zones(int x, int y, int map_width, int map_height);\n    QPoint zonePosition(const QString &timezone, int map_width, int map_height);\n    QStringList zoneIdList();\n    QString zoneDisplayName(const QString &zoneName);\n    QAbstractListModel *userTimezoneModel();\n    QSortFilterProxyModel *zoneSearchModel();\n    QSortFilterProxyModel *langSearchModel();\n    QSortFilterProxyModel *langRegionSearchModel();\n    QSortFilterProxyModel *regionSearchModel();\n    QAbstractListModel *timeDateModel();\n    QAbstractListModel *currencyModel();\n    QAbstractListModel *decimalModel();\n    QString region(); // country\n    int currentRegionIndex();\n    void setRegion(const QString &region); // setCountry\n    void addUserTimeZoneById(const QString &zoneId);\n    void removeUserTimeZoneById(const QString &name);\n    void setSystemTimeZone(const QString &zoneId);\n    QString timeZoneDescription(const ZoneInfo &zone) const;\n    void ensureLangModel();\n    void addLang(const QString &lang);\n    void deleteLang(const QString &lang);\n    void setCurrentLang(const QString &lang);\n\n    QStringList languagesAndRegions();\n    QString currentLanguageAndRegion();\n    int currentLanguageAndRegionIndex();\n    void setCurrentLocaleAndLangRegion(const QString &localeName, const QString& langAndRegion);\n\n    // format ==> DatetimeModel::Format\n    QStringList availableFormats(int format) const;\n    int currentFormatIndex(int format) const;\n    void setCurrentFormat(int format, int index);\n    QString currentDate() const;\n    QString currentTime() const;\n    QString getCustomNtpServer() const;\n\n    // 符号冲突检测功能\n    bool hasSymbolConflict() const;\n    QStringList getAllSupportedSymbols() const;\n    \n    // 自动冲突解决功能\n    void resolveSymbolConflict();\n    \n    // UI符号列表过滤功能\n    QStringList getFilteredDecimalSymbols() const;\n    QStringList getFilteredSeparatorSymbols() const;\n    \n    // 中文区域默认设置功能\n    bool isChineseLocale() const;\n    void applyChineseDefaults();\n\n    void updateCurrentTime();\n\nprotected:\n    void initModes(const QStringList &names, int indexBegin, int indexEnd, QAbstractListModel *model);\n\n    // 符号冲突检测方法（供DatetimeWorker使用）\n    bool symbolsConflict(const QString &decimal, const QString &separator) const;\n\nprivate:\n    // 自动冲突解决私有方法\n    QString resolveDecimalSymbol(const QString &decimal, const QString &separator) const;\n    QString getCurrentTime() const;\n    QString getCurrentDate() const;\n\n    bool m_ntp;\n    bool m_bUse24HourType;\n    QStringList m_userZoneIds;\n#ifndef DCC_DISABLE_TIMEZONE\n    QString m_systemTimeZoneId;\n#endif\n    QList<ZoneInfo> m_userTimeZones;\n    ZoneInfo m_currentTimeZone;\n    ZoneInfo m_currentSystemTimeZone;\n    QString m_strNtpServerAddress;\n    QString m_previousServerAddress;\n    QStringList m_NtpServerList;\n    QString m_timeZones;\n    QString m_country;\n    QString m_langCountry;\n    QStringList m_countries;\n    Regions m_regions;\n    QString m_localeName;\n    int m_firstDayOfWeekFormat;\n    QString m_shortDateFormat;\n    QString m_longDateFormat;\n    QString m_shortTimeFormat;\n    QString m_longTimeFormat;\n    QString m_currencyFormat;\n    QString m_digitGroupingSymbol;\n    QString m_numberFormat;\n    QString m_paperFormat;\n    RegionFormat m_regionFormat;\n    QMap<QString, QString> m_timezoneCache;\n    DatetimeWorker *m_work = nullptr;\n    dccV25::UserTimezoneModel *m_userTimezoneModel = nullptr;\n    QSortFilterProxyModel *m_zoneSearchModel = nullptr;\n    QSortFilterProxyModel *m_langSearchModel = nullptr;\n    QSortFilterProxyModel *m_regionSearchModel = nullptr;\n    QSortFilterProxyModel *m_countrySearchModel = nullptr;\n    QAbstractListModel *m_timeDateModel = nullptr;\n    QAbstractListModel *m_currencyModel = nullptr;\n    QAbstractListModel *m_decimalModel = nullptr;\n    dccV25::KeyboardModel *m_langModel = nullptr;\n    QMap<QString, QString> m_langRegionsCache;\n    QString m_regionName;\n    QString m_currentTime;\n    QString m_currentDate;\n};\n\n#endif // DATETIMEMODEL_H\n"
  },
  {
    "path": "src/plugin-datetime/operation/datetimeworker.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"datetimeworker.h\"\n#include \"datetimedbusproxy.h\"\n#include \"regionproxy.h\"\n#include <QDebug>\n\n#include <QtConcurrent>\n#include <QFutureWatcher>\n#include <QLoggingCategory>\n#include <QDBusPendingCallWatcher>\n#include <QDBusPendingReply>\n\n#include <dconfig.h>\n#include <qvariant.h>\n\nQ_LOGGING_CATEGORY(DdcDateTimeWorkder, \"dcc-datetime-worker\")\n\nstatic const QStringList customTimeZoneList = {\n    \"Asia/Chengdu\", \"Asia/Beijing\", \"Asia/Nanjing\", \"Asia/Wuhan\", \"Asia/Xian\", \"Asia/Urumqi\"\n};\n\nDatetimeWorker::DatetimeWorker(DatetimeModel *model, QObject *parent)\n    : QObject(parent)\n    , m_model(model)\n    , m_timedateInter(new DatetimeDBusProxy(this))\n    , m_regionInter(new RegionProxy(this))\n    , m_config(DTK_CORE_NAMESPACE::DConfig::createGeneric(\"org.deepin.region-format\", QString(), this))\n    , m_datetimeConfig(DTK_CORE_NAMESPACE::DConfig::create(\"org.deepin.dde.control-center\", \"org.deepin.dde.control-center.datetime\", QString(), this))\n    , m_daemonTimedateConfig(DTK_CORE_NAMESPACE::DConfig::create(\"org.deepin.dde.daemon\", \"org.deepin.dde.daemon.timedate\", QString(), this))\n{\n    QMetaObject::invokeMethod(this, \"activate\", Qt::QueuedConnection);\n#ifndef DCC_DISABLE_TIMEZONE\n    connect(m_timedateInter, &DatetimeDBusProxy::UserTimezonesChanged, this, &DatetimeWorker::onTimezoneListChanged);\n    connect(m_timedateInter, &DatetimeDBusProxy::TimezoneChanged, m_model, &DatetimeModel::setSystemTimeZoneId);\n#endif\n    connect(m_timedateInter, &DatetimeDBusProxy::NTPChanged, m_model, &DatetimeModel::setNTP);\n    connect(m_timedateInter, &DatetimeDBusProxy::Use24HourFormatChanged, m_model, &DatetimeModel::set24HourFormat);\n\n    connect(m_timedateInter, &DatetimeDBusProxy::TimezoneChanged, this, [=](const QString &value) {\n        auto tzinfo = GetZoneInfo(value);\n        if (tzinfo.getZoneName().length() == 0) {\n            tzinfo = GetZoneInfo(QTimeZone::systemTimeZoneId());\n        }\n        m_model->setCurrentUseTimeZone(tzinfo);\n        QList<ZoneInfo> zones = m_model->userTimeZones();\n        // Remove the timezone from user list if it becomes the system timezone\n        for (const ZoneInfo &zone : zones) {\n            if (zone.getZoneName() == value) {\n                m_model->removeUserTimeZone(zone);\n                onTimezoneListChanged(m_timedateInter->userTimezones());\n                break;\n            }\n        }\n\n        Q_EMIT m_model->currentFormatChanged(DatetimeModel::LongTime);\n    });\n\n    connect(m_timedateInter, &DatetimeDBusProxy::NTPServerChanged, m_model, &DatetimeModel::setNtpServerAddress);\n    connect(m_timedateInter, &DatetimeDBusProxy::TimezoneChanged, m_model, &DatetimeModel::setTimeZoneInfo);\n    connect(m_timedateInter, &DatetimeDBusProxy::WeekdayFormatChanged, m_model, &DatetimeModel::weekdayFormatChanged);\n\n    connect(m_timedateInter, &DatetimeDBusProxy::CurrencySymbolChanged, m_model, [this](const QString &symbol) {\n        Q_EMIT m_model->symbolChanged(DatetimeModel::CurrencySymbol, symbol);\n    });\n    connect(m_timedateInter, &DatetimeDBusProxy::NegativeCurrencyFormatChanged, m_model, [this](const QString &symbol) {\n        Q_EMIT m_model->symbolChanged(DatetimeModel::CurrencySymbol, symbol);\n    });\n    connect(m_timedateInter, &DatetimeDBusProxy::PositiveCurrencyFormatChanged, m_model, [this](const QString &symbol) {\n        Q_EMIT m_model->symbolChanged(DatetimeModel::CurrencySymbol, symbol);\n    });\n    connect(m_timedateInter, &DatetimeDBusProxy::DecimalSymbolChanged, m_model, [this](const QString &symbol){\n        Q_EMIT m_model->symbolChanged(DatetimeModel::DecimalSymbol, symbol);\n    });\n    connect(m_timedateInter, &DatetimeDBusProxy::DigitGroupingChanged, m_model, [this](const QString &symbol){\n        Q_EMIT m_model->symbolChanged(DatetimeModel::DigitGrouping, symbol);\n    });\n    connect(m_timedateInter, &DatetimeDBusProxy::DigitGroupingSymbolChanged, m_model, [this](const QString &symbol){\n        m_model->setDigitGroupingSymbol(symbol);\n        Q_EMIT m_model->symbolChanged(DatetimeModel::DigitGroupingSymbol, symbol);\n    });\n\n    m_model->setCurrentTimeZone(GetZoneInfo(QTimeZone::systemTimeZoneId()));\n    m_model->setCurrentUseTimeZone(GetZoneInfo(m_timedateInter->timezone()));\n    m_model->set24HourFormat(m_timedateInter->use24HourFormat());\n\n    refreshNtpServerList();\n    m_model->setNtpServerAddress(m_timedateInter->nTPServer());\n    m_model->setTimeZoneInfo(m_timedateInter->timezone());\n    m_model->setNTP(m_timedateInter->nTP());\n    m_model->setDigitGroupingSymbol(m_timedateInter->digitGroupingSymbol());\n\n    initRegionFormatData();\n}\n\nDatetimeWorker::~DatetimeWorker()\n{\n}\n\nvoid DatetimeWorker::activate()\n{\n    if (!m_regionInter->isActive()) {\n        m_regionInter->active();\n        m_model->setCountries(m_regionInter->countries());\n        m_model->setRegions(m_regionInter->regions());\n    }\n    m_model->setNTP(m_timedateInter->nTP());\n#ifndef DCC_DISABLE_TIMEZONE\n    m_model->setSystemTimeZoneId(m_timedateInter->timezone());\n    onTimezoneListChanged(m_timedateInter->userTimezones());\n#endif\n    \n    // 启动时检测并解决符号冲突\n    checkAndResolveConflicts();\n}\n\nvoid DatetimeWorker::deactivate()\n{\n}\n\nDatetimeModel *DatetimeWorker::model() { return m_model; }\n\nvoid DatetimeWorker::setNTP(bool ntp)\n{\n    Q_EMIT requestSetAutoHide(false);\n    m_timedateInter->SetNTP(ntp, this, SLOT(setAutoHide()), SLOT(setNTPError()));\n}\nvoid DatetimeWorker::setAutoHide()\n{\n    Q_EMIT requestSetAutoHide(true);\n}\nvoid DatetimeWorker::setNTPError()\n{\n    Q_EMIT m_model->ntpChanged(m_model->nTP());\n    setAutoHide();\n}\n\nvoid DatetimeWorker::setDatetime(const QDateTime &datetime)\n{\n    Q_EMIT requestSetAutoHide(false);\n    qCDebug(DdcDateTimeWorkder) << \"start setDatetime\";\n    m_setDatetime = new QDateTime(datetime);\n    m_timedateInter->SetNTP(false, this, SLOT(setDatetimeStart()), SLOT(setAutoHide()));\n}\nvoid DatetimeWorker::setDatetimeStart()\n{\n    if (m_setDatetime) {\n        qCDebug(DdcDateTimeWorkder) << \"set ntp success, m_timedateInter->SetDate\";\n        m_timedateInter->SetDate(*m_setDatetime, this, SLOT(setDateFinished()));\n        delete m_setDatetime;\n        m_setDatetime = nullptr;\n    }\n    setAutoHide();\n}\nvoid DatetimeWorker::setDateFinished()\n{\n    Q_EMIT m_model->systemTimeChanged();\n}\nvoid DatetimeWorker::set24HourType(bool state)\n{\n    m_timedateInter->setUse24HourFormat(state);\n}\n\n#ifndef DCC_DISABLE_TIMEZONE\nvoid DatetimeWorker::setTimezone(const QString &timezone)\n{\n    QString currentTimezone = m_timedateInter->timezone();\n    bool isNeedUpdateProp = (timezone == \"Asia/Shanghai\" && customTimeZoneList.contains(currentTimezone)) ||\n                            customTimeZoneList.contains(timezone);\n\n    QDBusPendingCall call = m_timedateInter->SetTimezone(timezone, tr(\"Authentication is required to set the system timezone\"));\n    \n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [this, timezone, isNeedUpdateProp](QDBusPendingCallWatcher *w) {\n        QDBusPendingReply<> reply = *w;\n        if (reply.isError()) {\n            qCWarning(DdcDateTimeWorkder) << \"SetTimezone failed:\" << reply.error().message();\n            return;\n        }\n\n        if (isNeedUpdateProp && m_daemonTimedateConfig && m_daemonTimedateConfig->isValid()) {\n            m_daemonTimedateConfig->setValue(\"timeZone\", timezone);\n        }\n        m_timedateInter->AddUserTimezone(timezone);\n        Q_EMIT m_timedateInter->TimezoneChanged(timezone);\n        w->deleteLater();\n    });\n}\n\nvoid DatetimeWorker::removeUserTimeZone(const QString &zone)\n{\n    m_timedateInter->DeleteUserTimezone(zone);\n}\n\nvoid DatetimeWorker::addUserTimeZone(const QString &zone)\n{\n    m_timedateInter->AddUserTimezone(zone);\n}\n\nvoid DatetimeWorker::setNtpServer(QString server)\n{\n    qInfo() << \"Try set server : \" << server;\n\n    if (server == m_timedateInter->nTPServer())\n        return;\n\n    bool isCustomServer = !m_model->ntpServerList().contains(server);\n    if (isCustomServer) {\n        if (m_datetimeConfig) {\n            if (m_datetimeConfig->isValid()) {\n                QString previousCustom = m_datetimeConfig->value(\"customNtpServer\").toString();\n                m_datetimeConfig->setValue(\"customNtpServer\", server);\n            } else {\n                qWarning() << \"Cannot save custom NTP server: dconfig is not valid!\";\n            }\n        } else {\n            qWarning() << \"Cannot save custom NTP server: dconfig is null!\";\n        }\n    }\n    m_timedateInter->SetNTPServer(server, tr(\"Authentication is required to change NTP server\"), this, SLOT(SetNTPServerFinished()), SLOT(SetNTPServerError()));\n}\n\nQString DatetimeWorker::getCustomNtpServer()\n{\n    if (m_datetimeConfig && m_datetimeConfig->isValid()) {\n        return m_datetimeConfig->value(\"customNtpServer\").toString();\n    }\n    return QString();\n}\n\nint DatetimeWorker::weekdayFormat()\n{\n    return m_timedateInter->weekdayFormat();\n}\n\nvoid DatetimeWorker::SetNTPServerFinished()\n{\n    qInfo() << \"set server success.\";\n    Q_EMIT m_model->NTPServerChanged(m_timedateInter->nTPServer());\n}\nvoid DatetimeWorker::SetNTPServerError()\n{\n    qInfo() << \"Not set server success.\";\n    Q_EMIT m_model->NTPServerNotChanged(m_timedateInter->nTPServer());\n}\n\nvoid DatetimeWorker::setWeekdayFormat(int type)\n{\n    m_timedateInter->setWeekdayFormat(type);\n}\n\nvoid DatetimeWorker::setShortDateFormat(int type)\n{\n    m_timedateInter->setShortDateFormat(type);\n}\n\nvoid DatetimeWorker::setLongDateFormat(int type)\n{\n    m_timedateInter->setLongDateFormat(type);\n}\n\nvoid DatetimeWorker::setLongTimeFormat(int type)\n{\n    m_timedateInter->setLongTimeFormat(type);\n}\n\nvoid DatetimeWorker::setShortTimeFormat(int type)\n{\n    m_timedateInter->setShortTimeFormat(type);\n}\n\nvoid DatetimeWorker::setWeekStartDayFormat(int type)\n{\n    m_timedateInter->setWeekBegins(type);\n}\n\nvoid DatetimeWorker::onTimezoneListChanged(const QStringList &timezones)\n{\n    QList<ZoneInfo> zones = m_model->userTimeZones();\n    QStringList zonesName;\n    for (const ZoneInfo &zone : zones) {\n        zonesName.append(zone.getZoneName());\n    }\n    for (const QString &zone : timezones) {\n        zonesName.removeOne(zone);\n        m_timedateInter->GetZoneInfo(zone, this, SLOT(getZoneInfoFinished(ZoneInfo)));\n    }\n    for (const ZoneInfo &zone : zones) {\n        if (zonesName.contains(zone.getZoneName())) {\n            m_model->removeUserTimeZone(zone);\n        }\n    }\n}\n\nvoid DatetimeWorker::getZoneInfoFinished(ZoneInfo zoneInfo)\n{\n    m_model->addUserTimeZone(zoneInfo);\n}\n\nQString DatetimeWorker::decimalSymbol()\n{\n    return m_timedateInter->decimalSymbol();\n}\n\nvoid DatetimeWorker::setDecimalSymbol(const QString &value)\n{\n    return m_timedateInter->setDecimalSymbol(value);\n}\n\nQString DatetimeWorker::digitGrouping()\n{\n    return m_timedateInter->digitGrouping();\n}\n\nvoid DatetimeWorker::setDigitGrouping(const QString &value)\n{\n    return m_timedateInter->setDigitGrouping(value);\n}\n\nQString DatetimeWorker::digitGroupingSymbol()\n{\n    return m_timedateInter->digitGroupingSymbol();\n}\n\nvoid DatetimeWorker::setDigitGroupingSymbol(const QString &value)\n{\n    return m_timedateInter->setDigitGroupingSymbol(value);\n}\n\nQString DatetimeWorker::currencySymbol()\n{\n    return m_timedateInter->currencySymbol();\n}\n\nvoid DatetimeWorker::setCurrencySymbol(const QString &value)\n{\n    return m_timedateInter->setCurrencySymbol(value);\n}\n\nQString DatetimeWorker::negativeCurrencyFormat()\n{\n    return m_timedateInter->negativeCurrencyFormat();\n}\n\nvoid DatetimeWorker::setNegativeCurrencyFormat(const QString &value)\n{\n    return m_timedateInter->setNegativeCurrencyFormat(value);\n}\n\nQString DatetimeWorker::positiveCurrencyFormat()\n{\n    return m_timedateInter->positiveCurrencyFormat();\n}\n\nvoid DatetimeWorker::setPositiveCurrencyFormat(const QString &value)\n{\n    return m_timedateInter->setPositiveCurrencyFormat(value);\n}\n#endif\n\nvoid DatetimeWorker::refreshNtpServerList()\n{\n    m_timedateInter->GetSampleNTPServers(this, SLOT(getSampleNTPServersFinished(const QStringList &)));\n}\n\nvoid DatetimeWorker::getSampleNTPServersFinished(const QStringList &serverList)\n{\n    m_model->setNTPServerList(serverList);\n}\n\nZoneInfo DatetimeWorker::GetZoneInfo(const QString &zoneId)\n{\n    return m_timedateInter->GetZoneInfo(zoneId);\n}\n\nvoid DatetimeWorker::initRegionFormatData()\n{\n    if (!m_config->isValid())\n        return;\n\n    if (m_config->isDefaultValue(country_key)) {\n        setConfigValue(country_key, m_regionInter->systemCountry());\n        m_model->setCountry(m_regionInter->systemCountry());\n    } else {\n        m_model->setCountry(m_config->value(country_key).toString());\n    }\n    if (m_config->isDefaultValue(languageRegion_key) || m_config->value(languageRegion_key).toString().isEmpty()) {\n        setConfigValue(languageRegion_key, m_regionInter->langCountry());\n        m_model->setLangRegion(m_regionInter->langCountry());\n    } else {\n        m_model->setLangRegion(m_config->value(languageRegion_key).toString());\n    }\n    if (m_config->isDefaultValue(localeName_key)) {\n        setConfigValue(localeName_key, QLocale::system().name());\n        m_model->setLocaleName(QLocale::system().name());\n    } else {\n        m_model->setLocaleName(m_config->value(localeName_key).toString());\n    }\n    if (m_config->isDefaultValue(firstDayOfWeek_key)) {\n        QLocale locale(QLocale::system().name());\n        setConfigValue(firstDayOfWeek_key, m_regionInter->regionFormat(locale).firstDayOfWeekFormat);\n        m_model->setFirstDayOfWeek(m_regionInter->regionFormat(locale).firstDayOfWeekFormat);\n    } else {\n        m_model->setFirstDayOfWeek(m_config->value(firstDayOfWeek_key).toInt());\n    }\n    if (m_config->isDefaultValue(shortDateFormat_key)) {\n        QLocale locale(QLocale::system().name());\n        setConfigValue(shortDateFormat_key, m_regionInter->regionFormat(locale).shortDateFormat);\n        m_model->setShortDateFormat(m_regionInter->regionFormat(locale).shortDateFormat);\n    } else {\n        m_model->setShortDateFormat(m_config->value(shortDateFormat_key).toString());\n    }\n    if (m_config->isDefaultValue(longDateFormat_key)) {\n        QLocale locale(QLocale::system().name());\n        setConfigValue(longDateFormat_key, m_regionInter->regionFormat(locale).longDateFormat);\n        m_model->setLongDateFormat(m_regionInter->regionFormat(locale).longDateFormat);\n    } else {\n        m_model->setLongDateFormat(m_config->value(longDateFormat_key).toString());\n    }\n    if (m_config->isDefaultValue(shortTimeFormat_key)) {\n        QLocale locale(QLocale::system().name());\n        setConfigValue(shortTimeFormat_key, m_regionInter->regionFormat(locale).shortTimeFormat);\n        m_model->setShortTimeFormat(m_regionInter->regionFormat(locale).shortTimeFormat);\n    } else {\n        m_model->setShortTimeFormat(m_config->value(shortTimeFormat_key).toString());\n    }\n    if (m_config->isDefaultValue(longTimeFormat_key)) {\n        QLocale locale(QLocale::system().name());\n        setConfigValue(longTimeFormat_key, m_regionInter->regionFormat(locale).longTimeFormat);\n        m_model->setLongTimeFormat(m_regionInter->regionFormat(locale).longTimeFormat);\n    } else {\n        m_model->setLongTimeFormat(m_config->value(longTimeFormat_key).toString());\n    }\n    if (m_config->isDefaultValue(currencyFormat_key)) {\n        QLocale locale(QLocale::system().name());\n        const auto newFormat = m_regionInter->regionFormat(locale).currencyFormat;\n        setConfigValue(currencyFormat_key, newFormat);\n        m_model->setCurrencyFormat(newFormat);\n\n        const auto oldFormat = currencySymbol();\n        auto posFmt = positiveCurrencyFormat();\n        posFmt.replace(oldFormat, newFormat);\n        auto negFmt = negativeCurrencyFormat();\n        negFmt.replace(oldFormat, newFormat);\n        QMetaObject::invokeMethod(this, \"setCurrencySymbol\", Qt::QueuedConnection, newFormat);\n        QMetaObject::invokeMethod(this, \"setPositiveCurrencyFormat\", Qt::QueuedConnection, posFmt);\n        QMetaObject::invokeMethod(this, \"setNegativeCurrencyFormat\", Qt::QueuedConnection, negFmt);\n    } else {\n        m_model->setCurrencyFormat(m_config->value(currencyFormat_key).toString());\n    }\n    if (m_config->isDefaultValue(numberFormat_key)) {\n        QLocale locale(QLocale::system().name());\n        setConfigValue(numberFormat_key, m_regionInter->regionFormat(locale).numberFormat);\n        m_model->setNumberFormat(m_regionInter->regionFormat(locale).numberFormat);\n    } else {\n        m_model->setNumberFormat(m_config->value(numberFormat_key).toString());\n    }\n    if (m_config->isDefaultValue(paperFormat_key)) {\n        QLocale locale(QLocale::system().name());\n        m_model->setPaperFormat(m_regionInter->regionFormat(locale).paperFormat);\n        setConfigValue(paperFormat_key, m_regionInter->regionFormat(locale).paperFormat);\n    } else {\n        m_model->setPaperFormat(m_config->value(paperFormat_key).toString());\n    }\n\n    RegionFormat regionFormat;\n    regionFormat.firstDayOfWeekFormat = m_model->firstDayOfWeekFormat();\n    regionFormat.shortDateFormat = m_model->shortDateFormat();\n    regionFormat.longDateFormat = m_model->longDateFormat();\n    regionFormat.shortTimeFormat = m_model->shortTimeFormat();\n    regionFormat.longTimeFormat = m_model->longTimeFormat();\n    regionFormat.paperFormat = m_model->paperFormat();\n    regionFormat.currencyFormat = m_model->currencyFormat();\n    regionFormat.numberFormat = m_model->numberFormat();\n    m_model->setRegionFormat(regionFormat);\n\n    connect(m_config, &DTK_CORE_NAMESPACE::DConfig::valueChanged, this, [this] (const QString &key) {\n        if (key == country_key) {\n            m_model->setCountry(m_config->value(key).toString());\n        } else if (key == languageRegion_key) {\n            m_model->setLangRegion(m_config->value(key).toString());\n        } else if (key == localeName_key) {\n            m_model->setLocaleName(m_config->value(key).toString());\n        } else if (key == firstDayOfWeek_key) {\n            m_model->setFirstDayOfWeek(m_config->value(key).toInt());\n        } else if (key == shortDateFormat_key) {\n            m_model->setShortDateFormat(m_config->value(key).toString());\n        } else if (key == longDateFormat_key) {\n            m_model->setLongDateFormat(m_config->value(key).toString());\n        } else if (key == shortTimeFormat_key) {\n            m_model->setShortTimeFormat(m_config->value(key).toString());\n        } else if (key == longTimeFormat_key) {\n            m_model->setLongTimeFormat(m_config->value(key).toString());\n        } else if (key == currencyFormat_key) {\n            m_model->setCurrencyFormat(m_config->value(key).toString());\n        } else if (key == numberFormat_key) {\n            m_model->setNumberFormat(m_config->value(key).toString());\n        } else if (key == paperFormat_key) {\n            m_model->setPaperFormat(m_config->value(key).toString());\n        }\n    });\n}\n\nstd::optional<QStringList> DatetimeWorker::getSupportedLocale()\n{\n    if (m_supportedLocaleList.has_value()) {\n        return m_supportedLocaleList;\n    }\n    static QString LOCALE_LIST_FILE = QStringLiteral(LOCALE_I18N_PATH);\n    QFile file(LOCALE_LIST_FILE);\n    if (!file.open(QIODevice::ReadOnly | QIODevice::Text))\n        return std::nullopt;\n    QStringList localelist;\n    QTextStream in(&file);\n    while (!in.atEnd()) {\n        QString line = in.readLine();\n        QStringList out = line.split(\" \");\n        localelist.push_back(out[0]);\n    }\n    m_supportedLocaleList = localelist;\n    return m_supportedLocaleList;\n}\n\nstd::optional<LocaleList> DatetimeWorker::getAllLocale()\n{\n    return m_timedateInter->getLocaleListMap();\n}\n\nstd::optional<QString> DatetimeWorker::getLocaleRegion()\n{\n    return m_timedateInter->getLocaleRegion();\n}\n\nvoid DatetimeWorker::setLocaleRegion(const QString &locale)\n{\n    m_timedateInter->setLocaleRegion(locale);\n}\n\nvoid DatetimeWorker::setConfigValue(const QString &key, const QVariant &value)\n{\n    m_config->setValue(key, value);\n}\n\nbool DatetimeWorker::genLocale(const QString &localeName)\n{\n    static QString localeConfPath = QStandardPaths::writableLocation(QStandardPaths::ConfigLocation) + QDir::separator() + \"locale.conf\";\n\n    QSettings settings(localeConfPath, QSettings::IniFormat);\n\n    auto supportedLocaleListRes = getSupportedLocale();\n    if (!supportedLocaleListRes.has_value()) {\n        return false;\n    }\n\n    QStringList supportedLocaleList = supportedLocaleListRes.value();\n    QString localeSet;\n    if (QString otherLocaleName = localeName + \".UTF-8\";\n        supportedLocaleList.contains(otherLocaleName)) {\n        localeSet = otherLocaleName;\n    } else if (supportedLocaleList.contains(localeName)) {\n        localeSet = localeName;\n    } else {\n        return false;\n    }\n    settings.setValue(\"LC_NUMERIC\", localeSet);\n    settings.setValue(\"LC_MONETARY\", localeSet);\n    settings.setValue(\"LC_TIME\", localeSet);\n    settings.setValue(\"LC_PAPER\", localeSet);\n    settings.setValue(\"LC_NAME\", localeSet);\n    settings.setValue(\"LC_ADDRESS\", localeSet);\n    settings.setValue(\"LC_TELEPHONE\", localeSet);\n    settings.setValue(\"LC_MEASUREMENT\", localeSet);\n\n    m_timedateInter->GenLocale(localeSet);\n\n    return true;\n}\n\nvoid DatetimeWorker::checkAndResolveConflicts()\n{\n    if (!m_model) {\n        return;\n    }\n    \n    // 首先检查是否为中文区域，如果是则应用中文默认设置\n    if (m_model->isChineseLocale()) {\n        // 应用中文区域默认设置（小数点为点，分隔符为逗号）\n        m_model->applyChineseDefaults();\n    }\n    \n    // 检测是否存在符号冲突\n    if (m_model->hasSymbolConflict()) {\n        // 自动解决冲突\n        m_model->resolveSymbolConflict();\n    }\n}\n\nbool DatetimeWorker::validateSymbolChange(const QString &decimal, const QString &separator)\n{\n    if (!m_model) {\n        return false;\n    }\n    \n    // 使用DatetimeModel中的符号冲突检测逻辑\n    return !m_model->symbolsConflict(decimal, separator);\n}\n"
  },
  {
    "path": "src/plugin-datetime/operation/datetimeworker.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DATETIMEWORKER_H\n#define DATETIMEWORKER_H\n\n#include \"datetimemodel.h\"\n#include \"datetimedbusproxy.h\"\n\n#include <QObject>\n\n#include <optional>\n\n#include <dtkcore_global.h>\n#include <qvariant.h>\n\nclass DatetimeDBusProxy;\nclass RegionProxy;\n\nDCORE_BEGIN_NAMESPACE\nclass DConfig;\nDCORE_END_NAMESPACE\n\nclass DatetimeWorker : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit DatetimeWorker(DatetimeModel *model, QObject *parent = nullptr);\n    ~DatetimeWorker();\n\n    Q_INVOKABLE void activate();\n    void deactivate();\n    DatetimeModel *model();\n\n    std::optional<LocaleList> getAllLocale();\n    std::optional<QString> getLocaleRegion();\n\n    void setLocaleRegion(const QString &locale);\n    void setConfigValue(const QString &key, const QVariant &value);\n\nQ_SIGNALS:\n    void requestSetAutoHide(const bool visible) const;\n\npublic Q_SLOTS:\n    void setNTP(bool ntp);\n    void setDatetime(const QDateTime &time);\n    void set24HourType(bool state);\n#ifndef DCC_DISABLE_TIMEZONE\n    void setTimezone(const QString &timezone);\n    void removeUserTimeZone(const QString &zone);\n    void addUserTimeZone(const QString &zone);\n#endif\n    void setNtpServer(QString server);\n    QString getCustomNtpServer();\n\n    int weekdayFormat();\n    void setWeekdayFormat(int type);\n    void setShortDateFormat(int type);\n    void setLongDateFormat(int type);\n    void setLongTimeFormat(int type);\n    void setShortTimeFormat(int type);\n    void setWeekStartDayFormat(int type);\n\n    bool genLocale(const QString &localeName);\n\n    ZoneInfo GetZoneInfo(const QString &zoneId);\n\n\n    QString decimalSymbol();\n    void setDecimalSymbol(const QString &value);\n\n    QString digitGrouping();\n    void setDigitGrouping(const QString &value);\n\n    QString digitGroupingSymbol();\n    void setDigitGroupingSymbol(const QString &value);\n\n    QString currencySymbol();\n    void setCurrencySymbol(const QString &value);\n\n    QString negativeCurrencyFormat();\n    void setNegativeCurrencyFormat(const QString &value);\n\n    QString positiveCurrencyFormat();\n    void setPositiveCurrencyFormat(const QString &value);\n\n    bool validateSymbolChange(const QString &decimal, const QString &separator);\n\nprivate Q_SLOTS:\n#ifndef DCC_DISABLE_TIMEZONE\n    void onTimezoneListChanged(const QStringList &timezones);\n#endif\n    void setAutoHide();\n    void setNTPError();\n    void setDatetimeStart();\n    void setDateFinished();\n    void getSampleNTPServersFinished(const QStringList &serverList);\n    void SetNTPServerFinished();\n    void SetNTPServerError();\n    void getZoneInfoFinished(ZoneInfo zoneInfo);\n\nprivate:\n    void refreshNtpServerList();\n    void initRegionFormatData();\n    std::optional<QStringList> getSupportedLocale();\n    void checkAndResolveConflicts();\n\nprivate:\n    DatetimeModel *m_model;\n    DatetimeDBusProxy *m_timedateInter;\n    QDateTime *m_setDatetime;\n    RegionProxy *m_regionInter;\n    DTK_CORE_NAMESPACE::DConfig *m_config;\n    DTK_CORE_NAMESPACE::DConfig *m_datetimeConfig;\n    DTK_CORE_NAMESPACE::DConfig *m_daemonTimedateConfig;\n    std::optional<QStringList> m_supportedLocaleList;\n};\n\n#endif // DATETIMEWORKER_H\n"
  },
  {
    "path": "src/plugin-datetime/operation/keyboard/keyboarddbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"keyboarddbusproxy.h\"\n\n#include <QMetaObject>\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusPendingReply>\n#include <QDBusMetaType>\n#include <QDebug>\n\nconst static QString LangSelectorService = \"org.deepin.dde.LangSelector1\";\nconst static QString LangSelectorPath = \"/org/deepin/dde/LangSelector1\";\nconst static QString LangSelectorInterface = \"org.deepin.dde.LangSelector1\";\n\nKeyboardDBusProxy::KeyboardDBusProxy(QObject *parent)\n    : QObject(parent)\n{\n    qRegisterMetaType<KeyboardLayoutList>(\"KeyboardLayoutList\");\n    qDBusRegisterMetaType<KeyboardLayoutList>();\n\n    qRegisterMetaType<LocaleInfo>(\"LocaleInfo\");\n    qDBusRegisterMetaType<LocaleInfo>();\n\n    qRegisterMetaType<LocaleList>(\"LocaleList\");\n    qDBusRegisterMetaType<LocaleList>();\n\n    init();\n}\n\nvoid KeyboardDBusProxy::init()\n{\n    m_dBusLangSelectorInter = new DDBusInterface(LangSelectorService, LangSelectorPath, LangSelectorInterface, QDBusConnection::sessionBus(), this);\n}\n\nvoid KeyboardDBusProxy::langSelectorStartServiceProcess()\n{\n    if (m_dBusLangSelectorInter->isValid())\n    {\n        qWarning() << \"Service\" << LangSelectorService << \"is already started.\";\n        return;\n    }\n\n    QDBusInterface freedesktopInter = QDBusInterface(\"org.freedesktop.DBus\", \"/\", \"org.freedesktop.DBus\", QDBusConnection::systemBus(), this);\n    QDBusMessage msg = QDBusMessage::createMethodCall(\"org.freedesktop.DBus\", \"/\", \"org.freedesktop.DBus\", QStringLiteral(\"StartServiceByName\"));\n    msg << LangSelectorService << quint32(0);\n    QDBusPendingReply<quint32> async = freedesktopInter.connection().asyncCall(msg);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(async, this);\n\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, &KeyboardDBusProxy::onLangSelectorStartServiceProcessFinished);\n}\n\nvoid KeyboardDBusProxy::onLangSelectorStartServiceProcessFinished(QDBusPendingCallWatcher *w)\n{\n\n    QDBusPendingReply<quint32> reply = *w;\n    Q_EMIT langSelectorServiceStartFinished(reply.value());\n    w->deleteLater();\n}\n\n//LangSelector\nQString KeyboardDBusProxy::currentLocale()\n{\n    return qvariant_cast<QString>(m_dBusLangSelectorInter->property(\"CurrentLocale\"));\n}\n\nint KeyboardDBusProxy::localeState()\n{\n    return qvariant_cast<int>(m_dBusLangSelectorInter->property(\"LocaleState\"));\n}\n\nQStringList KeyboardDBusProxy::locales()\n{\n    return qvariant_cast<QStringList>(m_dBusLangSelectorInter->property(\"Locales\"));\n}\n\nbool KeyboardDBusProxy::langSelectorIsValid()\n{\n    return m_dBusLangSelectorInter->isValid();\n}\n\nQDBusPendingReply<> KeyboardDBusProxy::AddLocale(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusLangSelectorInter->asyncCallWithArgumentList(QStringLiteral(\"AddLocale\"), argumentList);\n}\n\nQDBusPendingReply<> KeyboardDBusProxy::DeleteLocale(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusLangSelectorInter->asyncCallWithArgumentList(QStringLiteral(\"DeleteLocale\"), argumentList);\n}\n\nQDBusPendingReply<> KeyboardDBusProxy::SetLocale(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusLangSelectorInter->asyncCallWithArgumentList(QStringLiteral(\"SetLocale\"), argumentList);\n}\n\nQDBusPendingReply<LocaleList> KeyboardDBusProxy::GetLocaleList()\n{\n    QList<QVariant> argumentList;\n    return m_dBusLangSelectorInter->asyncCallWithArgumentList(QStringLiteral(\"GetLocaleList\"), argumentList);\n}\n"
  },
  {
    "path": "src/plugin-datetime/operation/keyboard/keyboarddbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef KEYBOARDDBUSPROXY_H\n#define KEYBOARDDBUSPROXY_H\n\n#include \"../datetimedbusproxy.h\"\n// class LocaleInfo;\n// typedef QList<LocaleInfo> LocaleList;\n\n#include <DDBusInterface>\n\n#include <QObject>\n#include <QDBusPendingReply>\n\nclass QDBusInterface;\nclass QDBusMessage;\n\nusing Dtk::Core::DDBusInterface;\n\ntypedef QMap<QString, QString> KeyboardLayoutList;\n\nnamespace dccV25 {\nclass DCCDBusInterface;\n}\n\nclass KeyboardDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit KeyboardDBusProxy(QObject *parent = nullptr);\n\n    //LangSelector\n    Q_PROPERTY(QString CurrentLocale READ currentLocale NOTIFY CurrentLocaleChanged)\n    QString currentLocale();\n\n    Q_PROPERTY(int LocaleState READ localeState NOTIFY LocaleStateChanged)\n    int localeState();\n\n    Q_PROPERTY(QStringList Locales READ locales NOTIFY LocalesChanged)\n    QStringList locales();\n\n    bool langSelectorIsValid();\n    void langSelectorStartServiceProcess();\n\nsignals:\n    // LangSelector property\n    void CurrentLocaleChanged(const QString & value) const;\n    void LocaleStateChanged(int value) const;\n    void LocalesChanged(const QStringList & value) const;\n    void langSelectorServiceStartFinished(const quint32 ret) const;\n\npublic slots:\n    QDBusPendingReply<> AddLocale(const QString &in0);\n    QDBusPendingReply<> DeleteLocale(const QString &in0);\n    QDBusPendingReply<> SetLocale(const QString &in0);\n    QDBusPendingReply<LocaleList> GetLocaleList();\n\nprivate slots:\n    void onLangSelectorStartServiceProcessFinished(QDBusPendingCallWatcher *w);\nprivate:\n    void init();\n\nprivate:\n    DDBusInterface *m_dBusLangSelectorInter;\n};\n\nQ_DECLARE_METATYPE(KeyboardLayoutList)\n\n#endif // KeyboardDBusProxy_H\n"
  },
  {
    "path": "src/plugin-datetime/operation/keyboard/keyboardmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"keyboardmodel.h\"\n#include \"keyboardwork.h\"\n#include <QDebug>\n\nusing namespace dccV25;\nKeyboardModel::KeyboardModel(QObject *parent)\n    : QObject(parent)\n    , m_capsLock(true)\n    , m_numLock(true)\n    , m_repeatInterval(1)\n    , m_repeatDelay(1)\n    , m_work(new KeyboardWorker(this, this))\n{\n\n}\n\nvoid KeyboardModel::setLangChangedState(const int state)\n{\n    if (m_status != state) {\n        m_status = state;\n        Q_EMIT onSetCurLangFinish(state);\n    }\n}\n\nvoid KeyboardModel::setLayoutLists(QMap<QString, QString> lists)\n{\n    m_layouts = lists;\n}\n\nQString KeyboardModel::langByKey(const QString &key) const\n{\n    auto res = std::find_if(m_langList.cbegin(), m_langList.end(), [key] (const MetaData &data)->bool{\n        return data.key() == key;\n    });\n\n    if (res != m_langList.cend()) {\n        return res->text();\n    }\n\n    return QString();\n}\n\nQString KeyboardModel::langFromText(const QString &text) const\n{\n    auto res = std::find_if(m_langList.cbegin(), m_langList.end(), [text] (const MetaData &data)->bool{\n        return data.text() == text;\n    });\n\n    if (res != m_langList.cend()) {\n        return res->key();\n    }\n\n    return QString();\n}\n\nvoid KeyboardModel::setLayout(const QString &key)\n{\n    if (key.isEmpty())\n        return;\n\n    if (m_layout == key)\n        return ;\n\n    m_layout = key;\n\n    Q_EMIT curLayoutChanged(m_layout);\n}\n\nQString KeyboardModel::curLayout() const\n{\n    return m_layout;\n}\n\nvoid KeyboardModel::setLang(const QString &value)\n{\n    qDebug() << \"old key is \" << m_currentLangKey << \" new is \" << value;\n    if (m_currentLangKey != value && !value.isEmpty()) {\n        m_currentLangKey = value;\n        const QString &langName = langByKey(value);\n        qDebug() << \"value is \" << value << \" langName is \" << langName;\n        if (!langName.isEmpty())\n            Q_EMIT curLangChanged(langName);\n    }\n}\n\nvoid KeyboardModel::doSetLang(const QString &value)\n{\n    QString key = langFromText(value);\n    if (m_currentLangKey != key && !key.isEmpty()) {\n        m_currentLangKey = key;\n        qDebug() << \"key is \" << key << \" langName is \" << value;\n        if (!value.isEmpty()) {\n            m_work->setLang(key);\n            Q_EMIT curLangChanged(value);\n        }\n    }\n}\n\nvoid KeyboardModel::addLang(const QString &value)\n{\n    qDebug() << \"addLang\" << value;\n    m_work->addLang(value);\n}\n\nvoid KeyboardModel::deleteLang(const QString &value)\n{\n    qDebug() << \"deleteLang\" << value ;\n    m_work->deleteLang(value);\n}\n\nQStringList KeyboardModel::convertLang(const QStringList &langList)\n{\n    QStringList realLangList;\n    for (int i = 0; i < langList.size(); ++i) {\n        QString lang = langByKey(langList[i]);\n        if (!lang.isEmpty()) {\n            realLangList << lang;\n        }\n    }\n    return realLangList;\n}\n\nvoid KeyboardModel::setLocaleLang(const QStringList &localLangList)\n{\n    QStringList langList = convertLang(localLangList);\n    if (m_localLangList != langList && !langList.isEmpty()) {\n        m_localLangList = langList;\n\n        Q_EMIT curLocalLangChanged(m_localLangList);\n    }\n}\n\nvoid KeyboardModel::setLocaleList(const QList<MetaData> &langList)\n{\n    if (langList.isEmpty())\n        return;\n\n    m_langList = langList;\n    Q_EMIT langChanged(langList);\n\n    const QString &currentLang = langByKey(m_currentLangKey);\n    if (!currentLang.isEmpty())\n        Q_EMIT curLangChanged(currentLang);\n}\n\nvoid KeyboardModel::setCapsLock(bool value)\n{\n    if (m_capsLock != value) {\n        m_capsLock = value;\n        Q_EMIT capsLockChanged(value);\n    }\n}\n\nuint KeyboardModel::repeatDelay() const\n{\n    return m_repeatDelay;\n}\n\nvoid KeyboardModel::setRepeatDelay(const uint &repeatDelay)\n{\n    if (m_repeatDelay != repeatDelay) {\n        m_repeatDelay = repeatDelay;\n        Q_EMIT repeatDelayChanged(repeatDelay);\n    }\n}\n\nuint KeyboardModel::repeatInterval() const\n{\n    return m_repeatInterval;\n}\n\nvoid KeyboardModel::setRepeatInterval(const uint &repeatInterval)\n{\n    if (m_repeatInterval != repeatInterval) {\n        m_repeatInterval = repeatInterval;\n        Q_EMIT repeatIntervalChanged(repeatInterval);\n    }\n}\n\nvoid KeyboardModel::setAllShortcut(const QMap<QStringList, int> &map)\n{\n    m_shortcutMap = map;\n}\n\nbool KeyboardModel::numLock() const\n{\n    return m_numLock;\n}\n\nvoid KeyboardModel::setNumLock(bool numLock)\n{\n    if (m_numLock != numLock) {\n        m_numLock = numLock;\n        Q_EMIT numLockChanged(m_numLock);\n    }\n}\n\nvoid KeyboardModel::cleanUserLayout()\n{\n    m_userLayout.clear();\n}\n\nQString KeyboardModel::curLang() const\n{\n    qDebug() << \"curLang key is \" << m_currentLangKey;\n    return langByKey(m_currentLangKey);\n}\n\nQMap<QString, QString> KeyboardModel::userLayout() const\n{\n    return m_userLayout;\n}\n\nQMap<QString, QString> KeyboardModel::kbLayout() const\n{\n    return m_layouts;\n}\n\nQStringList KeyboardModel::localLang() const\n{\n    return m_localLangList;\n}\n\nvoid KeyboardModel::addUserLayout(const QString &id, const QString &value)\n{\n    if (!m_userLayout.contains(id)) {\n        m_userLayout.insert(id, value);\n        Q_EMIT userLayoutChanged(id, value);\n    }\n}\n\nQList<MetaData> KeyboardModel::langLists() const\n{\n    return m_langList;\n}\n\nbool KeyboardModel::capsLock() const\n{\n    return m_capsLock;\n}\n\nQMap<QStringList, int> KeyboardModel::allShortcut() const\n{\n    return m_shortcutMap;\n}\n\n#include \"keyboardmodel.moc\"\n"
  },
  {
    "path": "src/plugin-datetime/operation/keyboard/keyboardmodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n\n#ifndef KEYBOARDMODEL_H\n#define KEYBOARDMODEL_H\n\n#include \"metadata.h\"\n\n#include <QObject>\n#include <QStringList>\n#include <QMap>\n\nnamespace dccV25 {\nclass KeyboardWorker;\n\nclass KeyboardModel : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit KeyboardModel(QObject *parent = nullptr);\n    enum KBLayoutScope {\n        system = 0,\n        application = 1\n    };\n#ifndef DCC_DISABLE_KBLAYOUT\n    void setLayoutLists(QMap<QString, QString> lists);\n#endif\n    QString langByKey(const QString &key) const;\n    QString langFromText(const QString &text) const;\n\n    QString curLayout() const;\n    QString curLang() const;\n    QMap<QString, QString> userLayout() const;\n    QMap<QString, QString> kbLayout() const;\n    QStringList localLang() const;\n    QList<MetaData> langLists() const;\n    bool capsLock() const;\n    QMap<QStringList, int> allShortcut() const;\n\n    uint repeatInterval() const;\n    void setRepeatInterval(const uint &repeatInterval);\n\n    uint repeatDelay() const;\n    void setRepeatDelay(const uint &repeatDelay);\n\n    bool numLock() const;\n    void setNumLock(bool numLock);\n\n    void cleanUserLayout();\n\n    inline int getLangChangedState() const { return m_status; }\n    void setLangChangedState(const int state);\n    inline QStringList &getUserLayoutList() { return m_userLaylist; }\n\nQ_SIGNALS:\n#ifndef DCC_DISABLE_KBLAYOUT\n    void curLayoutChanged(const QString &layout);\n#endif\n    void curLangChanged(const QString &lang);\n    void capsLockChanged(bool value);\n    void numLockChanged(bool value);\n    void repeatDelayChanged(const uint value);\n    void repeatIntervalChanged(const uint value);\n    void userLayoutChanged(const QString &id, const QString &value);\n    void langChanged(const QList<MetaData> &data);\n\n    void curLocalLangChanged(const QStringList &localLangList);\n    void onSetCurLangFinish(const int value);\n\npublic Q_SLOTS:\n#ifndef DCC_DISABLE_KBLAYOUT\n    void setLayout(const QString &key);\n#endif\n    void setLang(const QString &value);\n    // doSetLang ==> m_worker->setLang ==> setLang\n    void doSetLang(const QString &langName);\n    void addLang(const QString &value);\n    void deleteLang(const QString& value);\n\n    void setLocaleLang(const QStringList &localLangList);\n    void addUserLayout(const QString &id, const QString &value);\n    void setLocaleList(const QList<MetaData> &langList);\n    void setCapsLock(bool value);\n    void setAllShortcut(const QMap<QStringList, int> &map);\nprivate:\n    QStringList convertLang(const QStringList &langList);\nprivate:\n    bool m_capsLock;\n    bool m_numLock;\n    uint m_repeatInterval;\n    uint m_repeatDelay;\n    QString m_layout;\n    QString m_currentLangKey;\n    QStringList m_localLangList;\n    QStringList m_userLaylist;\n    QMap<QString, QString> m_userLayout;\n    QMap<QString, QString> m_layouts;\n    QList<MetaData> m_langList;\n    QMap<QStringList, int> m_shortcutMap;\n    int m_status{0};\n    KeyboardWorker *m_work = nullptr;\n};\n}\n#endif // KEYBOARDMODEL_H\n"
  },
  {
    "path": "src/plugin-datetime/operation/keyboard/keyboardwork.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n\n#include \"keyboardwork.h\"\n\n#include \"dcclocale.h\"\n\n#include <QTimer>\n#include <QDebug>\n#include <QLocale>\n#include <QCollator>\n#include <QCoreApplication>\n#include <QDBusArgument>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QJsonArray>\n#include <QDBusInterface>\n#include <QDBusPendingCallWatcher>\n#include <QTranslator>\n\nusing namespace dccV25;\nbool caseInsensitiveLessThan(const MetaData &s1, const MetaData &s2);\n\nconst QMap<QString, QString> &ModelKeycode = {{\"minus\", \"-\"}, {\"equal\", \"=\"}, {\"backslash\", \"\\\\\"}, {\"question\", \"?/\"}, {\"exclam\", \"1\"}, {\"numbersign\", \"3\"},\n    {\"semicolon\", \";\"}, {\"apostrophe\", \"'\"}, {\"less\", \",<\"}, {\"period\", \">.\"}, {\"slash\", \"?/\"}, {\"parenleft\", \"9\"}, {\"bracketleft\", \"[\"},\n    {\"parenright\", \"0\"}, {\"bracketright\", \"]\"}, {\"quotedbl\", \"'\"}, {\"space\", \" \"}, {\"dollar\", \"$\"}, {\"plus\", \"+\"}, {\"asterisk\", \"*\"},\n    {\"underscore\", \"_\"}, {\"bar\", \"|\"}, {\"grave\", \"`\"}, {\"at\", \"2\"}, {\"percent\", \"5\"}, {\"greater\", \">.\"}, {\"asciicircum\", \"6\"},\n    {\"braceleft\", \"[\"}, {\"colon\", \":\"}, {\"comma\", \",<\"}, {\"asciitilde\", \"~\"}, {\"ampersand\", \"7\"}, {\"braceright\", \"]\"}, {\"Escape\", \"Esc\"}\n};\n\n\nKeyboardWorker::KeyboardWorker(KeyboardModel *model, QObject *parent)\n    : QObject(parent)\n    , m_model(model)\n    , m_keyboardDBusProxy(new KeyboardDBusProxy(this))\n    , m_translatorLanguage(nullptr)\n{\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::langSelectorServiceStartFinished, this, [=] {\n        QTimer::singleShot(100, this, &KeyboardWorker::onLangSelectorServiceFinished);\n    });\n\n    m_model->setLangChangedState(m_keyboardDBusProxy->localeState());\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::LocaleStateChanged, m_model, &KeyboardModel::setLangChangedState);\n\n    QMetaObject::invokeMethod(this, \"active\", Qt::QueuedConnection);\n}\n\nvoid KeyboardWorker::resetAll()\n{\n\n}\n\nvoid KeyboardWorker::onGetWindowWM(bool value)\n{\n    if (m_shortcutModel)\n        m_shortcutModel->onWindowSwitchChanged(value);\n}\n\nvoid KeyboardWorker::setShortcutModel(ShortcutModel *model)\n{\n    m_shortcutModel = model;\n}\n\nvoid KeyboardWorker::refreshShortcut()\n{\n}\n\nvoid KeyboardWorker::refreshLang()\n{\n    m_keyboardDBusProxy->blockSignals(false);\n    if (!m_keyboardDBusProxy->langSelectorIsValid())\n        m_keyboardDBusProxy->langSelectorStartServiceProcess();\n    else\n        onLangSelectorServiceFinished();\n}\n\nvoid KeyboardWorker::windowSwitch()\n{\n}\n\nvoid KeyboardWorker::active()\n{\n    m_keyboardDBusProxy->blockSignals(false);\n\n    m_metaDatas.clear();\n    m_letters.clear();\n\n    Q_EMIT onDatasChanged(m_metaDatas);\n    Q_EMIT onLettersChanged(m_letters);\n\n    onRefreshKBLayout();\n    refreshLang();\n    windowSwitch();\n}\n\nvoid KeyboardWorker::deactive()\n{\n    m_keyboardDBusProxy->blockSignals(true);\n}\n\nbool KeyboardWorker::keyOccupy(const QStringList &list)\n{\n    int bit = 0;\n    for (QString t : list) {\n        if (t == \"Control\")\n            bit +=  Modifier::control;\n        else if (t == \"Alt\")\n            bit += Modifier::alt;\n        else if (t == \"Super\")\n            bit += Modifier::super;\n        else if (t == \"Shift\")\n            bit += Modifier::shift;\n        else\n            continue;\n    }\n\n    QMap<QStringList,int> keylist = m_model->allShortcut();\n    QMap<QStringList, int>::iterator i;\n    for (i = keylist.begin(); i != keylist.end(); ++i) {\n        if (bit == i.value() && i.key().last() == list.last()) {\n            return false;\n        }\n    }\n\n    return true;\n}\n\n#ifndef DCC_DISABLE_KBLAYOUT\nvoid KeyboardWorker::onRefreshKBLayout()\n{\n}\n#endif\n\nvoid KeyboardWorker::modifyShortcutEditAux(ShortcutInfo *info, bool isKPDelete)\n{\n    if (!info)\n        return;\n\n    if (info->replace) {\n        onDisableShortcut(info->replace);\n    }\n\n    QString shortcut = info->accels;\n    if (!isKPDelete) {\n        shortcut = shortcut.replace(\"KP_Delete\", \"Delete\");\n    }\n}\n\nvoid KeyboardWorker::modifyShortcutEdit(ShortcutInfo *info) {\n    modifyShortcutEditAux(info);\n}\n\nvoid KeyboardWorker::addCustomShortcut(const QString &name, const QString &command, const QString &accels)\n{\n    Q_UNUSED(name)\n    Q_UNUSED(command)\n    Q_UNUSED(accels)\n}\n\nvoid KeyboardWorker::modifyCustomShortcut(ShortcutInfo *info)\n{\n    if (info->replace) {\n        onDisableShortcut(info->replace);\n    }\n}\n\nvoid KeyboardWorker::grabScreen()\n{\n}\n\nbool KeyboardWorker::checkAvaliable(const QString &key)\n{\n    Q_UNUSED(key)\n    return false;\n}\n\nvoid KeyboardWorker::delShortcut(ShortcutInfo* info)\n{\n    Q_UNUSED(info)\n}\n\nvoid KeyboardWorker::setRepeatDelay(uint value)\n{\n    Q_UNUSED(value)\n}\n\nvoid KeyboardWorker::setRepeatInterval(uint value)\n{\n    Q_UNUSED(value)\n}\n\nvoid KeyboardWorker::setModelRepeatDelay(uint value)\n{\n    m_model->setRepeatDelay(converToModelDelay(value));\n}\n\nvoid KeyboardWorker::setModelRepeatInterval(uint value)\n{\n    m_model->setRepeatInterval(converToModelInterval(value));\n}\n\nvoid KeyboardWorker::setNumLock(bool value)\n{\n    Q_UNUSED(value)\n}\n\nvoid KeyboardWorker::setCapsLock(bool value)\n{\n    Q_UNUSED(value)\n}\n\nvoid KeyboardWorker::addUserLayout(const QString &value)\n{\n    Q_UNUSED(value)\n}\n\nvoid KeyboardWorker::delUserLayout(const QString &value)\n{\n    Q_UNUSED(value)\n}\n\nbool caseInsensitiveLessThan(const MetaData &s1, const MetaData &s2)\n{\n    QCollator qc;\n    int i = qc.compare(s1.text(), s2.text());\n    if (i < 0)\n        return true;\n    else\n        return false;\n}\n\nvoid KeyboardWorker::onRequestShortcut(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<QString> reply = *watch;\n    if(reply.isError())\n    {\n        watch->deleteLater();\n        return;\n    }\n\n    QString info = reply.value();\n\n    QMap<QStringList,int> map;\n    QJsonArray array = QJsonDocument::fromJson(info.toStdString().c_str()).array();\n    Q_FOREACH(QJsonValue value, array) {\n        QJsonObject obj = value.toObject();\n        if (obj.isEmpty())\n            continue;\n        if (obj[\"Accels\"].toArray().isEmpty())\n            continue;\n        QString accels = obj[\"Accels\"].toArray().at(0).toString();\n        accels.replace(\"<\", \"\");\n        accels.replace(\">\", \"-\");\n        //转换为list\n        QStringList key;\n        key = accels.split(\"-\");\n        int bit = 0;\n        for (QString &t : key) {\n            if (t == \"Control\")\n                bit += Modifier::control;\n            else if (t == \"Alt\")\n                bit += Modifier::alt;\n            else if (t == \"Super\")\n                bit += Modifier::super;\n            else if (t == \"Shift\")\n                bit += Modifier::shift;\n            else {\n                QString s = t;\n                s = ModelKeycode.value(s);\n                if (!s.isEmpty())\n                    t = s;\n            }\n        }\n        if (bit == 0)\n            continue;\n\n        map.insert(key, bit);\n    }\n    m_model->setAllShortcut(map);\n    if (m_shortcutModel)\n        m_shortcutModel->onParseInfo(info);\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onAdded(const QString &in0, int in1)\n{\n    Q_UNUSED(in0)\n    Q_UNUSED(in1)\n}\n\nvoid KeyboardWorker::onDisableShortcut(ShortcutInfo *info)\n{\n    Q_UNUSED(info)\n}\n\nvoid KeyboardWorker::onAddedFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<QString> reply = *watch;\n\n    if (m_shortcutModel && !watch->isError())\n        m_shortcutModel->onCustomInfo(reply.value());\n\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onLayoutListsFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<KeyboardLayoutList> reply = *watch;\n\n    KeyboardLayoutList tmp_map = reply.value();\n    m_model->setLayoutLists(tmp_map);\n\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onLocalListsFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<LocaleList> reply = *watch;\n\n    m_datas.clear();\n\n    LocaleList list = reply.value();\n\n    QStringList languageCodes;\n    QList<MetaData> metaDatas;\n    for (int i = 0; i != list.size(); ++i) {\n        MetaData md;\n        md.setKey(list.at(i).id);\n        languageCodes << list.at(i).id;\n        metaDatas << md;\n    }\n    QStringList dialectNames = DCCLocale::dialectNames(languageCodes);\n    for (int i = 0; i != metaDatas.size(); ++i) {\n        metaDatas[i].setText(QString(\"%1 - %2\").arg(list.at(i).name).arg(dialectNames.at(i)));\n    }\n    m_datas.append(metaDatas);\n\n    std::sort(m_datas.begin(), m_datas.end(), caseInsensitiveLessThan);\n\n    m_model->setLocaleList(m_datas);\n\n    watch->deleteLater();\n\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::CurrentLocaleChanged, m_model, &KeyboardModel::setLang);\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::LocalesChanged, m_model, &KeyboardModel::setLocaleLang);\n    m_model->setLocaleLang(m_keyboardDBusProxy->locales());\n    m_model->setLang(m_keyboardDBusProxy->currentLocale());\n}\n\nvoid KeyboardWorker::onUserLayout(const QStringList &list)\n{\n    m_model->cleanUserLayout();\n    m_model->getUserLayoutList() = list;\n}\n\nvoid KeyboardWorker::onUserLayoutFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<QString> reply = *watch;\n\n    m_model->addUserLayout(watch->property(\"id\").toString(), reply.value());\n\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onCurrentLayout(const QString &value)\n{\n    Q_UNUSED(value)\n}\n\nvoid KeyboardWorker::onSearchShortcuts(const QString &searchKey)\n{\n    Q_UNUSED(searchKey)\n}\n\nvoid KeyboardWorker::onCurrentLayoutFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<QString> reply = *watch;\n\n    m_model->setLayout(reply.value());\n\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onSearchFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<QString> reply = *watch;\n    if (m_shortcutModel && !watch->isError()) {\n        m_shortcutModel->setSearchResult(reply.value());\n    } else {\n        qDebug() << \"search finished error.\" << watch->error();\n    }\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onPinyin()\n{\n    m_letters.clear();\n    m_metaDatas.clear();\n    QDBusInterface dbus_pinyin(\"org.deepin.dde.Pinyin1\", \"/org/deepin/dde/Pinyin1\",\n                               \"org.deepin.dde.Pinyin1\");\n\n    Q_FOREACH(const QString &str, m_model->kbLayout().keys()) {\n        MetaData md;\n        QString title = m_model->kbLayout()[str];\n        md.setText(title);\n        md.setKey(str);\n        QChar letterFirst = title[0];\n        QStringList letterFirstList;\n        if (letterFirst.isLower() || letterFirst.isUpper()) {\n            letterFirstList << QString(letterFirst);\n            md.setPinyin(title);\n        } else {\n            QDBusMessage message = dbus_pinyin.call(\"Query\", title);\n            letterFirstList = message.arguments()[0].toStringList();\n            md.setPinyin(letterFirstList.at(0));\n        }\n\n        append(md);\n    }\n\n    QLocale locale;\n\n    if (locale.language() == QLocale::Chinese) {\n        QChar ch = '\\0';\n        for (int i(0); i != m_metaDatas.size(); ++i)\n        {\n            const QChar flag = m_metaDatas[i].pinyin().at(0).toUpper();\n            if (flag == ch)\n                continue;\n            ch = flag;\n\n            m_letters.append(ch);\n            m_metaDatas.insert(i, MetaData(ch, true));\n        }\n    } else {\n        std::sort(m_metaDatas.begin(), m_metaDatas.end(), caseInsensitiveLessThan);\n    }\n\n    Q_EMIT onDatasChanged(m_metaDatas);\n    Q_EMIT onLettersChanged(m_letters);\n}\n\nvoid KeyboardWorker::append(const MetaData &md)\n{\n    if(m_metaDatas.count() == 0)\n    {\n        m_metaDatas.append(md);\n        return;\n    }\n\n    int index = 0;\n    for (int i = 0; i != m_metaDatas.size(); ++i) {\n        if(m_metaDatas.at(i) > md)\n        {\n            m_metaDatas.insert(index,md);\n            return;\n        }\n        index++;\n    }\n\n    m_metaDatas.append(md);\n}\n\nvoid KeyboardWorker::onLangSelectorServiceFinished()\n{\n    QDBusPendingCallWatcher *localResult = new QDBusPendingCallWatcher(m_keyboardDBusProxy->GetLocaleList(), this);\n    connect(localResult, &QDBusPendingCallWatcher::finished, this, &KeyboardWorker::onLocalListsFinished);\n    m_keyboardDBusProxy->currentLocale();\n}\n\nvoid KeyboardWorker::onShortcutChanged(const QString &id, int type)\n{\n    Q_UNUSED(id)\n    Q_UNUSED(type)\n}\n\nvoid KeyboardWorker::onGetShortcutFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<QString> reply = *watch;\n\n    if (m_shortcutModel && !watch->isError())\n        m_shortcutModel->onKeyBindingChanged(reply.value());\n\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::updateKey(ShortcutInfo *info)\n{\n    Q_UNUSED(info)\n}\n\nvoid KeyboardWorker::cleanShortcutSlef(const QString &id, const int type, const QString &shortcut)\n{\n    Q_UNUSED(id)\n    Q_UNUSED(type)\n    Q_UNUSED(shortcut)\n}\n\nvoid KeyboardWorker::setNewCustomShortcut(const QString &id, const QString &name, const QString &command, const QString &accles)\n{\n    Q_UNUSED(id)\n    Q_UNUSED(name)\n    Q_UNUSED(command)\n    Q_UNUSED(accles)\n}\n\nvoid KeyboardWorker::onConflictShortcutCleanFinished(QDBusPendingCallWatcher *watch)\n{\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onShortcutCleanFinished(QDBusPendingCallWatcher *watch)\n{\n    Q_UNUSED(watch)\n}\n\nvoid KeyboardWorker::onCustomConflictCleanFinished(QDBusPendingCallWatcher *w)\n{\n    if (!w->isError()) {\n        const QString &id = w->property(\"id\").toString();\n        const QString name = w->property(\"name\").toString();\n        const QString &command = w->property(\"command\").toString();\n        const QString &accles = w->property(\"shortcut\").toString();\n\n        setNewCustomShortcut(id, name, command, accles);\n    }\n\n    w->deleteLater();\n}\n\nuint KeyboardWorker::converToDBusDelay(uint value)\n{\n    switch (value) {\n    case 1:\n        return 20;\n    case 2:\n        return 80;\n    case 3:\n        return 150;\n    case 4:\n        return 250;\n    case 5:\n        return 360;\n    case 6:\n        return 480;\n    case 7:\n        return 600;\n    default:\n        return 4;\n    }\n}\n\nuint KeyboardWorker::converToModelDelay(uint value)\n{\n    if (value <= 20)\n        return 1;\n    else if (value <= 80)\n        return 2;\n    else if (value <= 150)\n        return 3;\n    else if (value <= 250)\n        return 4;\n    else if (value <= 360)\n        return 5;\n    else if (value <= 480)\n        return 6;\n    else\n        return 7;\n}\n\nint KeyboardWorker::converToDBusInterval(int value)\n{\n    switch (value) {\n    case 1:\n        return 100;\n    case 2:\n        return 80;\n    case 3:\n        return 65;\n    case 4:\n        return 50;\n    case 5:\n        return 35;\n    case 6:\n        return 25;\n    case 7:\n        return 20;\n    default:\n        return 4;\n    }\n}\n\nuint KeyboardWorker::converToModelInterval(uint value)\n{\n    if (value <= 20)\n        return 7;\n    else if (value <= 25)\n        return 6;\n    else if (value <= 35)\n        return 5;\n    else if (value <= 50)\n        return 4;\n    else if (value <= 65)\n        return 3;\n    else if (value <= 80)\n        return 2;\n    else\n        return 1;\n}\n\nvoid KeyboardWorker::setLayout(const QString &value)\n{\n    Q_UNUSED(value)\n}\n\nvoid KeyboardWorker::setLang(const QString &value)\n{\n    Q_EMIT requestSetAutoHide(false);\n\n    QDBusPendingCall call = m_keyboardDBusProxy->SetLocale(value);\n    qDebug() << \"setLang is \" << value;\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            qDebug() << \"setLang error: \" << call.error().type();\n            m_model->setLang(m_keyboardDBusProxy->currentLocale());\n        }\n\n        qDebug() << \"setLang success\";\n        Q_EMIT requestSetAutoHide(true);\n        watcher->deleteLater();\n    });\n}\n\nvoid KeyboardWorker::addLang(const QString &value)\n{\n    Q_EMIT requestSetAutoHide(false);\n\n    QDBusPendingCall call = m_keyboardDBusProxy->AddLocale(value);\n\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            qDebug() << \"add Locale language error: \" << call.error().type();\n        }\n\n        Q_EMIT requestSetAutoHide(true);\n        watcher->deleteLater();\n    });\n}\n\nvoid KeyboardWorker::deleteLang(const QString &value)\n{\n    Q_EMIT requestSetAutoHide(false);\n\n    QString lang = m_model->langFromText(value);\n    QDBusPendingCall call = m_keyboardDBusProxy->DeleteLocale(lang);\n\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            qDebug() << \"delete Locale language error: \" << call.error().type();\n        }\n\n        Q_EMIT requestSetAutoHide(true);\n        watcher->deleteLater();\n    });\n}\n"
  },
  {
    "path": "src/plugin-datetime/operation/keyboard/keyboardwork.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n\n#ifndef KEYBOARDWORK_H\n#define KEYBOARDWORK_H\n\n#include \"metadata.h\"\n#include \"shortcutmodel.h\"\n#include \"keyboardmodel.h\"\n#include \"keyboarddbusproxy.h\"\n\n#include <QObject>\n\nclass QDBusPendingCallWatcher;\nclass QTranslator;\n\nnamespace dccV25 {\nclass KeyboardWorker : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit KeyboardWorker(KeyboardModel* model, QObject *parent = nullptr);\n    enum Modifier {\n        control = 1,\n        super = 2,\n        alt = 4,\n        shift = 8\n    };\n\n    void resetAll();\n\n    void setShortcutModel(ShortcutModel * model);\n    void refreshShortcut();\n    void refreshLang();\n    void windowSwitch();\n\n    inline QList<MetaData> getDatas() {return m_metaDatas;}\n    inline QList<QString> getLetters() {return m_letters;}\n\n    void modifyShortcutEditAux(ShortcutInfo* info, bool isKPDelete = false);\n    void modifyShortcutEdit(ShortcutInfo* info);\n    void addCustomShortcut(const QString& name, const QString& command, const QString& accels);\n    void modifyCustomShortcut(ShortcutInfo *info);\n\n    void grabScreen();\n    bool checkAvaliable(const QString& key);\n    void delShortcut(ShortcutInfo *info);\n\n    void setRepeatDelay(uint value);\n    void setRepeatInterval(uint value);\n    void setModelRepeatDelay(uint value);\n    void setModelRepeatInterval(uint value);\n\n    void setNumLock(bool value);\n    void setCapsLock(bool value);\n    void deactive();\n    bool keyOccupy(const QStringList &list);\n    void onRefreshKBLayout();\n\nQ_SIGNALS:\n    void KeyEvent(bool in0, const QString &in1);\n    void searchChangd(ShortcutInfo* info, const QString& key);\n    void removed(const QString &id, int type);\n    void requestSetAutoHide(const bool visible);\n    void onDatasChanged(QList<MetaData> datas);\n    void onLettersChanged(QList<QString> letters);\n    // 快捷键恢复默认完成\n    void onResetFinished();\n\npublic Q_SLOTS:\n    void active();\n    void setLang(const QString &value);\n    void addLang(const QString &value);\n    void deleteLang(const QString& value);\n    void setLayout(const QString& value);\n    void addUserLayout(const QString& value);\n    void delUserLayout(const QString& value);\n    void onRequestShortcut(QDBusPendingCallWatcher* watch);\n    void onAdded(const QString&in0, int in1);\n    void onDisableShortcut(ShortcutInfo* info);\n    void onAddedFinished(QDBusPendingCallWatcher *watch);\n    void onLocalListsFinished(QDBusPendingCallWatcher *watch);\n    void onGetWindowWM(bool value);\n    void onLayoutListsFinished(QDBusPendingCallWatcher *watch);\n    void onUserLayout(const QStringList &list);\n    void onUserLayoutFinished(QDBusPendingCallWatcher *watch);\n    void onCurrentLayout(const QString &value);\n    void onCurrentLayoutFinished(QDBusPendingCallWatcher *watch);\n    void onPinyin();\n    void onSearchShortcuts(const QString &searchKey);\n    void onSearchFinished(QDBusPendingCallWatcher *watch);\n    void append(const MetaData& md);\n    void onLangSelectorServiceFinished();\n    void onShortcutChanged(const QString &id, int type);\n    void onGetShortcutFinished(QDBusPendingCallWatcher *watch);\n    void updateKey(ShortcutInfo *info);\n    void cleanShortcutSlef(const QString &id, const int type, const QString &shortcut);\n    void setNewCustomShortcut(const QString &id, const QString &name, const QString &command, const QString &accles);\n    void onConflictShortcutCleanFinished(QDBusPendingCallWatcher *watch);\n    void onShortcutCleanFinished(QDBusPendingCallWatcher *watch);\n    void onCustomConflictCleanFinished(QDBusPendingCallWatcher *w);\n\nprivate:\n    uint converToDBusDelay(uint value);\n    uint converToModelDelay(uint value);\n    int converToDBusInterval(int value);\n    uint converToModelInterval(uint value);\n\nprivate:\n    QList<MetaData> m_datas;\n    QList<MetaData> m_metaDatas;\n    QList<QString> m_letters;\n    int m_delayValue;\n    int m_speedValue;\n    KeyboardModel* m_model;\n    KeyboardDBusProxy *m_keyboardDBusProxy;\n    ShortcutModel *m_shortcutModel = nullptr;\n    QTranslator *m_translatorLanguage;\n};\n}\n#endif // KEYBOARDWORK_H\n"
  },
  {
    "path": "src/plugin-datetime/operation/keyboard/metadata.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"metadata.h\"\n#include <QDebug>\n\nusing namespace dccV25;\n\nMetaData::MetaData(const QString &text, bool section)\n    : m_text(text)\n    , m_pinyin(QString())\n    , m_section(section)\n    , m_selected(false)\n{\n\n}\n\nvoid MetaData::setPinyin(const QString &py)\n{\n    m_pinyin = py;\n}\n\nQString MetaData::pinyin() const\n{\n    return m_pinyin == QString() ? m_text : m_pinyin;\n}\n\nvoid MetaData::setText(const QString &text)\n{\n    m_text = text;\n}\n\nQString MetaData::text() const\n{\n    return m_text;\n}\n\nvoid MetaData::setKey(const QString &key)\n{\n    m_key = key;\n}\n\nQString MetaData::key() const\n{\n    return m_key;\n}\n\nvoid MetaData::setSection(bool section)\n{\n    m_section = section;\n}\n\nbool MetaData::section() const\n{\n    return m_section;\n}\n\nvoid MetaData::setSelected(bool selected)\n{\n    m_selected = selected;\n}\n\nbool MetaData::selected() const\n{\n    return m_selected;\n}\n\nbool MetaData::operator ==(const MetaData &md) const\n{\n    return m_text == md.m_text;\n}\n\nbool MetaData::operator >(const MetaData &md) const\n{\n    int x = QString::compare(m_pinyin, md.m_pinyin, Qt::CaseInsensitive);\n    return x > 0;\n}\n"
  },
  {
    "path": "src/plugin-datetime/operation/keyboard/metadata.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QObject>\n\nnamespace dccV25 {\n\nclass MetaData\n{\npublic:\n    MetaData(const QString &text = QString(), bool section = false);\n\n    void setPinyin(const QString &py);\n    QString pinyin() const;\n\n    void setText(const QString &text);\n    QString text() const;\n\n    void setKey(const QString &key);\n    QString key() const;\n\n    void setSection(bool section);\n    bool section() const;\n\n    void setSelected(bool selected);\n    bool selected() const;\n\n    bool operator ==(const MetaData &md) const;\n    bool operator >(const MetaData &md) const;\nprivate:\n    QString m_key;\n    QString m_text;\n    QString m_pinyin;\n    bool m_section;\n    bool m_selected;\n};\n\n}\nQ_DECLARE_METATYPE(dccV25::MetaData)\n"
  },
  {
    "path": "src/plugin-datetime/operation/keyboard/qrc/keyboard.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_keyboard_42px.svg</file>\n        <file>icons/dcc_nav_keyboard_84px.svg</file>\n    </qresource>\n    <qresource prefix=\"/action\">\n\t <file>icons/list_select@2x.png</file>\n\t <file>icons/list_select.png</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-datetime/operation/keyboard/shortcutmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"shortcutmodel.h\"\n\n#include <DSysInfo>\n#include <QDBusInterface>\n#include <QDebug>\n#include <QJsonArray>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QJsonValue>\n#include <QThreadPool>\n#include <QGuiApplication>\n\nQStringList systemFilter = {\"terminal\",\n                            \"terminalQuake\",\n                            \"globalSearch\",\n                            \"screenshot\",\n                            \"screenshotDelayed\",\n                            \"screenshotFullscreen\",\n                            \"screenshotWindow\",\n                            \"screenshotScroll\",\n                            \"screenshotOcr\",\n                            \"deepinScreenRecorder\",\n                            \"switchGroup\",\n                            \"switchGroupBackward\",\n                            \"previewWorkspace\",\n                            \"launcher\",\n                            \"switchApplications\",\n                            \"switchApplicationsBackward\",\n                            \"showDesktop\",\n                            \"fileManager\",\n                            \"lockScreen\",\n                            \"logout\",\n                            \"wmSwitcher\",\n                            \"systemMonitor\",\n                            \"colorPicker\",\n                            \"clipboard\",\n                            \"switchMonitors\"\n};\n\nconst QStringList &windowFilter = {\"maximize\",\n                                    \"unmaximize\",\n                                    \"minimize\",\n                                    \"beginMove\",\n                                    \"beginResize\",\n                                    \"close\",\n                                    \"toggleToLeft\",\n                                    \"toggleToRight\"\n};\n\nconst QStringList &workspaceFilter = {\"switchToWorkspaceLeft\",\n                                        \"switchToWorkspaceRight\",\n                                        \"moveToWorkspaceLeft\",\n                                        \"moveToWorkspaceRight\"};\n\nconst QStringList &assistiveToolsFilter = {\"textToSpeech\",\n                                        \"speechToText\",\n                                        \"translation\",\n                                            \"viewZoomIn\",\n                                            \"viewZoomOut\",\n                                            \"viewActualSize\"};\n\nusing namespace dccV25;\nDCORE_USE_NAMESPACE\nShortcutModel::ShortcutModel(QObject *parent)\n    : QObject(parent)\n    , m_windowSwitchState(false)\n{\n    if (qApp->screens().count() > 1) {\n        systemFilter.append(\"switch-monitors\");\n    }\n}\n\nShortcutModel::~ShortcutModel()\n{\n    qDeleteAll(m_infos);\n\n    m_infos.clear();\n    m_systemInfos.clear();\n    m_windowInfos.clear();\n    m_workspaceInfos.clear();\n    m_customInfos.clear();\n    qDeleteAll(m_searchList);\n    m_searchList.clear();\n}\n\nQList<ShortcutInfo *> ShortcutModel::systemInfo() const\n{\n    return m_systemInfos;\n}\n\nQList<ShortcutInfo *> ShortcutModel::windowInfo() const\n{\n    return m_windowInfos;\n}\n\nQList<ShortcutInfo *> ShortcutModel::workspaceInfo() const\n{\n    return m_workspaceInfos;\n}\n\nQList<ShortcutInfo *> ShortcutModel::assistiveToolsInfo() const\n{\n    return m_assistiveToolsInfos;\n}\n\nQList<ShortcutInfo *> ShortcutModel::customInfo() const\n{\n    return m_customInfos;\n}\n\nQList<ShortcutInfo *> ShortcutModel::infos() const\n{\n    return m_infos;\n}\n\nvoid ShortcutModel::delInfo(ShortcutInfo *info)\n{\n    if (m_infos.contains(info)) {\n        m_infos.removeOne(info);\n    }\n    if (m_customInfos.contains(info)) {\n        m_customInfos.removeOne(info);\n    }\n\n    delete info;\n    info = nullptr;\n}\n\nvoid ShortcutModel::onParseInfo(const QString &info)\n{\n    QStringList systemShortKeys;\n    if (DSysInfo::UosServer == DSysInfo::uosType()) {\n        QStringList systemFilterServer = systemFilter;\n        systemFilterServer.removeOne(\"wm-switcher\");\n        systemFilterServer.removeOne(\"preview-workspace\");\n        systemShortKeys = systemFilterServer;\n    } else if (false == m_windowSwitchState) {\n        QStringList systemFilterServer = systemFilter;\n        systemFilterServer.removeOne(\"preview-workspace\");\n        systemShortKeys = systemFilterServer;\n    } else {\n        systemShortKeys = systemFilter;\n    }\n#ifdef DISABLE_SCREEN_RECORDING\n    QStringList systemFilterServer = systemShortKeys;\n    systemFilterServer.removeOne(\"deepin-screen-recorder\");\n    systemShortKeys = systemFilterServer;\n#endif\n    qDeleteAll(m_infos);\n\n    m_infos.clear();\n    m_systemInfos.clear();\n    m_windowInfos.clear();\n    m_workspaceInfos.clear();\n    m_assistiveToolsInfos.clear();\n    m_customInfos.clear();\n\n    QJsonArray array = QJsonDocument::fromJson(info.toStdString().c_str()).array();\n\n    Q_FOREACH (QJsonValue value, array) {\n        QJsonObject obj  = value.toObject();\n        int         type = obj[\"Type\"].toInt();\n\n        ShortcutInfo *info = new ShortcutInfo();\n        info->type         = type;\n        info->accels       = obj[\"Accels\"].toArray().first().toString();\n        info->name    = obj[\"Name\"].toString();\n        info->id      = obj[\"Id\"].toString();\n        info->command = obj[\"Exec\"].toString();\n\n        m_infos << info;\n\n        if (type != MEDIAKEY) {\n            if (systemShortKeys.contains(info->id)) {\n                m_systemInfos << info;\n                continue;\n            }\n            if (windowFilter.contains(info->id)) {\n                m_windowInfos << info;\n                continue;\n            }\n            if (workspaceFilter.contains(info->id)) {\n                m_workspaceInfos << info;\n                continue;\n            }\n            if (assistiveToolsFilter.contains(info->id)) {\n                m_assistiveToolsInfos << info;\n                continue;\n            }\n            if (type == 1) {\n                m_customInfos << info;\n            }\n        }\n    }\n\n    std::sort(m_systemInfos.begin(), m_systemInfos.end(), [ = ](ShortcutInfo *s1, ShortcutInfo *s2) {\n        return systemShortKeys.indexOf(s1->id) < systemShortKeys.indexOf(s2->id);\n    });\n\n    std::sort(m_windowInfos.begin(), m_windowInfos.end(), [ = ](ShortcutInfo *s1, ShortcutInfo *s2) {\n        return windowFilter.indexOf(s1->id) < windowFilter.indexOf(s2->id);\n    });\n\n    std::sort(m_workspaceInfos.begin(), m_workspaceInfos.end(), [ = ](ShortcutInfo *s1, ShortcutInfo *s2) {\n        return workspaceFilter.indexOf(s1->id) < workspaceFilter.indexOf(s2->id);\n    });\n\n    std::sort(m_assistiveToolsInfos.begin(), m_assistiveToolsInfos.end(), [ = ](ShortcutInfo *s1, ShortcutInfo *s2) {\n        return assistiveToolsFilter.indexOf(s1->id) < assistiveToolsFilter.indexOf(s2->id);\n    });\n\n    Q_EMIT listChanged(m_systemInfos, InfoType::System);\n    Q_EMIT listChanged(m_windowInfos, InfoType::Window);\n    Q_EMIT listChanged(m_workspaceInfos, InfoType::Workspace);\n    Q_EMIT listChanged(m_assistiveToolsInfos, InfoType::AssistiveTools);\n    Q_EMIT listChanged(m_customInfos, InfoType::Custom);\n}\n\nvoid ShortcutModel::onCustomInfo(const QString &json)\n{\n    QJsonObject   obj  = QJsonDocument::fromJson(json.toStdString().c_str()).object();\n    ShortcutInfo *info = new ShortcutInfo();\n    info->type         = obj[\"Type\"].toInt();\n    QString accels     = obj[\"Accels\"].toArray().at(0).toString();\n\n    info->accels = accels;\n\n    info->name    = obj[\"Name\"].toString();\n    info->id      = obj[\"Id\"].toString();\n    info->command = obj[\"Exec\"].toString();\n    m_infos.append(info);\n    m_customInfos.append(info);\n    Q_EMIT addCustomInfo(info);\n}\n\nvoid ShortcutModel::onKeyBindingChanged(const QString &value)\n{\n    const QJsonObject &obj       = QJsonDocument::fromJson(value.toStdString().c_str()).object();\n    const QString     &update_id = obj[\"Id\"].toString();\n    auto res = std::find_if(m_infos.begin(), m_infos.end(), [ = ] (const ShortcutInfo *info)->bool{\n        return info->id == update_id;\n    });\n\n    if (res != m_infos.end()) {\n        (*res)->type = obj[\"Type\"].toInt();\n        (*res)->accels  = obj[\"Accels\"].toArray().first().toString();\n        (*res)->name    = obj[\"Name\"].toString();\n        (*res)->command = obj[\"Exec\"].toString();\n\n        Q_EMIT shortcutChanged((*res));\n    }\n}\n\nvoid ShortcutModel::onWindowSwitchChanged(bool value)\n{\n    if (m_windowSwitchState != value) {\n        m_windowSwitchState = value;\n    }\n}\n\n bool ShortcutModel::getWindowSwitch()\n {\n     return m_windowSwitchState;\n }\n\nShortcutInfo *ShortcutModel::currentInfo() const\n{\n    return m_currentInfo;\n}\n\nvoid ShortcutModel::setCurrentInfo(ShortcutInfo *currentInfo)\n{\n    m_currentInfo = currentInfo;\n}\n\nShortcutInfo *ShortcutModel::getInfo(const QString &shortcut)\n{\n    auto res = std::find_if(m_infos.begin(), m_infos.end(), [ = ] (const ShortcutInfo *info)->bool{\n        return !QString::compare(info->accels, shortcut, Qt::CaseInsensitive); //判断是否相等，相等则返回0\n    });\n\n    if (res != m_infos.end()) {\n        return *res;\n    }\n\n    return nullptr;\n}\n\nvoid ShortcutModel::setSearchResult(const QString &searchResult)\n{\n    qDeleteAll(m_searchList);\n    m_searchList.clear();\n\n    QList<ShortcutInfo *> systemInfoList;\n    QList<ShortcutInfo *> windowInfoList;\n    QList<ShortcutInfo *> workspaceInfoList;\n    QList<ShortcutInfo *> customInfoList;\n    QList<ShortcutInfo *> speechInfoList;\n\n    QJsonArray array = QJsonDocument::fromJson(searchResult.toStdString().c_str()).array();\n    for (auto value : array) {\n        QJsonObject obj  = value.toObject();\n        int         type = obj[\"Type\"].toInt();\n        ShortcutInfo *info = new ShortcutInfo();\n        info->type         = type;\n        info->accels       = obj[\"Accels\"].toArray().first().toString();\n        info->name    = obj[\"Name\"].toString();\n        info->id      = obj[\"Id\"].toString();\n        info->command = obj[\"Exec\"].toString();\n\n        if (type != MEDIAKEY) {\n            if (systemFilter.contains(info->id)) {\n                systemInfoList << info;\n                continue;\n            }\n            if (windowFilter.contains(info->id)) {\n                windowInfoList << info;\n                continue;\n            }\n            if (workspaceFilter.contains(info->id)) {\n                workspaceInfoList << info;\n                continue;\n            }\n            if (assistiveToolsFilter.contains(info->id)) {\n                speechInfoList << info;\n                continue;\n            }\n\n            if (type == 1) {\n                customInfoList << info;\n            }else{\n                delete info;\n                info = nullptr;\n            }\n\n        } else {\n            qDebug() << \"not search is:\" << info->name;\n            delete info;\n            info = nullptr;\n        }\n    }\n\n    std::sort(systemInfoList.begin(), systemInfoList.end(), [ = ](ShortcutInfo *s1, ShortcutInfo *s2) {\n        return systemFilter.indexOf(s1->id) < systemFilter.indexOf(s2->id);\n    });\n    std::sort(windowInfoList.begin(), windowInfoList.end(), [ = ](ShortcutInfo *s1, ShortcutInfo *s2) {\n        return windowFilter.indexOf(s1->id) < windowFilter.indexOf(s2->id);\n    });\n    std::sort(workspaceInfoList.begin(), workspaceInfoList.end(), [ = ](ShortcutInfo *s1, ShortcutInfo *s2) {\n        return workspaceFilter.indexOf(s1->id) < workspaceFilter.indexOf(s2->id);\n    });\n    m_searchList.append(systemInfoList);\n    m_searchList.append(windowInfoList);\n    m_searchList.append(workspaceInfoList);\n    m_searchList.append(speechInfoList);\n    m_searchList.append(customInfoList);\n    int i = 0;\n    for (auto search : m_searchList) {\n        qDebug() << \"search\" << ++i << \" is: \" << search->name;\n    }\n\n    Q_EMIT searchFinished(m_searchList);\n}\n"
  },
  {
    "path": "src/plugin-datetime/operation/keyboard/shortcutmodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef SHORTCUTMODEL_H\n#define SHORTCUTMODEL_H\n\n#define MEDIAKEY 2\n\n#include <QObject>\n\nnamespace dccV25 {\n\nclass ShortcutItem;\nstruct ShortcutInfo\n{\n    QString accels;\n    QString id;\n    QString name;\n    QString command;\n    int type;\n    ShortcutInfo *replace = nullptr;\n    ShortcutItem *item = nullptr;\n\n    ShortcutInfo()\n        : type(0)\n        , replace(nullptr)\n        , item(nullptr)\n    {\n    }\n    bool operator==(const ShortcutInfo &info) const\n    {\n        return id == info.id && type == info.type;\n    }\n\n    QString toString()\n    {\n        return name + accels + command + id + QString::number(type);\n    }\n};\n\ntypedef QList<ShortcutInfo> ShortcutInfoList;\n\nclass ShortcutModel : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit ShortcutModel(QObject *parent = nullptr);\n    ~ShortcutModel();\n    enum InfoType {\n        System,\n        Custom,\n        Media,\n        Window,\n        Workspace,\n        AssistiveTools,\n    };\n\n    QList<ShortcutInfo *> systemInfo() const;\n    QList<ShortcutInfo *> windowInfo() const;\n    QList<ShortcutInfo *> workspaceInfo() const;\n    QList<ShortcutInfo *> assistiveToolsInfo() const;\n    QList<ShortcutInfo *> customInfo() const;\n    QList<ShortcutInfo *> infos() const;\n\n    void delInfo(ShortcutInfo *info);\n\n    ShortcutInfo *currentInfo() const;\n    void setCurrentInfo(ShortcutInfo *currentInfo);\n\n    ShortcutInfo *getInfo(const QString &shortcut);\n    void setSearchResult(const QString &searchResult);\n    bool getWindowSwitch();\nQ_SIGNALS:\n    void listChanged(QList<ShortcutInfo *>, InfoType);\n    void addCustomInfo(ShortcutInfo *info);\n    void shortcutChanged(ShortcutInfo *info);\n    void keyEvent(bool press, const QString &shortcut);\n    void searchFinished(const QList<ShortcutInfo *> searchResult);\n    void windowSwitchChanged(bool value);\n\npublic Q_SLOTS:\n    void onParseInfo(const QString &info);\n    void onCustomInfo(const QString &json);\n    void onKeyBindingChanged(const QString &value);\n    void onWindowSwitchChanged(bool value);\n\nprivate:\n    QString m_info;\n    QList<ShortcutInfo *> m_infos;\n    QList<ShortcutInfo *> m_systemInfos;\n    QList<ShortcutInfo *> m_windowInfos;\n    QList<ShortcutInfo *> m_workspaceInfos;\n    QList<ShortcutInfo *> m_assistiveToolsInfos;\n    QList<ShortcutInfo *> m_customInfos;\n    QList<ShortcutInfo *> m_searchList;\n    ShortcutInfo *m_currentInfo = nullptr;\n    bool m_windowSwitchState;\n    //dcc::display::DisplayModel m_dis;\n};\n\n}\n#endif // SHORTCUTMODEL_H\n"
  },
  {
    "path": "src/plugin-datetime/operation/langregionmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"datetimemodel.h\"\n#include \"langregionmodel.h\"\n\nnamespace dccV25 {\nLangRegionModel::LangRegionModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n}\n\nint LangRegionModel::rowCount(const QModelIndex &) const\n{\n    DatetimeModel *sourceMode = dynamic_cast<DatetimeModel *>(parent());\n    if (!sourceMode)\n        return 0;\n\n    return sourceMode->regions().size();\n}\n\nQVariant LangRegionModel::data(const QModelIndex &index, int role) const\n{\n    DatetimeModel *sourceMode = dynamic_cast<DatetimeModel *>(parent());\n    if (!sourceMode)\n        QVariant();\n\n    static QStringList datas;\n    const auto& regions = sourceMode->regions();\n    if (datas.size() != regions.size()) {\n        datas = sourceMode->languagesAndRegions();\n    }\n\n    QString key = regions.keys().value(index.row());\n    QLocale locale = regions.value(key);\n    RegionFormat regionFormat = RegionProxy::regionFormat(locale);\n\n    const QDate CurrentDate(2024, 1, 1);\n    const QTime CurrentTime(1, 1, 1);\n\n    // maybe we should add to PinYinRole to sort Chinese words\n    switch (role) {\n    case Qt::DisplayRole:\n        return datas.value(index.row());\n    case SearchTextRole:\n        return datas.value(index.row()) + key;\n    case RegionKeyIdRole:\n        return key;\n    case LocaleKeyIdRole:\n        return locale.name();\n    case FirstDayOfWeek:\n        return locale.standaloneDayName(regionFormat.firstDayOfWeekFormat);\n    case ShortDate:\n        return locale.toString(CurrentDate, regionFormat.shortDateFormat);\n    case LongDate:\n        return locale.toString(CurrentDate, regionFormat.longDateFormat);\n    case ShortTime:\n        return locale.toString(CurrentTime, regionFormat.shortTimeFormat);\n    case LongTime:\n        return locale.toString(CurrentTime, regionFormat.longTimeFormat);\n    case Currency:\n        return regionFormat.currencyFormat.toUtf8();\n    case Digit:\n        return regionFormat.numberFormat.toUtf8();\n    case PaperSize:\n        return regionFormat.paperFormat.toUtf8();\n    default:\n        break;\n    }\n\n    return QVariant();\n}\n\nQHash<int, QByteArray> LangRegionModel::roleNames() const\n{\n    QHash<int, QByteArray> names = QAbstractListModel::roleNames();\n    names[SearchTextRole] = \"searchText\";\n    names[RegionKeyIdRole] = \"langKey\";\n    names[LocaleKeyIdRole] = \"localeKey\";\n    names[FirstDayOfWeek] = \"firstDay\";\n    names[ShortDate] = \"shortDate\";\n    names[LongDate] = \"longDate\";\n    names[ShortTime] = \"shortTime\";\n    names[LongTime] = \"longTime\";\n    names[Currency] = \"currency\";\n    names[Digit] = \"digit\";\n    names[PaperSize] = \"paperSize\";\n    return names;\n}\n\nFormatsModel::FormatsModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n\n}\n\nvoid FormatsModel::setDatas(const QList<FormatsInfo> &datas) {\n    if (datas == m_datas)\n        return;\n\n    beginResetModel();\n    m_datas = datas;\n    endResetModel();\n}\n\nint FormatsModel::rowCount(const QModelIndex &) const\n{\n    return m_datas.count();\n}\n\nQVariant FormatsModel::data(const QModelIndex &index, int role) const\n{\n    const auto &info = m_datas.value(index.row());\n    switch (role) {\n    case NameRole:\n        return info.name;\n    case ValuesRole:\n        return info.values;\n    case CurrentRole:\n        return info.index;\n    case IndexBegin:\n        return info.indexBegin;\n    default:\n        break;\n    }\n\n    return QVariant();\n}\n\nQHash<int, QByteArray> FormatsModel::roleNames() const\n{\n    QHash<int, QByteArray> names = QAbstractListModel::roleNames();\n    names[NameRole] = \"name\";\n    names[ValuesRole] = \"values\";\n    names[CurrentRole] = \"current\";\n    names[IndexBegin] = \"indexBegin\";\n    return names;\n}\n\n}\n"
  },
  {
    "path": "src/plugin-datetime/operation/langregionmodel.h",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef LANGREGIONMODEL_H\n#define LANGREGIONMODEL_H\n\n#include <QAbstractListModel>\n#include <QObject>\n\nnamespace dccV25 {\nclass LangRegionModel : public QAbstractListModel\n{\npublic:\n    explicit LangRegionModel(QObject *parent = nullptr);\n\n    enum LangItemRole {\n        SearchTextRole = Qt::UserRole + 1,\n        RegionKeyIdRole,\n        LocaleKeyIdRole,\n        FirstDayOfWeek,\n        ShortDate,\n        LongDate,\n        ShortTime,\n        LongTime,\n        Currency,\n        Digit,\n        PaperSize\n    };\n\n    // QAbstractItemModel interface\npublic:\n    int rowCount(const QModelIndex &parent) const;\n    QVariant data(const QModelIndex &index, int role) const;\n    QHash<int, QByteArray> roleNames() const;\n};\n\nstruct FormatsInfo\n{\n    QString name;\n    QStringList values;\n    int index = -1;\n    int indexBegin = -1;\n    bool operator ==(const FormatsInfo &info) const {\n        return info.name == name && info.values == values &&\n                info.index == index && info.indexBegin == indexBegin;\n    }\n};\n\nclass FormatsModel : public QAbstractListModel {\npublic:\n    enum FormatsRole {\n        NameRole = Qt::UserRole + 1,\n        ValuesRole,\n        CurrentRole,\n        IndexBegin,\n    };\n\n    explicit FormatsModel(QObject *parent = nullptr);\n    void setDatas(const QList<FormatsInfo> &datas);\npublic:\n    int rowCount(const QModelIndex &parent) const;\n    QVariant data(const QModelIndex &index, int role) const;\n    QHash<int, QByteArray> roleNames() const;\n\nprivate:\n    QList<FormatsInfo> m_datas;\n};\n\n}\n#endif // LANGREGIONMODEL_H\n"
  },
  {
    "path": "src/plugin-datetime/operation/languagelistmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"languagelistmodel.h\"\n#include \"keyboard/metadata.h\"\n\nnamespace dccV25 {\nLanguageListModel::LanguageListModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n\n}\n\nLanguageListModel::~LanguageListModel()\n{\n\n}\n\nint LanguageListModel::rowCount(const QModelIndex &parent) const\n{\n    Q_UNUSED(parent)\n    return m_datas.count();\n}\n\nQVariant LanguageListModel::data(const QModelIndex &index, int role) const\n{\n    if (!index.isValid() || index.row() >= m_datas.size())\n        return QVariant();\n\n    const auto &data = m_datas.value(index.row());\n\n    switch (role) {\n    case Qt::DisplayRole:\n        return data.text();\n    case SearchTextRole:\n        return data.text() + data.pinyin() + data.key();\n    case LangKeyIdRole:\n        return data.key();\n    default:\n        break;\n    }\n\n    return QVariant();\n}\n\nQHash<int, QByteArray> LanguageListModel::roleNames() const\n{\n    QHash<int, QByteArray> names = QAbstractListModel::roleNames();\n    names[SearchTextRole] = \"searchText\";\n    names[LangKeyIdRole] = \"key\";\n    return names;\n}\n\nvoid LanguageListModel::removeLocalLangs()\n{\n    for (QList<dccV25::MetaData>::iterator iter = m_datas.begin(); iter != m_datas.end();) {\n        if (m_localLangs.contains(iter->text())) {\n            iter = m_datas.erase(iter);\n            continue;\n        }\n        ++iter;\n    }\n}\n\nvoid LanguageListModel::setMetaData(const QList<dccV25::MetaData> &data)\n{\n    if (m_datas != data) {\n        beginResetModel();\n        m_originalDatas = data;\n        m_datas = data;\n        removeLocalLangs();\n        endResetModel();\n    }\n}\n\nvoid LanguageListModel::setLocalLang(const QStringList &langs)\n{\n    if (m_localLangs != langs) {\n        beginResetModel();\n        m_localLangs = langs;\n        m_datas = m_originalDatas;\n        removeLocalLangs();\n        endResetModel();\n    }\n}\n}\n"
  },
  {
    "path": "src/plugin-datetime/operation/languagelistmodel.h",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef LANGUAGELISTMODEL_H\n#define LANGUAGELISTMODEL_H\n\n#include <QAbstractListModel>\n#include <QObject>\nnamespace dccV25 {\nclass MetaData;\nclass LanguageListModel : public QAbstractListModel\n{\npublic:\n    explicit LanguageListModel(QObject *parent = nullptr);\n    virtual ~LanguageListModel();\n\n    enum LangItemRole {\n        SearchTextRole = Qt::UserRole + 1,\n        LangKeyIdRole\n    };\n\npublic:\n    int rowCount(const QModelIndex &parent) const;\n    QVariant data(const QModelIndex &index, int role) const;\n    QHash<int, QByteArray> roleNames() const;\n\n    void setMetaData(const QList<dccV25::MetaData> &data);\n    void setLocalLang(const QStringList &langs);\n\nprotected:\n    void removeLocalLangs();\n\nprivate:\n    QList<dccV25::MetaData> m_datas;\n    QList<dccV25::MetaData> m_originalDatas;\n    QStringList m_localLangs;\n};\n}\n\n#endif // LANGUAGELISTMODEL_H\n"
  },
  {
    "path": "src/plugin-datetime/operation/qrc/datetime.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_datetime_42px.svg</file>\n        <file>icons/dcc_nav_datetime_84px.svg</file>\n        <file>texts/dcc_clock_white_16px.svg</file>\n        <file>texts/dcc_noun_minute_16px.svg</file>\n        <file>texts/dcc_noun_hour_16px.svg</file>\n        <file>texts/dcc_clock_black_16px.svg</file>\n        <file>texts/dcc_noun_second_16px.svg</file>\n        <file alias=\"icons/indicator_active_12px.png\">images/indicator_active.png</file>\n        <file>images/timezone_map_big2.png</file>\n        <file>images/timezone_map_big.png</file>\n        <file alias=\"icons/dcc_timezone_map_978px.svg\">images/timezone_map_big@1x.svg</file>\n        <file>images/timezone_map_big@2x.png</file>\n        <file>images/popup_menu.css</file>\n    </qresource>\n    <qresource prefix=\"/builtin-font\">\n        <file>resource/Outfit-Light.ttf</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-datetime/operation/qrc/images/popup_menu.css",
    "content": "/** Used in class PopupMenu **/\n\nQHeaderView,\nQHeaderView::section,\nQListCornerButton::section {\n  background-color: transparent;\n}\n\nQListView {\n  font-size: 12px;\n  border: none;\n  margin: 4px 0px;\n  padding: 0px;\n  background: transparent;\n\n  /* make the selection span the entire width of the view */\n  show-decoration-selected: 0;\n}\n\nQListView::item {\n  background: transparent;\n  height: 24px;\n  padding: 0px;\n  margin: 0px;\n  outline: none;\n  border-bottom: 1px solid rgba(0, 0, 0, 0.05);\n}\n"
  },
  {
    "path": "src/plugin-datetime/operation/regionproxy.cpp",
    "content": "// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"regionproxy.h\"\n\n#include <QCoreApplication>\n#include <QTranslator>\n\nstatic const QDate CurrentDate(2024, 1, 1);\nstatic const QTime CurrentTime(1, 1, 1);\n\nclass Format\n{\n    enum Type { Date, Time };\n\npublic:\n    virtual ~Format() = default;\n\n    inline QStringList daysText()\n    {\n        return QStringList() << m_locale.dayName(Qt::Monday) << m_locale.dayName(Qt::Tuesday)\n                             << m_locale.dayName(Qt::Wednesday) << m_locale.dayName(Qt::Thursday)\n                             << m_locale.dayName(Qt::Friday) << m_locale.dayName(Qt::Saturday)\n                             << m_locale.dayName(Qt::Sunday);\n    }\n\n    inline QStringList shortDatesText() { return textFromFormat(Date, shortDateFormats()); }\n\n    inline QStringList longDatesText() { return textFromFormat(Date, longDateFormats()); }\n\n    inline QStringList shortTimesText() { return textFromFormat(Time, shortTimeFormats()); }\n\n    inline QStringList longTimesText() { return textFromFormat(Time, longTimeFormats()); }\n\n    virtual QStringList shortDateFormats() { return QStringList(); }\n\n    virtual QStringList longDateFormats() { return QStringList(); }\n\n    virtual QStringList shortTimeFormats() { return QStringList(); }\n\n    virtual QStringList longTimeFormats() { return QStringList(); }\n\n    void updateState(QDate date, QTime time, QLocale locale)\n    {\n        m_date = date;\n        m_time = time;\n        m_locale = locale;\n    }\n\nprivate:\n    QStringList textFromFormat(Type type, const QStringList &formats)\n    {\n        QStringList text;\n        for (const QString &format : formats)\n            type == Date ? text << m_locale.toString(m_date, format)\n                         : text << m_locale.toString(m_time, format);\n        return text;\n    }\n\nprivate:\n    QDate m_date;\n    QTime m_time;\n\nprotected:\n    QLocale m_locale;\n};\n\nclass DefaultFormat : public Format\n{\npublic:\n    virtual ~DefaultFormat() override { }\n\n    virtual QStringList shortDateFormats() override\n    {\n        return { m_locale.dateFormat(QLocale::ShortFormat) };\n    }\n\n    virtual QStringList longDateFormats() override\n    {\n        return { m_locale.dateFormat(QLocale::LongFormat) };\n    }\n\n    virtual QStringList shortTimeFormats() override\n    {\n        return { m_locale.timeFormat(QLocale::ShortFormat) };\n    }\n\n    virtual QStringList longTimeFormats() override\n    {\n        return { m_locale.timeFormat(QLocale::LongFormat) };\n    }\n};\n\nclass ChineseSimpliedFormat : public Format\n{\npublic:\n    virtual QStringList shortDateFormats() override\n    {\n        return { \"yyyy/M/d\",   \"yyyy-M-d\", \"yyyy.M.d\", \"yyyy/MM/dd\", \"yyyy-MM-dd\",\n                 \"yyyy.MM.dd\", \"yy/M/d\",   \"yy-M-d\",   \"yy.M.d\" };\n    }\n\n    virtual QStringList longDateFormats() override\n    {\n        return { \"yyyy年M月d日\", \"yyyy年M月d日，dddd\", \"yyyy年M月d日 dddd\", \"dddd yyyy年M月d日\" };\n    }\n\n    virtual QStringList shortTimeFormats() override\n    {\n        return { \"H:mm\", \"HH:mm\", \"AP h:mm\", \"AP hh:mm\" };\n    }\n\n    virtual QStringList longTimeFormats() override\n    {\n        return { \"H:mm:ss\", \"HH:mm:ss\", \"AP h:mm:ss\", \"AP hh:mm:ss\" };\n    }\n};\n\nclass UKFormat : public Format\n{\npublic:\n    virtual QStringList shortDateFormats() override\n    {\n        return { \"dd/MM/yyyy\", \"dd/MM/yy\", \"d/M/yy\", \"d.M.yy\", \"yyyy-MM-dd\" };\n    }\n\n    virtual QStringList longDateFormats() override\n    {\n        return { \"dd MMMM yyyy\", \"d MMMM yyyy\", \"dddd,d MMMM yyyy\", \"dddd, dd MMMM yyyy\" };\n    }\n\n    virtual QStringList shortTimeFormats() override\n    {\n        return { \"HH:mm\", \"H:mm\", \"hh:mm AP\", \"h:mm AP\" };\n    }\n\n    virtual QStringList longTimeFormats() override\n    {\n        return { \"HH:mm:ss\", \"H:mm:ss\", \"hh:mm:ss AP\", \"h:mm:ss AP\" };\n    }\n};\n\nclass USAFormat : public Format\n{\npublic:\n    virtual QStringList shortDateFormats() override\n    {\n        return { \"M/d/yyyy\", \"M/d/yy\",     \"MM/dd/yy\", \"MM/dd/yyyy\",\n                 \"yy/MM/dd\", \"yyyy-MM-dd\", \"dd-MMM-yy\" };\n    }\n\n    virtual QStringList longDateFormats() override\n    {\n        return { \"dddd, MMMM d, yyyy\", \"MMMM d, yyyy\", \"dddd, d MMMM, yyyy\", \"d MMMM, yyyy\" };\n    }\n\n    virtual QStringList shortTimeFormats() override\n    {\n        return { \"h:mm Ap\", \"hh:mm Ap\", \"H:mm\", \"HH:mm\" };\n    }\n\n    virtual QStringList longTimeFormats() override\n    {\n        return { \"h:mm:ss AP\", \"hh:mm:ss AP\", \"H:mm:ss\", \"HH:mm:ss\" };\n    }\n};\n\nclass WorldFormat : public Format\n{\npublic:\n    virtual QStringList shortDateFormats() override { return { \"dd/MM/yyyy\", \"d MMM yyyy\" }; }\n\n    virtual QStringList longDateFormats() override\n    {\n        return { \"dddd, d MMMM yyyy\", \"d MMMM yyyy\" };\n    }\n\n    virtual QStringList shortTimeFormats() override { return { \"H:mm AP\", \"HH:mm\" }; }\n\n    virtual QStringList longTimeFormats() override { return { \"H:mm:ss AP\", \"HH:mm:ss\" }; }\n};\n\nRegionAvailableData RegionProxy::m_formatData = RegionAvailableData();\nRegionAvailableData RegionProxy::m_allFormat = RegionAvailableData();\nRegionAvailableData RegionProxy::m_defaultFormat = RegionAvailableData();\nRegionAvailableData RegionProxy::m_customFormat = RegionAvailableData();\n\nRegionProxy::RegionProxy(QObject *parent)\n    : QObject(parent)\n    , m_translatorLanguage(nullptr)\n    , m_translatorCountry(nullptr)\n    , m_isActive(false)\n{\n}\n\n// the locale even has sichuangYi. too many languages\nvoid RegionProxy::active()\n{\n    if (m_isActive) {\n        return;\n    }\n    m_isActive = true;\n    m_translatorLanguage = new QTranslator(this);\n    if (m_translatorLanguage->load(QLocale(), \"datetime_language\",\"_\", TRANSLATE_READ_DIR)) {\n        qApp->installTranslator(m_translatorLanguage);\n    }\n    m_translatorCountry = new QTranslator(this);\n    if (m_translatorCountry->load(QLocale(), \"datetime_country\",\"_\", TRANSLATE_READ_DIR)) {\n        qApp->installTranslator(m_translatorCountry);\n    }\n\n    QList<QLocale> locales =\n            QLocale::matchingLocales(QLocale::AnyLanguage, QLocale::AnyScript, QLocale::AnyCountry);\n    locales.removeOne(QLocale::C);\n    // NOTE: sorry for Sichuang friends\n    locales.removeOne(QLocale::SichuanYi);\n\n    QStringList countries;\n    for (const auto &locale : locales) {\n        QString script = locale.scriptToString(locale.script());\n        QString language = locale.languageToString(locale.language());\n        QString country = locale.territoryToString(locale.territory());\n        // NOTE: sorry for guangdong friends\n        if (locale.language() == QLocale::Cantonese && locale.language() == QLocale::Chinese) {\n            continue;\n        }\n        // NOTE: the region `World` is weird\n        if (locale.territory() == QLocale::Territory::World) {\n            continue;\n        }\n        if ((locale.territory() == QLocale::HongKong || locale.territory() == QLocale::Taiwan)\n            && locale.language() == QLocale::Chinese)\n            language = \"Traditional Chinese\";\n        if (locale.territory() == QLocale::China && locale.language() == QLocale::Chinese)\n            language = \"Simplified Chinese\";\n        QString langCountry = QString(\"%1:%2\").arg(language).arg(country);\n        if (!countries.contains(country)) {\n            countries << country;\n            m_countries << country;\n        }\n        if (!m_regions.contains(langCountry))\n            m_regions.insert(langCountry, locale);\n    }\n}\n\nRegionProxy::~RegionProxy() { }\n\nRegions RegionProxy::regions() const\n{\n    return m_regions;\n}\n\nRegionFormat RegionProxy::systemRegionFormat()\n{\n    return regionFormat(QLocale::system());\n}\n\nQStringList RegionProxy::countries() const\n{\n    return m_countries;\n}\n\nQString RegionProxy::systemCountry() const\n{\n    QString country = QLocale::system().territoryToString(QLocale::system().territory());\n    return country;\n}\n\nQString RegionProxy::langCountry() const\n{\n    QLocale locale = QLocale::system();\n    QString language = locale.languageToString(locale.language());\n    QString country = locale.territoryToString(locale.territory());\n    if ((locale.territory() == QLocale::HongKong || locale.territory() == QLocale::Taiwan)\n        && locale.language() == QLocale::Chinese)\n        language = \"Traditional Chinese\";\n    if (locale.territory() == QLocale::China && locale.language() == QLocale::Chinese)\n        language = \"Simplified Chinese\";\n    QString langCountry = QString(\"%1:%2\").arg(language).arg(country);\n    return langCountry;\n}\n\nstatic inline QString replaceSpace(const QString &space) {\n    QString sp;\n    for (const QChar &c : space) {\n        sp.append(c.isSpace() ? QChar(' ') : c);\n    }\n    return sp;\n}\n\nRegionFormat RegionProxy::regionFormat(const QLocale &locale)\n{\n    RegionFormat regionFormat;\n    regionFormat.firstDayOfWeekFormat = locale.firstDayOfWeek();\n    regionFormat.shortDateFormat = locale.dateFormat(QLocale::ShortFormat);\n    regionFormat.longDateFormat = locale.dateFormat(QLocale::LongFormat);\n    regionFormat.shortTimeFormat = locale.timeFormat(QLocale::ShortFormat);\n    regionFormat.longTimeFormat = locale.timeFormat(QLocale::LongFormat);\n    regionFormat.currencyFormat = locale.currencySymbol(QLocale::CurrencySymbol);\n    // 如果是货币符号空就用 ¥\n    if (regionFormat.currencyFormat.isEmpty())\n        regionFormat.currencyFormat = QString::fromLocal8Bit(\"¥\");\n\n    // 处理数字格式，确保数字使用拉丁数字显示\n    // 通过替换数字字符实现\n    // 同时保留原始的分隔符字符（包括特殊空格字符）\n    QMap<QString, QString> numberMap;\n    for (int i = 1; i < 10; ++i) {\n        QString number = locale.toString(i);\n        numberMap.insert(QString::number(i), number);\n    }\n    QString regionNumberFormat = replaceSpace(locale.toString(123456789));\n    for (auto number : numberMap.keys()) {\n        regionNumberFormat.replace(numberMap.value(number), number);\n    } \n    regionFormat.numberFormat = regionNumberFormat;\n\n    regionFormat.digitgroupFormat = locale.groupSeparator();\n    regionFormat.paperFormat = \"A4\";\n\n    return regionFormat;\n}\n\nRegionAvailableData RegionProxy::allTextData(const QLocale &locale)\n{\n    RegionAvailableData allTextData;\n    allTextData += RegionProxy::defaultTextData(locale);\n    allTextData += RegionProxy::customTextData(locale);\n\n    m_allFormat.clear();\n    m_allFormat += m_defaultFormat;\n    m_allFormat += m_customFormat;\n\n    return allTextData;\n}\n\nRegionAvailableData RegionProxy::allFormat()\n{\n    return m_allFormat;\n}\n\nRegionAvailableData RegionProxy::customTextData(const QLocale &locale)\n{\n    Format *format = nullptr;\n    if (locale.territory() == QLocale::China && locale.script() == QLocale::SimplifiedHanScript) {\n        format = new ChineseSimpliedFormat();\n    } else if (locale.territory() == QLocale::UnitedKingdom\n               && locale.language() == QLocale::English) {\n        format = new UKFormat();\n    } else if (locale.territory() == QLocale::UnitedStates && locale.language() == QLocale::English) {\n        format = new USAFormat();\n    } else if (locale.territory() == QLocale::World && locale.language() == QLocale::English) {\n        format = new WorldFormat();\n    } else {\n        return RegionAvailableData();\n    }\n\n    QScopedPointer<Format> pFormat(format);\n    pFormat->updateState(CurrentDate, CurrentTime, locale);\n\n    RegionAvailableData textData;\n    textData.daysAvailable = pFormat->daysText();\n    textData.shortDatesAvailable = pFormat->shortDatesText();\n    textData.longDatesAvailable = pFormat->longDatesText();\n    textData.shortTimesAvailable = pFormat->shortTimesText();\n    textData.longTimesAvailable = pFormat->longTimesText();\n\n    m_customFormat.daysAvailable = pFormat->daysText(); // TODO format\n    m_customFormat.shortDatesAvailable = pFormat->shortDateFormats();\n    m_customFormat.longDatesAvailable = pFormat->longDateFormats();\n    m_customFormat.shortTimesAvailable = pFormat->shortTimeFormats();\n    m_customFormat.longTimesAvailable = pFormat->longTimeFormats();\n\n    return textData;\n}\n\nRegionAvailableData RegionProxy::defaultTextData(const QLocale &locale)\n{\n    QScopedPointer<Format> defaultFormat(new DefaultFormat());\n    defaultFormat->updateState(CurrentDate, CurrentTime, locale);\n\n    RegionAvailableData textData;\n    textData.daysAvailable = defaultFormat->daysText();\n    textData.shortDatesAvailable = defaultFormat->shortDatesText();\n    textData.longDatesAvailable = defaultFormat->longDatesText();\n    textData.shortTimesAvailable = defaultFormat->shortTimesText();\n    textData.longTimesAvailable = defaultFormat->longTimesText();\n\n    m_defaultFormat.daysAvailable = defaultFormat->daysText(); // TODO format\n    m_defaultFormat.shortDatesAvailable = defaultFormat->shortDateFormats();\n    m_defaultFormat.longDatesAvailable = defaultFormat->longDateFormats();\n    m_defaultFormat.shortTimesAvailable = defaultFormat->shortTimeFormats();\n    m_defaultFormat.longTimesAvailable = defaultFormat->longTimeFormats();\n\n    return textData;\n}\n\nQDebug operator<<(QDebug debug, const RegionFormat &regionFormat)\n{\n    debug << regionFormat.firstDayOfWeekFormat << regionFormat.shortDateFormat\n          << regionFormat.longDateFormat << regionFormat.shortTimeFormat\n          << regionFormat.longTimeFormat << regionFormat.currencyFormat << regionFormat.numberFormat\n          << regionFormat.digitgroupFormat << regionFormat.paperFormat;\n\n    return debug;\n}\n"
  },
  {
    "path": "src/plugin-datetime/operation/regionproxy.h",
    "content": "//SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef REGIONPROXY_H\n#define REGIONPROXY_H\n\n#include <QDate>\n#include <QDebug>\n\nconst QString localeName_key = \"localeName\";\nconst QString country_key = \"country\";\nconst QString languageRegion_key = \"languageRegion\";\nconst QString firstDayOfWeek_key = \"firstDayOfWeek\";\nconst QString shortDateFormat_key = \"shortDateFormat\";\nconst QString longDateFormat_key = \"longDateFormat\";\nconst QString shortTimeFormat_key = \"shortTimeFormat\";\nconst QString longTimeFormat_key = \"longTimeFormat\";\nconst QString currencyFormat_key = \"currencyFormat\";\nconst QString numberFormat_key = \"numberFormat\";\nconst QString digitgroupFormat_key = \"digitgroupFormat\";\nconst QString paperFormat_key = \"paperFormat\";\n\nstruct RegionFormat {\n    int firstDayOfWeekFormat = 0;\n    QString shortDateFormat;\n    QString longDateFormat;\n    QString shortTimeFormat;\n    QString longTimeFormat;\n    QString currencyFormat;\n    QString numberFormat;\n    QString digitgroupFormat; //groupSeparator;\n    QString paperFormat;\n    bool operator!=(const RegionFormat &other)\n    {\n        return !(*this == other);\n    }\n    bool operator==(const RegionFormat &other)\n    {\n        return (this->firstDayOfWeekFormat == other.firstDayOfWeekFormat) &&\n                (this->shortDateFormat == other.shortDateFormat) &&\n                (this->longDateFormat == other.longDateFormat) &&\n                (this->shortTimeFormat == other.shortTimeFormat) &&\n                (this->longTimeFormat == other.longTimeFormat) &&\n                (this->currencyFormat == other.currencyFormat) &&\n                (this->numberFormat == other.numberFormat) &&\n                (this->digitgroupFormat == other.digitgroupFormat) &&\n                (this->paperFormat == other.paperFormat);\n    }\n};\n\nQDebug operator<<(QDebug debug, const RegionFormat &regionFormat);\n\nstruct RegionAvailableData {\n    QStringList daysAvailable;\n    QStringList shortDatesAvailable;\n    QStringList longDatesAvailable;\n    QStringList shortTimesAvailable;\n    QStringList longTimesAvailable;\n    RegionAvailableData& operator+=(const RegionAvailableData &rhs) {\n        for (QString element : rhs.daysAvailable) {\n            if (daysAvailable.contains(element))\n                continue;\n            daysAvailable << element;\n        }\n        for (QString element : rhs.shortDatesAvailable) {\n            if (shortDatesAvailable.contains(element))\n                continue;\n            shortDatesAvailable << element;\n        }\n        for (QString element : rhs.longDatesAvailable) {\n            if (longDatesAvailable.contains(element))\n                continue;\n            longDatesAvailable << element;\n        }\n        for (QString element : rhs.shortTimesAvailable) {\n            if (shortTimesAvailable.contains(element))\n                continue;\n            shortTimesAvailable << element;\n        }\n        for (QString element : rhs.longTimesAvailable) {\n            if (longTimesAvailable.contains(element))\n                continue;\n            longTimesAvailable << element;\n        }\n        return *this;\n    }\n    void clear() {\n        daysAvailable.clear();\n        shortDatesAvailable.clear();\n        longDatesAvailable.clear();\n        shortTimesAvailable.clear();\n        longTimesAvailable.clear();\n    }\n};\n\nusing Regions = QMap<QString, QLocale>;\nclass QTranslator;\nclass RegionProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit RegionProxy(QObject *parent = nullptr);\n    ~RegionProxy();\n\n    Regions regions() const;\n    QStringList countries() const;\n    QString systemCountry() const;\n    QString langCountry() const;\n\n    static RegionFormat regionFormat(const QLocale &locale);\n    static RegionFormat systemRegionFormat();\n    static RegionAvailableData allTextData(const QLocale &locale);\n    static RegionAvailableData allFormat();\n\n    void active();\n\n    bool isActive() { return m_isActive; }\nprivate:\n    QStringList m_countries;\n    Regions m_regions;\n    QTranslator *m_translatorLanguage = nullptr;\n    QTranslator *m_translatorCountry = nullptr;\n    static RegionAvailableData m_formatData;\n    static RegionAvailableData m_allFormat, m_defaultFormat, m_customFormat;\n    static RegionAvailableData customTextData(const QLocale &locale);\n    static RegionAvailableData defaultTextData(const QLocale &locale);\n    bool m_isActive;\n};\n\n#endif // REGIONPROXY_H\n"
  },
  {
    "path": "src/plugin-datetime/operation/timezoneMap/timezone.cpp",
    "content": "// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"timezone.h\"\n\n#ifndef _GNU_SOURCE\n#  define _GNU_SOURCE /* For tm_gmtoff and tm_zone */\n#endif\n\n#include <libintl.h>\n\n#include <QDebug>\n\n#include <cmath>\n\n#include <QDir>\n#include <QFile>\n#include <locale.h>\n#include <time.h>\n\nnamespace installer {\n\nnamespace {\n\nconst QString tzDirPath = std::visit([] {\n    QString tzDirPath = \"/usr/share/zoneinfo\";\n    if (qEnvironmentVariableIsSet(\"TZDIR\"))\n        tzDirPath = qEnvironmentVariable(\"TZDIR\");\n    return tzDirPath;\n});\n\n#if USE_DEEPIN_ZONE\nconst QString kZoneTabFileDeepin = QStringLiteral(DEEPIN_TIME_ZONE_PATH);\nconst QString kZoneTabFile = std::visit([] {\n    if (QFile(kZoneTabFileDeepin).exists()) {\n        return kZoneTabFileDeepin;\n    }\n    return tzDirPath + \"/zone1970.tab\";\n});\n#else\n// Absolute path to zone.tab file.\nconst QString kZoneTabFile = std::visit([] {\n    return tzDirPath + \"/zone1970.tab\";\n});\n#endif\n\n// Absolute path to backward timezone file.\nconst char kTimezoneAliasFile[] = \"/timezone_alias\";\n\n// Domain name for timezones.\nconst char kTimezoneDomain[] = \"deepin-installer-timezones\";\n\n// Parse latitude and longitude of the zone's principal location.\n// See https://en.wikipedia.org/wiki/List_of_tz_database_time_zones.\n// |pos| is in ISO 6709 sign-degrees-minutes-seconds format,\n// either +-DDMM+-DDDMM or +-DDMMSS+-DDDMMSS.\n// |digits| 2 for latitude, 3 for longitude.\ndouble ConvertPos(const QString &pos, int digits)\n{\n    if (pos.length() < 4 || digits > 9) {\n        return 0.0;\n    }\n\n    const QString integer = pos.left(digits + 1);\n    const QString fraction = pos.mid(digits + 1);\n    const double t1 = integer.toDouble();\n    const double t2 = fraction.toDouble();\n    if (t1 > 0.0) {\n        return t1 + t2 / pow(10.0, fraction.length());\n    } else {\n        return t1 - t2 / pow(10.0, fraction.length());\n    }\n}\n\n} // namespace\n\n[[maybe_unused]] bool ZoneInfoDistanceComp(const ZoneInfo &a, const ZoneInfo &b)\n{\n    return a.distance < b.distance;\n}\n\nQDebug &operator<<(QDebug &debug, const ZoneInfo &info)\n{\n    debug << \"ZoneInfo {\"\n          << \"cc:\" << info.country << \"tz:\" << info.timezone << \"lat:\" << info.latitude\n          << \"lng:\" << info.longitude << \"}\";\n    return debug;\n}\n\nstatic QString ReadFile(const QString &path)\n{\n    QFile file(path);\n    if (file.exists()) {\n        if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {\n            qDebug() << \"ReadFile() failed to open\" << path;\n            return \"\";\n        }\n        QTextStream text_stream(&file);\n        QString str = text_stream.readAll();\n        file.close();\n        return str;\n    } else {\n        qDebug() << \"ReadFileContent() file not found: \" << path;\n        return \"\";\n    }\n}\n\nZoneInfoList GetZoneInfoList()\n{\n    ZoneInfoList list;\n    const QString content(ReadFile(kZoneTabFile));\n    for (const QString &line : content.split('\\n')) {\n        if (!line.startsWith('#')) {\n            const QStringList parts(line.split('\\t'));\n            // Parse latitude and longitude.\n            if (parts.length() >= 3) {\n                const QString coordinates = parts.at(1);\n                int index = coordinates.indexOf('+', 3);\n                if (index == -1) {\n                    index = coordinates.indexOf('-', 3);\n                }\n                Q_ASSERT(index > -1);\n                const double latitude = ConvertPos(coordinates.left(index), 2);\n                const double longitude = ConvertPos(coordinates.mid(index), 3);\n                const ZoneInfo zone_info = { parts.at(0), parts.at(2), latitude, longitude, 0.0 };\n                list.append(zone_info);\n            }\n        }\n    }\n    return list;\n}\n\n[[maybe_unused]] int GetZoneInfoByCountry(const ZoneInfoList &list, const QString &country)\n{\n    int index = -1;\n    for (const ZoneInfo &info : list) {\n        index++;\n        if (info.country == country) {\n            return index;\n        }\n    }\n    return -1;\n}\n\nint GetZoneInfoByZone(const ZoneInfoList &list, const QString &timezone)\n{\n    int index = -1;\n    for (const ZoneInfo &info : list) {\n        index++;\n        if (info.timezone == timezone) {\n            return index;\n        }\n    }\n    return -1;\n}\n\nQString GetCurrentTimezone()\n{\n    const QString content(ReadFile(\"/etc/timezone\"));\n    return content.trimmed();\n}\n\n[[maybe_unused]] QString GetTimezoneName(const QString &timezone)\n{\n    const int index = timezone.lastIndexOf('/');\n    return (index > -1) ? timezone.mid(index + 1) : timezone;\n}\n\nQString GetLocalTimezoneName(const QString &timezone, const QString &locale)\n{\n    // Set locale first.\n    (void)setlocale(LC_ALL, QString(locale + \".UTF-8\").toStdString().c_str());\n    const QString local_name(dgettext(kTimezoneDomain, timezone.toStdString().c_str()));\n    int index = local_name.lastIndexOf('/');\n    if (index == -1) {\n        // Some translations of locale name contains non-standard char.\n        index = local_name.lastIndexOf(\"∕\");\n    }\n\n    // Default locale used in program.\n    const char kDefaultLocale[] = \"en_US.UTF-8\";\n\n    // Reset locale.\n    (void)setlocale(LC_ALL, kDefaultLocale);\n\n    return (index > -1) ? local_name.mid(index + 1) : local_name;\n}\n\n[[maybe_unused]] TimezoneAliasMap GetTimezoneAliasMap()\n{\n    TimezoneAliasMap map;\n\n    const QString content = ReadFile(kTimezoneAliasFile);\n    for (const QString &line : content.split('\\n')) {\n        if (!line.isEmpty()) {\n            const QStringList parts = line.split(':');\n            Q_ASSERT(parts.length() == 2);\n            if (parts.length() == 2) {\n                map.insert(parts.at(0), parts.at(1));\n            }\n        }\n    }\n\n    return map;\n}\n\n[[maybe_unused]] bool IsValidTimezone(const QString &timezone)\n{\n    // Ignores empty timezone.\n    if (timezone.isEmpty()) {\n        return false;\n    }\n#if USE_DEEPIN_ZONE\n    if (kZoneTabFile == kZoneTabFileDeepin && QFile(kZoneTabFile).exists()) {\n        return true;\n    }\n#endif\n    // If |filepath| is a file or a symbolic link to file, it is a valid timezone.\n    const QString filepath(tzDirPath + QDir::separator() + timezone);\n    return QFile::exists(filepath);\n}\n\n[[maybe_unused]] TimezoneOffset GetTimezoneOffset(const QString &timezone)\n{\n    const char *kTzEnv = \"TZ\";\n    const char *old_tz = getenv(kTzEnv);\n    setenv(kTzEnv, timezone.toStdString().c_str(), 1);\n    struct tm tm;\n    const time_t curr_time = time(nullptr);\n\n    // Call tzset() before localtime_r(). Set tzset(3).\n    tzset();\n    (void)localtime_r(&curr_time, &tm);\n\n    // Reset timezone.\n    if (old_tz) {\n        setenv(kTzEnv, old_tz, 1);\n    } else {\n        unsetenv(kTzEnv);\n    }\n\n    const TimezoneOffset offset = { tm.tm_zone, tm.tm_gmtoff };\n    return offset;\n}\n\n} // namespace installer\n"
  },
  {
    "path": "src/plugin-datetime/operation/timezoneMap/timezone.h",
    "content": "// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef INSTALLER_SYSINFO_TIMEZONE_H\n#define INSTALLER_SYSINFO_TIMEZONE_H\n\n#include <QHash>\n#include <QList>\n\nnamespace installer {\n\nstruct ZoneInfo\n{\npublic:\n    QString country;\n    QString timezone;\n\n    // Coordinates of zone.\n    double latitude;\n    double longitude;\n\n    // Distance to clicked point for comparison.\n    double distance;\n};\n\n[[maybe_unused]] bool ZoneInfoDistanceComp(const ZoneInfo &a, const ZoneInfo &b);\nQDebug &operator<<(QDebug &debug, const ZoneInfo &info);\ntypedef QList<ZoneInfo> ZoneInfoList;\n\n// Read available timezone info in zone.tab file.\nZoneInfoList GetZoneInfoList();\n\n// Find ZoneInfo based on |country| or |timezone|.\n// Returns -1 if not found.\n[[maybe_unused]] int GetZoneInfoByCountry(const ZoneInfoList &list, const QString &country);\nint GetZoneInfoByZone(const ZoneInfoList &list, const QString &timezone);\n\n// Read current timezone in /etc/timezone file.\nQString GetCurrentTimezone();\n\n// Returns name of timezone, excluding continent name.\n[[maybe_unused]] QString GetTimezoneName(const QString &timezone);\n\n// Returns local name of timezone, excluding continent name.\n// |locale| is desired locale name.\nQString GetLocalTimezoneName(const QString &timezone, const QString &locale);\n\n// A map between old name of timezone and current name.\n// e.g. Asia/Chongqing -> Asia/Shanghai\ntypedef QHash<QString, QString> TimezoneAliasMap;\n[[maybe_unused]] TimezoneAliasMap GetTimezoneAliasMap();\n\n// Validate |timezone|.\n[[maybe_unused]] bool IsValidTimezone(const QString &timezone);\n\nstruct TimezoneOffset\n{\n    QString name; // Offset name, like CST.\n    long seconds; // Offset seconds.\n};\n\n// Get |timezone| offset.\n[[maybe_unused]] TimezoneOffset GetTimezoneOffset(const QString &timezone);\n\n} // namespace installer\n\n#endif // INSTALLER_SYSINFO_TIMEZONE_H\n"
  },
  {
    "path": "src/plugin-datetime/operation/timezoneMap/timezone_map_util.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"timezone_map_util.h\"\n\n#include <math.h>\n\nnamespace installer {\n\nnamespace {\n\n// From gnome-control-center.\ndouble radians(double degrees) {\n  return (degrees / 360.0) * M_PI * 2;\n}\n\n}  // namespace\n\ndouble ConvertLatitudeToY(double latitude) {\n  const double bottom_lat = -59;\n  const double top_lat = 81;\n  const double full_range = 4.6068250867599998;\n  double top_per, y, top_offset, map_range;\n\n  top_per = top_lat / 180.0;\n  y = 1.25 * log(tan(M_PI_4 + 0.4 * radians(latitude)));\n  top_offset = full_range * top_per;\n  map_range = fabs(1.25 * log(tan(M_PI_4 + 0.4 * radians(bottom_lat))) -\n                   top_offset);\n  y = fabs(y - top_offset);\n  y = y / map_range;\n  return y;\n}\n\ndouble ConvertLongitudeToX(double longitude) {\n  const double xdeg_offset = -6;\n  return ((180.0 + longitude) / 360.0 + xdeg_offset / 180.0);\n}\n\nZoneInfoList GetNearestZones(const ZoneInfoList& total_zones, double threshold,\n                             int x, int y, int map_width, int map_height) {\n  ZoneInfoList zones;\n  double minimum_distance = map_width * map_width + map_height * map_height;\n  int nearest_zone_index = -1;\n  for (int index = 0; index < total_zones.length(); index++) {\n    const ZoneInfo& zone = total_zones.at(index);\n    const double point_x = ConvertLongitudeToX(zone.longitude) * map_width;\n    const double point_y = ConvertLatitudeToY(zone.latitude) * map_height;\n    const double dx = point_x - x;\n    const double dy = point_y - y;\n    const double distance = dx * dx + dy * dy;\n    if (distance < minimum_distance) {\n      minimum_distance = distance;\n      nearest_zone_index = index;\n    }\n    if (distance <= threshold) {\n      zones.append(zone);\n    }\n  }\n\n  // Get the nearest zone.\n  if (zones.isEmpty()) {\n    zones.append(total_zones.at(nearest_zone_index));\n  }\n\n  return zones;\n}\n\n}  // namespace installer\n"
  },
  {
    "path": "src/plugin-datetime/operation/timezoneMap/timezone_map_util.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef INSTALLER_DELEGATES_TIMEZONE_MAP_UTIL_H\n#define INSTALLER_DELEGATES_TIMEZONE_MAP_UTIL_H\n\n#include \"timezone.h\"\n\nnamespace installer {\n\n// Convert position of zone from polar coordinates to rectangular coordinates.\ndouble ConvertLatitudeToY(double latitude);\ndouble ConvertLongitudeToX(double longitude);\n\n// Get a list of zone info whose distance to (x, y) is less than |threshold|\n// in a world map with size (map_width, map_height).\nZoneInfoList GetNearestZones(const ZoneInfoList& total_zones, double threshold,\n                             int x, int y, int map_width, int map_height);\n\n}  // namespace installer\n\n#endif  // INSTALLER_DELEGATES_TIMEZONE_MAP_UTIL_H\n"
  },
  {
    "path": "src/plugin-datetime/operation/zoneinfo.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"zoneinfo.h\"\n\nZoneInfo::ZoneInfo()\n    : m_utcOffset(0)\n    , i2(0)\n    , i3(0)\n    , i4(0)\n{\n}\n\nQDebug operator<<(QDebug argument, const ZoneInfo &info)\n{\n    argument << QString(\"ZoneInfo(\");\n    argument << info.m_zoneName << \",\" << info.m_zoneCity << \",\" << info.m_utcOffset;\n    argument << \",(\";\n    argument << info.i2 << \",\" << info.i3 << \",\" << info.i4;\n    argument << \"))\";\n    return argument;\n}\n\nQDBusArgument &operator<<(QDBusArgument &argument, const ZoneInfo &info)\n{\n    argument.beginStructure();\n    argument << info.m_zoneName << info.m_zoneCity << info.m_utcOffset;\n    argument.beginStructure();\n    argument << info.i2 << info.i3 << info.i4;\n    argument.endStructure();\n    argument.endStructure();\n    return argument;\n}\n\nQDataStream &operator<<(QDataStream &argument, const ZoneInfo &info)\n{\n    argument << info.m_zoneName << info.m_zoneCity << info.m_utcOffset;\n    argument << info.i2 << info.i3 << info.i4;\n    return argument;\n}\n\nconst QDBusArgument &operator>>(const QDBusArgument &argument, ZoneInfo &info)\n{\n    argument.beginStructure();\n    argument >> info.m_zoneName >> info.m_zoneCity >> info.m_utcOffset;\n    argument.beginStructure();\n    argument >> info.i2 >> info.i3 >> info.i4;\n    argument.endStructure();\n    argument.endStructure();\n    return argument;\n}\n\nconst QDataStream &operator>>(QDataStream &argument, ZoneInfo &info)\n{\n    argument >> info.m_zoneName >> info.m_zoneCity >> info.m_utcOffset;\n    argument >> info.i2 >> info.i3 >> info.i4;\n    return argument;\n}\n\nbool ZoneInfo::operator==(const ZoneInfo &what) const\n{\n    return m_zoneName == what.m_zoneName\n            && m_zoneCity == what.m_zoneCity\n            && m_utcOffset == what.m_utcOffset\n            && i2 == what.i2\n            && i3 == what.i3\n            && i4 == what.i4;\n}\n\nvoid registerZoneInfoMetaType()\n{\n    qRegisterMetaType<ZoneInfo>(\"ZoneInfo\");\n    qDBusRegisterMetaType<ZoneInfo>();\n}\n"
  },
  {
    "path": "src/plugin-datetime/operation/zoneinfo.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef ZONEINFO_H\n#define ZONEINFO_H\n\n#include <QDebug>\n#include <QDataStream>\n#include <QString>\n#include <QDBusArgument>\n#include <QDBusMetaType>\n\nclass ZoneInfo\n{\n    Q_GADGET\n    Q_PROPERTY(QString zoneName READ getZoneName)\n    Q_PROPERTY(QString city READ getZoneCity)\n    Q_PROPERTY(int utcOffset READ getUTCOffset)\npublic:\n    ZoneInfo();\n\n    friend QDebug operator<<(QDebug argument, const ZoneInfo &info);\n    friend QDBusArgument &operator<<(QDBusArgument &argument, const ZoneInfo &info);\n    friend QDataStream &operator<<(QDataStream &argument, const ZoneInfo &info);\n    friend const QDBusArgument &operator>>(const QDBusArgument &argument, ZoneInfo &info);\n    friend const QDataStream &operator>>(QDataStream &argument, ZoneInfo &info);\n\n    bool operator==(const ZoneInfo &what) const;\n\npublic:\n    inline QString getZoneName() const { return m_zoneName; }\n    inline QString getZoneCity() const { return m_zoneCity; }\n    inline int getUTCOffset() const { return m_utcOffset; }\n    QString getUtcOffsetText() const\n    {\n        QString gmData;\n        int utcOff = m_utcOffset / 3600;\n        if (utcOff >= 0) {\n            gmData = QString(\"(UTC+%1:%2)\").arg(utcOff, 2, 10, QLatin1Char('0')).arg(m_utcOffset % 3600 / 60, 2, 10, QLatin1Char('0'));\n        } else {\n            gmData = QString(\"(UTC%1:%2)\").arg(utcOff, 3, 10, QLatin1Char('0')).arg(m_utcOffset % 3600 / 60, 2, 10, QLatin1Char('0'));\n        }\n\n        return gmData;\n    }\n\nprivate:\n    QString m_zoneName;\n    QString m_zoneCity;\n    int m_utcOffset;\n    qint64 i2;\n    qint64 i3;\n    int i4;\n};\n\nQ_DECLARE_METATYPE(ZoneInfo)\n\nvoid registerZoneInfoMetaType();\n\n#endif // ZONEINFO_H\n"
  },
  {
    "path": "src/plugin-datetime/operation/zoneinfomodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"zoneinfomodel.h\"\n#include \"datetimemodel.h\"\n\nnamespace dccV25 {\n\nUserTimezoneModel::UserTimezoneModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n\n}\n\nUserTimezoneModel::~UserTimezoneModel()\n{\n\n}\n\nint UserTimezoneModel::rowCount(const QModelIndex &) const\n{\n    DatetimeModel *sourceMode = dynamic_cast<DatetimeModel *>(parent());\n    if (!sourceMode)\n        return 0;\n\n    auto zones = sourceMode->userTimeZones();\n    return zones.count();\n}\n\nQVariant UserTimezoneModel::data(const QModelIndex &index, int role) const\n{\n    DatetimeModel *sourceMode = dynamic_cast<DatetimeModel *>(parent());\n    if (!sourceMode)\n        return QVariant();\n\n    auto zones = sourceMode->userTimeZones();\n    if (!index.isValid() || index.row() >= zones.size())\n        return QVariant();\n\n    const auto &zoneInfo = zones.value(index.row());\n    const QString &zoneId = zoneInfo.getZoneName();\n    const QString &zoneDisplay = sourceMode->zoneDisplayName(zoneId);\n    const QString &description = sourceMode->timeZoneDescription(zoneInfo);\n\n    switch (role) {\n    case Qt::DisplayRole:\n        return zoneDisplay; // (UTC+08:00)上海\n    case DescriptionRole:\n        return description; // xxx hours earlier/later than local\n    case ZoneIdRole:\n        return zoneId;  //  Asia/Shanghai\n    case ShiftRole:\n        return zoneInfo.getUTCOffset() / 3600;\n    default:\n        break;\n    }\n\n    return QVariant();\n}\n\nQHash<int, QByteArray> UserTimezoneModel::roleNames() const\n{\n    QHash<int, QByteArray> names = QAbstractListModel::roleNames();\n    names[DescriptionRole] = \"description\";\n    names[ShiftRole] = \"shift\";\n    names[ZoneIdRole] = \"zoneId\";\n    return names;\n}\n\nvoid UserTimezoneModel::reset()\n{\n    beginResetModel();\n    endResetModel();\n}\n\n///////////////////////////////////////////////\nZoneInfoModel::ZoneInfoModel(QObject *parent)\n    :QAbstractListModel(parent)\n{\n\n}\n\nZoneInfoModel::~ZoneInfoModel()\n{\n\n}\n\nint ZoneInfoModel::rowCount(const QModelIndex &) const\n{\n    DatetimeModel *sourceMode = dynamic_cast<DatetimeModel *>(parent());\n    if (!sourceMode)\n        return 0;\n\n    auto list = sourceMode->zoneIdList();\n\n    return list.size();\n}\n\nQVariant ZoneInfoModel::data(const QModelIndex &index, int role) const\n{\n    DatetimeModel *sourceMode = dynamic_cast<DatetimeModel *>(parent());\n    if (!sourceMode)\n        return QVariant();\n\n    auto list = sourceMode->zoneIdList();\n\n    if (!index.isValid() || index.row() >= list.size())\n        return QVariant();\n\n    const QString &zoneId = list.value(index.row());   // \"Asia/Shanghai\"\n    const QString &zoneDisplay = sourceMode->zoneDisplayName(zoneId); // (UTC+08:00)上海\n\n    switch (role) {\n    case Qt::DisplayRole:\n        return zoneDisplay; // (UTC+08:00)上海\n    case SearchTextRole:\n        return zoneDisplay + zoneId; // + (UTC+08:00)上海 Asia/Shanghai\n    case ZoneIdRole:\n        return zoneId;  //  Asia/Shanghai\n    case CityNameRole:\n        return zoneDisplay.mid(zoneDisplay.indexOf(\" \") + 1); // 上海\n    default:\n        break;\n    }\n\n    return QVariant();\n}\n\nQHash<int, QByteArray> ZoneInfoModel::roleNames() const\n{\n    QHash<int, QByteArray> names = QAbstractListModel::roleNames();\n    names[SearchTextRole] = \"searchText\";\n    names[ZoneIdRole] = \"zoneId\";\n    names[CityNameRole] = \"cityName\";\n    return names;\n}\n\n} // namespace dccV25\n"
  },
  {
    "path": "src/plugin-datetime/operation/zoneinfomodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef ZONEINFOMODEL_H\n#define ZONEINFOMODEL_H\n\n#include <QAbstractItemModel>\n#include <QSortFilterProxyModel>\n\nnamespace dccV25 {\n\nclass UserTimezoneModel : public QAbstractListModel {\npublic:\n    explicit UserTimezoneModel(QObject *parent = nullptr);\n    virtual ~UserTimezoneModel();\n    enum UserTimezoneRole {\n        DescriptionRole = Qt::UserRole + 1,\n        ShiftRole,\n        ZoneIdRole\n    };\n\n    // QAbstractItemModel interface\n    int rowCount(const QModelIndex &parent) const override;\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n    QHash<int, QByteArray> roleNames() const override;\n    void reset();\n};\n\nclass ZoneInfoModel : public QAbstractListModel\n{\n    Q_OBJECT\npublic:\n    explicit ZoneInfoModel(QObject *parent = nullptr);\n    virtual ~ZoneInfoModel();\n    enum ZoneInfoRole {\n        SearchTextRole = Qt::UserRole + 1,\n        ZoneIdRole,\n        CityNameRole\n    };\n    Q_ENUM(ZoneInfoRole)\n\n    // QAbstractItemModel interface\n    int rowCount(const QModelIndex &parent) const override;\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n    QHash<int, QByteArray> roleNames() const override;\n};\n\n} // namespace dccV25\n#endif // ZONEINFOMODEL_H\n"
  },
  {
    "path": "src/plugin-datetime/qml/ComboLabel.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\n\nItem {\n    id: item\n    property var comboModel: [\"\"]\n    property int comboCurrentIndex: -1\n    property bool isDecimalSymbol: false\n    property bool isDigitGroupingSymbol: false\n    // property string textRole\n    implicitHeight: 30\n    implicitWidth: 280\n    signal comboBoxActivated(int index)\n\n    // 获取过滤后的模型数据\n    function getFilteredModel() {\n        if (!dccData) {\n            return item.comboModel\n        }\n        \n        if (item.isDecimalSymbol) {\n            return dccData.getFilteredDecimalSymbols()\n        } else if (item.isDigitGroupingSymbol) {\n            return dccData.getFilteredSeparatorSymbols()\n        }\n        \n        return item.comboModel\n    }\n\n    // 将过滤后模型的索引转换为原始模型的索引\n    function getOriginalIndex(filteredIndex) {\n        if (!dccData || (!item.isDecimalSymbol && !item.isDigitGroupingSymbol)) {\n            return filteredIndex\n        }\n        \n        var filteredModel = getFilteredModel()\n        var originalModel = item.comboModel\n        \n        if (filteredIndex < 0 || filteredIndex >= filteredModel.length) {\n            return -1\n        }\n        \n        var selectedValue = filteredModel[filteredIndex]\n        return originalModel.indexOf(selectedValue)\n    }\n\n    RowLayout {\n        anchors.fill: parent\n        \n        ComboBox {\n            id: comboBox\n            visible: item.comboModel.length > 1\n            flat: true\n            Layout.fillWidth: true\n            Layout.rightMargin: 10\n            model: getFilteredModel()\n            currentIndex: {\n                if (!dccData || (!item.isDecimalSymbol && !item.isDigitGroupingSymbol)) {\n                    return comboCurrentIndex\n                }\n                \n                // 对于过滤模型，需要将原始索引转换为过滤后的索引\n                if (comboCurrentIndex >= 0 && comboCurrentIndex < item.comboModel.length) {\n                    var currentValue = item.comboModel[comboCurrentIndex]\n                    var filteredModel = getFilteredModel()\n                    return filteredModel.indexOf(currentValue)\n                }\n                return -1\n            }\n            hoverEnabled: true\n            Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n            onActivated: function (index) {\n                // 如果使用了过滤模型，需要转换索引\n                var originalIndex = getOriginalIndex(index)\n                item.comboBoxActivated(originalIndex)\n            }\n            \n            // 监听符号变化，实时更新模型\n            Connections {\n                target: dccData\n                function onSymbolChanged(format, symbol) {\n                    // 当小数点或分隔符符号变化时，更新下拉列表\n                    if ((format === 9 && item.isDigitGroupingSymbol) || // DecimalSymbol changed, update separator list\n                        (format === 10 && item.isDecimalSymbol)) {      // DigitGroupingSymbol changed, update decimal list\n                        var newModel = getFilteredModel()\n                        comboBox.model = newModel\n                    }\n                }\n            }\n        }\n\n        Label {\n            id: label\n            visible: item.comboModel.length === 1\n            text: item.comboModel[0]\n            Layout.fillWidth: true\n            Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n            Layout.rightMargin: 10\n            horizontalAlignment: Text.AlignRight\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-datetime/qml/DateTimeSettingDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Window\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n        \nD.DialogWindow {\n    id: ddialog\n    width: Math.max(360, gridLayout.implicitWidth)\n    height: 252\n    minimumWidth: width\n    minimumHeight: height\n    maximumWidth: minimumWidth\n    maximumHeight: minimumHeight\n    icon: \"preferences-system\"\n    modality: Qt.WindowModal\n    property date currentDate: new Date()\n\n    component SpinboxTextInput: TextInput {\n        property var spinbox: parent\n\n        text: spinbox.displayText\n        font: D.DTK.fontManager.t6\n        color: spinbox.palette.text\n        selectionColor: spinbox.palette.highlight\n        selectedTextColor: spinbox.palette.highlightedText\n        horizontalAlignment: Qt.AlignLeft\n        verticalAlignment: Qt.AlignVCenter\n        leftPadding: DS.Style.spinBox.spacing\n        readOnly: !spinbox.editable\n        validator: spinbox.validator\n        inputMethodHints: spinbox.inputMethodHints\n        selectByMouse: spinbox.editable\n\n        onActiveFocusChanged: {\n            if (!activeFocus) {\n                if (text === \"\") {\n                    text = spinbox.value\n                } else if (parseInt(text) < spinbox.from) {\n                    text = spinbox.from\n                } else if (parseInt(text) > spinbox.to) {\n                    text = spinbox.to\n                } else {\n                    spinbox.value = parseInt(text)\n                }\n            }\n        }\n\n        onTextEdited: {\n            if (text === \"\") return;\n\n            let value = parseInt(text);\n            if (spinbox.from > 0 && text.length === 1 && text === \"0\") {\n                text = \"\";\n                return;\n            }\n            if (value > spinbox.to) {\n                text = text.substring(0, text.length - 1);\n                return;\n            }\n\n            let minDigits = Math.floor(Math.log10(spinbox.from)) + 1;\n            let maxDigits = Math.floor(Math.log10(spinbox.to)) + 1;\n            let currentLength = text.length;\n\n            let minPossible;\n            if (currentLength >= minDigits) {\n                minPossible = value;\n            } else {\n                minPossible = parseInt(text + \"0\".repeat(minDigits - currentLength));\n            }\n\n            let maxPossible;\n            if (currentLength >= maxDigits) {\n                maxPossible = value;\n            } else {\n                maxPossible = parseInt(text + \"9\".repeat(maxDigits - currentLength));\n            }\n\n            let isValid = (minPossible <= spinbox.to && maxPossible >= spinbox.from);\n            if (!isValid) {\n                text = text.substring(0, text.length - 1);\n            } else if (value >= spinbox.from && value <= spinbox.to) {\n                spinbox.value = value;\n            }\n        }\n    }\n\n    function getDaysInMonth(year, month) {\n        return new Date(year, month, 0).getDate()\n    }\n\n    function updateDateMax() {\n        spDay.to = getDaysInMonth(spYear.value, spMonth.value)\n    }\n\n    ColumnLayout {\n        spacing: 0\n        anchors.fill: parent\n        Label {\n            Layout.alignment: Qt.AlignHCenter\n            Layout.bottomMargin: 20\n            padding: 0\n            font.family: D.DTK.fontManager.t5.family\n            font.pixelSize: D.DTK.fontManager.t5.pixelSize\n            text: qsTr(\"Date and time setting\")\n        }\n        GridLayout {\n            id: gridLayout\n            Layout.fillWidth: true\n            Layout.leftMargin: 6\n            Layout.rightMargin: 10\n            columns: 4\n            rowSpacing: 20\n            columnSpacing: 10\n            \n            Label {\n                font: D.DTK.fontManager.t6\n                text: qsTr(\"Date\")\n                Layout.alignment: Qt.AlignLeft\n                Layout.rightMargin: 6\n                horizontalAlignment: Text.AlignLeft\n            }\n            SpinboxEx {\n                id: spYear\n                unitText: qsTr(\"Year\")\n                locale: Qt.locale(\"C\")\n                from: 1990\n                to: 2090\n                wrap: true\n                Layout.fillWidth: true\n                value: currentDate.getFullYear()\n                onValueChanged: {\n                    ddialog.updateDateMax()\n                    yearTextInput.text  = value\n                }\n                Component.onCompleted: {\n                    let year = currentDate.getFullYear()\n                    spYear.from = year - 30\n                    spYear.to = year + 30\n                }\n\n                contentItem: SpinboxTextInput {\n                    id: yearTextInput\n                    spinbox: spYear\n                }\n            }\n            SpinboxEx {\n                id: spMonth\n                unitText: qsTr(\"Month\")\n                from: 1\n                to: 12\n                wrap: true\n                Layout.fillWidth: true\n                value: currentDate.getMonth() + 1 //  // January gives 0\n                onValueChanged: {\n                    ddialog.updateDateMax()\n                    monthTextInput.text = value\n                }\n\n                contentItem: SpinboxTextInput {\n                    id: monthTextInput\n                    spinbox: spMonth\n                }\n            }\n            SpinboxEx {\n                id: spDay\n                unitText: qsTr(\"Day\")\n                from: 1\n                to: 31\n                wrap: true\n                Layout.fillWidth: true\n                value: currentDate.getDate()\n                onValueChanged: {\n                    dayTextInput.text = value\n                }\n\n                contentItem: SpinboxTextInput {\n                    id: dayTextInput\n                    spinbox: spDay\n                }\n            }\n            \n            Label {\n                font: D.DTK.fontManager.t6\n                text: qsTr(\"Time\")\n                Layout.alignment: Qt.AlignLeft\n                Layout.rightMargin: 6\n                horizontalAlignment: Text.AlignLeft\n            }\n            SpinboxEx {\n                id: spHour\n                from: 0\n                to: 23\n                wrap: true\n                Layout.fillWidth: true\n                value: currentDate.getHours()\n                onValueChanged: {\n                    hourTextInput.text = value\n                }\n\n                contentItem: SpinboxTextInput {\n                    id: hourTextInput\n                    spinbox: spHour\n                }\n            }\n            SpinboxEx {\n                id: spMin\n                from: 0\n                to: 59\n                wrap: true\n                Layout.fillWidth: true\n                value: currentDate.getMinutes()\n                onValueChanged: {\n                    minTextInput.text = value\n                }\n\n                contentItem: SpinboxTextInput {\n                    id: minTextInput\n                    spinbox: spMin\n                }\n            }\n        }\n        RowLayout {\n            Layout.alignment: Qt.AlignHCenter\n            Layout.bottomMargin: 6\n            Layout.topMargin: 20\n            spacing: 10\n            Button {\n                Layout.fillWidth: true\n                text: qsTr(\"Cancel\")\n                font: D.DTK.fontManager.t6\n                onClicked: {\n                    ddialog.close()\n                }\n            }\n            Button {\n                Layout.fillWidth: true\n                text: qsTr(\"Confirm\")\n                font: D.DTK.fontManager.t6\n                highlighted: true\n                onClicked: {\n                    let dateTime = currentDate\n                    dateTime.setFullYear(spYear.value)\n                    dateTime.setMonth(spMonth.value - 1)\n                    dateTime.setDate(spDay.value)\n                    dateTime.setHours(spHour.value)\n                    dateTime.setMinutes(spMin.value)\n                    dateTime.setSeconds(0)\n\n                    dccData.setDateTime(dateTime)\n                    ddialog.close()\n                }\n            }\n        }\n    }\n}\n    \n"
  },
  {
    "path": "src/plugin-datetime/qml/Datetime.qml",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport org.deepin.dcc 1.0\n\nDccObject {\n    name: \"datetime\"\n    parentName: \"system\"\n    displayName: qsTr(\"Time and date\")\n    description: qsTr(\"Time and date, time zone settings\")\n    icon: \"dcc_time_date\"\n    weight: 40\n}\n"
  },
  {
    "path": "src/plugin-datetime/qml/DatetimeMain.qml",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n// import QtQuick 2.15\nimport org.deepin.dcc 1.0\n\nTimeAndDate {\n    DccObject {\n        id: langAndFormat\n        name: \"langAndFormat\"\n        parentName: \"system\"\n        displayName: qsTr(\"Language and region\")\n        description: qsTr(\"System language, regional formats\")\n        icon: \"dcc_lang_format\"\n        weight: 45\n        visible: false\n        DccDBusInterface {\n            property var locales\n            service: \"org.deepin.dde.LangSelector1\"\n            path: \"/org/deepin/dde/LangSelector1\"\n            inter: \"org.deepin.dde.LangSelector1\"\n            connection: DccDBusInterface.SessionBus\n            onLocalesChanged: langAndFormat.visible = true\n        }\n        LangAndFormat {}\n    }\n}\n"
  },
  {
    "path": "src/plugin-datetime/qml/LangAndFormat.qml",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0\nimport QtQml.Models\n\n// 语言和区域\nDccObject {\n    id: langAndFormat\n\n    property int localeStateChanged: 0\n    property int localeStateChanging: 1\n    // 正在设置语言\n    property int localeStateSetLang: 1 << 1\n    // 正在locale-gen\n    property int localeStateGenLocale: 1 << 2\n\n    property color textColor: DTK.themeType === ApplicationHelper.LightType ?\n        Qt.rgba(0, 0, 0, 0.9) : Qt.rgba(1, 1, 1, 0.9)\n\n    FontMetrics {\n        id: fm\n    }\n\n    // 语言列表抬头\n    DccObject {\n        id: languageListTiltle\n        property bool isEditing: false\n        name: \"languageListTiltle\"\n        parentName: \"langAndFormat\"\n        displayName: qsTr(\"Language\")\n        weight: 10\n        pageType: DccObject.Item\n        page: RowLayout {\n            Label {\n                Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter\n                Layout.leftMargin: 12\n                text: dccObj.displayName\n                font.pixelSize: DTK.fontManager.t5.pixelSize\n                font.weight: 500\n                color: langAndFormat.textColor\n            }\n\n            Button {\n                id: button\n                checkable: true\n                visible: langRepeater.count > 1\n                font.pixelSize: DTK.fontManager.t8.pixelSize\n                checked: languageListTiltle.isEditing\n                Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                text: languageListTiltle.isEditing ? qsTr(\"done\") : qsTr(\"edit\")\n                background: null\n                enabled: dccData.langState === 0\n                textColor: Palette {\n                    normal {\n                        common: DTK.makeColor(Color.Highlight)\n                        crystal: DTK.makeColor(Color.Highlight)\n                    }\n                }\n                onCheckedChanged: {\n                    languageListTiltle.isEditing = button.checked\n                }\n            }\n        }\n        onParentItemChanged: item => {\n            if (item) {\n                item.bottomPadding = 5\n                item.rightPadding = 2\n            }\n        }\n\n        // 语言列表项\n        DccObject {\n            id: languageList\n            name: \"languageList\"\n            parentName: \"langAndFormat\"\n            weight: 20\n            pageType: DccObject.Item\n            page: DccGroupView {\n                Component.onCompleted: {\n                    dccData.ensureLangModel()\n                }\n            }\n\n            onParentItemChanged: item => {\n                if (item) {\n                    item.topPadding = 5\n                    item.bottomPadding = 3\n                    item.rightPadding = 0\n                }\n            }\n\n            DccRepeater {\n                id: langRepeater\n                model: dccData.langList\n                delegate: DccObject {\n                    name: \"languageItem\" + index\n                    parentName: \"languageList\"\n                    displayName: modelData\n                    weight: 20 + 10 * (index + 1)\n                    backgroundType: DccObject.Normal\n                    pageType: DccObject.Item\n                    enabled: dccData.langState === 0 // language set finished\n                    page: ItemDelegate {\n                        id: itemDelegate\n                        property bool isCurrentLang: dccData.currentLang === dccObj.displayName\n                        property bool isLoading: itemDelegate.isCurrentLang && !dccObj.enabled\n                                                && (dccData.langState & langAndFormat.localeStateSetLang)\n                        visible: dccObj\n                        hoverEnabled: true\n                        implicitHeight: 40\n                        icon.name: dccObj.icon\n                        checkable: false\n                        activeFocusOnTab: true\n\n                        Loader {\n                            id: langNameLoader\n                            property string text: dccObj.displayName\n                            property bool shouldSplit: text.split(\"-\").length === 2\n                            anchors {\n                                left: itemDelegate.left\n                                leftMargin: 12\n                                top: itemDelegate.top\n                                topMargin: (itemDelegate.height - height) / 2\n                                right: removeButton.left\n                                rightMargin: 6\n                            }\n                            clip: true\n                            sourceComponent: shouldSplit ? splitComponent : singleComponent\n\n                            Component {\n                                id: singleComponent\n                                Label {\n                                    text: langNameLoader.text\n                                    elide: Text.ElideRight\n                                    font: DTK.fontManager.t6\n                                    width: parent.width\n                                    HoverHandler { id: hhSingle }\n                                    ToolTip.visible: hhSingle.hovered && fm.advanceWidth(langNameLoader.text) > width\n                                    ToolTip.text: langNameLoader.text\n                                    ToolTip.delay: 500\n                                    ToolTip.timeout: 4000\n                                }\n                            }\n\n                            Component {\n                                id: splitComponent\n                                RowLayout {\n                                    spacing: 0\n                                    Layout.fillWidth: true\n                                    width: parent.width\n                                    HoverHandler { id: hhSplit }\n                                    ToolTip.visible: hhSplit.hovered && fm.advanceWidth(langNameLoader.text) > width\n                                    ToolTip.text: langNameLoader.text\n                                    ToolTip.delay: 500\n                                    ToolTip.timeout: 4000\n                                    Label {\n                                        text: langNameLoader.text.split(\"-\")[0] || \"\"\n                                        font: DTK.fontManager.t6\n                                    }\n                                    Label {\n                                        text: \"-\"\n                                        font: DTK.fontManager.t6\n                                    }\n                                    Label {\n                                        text: langNameLoader.text.split(\"-\")[1] || \"\"\n                                        font: DTK.fontManager.t6\n                                        Layout.fillWidth: true\n                                        horizontalAlignment: Text.AlignLeft\n                                        elide: Text.ElideRight\n                                    }\n                                }\n                            }\n                        }\n\n                        IconButton {\n                            id: removeButton\n                            visible: !itemDelegate.isLoading && (\n                                     (itemDelegate.isCurrentLang && dccObj.enabled) ||\n                                     languageListTiltle.isEditing ||\n                                     (itemDelegate.isCurrentLang && regionAndFormat.localeGenRunning))\n                            icon.name: itemDelegate.isCurrentLang ? \"item_checked\" : \"list_delete\"\n                            icon.width: 16\n                            icon.height: 16\n                            implicitWidth: 36\n                            implicitHeight: 36\n                            hoverEnabled: false\n                            anchors {\n                                right: itemDelegate.right\n                                top: itemDelegate.top\n                                topMargin: (itemDelegate.height - removeButton.height) / 2\n                            }\n                            background: null\n                            onClicked: {\n                                if (!languageListTiltle.isEditing\n                                        || itemDelegate.isCurrentLang)\n                                    return\n\n                                dccData.deleteLang(dccObj.displayName)\n                            }\n                        }\n\n                        Loader {\n                            active: itemDelegate.isLoading\n                            anchors {\n                                right: itemDelegate.right\n                                rightMargin: 10\n                                verticalCenter: itemDelegate.verticalCenter\n                            }\n                            sourceComponent: BusyIndicator {\n                                running: visible\n                                implicitWidth: 20\n                                implicitHeight: 20\n                            }\n                        }\n\n                        background: DccItemBackground {\n                            separatorVisible: true\n                        }\n\n                        onClicked: {\n                            if (languageListTiltle.isEditing)\n                                return\n\n                            dccData.setCurrentLang(dccObj.displayName)\n                        }\n                    }\n                }\n            }\n        }\n    }\n\n    // 其他语言列表 +\n    DccObject {\n        name: \"otherLanguagesTitle\"\n        parentName: \"langAndFormat\"\n        weight: 30\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        onParentItemChanged: item => { if (item) item.topPadding = 3 }\n\n        DccObject {\n            name: \"langItem0\"\n            parentName: \"otherLanguagesTitle\"\n            displayName: qsTr(\"Other languages\")\n            weight: 10\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            page: Button {\n                implicitWidth: fm.advanceWidth(text) + fm.averageCharacterWidth * 2\n                implicitHeight: 30\n                text: qsTr(\"add\")\n                LangsChooserDialog {\n                    id: dialogLoader\n                    viewModel: dccData.langSearchModel()\n                    onSelectedLang: function (lang) {\n                        dccData.addLang(lang)\n                    }\n                }\n\n                onClicked: {\n                    dialogLoader.active = true\n                    languageListTiltle.isEditing = false\n                }\n            }\n            onParentItemChanged: item => {\n                if (item) {\n                    item.implicitHeight = 40\n                    item.leftPadding = 7\n                    item.rightPadding = 11\n                }\n            }\n        }\n    }\n\n    // 区域格式抬头\n    DccObject {\n        name: \"regionlistTitle\"\n        parentName: \"langAndFormat\"\n        displayName: qsTr(\"Region\")\n        weight: 40\n        pageType: DccObject.Item\n        page: RowLayout {\n            Label {\n                Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter\n                Layout.leftMargin: 12\n                text: dccObj.displayName\n                font.pixelSize: DTK.fontManager.t5.pixelSize\n                font.weight: 500\n                color: langAndFormat.textColor\n            }\n        }\n\n        onParentItemChanged: item => { if (item) item.topPadding = 10 }\n    }\n\n    // 地区\n    DccObject {\n        name: \"regions\"\n        parentName: \"langAndFormat\"\n        weight: 45\n        displayName: qsTr(\"Area\")\n        description: qsTr(\"Operating system and applications may provide you with local content based on your country and region\")\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Editor\n        page: Item {\n            implicitWidth: rowlayout.implicitWidth\n            implicitHeight: rowlayout.implicitHeight\n            RowLayout {\n                id: rowlayout\n                Label {\n                    id: regionLabel\n                    text: dccData.region\n                }\n                IconLabel {\n                    id: regionIcon\n                    Layout.alignment: Qt.AlignRight | Qt.AlignHCenter\n                    icon.name: \"arrow_ordinary_down\"\n                    icon.palette: DTK.makeIconPalette(regionLabel.palette)\n                }\n            }\n\n            MouseArea {\n                id: mouseArea\n                anchors.fill: parent\n                focus: true\n\n                RegionsChooserWindow {\n                    id: regionWndow\n                    viewModel: dccData.regionSearchModel()\n                    currentIndex: dccData.currentRegionIndex\n                    currentText: dccData.region\n                    onSelectedRegion: function (region) {\n                        regionLabel.text = region\n                        dccData.setRegion(region)\n                    }\n                }\n\n                onClicked: function (mouse) {\n                    if (!regionWndow.isVisible()) {\n                        regionWndow.mousePosition = mouseArea.mapToGlobal(mouse.x, mouse.y + rowlayout.implicitHeight)\n                        regionWndow.show()\n                    }\n\n                    languageListTiltle.isEditing = false\n                }\n            }\n        }\n\n        onParentItemChanged: item => {\n            if (item) {\n                item.bottomInset = 3\n                item.leftPadding = 7\n                item.activeFocusOnTab = true\n            }\n        }\n    }\n\n    // 区域格式\n    DccObject {\n        id: regionAndFormat\n        name: \"regionAndFormat\"\n        parentName: \"langAndFormat\"\n        weight: 50\n        displayName: qsTr(\"Regional format\")\n        description: qsTr(\"Operating system and applications may set date and time formats based on regional formats\")\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Editor\n\n        property bool localeRunning: false\n        property bool localeGenRunning: false\n        enabled: !localeRunning || localeGenRunning\n        Component.onCompleted: {\n            localeRunning = Qt.binding(function() {\n                var result = (dccData.langState & langAndFormat.localeStateChanging) !== 0\n                return result\n            })\n            localeGenRunning = Qt.binding(function() {\n                var result = (dccData.langState & langAndFormat.localeStateGenLocale) !== 0\n                return result\n            })\n        }\n        page: Item {\n            id: regionAndFormatItem\n            implicitWidth: regionAndFormat.localeGenRunning ? 36 : layout.implicitWidth\n            implicitHeight: regionAndFormat.localeGenRunning ? 36 : layout.implicitHeight\n            RowLayout {\n                id: layout\n                visible: !regionAndFormat.localeGenRunning\n                Label {\n                    id: currentLabel\n                    text: dccData.currentLanguageAndRegion\n                }\n                IconLabel {\n                    Layout.alignment: Qt.AlignRight | Qt.AlignHCenter\n                    icon.name: \"arrow_ordinary_right\"\n                    icon.palette: DTK.makeIconPalette(currentLabel.palette)\n                }\n            }\n\n            RowLayout {\n                anchors.fill: parent\n                visible: regionAndFormat.localeGenRunning\n                Layout.rightMargin: 10\n                BusyIndicator {\n                    Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                    running: visible\n                    implicitWidth: 20\n                    implicitHeight: 20\n                }\n            }\n\n            MouseArea {\n                anchors.fill: parent\n                enabled: !regionAndFormat.localeGenRunning\n                RegionFormatDialog {\n                    id: regionDialog\n                    currentIndex: dccData.currentLanguageAndRegionIndex()\n                    viewModel: dccData.langRegionSearchModel()\n                    onSelectedRegion: function (locale, lang) {\n                        dccData.setCurrentLocaleAndLangRegion(locale, lang)\n                    }\n\n                    Connections {\n                        target: dccData\n                        function onCurrentLanguageAndRegionChanged(currentLanguageAndRegion) {\n                            regionDialog.currentIndex = dccData.currentLanguageAndRegionIndex()\n                        }\n                    }\n                }\n\n                onClicked: {\n                    regionDialog.show()\n                    languageListTiltle.isEditing = false\n                }\n            }\n        }\n\n        onParentItemChanged: item => {\n            if (item) {\n                item.topInset = 3\n                item.leftPadding = 7\n                item.activeFocusOnTab = true\n            }\n        }\n    }\n\n    // 时间日期格式\n    DccObject {\n        id: timeFormats\n        name: \"timeFormats\"\n        parentName: \"langAndFormat\"\n        weight: 60\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        onParentItemChanged: item => {\n            if (item) {\n                item.topPadding = 5\n                item.bottomPadding = 3\n            }\n        }\n\n        DccRepeater {\n            id: timeFormatsRepeater\n            model: dccData.timeDateModel()\n            delegate: DccObject {\n                name: model.name\n                parentName: \"timeFormats\"\n                displayName: model.name\n                weight: 10 * (index + 1)\n                backgroundType: DccObject.Normal\n                pageType: DccObject.Editor\n                page: ComboLabel {\n                    comboModel: model.values\n                    comboCurrentIndex: model.current\n                    onComboBoxActivated: function (idx) {\n                        dccData.setCurrentFormat(model.indexBegin + index, idx)\n                    }\n                }\n                onParentItemChanged: item => {\n                    if (item) {\n                        item.implicitHeight = 40\n                        item.leftPadding = 7\n                        item.rightPadding = 0\n                    }\n                }\n            }\n        }\n    }\n\n    // 货币符号格式\n    DccObject {\n        id: currencyFormats\n        name: \"currencyFormats\"\n        parentName: \"langAndFormat\"\n        weight: 70\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        onParentItemChanged: item => {\n            if (item) {\n                item.topPadding = 3\n                item.bottomPadding = 3\n            }\n        }\n\n        DccRepeater {\n            id: currencyRepeater\n            model: dccData.currencyModel()\n            delegate: DccObject {\n                name: model.name\n                parentName: \"currencyFormats\"\n                displayName: model.name\n                weight: 10 * (index + 1)\n                backgroundType: DccObject.Normal\n                pageType: DccObject.Editor\n                page: ComboLabel {\n                    comboModel: model.values\n                    comboCurrentIndex: model.current\n                    onComboBoxActivated: function (idx) {\n                        dccData.setCurrentFormat(model.indexBegin + index, idx)\n                    }\n                }\n                onParentItemChanged: item => {\n                    if (item) {\n                        item.implicitHeight = 40\n                        item.leftPadding = 7\n                        item.rightPadding = 0\n                    }\n                }\n            }\n        }\n    }\n\n    // 数字格式符号\n    DccObject {\n        id: numberFormats\n        name: \"numberFormats\"\n        parentName: \"langAndFormat\"\n        weight: 80\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        onParentItemChanged: item => { if (item) item.topPadding = 3 }\n\n        DccRepeater {\n            id: numRepeater\n            model: dccData.decimalModel()\n            delegate: DccObject {\n                name: model.name\n                parentName: \"numberFormats\"\n                displayName: model.name\n                weight: 10 * (index + 1)\n                backgroundType: DccObject.Normal\n                pageType: DccObject.Editor\n                page: ComboLabel {\n                    comboModel: model.values\n                    comboCurrentIndex: model.current\n                    // 设置符号类型标识，用于过滤功能\n                    isDecimalSymbol: index === 0  // 第一个是小数点符号\n                    isDigitGroupingSymbol: index === 1  // 第二个是千位分隔符符号\n                    onComboBoxActivated: function (idx) {\n                        dccData.setCurrentFormat(model.indexBegin + index, idx)\n                    }\n                }\n                onParentItemChanged: item => {\n                    if (item) {\n                        item.implicitHeight = 40\n                        item.leftPadding = 7\n                        item.rightPadding = 0\n                    }\n                }\n            }\n        }\n    }\n\n    // Number example\n    DccObject {\n        name: \"numberExample\"\n        parentName: \"langAndFormat\"\n        weight: 90\n        pageType: DccObject.Item\n        visible: dccData.numberExampleParts.length > 0\n        page: Row {\n            spacing: 4\n            leftPadding: 12\n            Repeater {\n                model: dccData.numberExampleParts\n                delegate: Label {\n                    text: modelData\n                    font.pixelSize: DTK.fontManager.t10.pixelSize\n                    color: DTK.themeType === ApplicationHelper.LightType ?\n                        Qt.rgba(0, 0, 0, 0.5) : Qt.rgba(1, 1, 1, 0.5)\n                }\n            }\n        }\n\n        onParentItemChanged: item => { if (item) item.topPadding = 0 }\n    }\n}\n"
  },
  {
    "path": "src/plugin-datetime/qml/LangsChooserDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Window\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0\nimport org.deepin.dtk.style 1.0 as DS\n\nLoader {\n    id: langDialogLoader\n    active: false\n    required property var viewModel\n    signal selectedLang(string lang)\n\n    sourceComponent: DialogWindow {\n        id: ddialog\n        width: 420\n        minimumWidth: width\n        minimumHeight: height\n        maximumWidth: minimumWidth\n        maximumHeight: minimumHeight\n        icon: \"preferences-system\"\n        modality: Qt.WindowModal\n        ColumnLayout {\n            spacing: 10\n            width: parent.width\n            Label {\n                Layout.alignment: Qt.AlignHCenter\n                font.family: DTK.fontManager.t5.family\n                font.bold: true\n                font.pixelSize: DTK.fontManager.t5.pixelSize\n                text: qsTr(\"Add language\")\n            }\n\n            SearchEdit {\n                id: searchEdit\n                implicitHeight: Math.max(30, searchEditFontMetrics.height + (DS.Style.control.padding - DS.Style.control.borderWidth) * 2) // Minimum 30px, adaptive based on font\n                Layout.fillWidth: true\n                Layout.leftMargin: 6 - DS.Style.dialogWindow.contentHMargin\n                Layout.rightMargin: 6 - DS.Style.dialogWindow.contentHMargin\n                placeholder: qsTr(\"Search\")\n                font: DTK.fontManager.t6\n                onVisibleChanged: {\n                    clear()\n                }\n                onTextChanged: {\n                    viewModel.setFilterWildcard(text);\n                }\n                onEditingFinished: {\n                    viewModel.setFilterWildcard(text);\n                }\n\n                FontMetrics {\n                    id: searchEditFontMetrics\n                    font: searchEdit.font\n                }\n            }\n\n            Item {\n                Layout.fillWidth: true\n                height: 360\n                Layout.leftMargin: 6 - DS.Style.dialogWindow.contentHMargin\n                Layout.rightMargin: 6 - DS.Style.dialogWindow.contentHMargin  // Match searchEdit margin\n\n                ListView {\n                    id: itemsView\n                    property string checkedLang\n                    anchors.fill: parent\n                    clip: true\n                    model: langDialogLoader.viewModel\n                    boundsBehavior: Flickable.StopAtBounds\n                    ScrollBar.vertical: scrollBar\n\n                        ButtonGroup {\n                            id: langGroup\n                        }\n\n                        delegate: CheckDelegate {\n                            id: checkDelegate\n                            implicitWidth: itemsView.width\n                            implicitHeight: Math.max(30, checkDelegateFontMetrics.height + (DS.Style.control.padding - DS.Style.control.borderWidth) * 2) // Minimum 30px, adaptive based on font\n                            text: model.display\n                            hoverEnabled: true\n                            ButtonGroup.group: langGroup\n                            topPadding: 0\n                            bottomPadding: 0\n                            font: DTK.fontManager.t6\n\n                            FontMetrics {\n                                id: checkDelegateFontMetrics\n                                font: checkDelegate.font\n                            }\n\n                            indicator: Loader {\n                                x: checkDelegate.mirrored ? checkDelegate.leftPadding : checkDelegate.width - width - checkDelegate.rightPadding\n                                y: checkDelegate.topPadding + (checkDelegate.availableHeight - height) / 2\n                                active: indicatorVisible\n\n                                sourceComponent: DciIcon {\n                                    palette: checkDelegate.DTK.makeIconPalette(checkDelegate.palette)\n                                    mode: checkDelegate.ColorSelector.controlState\n                                    theme: checkDelegate.ColorSelector.controlTheme\n                                    name: indicatorIcon\n                                    sourceSize: Qt.size(16, 16)\n                                    fallbackToQIcon: false\n                                    onNameChanged: {\n                                        play(DTK.NormalState);\n                                    }\n                                    Component.onCompleted: {\n                                        if (indicatorVisible)\n                                            play(DTK.NormalState);\n                                    }\n                                }\n                            }\n\n                            contentItem: RowLayout {\n                                Loader {\n                                    id: labelLoader\n                                    property string text: checkDelegate.text\n                                    property bool shouldSplit: text.split(\"-\").length === 2\n                                    Layout.fillWidth: !checkDelegate.content\n                                    Layout.leftMargin: 6\n                                    sourceComponent: shouldSplit ? splitComponent : singleComponent\n\n                                    Component {\n                                        id: singleComponent\n                                        IconLabel {\n                                            spacing: checkDelegate.spacing\n                                            mirrored: checkDelegate.mirrored\n                                            display: checkDelegate.display\n                                            alignment: Qt.AlignLeft | Qt.AlignVCenter\n                                            text: labelLoader.text\n                                            font: checkDelegate.font\n                                            color: checkDelegate.palette.windowText\n                                            icon: DTK.makeIcon(checkDelegate.icon, checkDelegate.DciIcon)\n                                            Layout.fillWidth: !checkDelegate.content\n                                            Layout.alignment: Qt.AlignVCenter\n                                        }\n                                    }\n\n                                    Component {\n                                        id: splitComponent\n                                        RowLayout {\n                                            spacing: 0\n                                            Layout.alignment: Qt.AlignVCenter\n                                            IconLabel {\n                                                mirrored: checkDelegate.mirrored\n                                                display: checkDelegate.display\n                                                alignment: Qt.AlignLeft | Qt.AlignVCenter\n                                                text: labelLoader.text.split(\"-\")[0] || \"\"\n                                                font: checkDelegate.font\n                                                color: checkDelegate.palette.windowText\n                                                Layout.alignment: Qt.AlignVCenter\n                                            }\n                                            IconLabel {\n                                                mirrored: checkDelegate.mirrored\n                                                display: checkDelegate.display\n                                                alignment: Qt.AlignLeft | Qt.AlignVCenter\n                                                text: \"-\"\n                                                font: checkDelegate.font\n                                                color: checkDelegate.palette.windowText\n                                                Layout.alignment: Qt.AlignVCenter\n                                            }\n                                            IconLabel {\n                                                mirrored: checkDelegate.mirrored\n                                                display: checkDelegate.display\n                                                alignment: Qt.AlignLeft | Qt.AlignVCenter\n                                                text: labelLoader.text.split(\"-\")[1] || \"\"\n                                                font: checkDelegate.font\n                                                color: checkDelegate.palette.windowText\n                                                icon: DTK.makeIcon(checkDelegate.icon, checkDelegate.DciIcon)\n                                                Layout.fillWidth: !checkDelegate.content\n                                                Layout.alignment: Qt.AlignVCenter\n                                            }\n                                        }\n                                    }\n                                }\n                                Loader {\n                                    active: checkDelegate.content\n                                    sourceComponent: checkDelegate.content\n                                    Layout.fillWidth: true\n                                }\n                            }\n                            onCheckedChanged: {\n                                if (checked)\n                                    itemsView.checkedLang = model.key\n                            }\n                        }\n                    }\n\n                ScrollBar {\n                    id: scrollBar\n                    anchors.top: parent.top\n                    anchors.bottom: parent.bottom\n                    anchors.right: parent.right\n                    anchors.rightMargin: -6  // Position outside the ListView area\n                    width: 10\n                    orientation: Qt.Vertical\n\n                    position: itemsView.visibleArea.yPosition\n                    size: itemsView.visibleArea.heightRatio\n                    active: hovered || pressed || itemsView.moving || itemsView.flicking\n                }\n            }\n\n            RowLayout {\n                Layout.fillWidth: true\n                Layout.leftMargin: 6 - DS.Style.dialogWindow.contentHMargin\n                Layout.rightMargin: 6 - DS.Style.dialogWindow.contentHMargin\n                spacing: 6\n                Button {\n                    id: cancelButton\n                    Layout.fillWidth: true\n                    Layout.bottomMargin: 6\n                    font: DTK.fontManager.t6\n                    implicitHeight: Math.max(30, cancelButtonFontMetrics.height + (DS.Style.control.padding - DS.Style.control.borderWidth) * 2) // Minimum 30px, adaptive based on font\n                    text: qsTr(\"Cancel\")\n                    onClicked: {\n                        ddialog.close()\n                    }\n\n                    FontMetrics {\n                        id: cancelButtonFontMetrics\n                        font: cancelButton.font\n                    }\n                }\n                Button {\n                    id: addButton\n                    Layout.fillWidth: true\n                    Layout.bottomMargin: 6\n                    font: DTK.fontManager.t6\n                    implicitHeight: Math.max(30, addButtonFontMetrics.height + (DS.Style.control.padding - DS.Style.control.borderWidth) * 2) // Minimum 30px, adaptive based on font\n                    text: qsTr(\"Add\")\n                    enabled: itemsView.checkedLang.length > 0\n                    onClicked: {\n                        selectedLang(itemsView.checkedLang)\n                        ddialog.close()\n                    }\n\n                    FontMetrics {\n                        id: addButtonFontMetrics\n                        font: addButton.font\n                    }\n                }\n            }\n        }\n        onClosing: {\n            langDialogLoader.active = false\n        }\n    }\n    onLoaded: {\n        item.show()\n    }\n    onActiveChanged: {\n        if (!active) {\n            viewModel.setFilterWildcard(\"\");\n        }\n    }\n}\n\n\n"
  },
  {
    "path": "src/plugin-datetime/qml/RegionFormatDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick\nimport QtQuick.Controls 2.0\nimport QtQuick.Window\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\nimport QtQml.Models\nimport QtQuick.Effects\n\nLoader {\n    id: regionFormatLoader\n    active: false\n    required property var viewModel\n    property int currentIndex: -1\n\n    signal selectedRegion(string locale, string lang)\n\n    function show() {\n        viewModel.setFilterWildcard(\"\");\n        active = true\n    }\n\n    sourceComponent: D.DialogWindow {\n        id: ddialog\n        width: 738\n        minimumWidth: width\n        minimumHeight: 636\n        maximumWidth: minimumWidth\n        icon: \"preferences-system\"\n        modality: Qt.WindowModal\n        ColumnLayout {\n            spacing: 10\n            width: parent.width\n            Label {\n                Layout.alignment: Qt.AlignHCenter\n                font.family: D.DTK.fontManager.t5.family\n                font.bold: true\n                font.pixelSize: D.DTK.fontManager.t5.pixelSize\n                text: qsTr(\"Regional format\")\n            }\n\n            RowLayout {\n                spacing: 10\n                ColumnLayout {\n                    Layout.preferredWidth: 348\n                    Layout.maximumWidth: 348\n                    spacing: 10\n                    D.SearchEdit {\n                        id: searchEdit\n                        Layout.fillWidth: true\n                        Layout.leftMargin: 0\n                        Layout.rightMargin: 0\n                        placeholder: qsTr(\"Search\")\n                        font: D.DTK.fontManager.t6\n                        onTextChanged: {\n                            viewModel.setFilterWildcard(text);\n                            itemsView.positionViewAtBeginning();\n                        }\n                        onEditingFinished: {\n                            viewModel.setFilterWildcard(text);\n                            itemsView.positionViewAtBeginning();\n                        }\n                    }\n\n                    Item {\n                        Layout.fillWidth: true\n                        Layout.fillHeight: true\n\n                        Rectangle {\n                            id: backgroundRect\n                            anchors.fill: parent\n                            color: palette.base\n                            radius: 8\n                            border.width: 0\n                        }\n\n                        Item {\n                            id: listMask\n                            anchors.fill: parent\n                            layer.enabled: true\n                            visible: false\n                            Rectangle {\n                                anchors.fill: parent\n                                anchors.margins: 0.5\n                                radius: 8\n                            }\n                        }\n\n                        D.ListView {\n                            id: itemsView\n                            property string checkedLang\n                            property string checkedLocale\n                            property string selectedLangKey: \"\"\n                            property string selectedLocaleKey: \"\"\n                            anchors.fill: parent\n                            model: regionFormatLoader.viewModel\n                            currentIndex: regionFormatLoader.currentIndex\n                            clip: true\n                            ScrollBar.vertical: scrollBar\n\n                            layer.enabled: true\n                            layer.effect: MultiEffect {\n                                maskEnabled: true\n                                maskSource: listMask\n                                antialiasing: true\n                                maskThresholdMin: 0.5\n                                maskSpreadAtMin: 1.0\n                            }\n\n                            Component.onCompleted: {\n                            if (currentIndex >= 0 && currentIndex < count) {\n                                positionViewAtIndex(currentIndex, ListView.Contain);\n\n                                Qt.callLater(function() {\n                                    if (currentItem && currentItem.model) {\n                                        selectedLangKey = currentItem.model.langKey;\n                                        selectedLocaleKey = currentItem.model.localeKey;\n                                        }\n                                    });\n                                }\n                            }\n\n                            ButtonGroup {\n                                id: langGroup\n                            }\n\n                            delegate: D.CheckDelegate {\n                                id: checkDelegate\n                                implicitWidth: itemsView.width\n                                text: model.display\n                                font: D.DTK.fontManager.t6\n                                checked: (itemsView.selectedLangKey === model.langKey &&\n                                         itemsView.selectedLocaleKey === model.localeKey) ||\n                                        (itemsView.selectedLangKey === \"\" && index === itemsView.currentIndex)\n                                hoverEnabled: true\n                                ButtonGroup.group: langGroup\n\n                                background: Control {\n                                    implicitWidth: DS.Style.itemDelegate.width\n                                    implicitHeight: DS.Style.itemDelegate.height\n\n                                    // Hover background\n                                    Rectangle {\n                                        anchors.fill: parent\n                                        visible: !checkDelegate.checked && !D.DTK.hasAnimation && checkDelegate.hovered\n                                        color: checkDelegate.D.ColorSelector.backgroundColor\n                                    }\n\n                                    // Selected background\n                                    Rectangle {\n                                        anchors.fill: parent\n                                        visible: checkDelegate.checked\n                                        color: DS.Style.itemDelegate.checkedColor\n                                    }\n                                }\n\n                                onCheckedChanged: {\n                                    if (checked) {\n                                        itemsView.selectedLangKey = model.langKey;\n                                        itemsView.selectedLocaleKey = model.localeKey;\n\n                                        itemsView.checkedLang = model.langKey\n                                        itemsView.checkedLocale = model.localeKey\n                                        let idx = 0\n                                        let values = repeater.values\n                                        values[idx++].value = model.firstDay\n                                        values[idx++].value = model.shortDate\n                                        values[idx++].value = model.longDate\n                                        values[idx++].value = model.shortTime\n                                        values[idx++].value = model.longTime\n                                        values[idx++].value = model.currency\n                                        values[idx++].value = model.digit\n                                        values[idx++].value = model.paperSize\n\n                                        repeater.values = values\n                                    }\n                                }\n                            }\n                        }\n\n                        ScrollBar {\n                            id: scrollBar\n                            anchors.top: parent.top\n                            anchors.bottom: parent.bottom\n                            anchors.right: parent.right\n                            anchors.rightMargin: -width\n                            width: 10\n                            orientation: Qt.Vertical\n\n                            position: itemsView.visibleArea.yPosition\n                            size: itemsView.visibleArea.heightRatio\n                            active: hovered || pressed || itemsView.moving || itemsView.flicking\n                        }\n                    }\n                }\n\n                Rectangle {\n                    implicitWidth: 1\n                    implicitHeight: 500\n                    color: palette.mid\n                }\n\n                ColumnLayout {\n                    Layout.fillHeight: true\n                    Layout.preferredWidth: 348\n                    Layout.maximumWidth: 348\n                    spacing: 0\n                    Label {\n                        Layout.alignment: Qt.AlignLeft | Qt.AlignBottom\n                        Layout.preferredHeight: searchEdit.height\n                        Layout.bottomMargin: 10\n                        text: qsTr(\"Default formats\")\n                        font: D.DTK.fontManager.t6\n                        verticalAlignment: Text.AlignBottom\n                    }\n\n                    Repeater {\n                        id: repeater\n                        property var values:[\n                            { name: qsTr(\"First day of week\"), value: \"\" },\n                            { name: qsTr(\"Short date\"), value: \"\" },\n                            { name: qsTr(\"Long date\"), value: \"\" },\n                            { name: qsTr(\"Short time\"), value: \"\" },\n                            { name: qsTr(\"Long time\"), value: \"\" },\n                            { name: qsTr(\"Currency symbol\"), value: \"\" },\n                            { name: qsTr(\"Digit\"), value: \"\" },\n                            { name: qsTr(\"Paper size\"), value: \"\" },\n                        ]\n                        model: values\n                        function getName(index) {\n                            return values.length > index ? values[index].name : \"\"\n                        }\n                        function getValue(index) {\n                            return values.length > index ? values[index].value : \"\"\n                        }\n\n                        ItemDelegate {\n                            id: root\n                            Layout.fillWidth: true\n                            backgroundVisible: true\n                            checkable: false\n                            topPadding: topInset\n                            bottomPadding: bottomInset\n                            contentFlow: true\n                            font: D.DTK.fontManager.t6\n                            corners: getCornersForBackground(index, repeater.count)\n                            content: RowLayout {\n                                ColumnLayout {\n                                    Layout.leftMargin: 8\n                                    Layout.fillWidth: true\n                                    Layout.minimumWidth: implicitWidth\n                                    Layout.alignment: Qt.AlignVCenter\n                                    spacing: 0\n                                    DccLabel {\n                                        Layout.fillWidth: true\n                                        Layout.minimumWidth: implicitWidth\n                                        text: repeater.getName(index)\n                                    }\n                                }\n                                Control {\n                                    Layout.fillWidth: true\n                                    Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                                    Layout.rightMargin: 10\n                                    contentItem: DccLabel {\n                                        width: parent.width\n                                        horizontalAlignment: Text.AlignRight\n                                        text: repeater.getValue(index)\n                                    }\n                                }\n                            }\n                            background: DccItemBackground {\n                                id: background\n                                backgroundType: DccObject.Normal\n                                separatorVisible: true\n                                radius: 8 + bgMargins\n                            }\n                        }\n                    }\n                    Item {\n                        Layout.fillHeight: true\n                    }\n                }\n            }\n\n            RowLayout {\n                Layout.alignment: Qt.AlignHCenter\n                Layout.bottomMargin: 6\n                spacing: 10\n                D.Button {\n                    font: D.DTK.fontManager.t6\n                    text: qsTr(\"Cancel\")\n                    onClicked: {\n                        ddialog.close()\n                    }\n                }\n                D.Button {\n                    text: qsTr(\"Save\")\n                    font: D.DTK.fontManager.t6\n                    enabled: itemsView.checkedLang.length > 0\n                    onClicked: {\n                        regionFormatLoader.selectedRegion(itemsView.checkedLocale, itemsView.checkedLang)\n                        ddialog.close()\n                    }\n                }\n            }\n        }\n        onClosing: {\n            regionFormatLoader.active = false\n        }\n    }\n    onLoaded: {\n        item.show()\n    }\n}\n"
  },
  {
    "path": "src/plugin-datetime/qml/RegionsChooserWindow.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick\nimport QtQuick.Controls 2.0\nimport QtQuick.Window\nimport org.deepin.dtk 1.0\nimport QtQuick.Layouts 1.0\nimport org.deepin.dtk.style 1.0 as DS\n\nLoader {\n    id: loader\n    active: false\n    required property var viewModel\n    property int currentIndex: -1\n    property string currentText\n    property point mousePosition: Qt.point(0, 0)\n    signal selectedRegion(string region)\n\n    function show() {\n        active = true\n    }\n\n    function isVisible() {\n        return active\n    }\n\n    sourceComponent: Window {\n        id: searchWindow\n        property int calculatedWidth: 200\n        width: calculatedWidth\n        height: 500\n        minimumWidth: width\n        minimumHeight: height\n        maximumWidth: minimumWidth\n        maximumHeight: minimumHeight\n        DWindow.enabled: true\n        DWindow.enableSystemResize: false\n        DWindow.enableBlurWindow: true\n        // ensure show in center of mainwindow\n        // _NET_WM_WINDOW_TYPE will add Dialog when added Qt.WindowCloseButtonHint.\n        flags: Qt.Dialog | Qt.WindowCloseButtonHint\n        // default color is white\n        color: active ? DTK.palette.window : DTK.inactivePalette.window\n        palette: DTK.palette\n\n        TextMetrics {\n            id: textMetrics\n            font: DTK.fontManager.t6\n            text: \"\" // Dynamically set text to measure actual width\n        }\n\n        function calculateOptimalWidth() {\n            if (!viewModel || viewModel.rowCount() === 0) {\n                calculatedWidth = 200\n                return\n            }\n\n            var maxWidth = 0\n            // Iterate through all items to find the longest text\n            for (var i = 0; i < viewModel.rowCount(); i++) {\n                var itemText = viewModel.data(viewModel.index(i, 0), Qt.DisplayRole) || \"\"\n                if (itemText.length > 0) {\n                    // Directly measure the actual width of the complete text\n                    textMetrics.text = itemText\n                    maxWidth = Math.max(maxWidth, textMetrics.advanceWidth)\n                }\n            }\n\n            // Calculate final width: text width + margins + scrollbar + indicators etc.\n            // Window margins 12px + MenuItem padding 20px + scrollbar 4px + buffer 4px = 40px\n            var finalWidth = Math.max(200, maxWidth + 40)\n            calculatedWidth = Math.min(finalWidth, 400) // Limit maximum width to 400px\n        }\n\n        Component.onCompleted: {\n            calculateOptimalWidth()\n        }\n\n        Connections {\n            target: viewModel\n            function onModelReset() {\n                calculateOptimalWidth()\n            }\n            function onRowsInserted() {\n                calculateOptimalWidth()\n            }\n            function onRowsRemoved() {\n                calculateOptimalWidth()\n            }\n        }\n\n        ColumnLayout {\n            id: contentLayout\n            anchors.fill: parent\n            anchors.margins: 6\n            SearchEdit {\n                id: searchEdit\n                implicitHeight: Math.max(30, searchEditFontMetrics.height + (DS.Style.control.padding - DS.Style.control.borderWidth) * 2)\n                Layout.fillWidth: true\n                Layout.alignment: Qt.AlignTop\n                placeholder: qsTr(\"Search\")\n                palette: DTK.palette\n                font: DTK.fontManager.t6\n                onTextChanged: {\n                    viewModel.setFilterWildcard(text);\n                }\n                onEditingFinished: {\n                    viewModel.setFilterWildcard(text);\n                }\n                FontMetrics {\n                    id: searchEditFontMetrics\n                    font: searchEdit.font\n                }\n            }\n\n            Item {\n                Layout.fillWidth: true\n                Layout.fillHeight: true\n\n                ArrowListView {\n                    anchors.fill: parent\n                    id: itemsView\n                    property string checkedRegion\n                    clip: true\n                    maxVisibleItems: 12\n                    view.model: viewModel\n                    view.currentIndex: loader.currentIndex\n                    view.ScrollBar.vertical: verticalScrollBar\n\n                    ButtonGroup {\n                        id: regionGroup\n                    }\n\n                view.delegate: MenuItem {\n                    id: menuItem\n                    implicitWidth: itemsView.width\n                    implicitHeight: 30\n                    text: model.display\n                    checkable: true\n                    checked: text === loader.currentText\n                    hoverEnabled: true\n                    highlighted: hovered\n                    autoExclusive: true\n                    ButtonGroup.group: regionGroup\n                    useIndicatorPadding: true\n                    font: DTK.fontManager.t6\n\n                        onCheckedChanged: {\n                            if (checked && loader.currentText !== model.display) {\n                                selectedRegion(model.display)\n                                closeWindow()\n                            }\n                        }\n                    }\n\n                    Component.onCompleted: {\n                        // Set initial scroll position\n                        if (currentIndex >= 0) {\n                            let delegateHeight = 30\n                            view.contentY = currentIndex * delegateHeight;\n                        }\n                    }\n                }\n\n                ScrollBar {\n                    id: verticalScrollBar\n                    anchors.top: parent.top\n                    anchors.bottom: parent.bottom\n                    anchors.right: parent.right\n                    anchors.rightMargin: -6\n                    width: 10\n                    orientation: Qt.Vertical\n\n                    position: itemsView.view.visibleArea.yPosition\n                    size: itemsView.view.visibleArea.heightRatio\n                    active: hovered || pressed || itemsView.view.moving || itemsView.view.flicking\n                }\n            }\n        }\n\n        function closeWindow() {\n            loader.viewModel.setFilterWildcard(\"\");\n            searchWindow.close()\n            loader.active = false\n        }\n\n        onActiveFocusItemChanged: {\n            if (!activeFocusItem) {\n                searchWindow.closeWindow()\n            }\n        }\n        onActiveChanged: {\n            if (!active) {\n                searchWindow.closeWindow()\n            }\n        }\n    }\n\n    onLoaded: {\n        item.show()\n        if (loader.mousePosition.x !== 0 || loader.mousePosition.y !== 0) {\n            item.x = loader.mousePosition.x\n            item.y = loader.mousePosition.y\n        }\n        Qt.callLater(item.requestActivate);\n    }\n}\n"
  },
  {
    "path": "src/plugin-datetime/qml/SearchableListViewPopup.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls 2.15\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window\nimport org.deepin.dtk 1.0\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dtk.private 1.0 as P\n\nLoader {\n    id: loader\n    active: false\n    property int maxVisibleItems: 10\n    property int highlightedIndex: 0\n    property string searchText: \"\"\n    property var view: null\n    property var viewWidth: 300\n    property var anchorItem: null\n    property int windowWidth: 300\n    property int windowHeight: 500\n    property bool contentScrolling: false\n    required property DelegateModel delegateModel\n\n    TextMetrics {\n        id: textMetrics\n        font.family: DTK.fontManager.baseFont.family\n        font.pixelSize: DTK.fontManager.baseFont.pixelSize\n    }\n\n    signal opened()\n    signal closed()\n    \n    // 设置视图索引的函数（无循环版本）\n    function setViewIndex(viewIndex) {\n        if (!view) return\n        \n        // 限制在有效范围内，不循环\n        if (viewIndex < 0) {\n            viewIndex = 0\n        } else if (viewIndex >= view.count) {\n            viewIndex = view.count - 1\n        }\n        \n        view.currentIndex = viewIndex\n        highlightedIndex = viewIndex\n    }\n\n    function show() {\n        active = true\n    }\n\n    function isVisible() {\n        return active\n    }\n\n    function close() {\n        if (item) {\n            item.closeWindow()\n        }\n    }\n\n    function setPositionByItem(item) {\n        anchorItem = item\n        if (active && this.item) {\n            this.item.positionWindow()\n        }\n    }\n\n    sourceComponent: Window {\n        id: searchWindow\n        width: windowWidth\n        height: loader.windowHeight\n        minimumWidth: 300\n        minimumHeight: loader.windowHeight\n        maximumWidth: 500\n        maximumHeight: loader.windowHeight\n        DWindow.enabled: true\n        DWindow.enableSystemResize: false\n        DWindow.enableBlurWindow: true\n        // ensure show in center of mainwindow\n        // _NET_WM_WINDOW_TYPE will add Dialog when added Qt.WindowCloseButtonHint.\n        flags: Qt.Dialog | Qt.WindowCloseButtonHint\n        // default color is white\n        color: DTK.palette.window\n        palette: DTK.palette\n\n        Component.onCompleted: {\n            positionWindow()\n            loader.opened()\n        }\n\n        function positionWindow() {\n            if (!loader.anchorItem) return\n\n            var globalPos = loader.anchorItem.mapToGlobal(0, 0)\n            searchWindow.x = globalPos.x\n            searchWindow.y = globalPos.y + loader.anchorItem.height\n        }\n\n        ColumnLayout {\n            id: contentLayout\n            anchors.fill: parent\n            anchors.margins: 6\n            spacing: loader.delegateModel.count > 0 ? 14 : 0\n\n            SearchEdit {\n                id: searchEdit\n                implicitHeight: Math.max(30, searchEditFontMetrics.height + (DS.Style.control.padding - DS.Style.control.borderWidth) * 2)\n                Layout.fillWidth: true\n                font: DTK.fontManager.t6\n                Layout.alignment: Qt.AlignTop\n                placeholder: qsTr(\"Search\")\n                onTextChanged: {\n                    loader.searchText = text\n                }\n                onVisibleChanged: {\n                    clear() // clear search text\n                }\n                FontMetrics {\n                    id: searchEditFontMetrics\n                    font: searchEdit.font\n                }\n                \n                // 键盘事件处理 - 回车直接选择\n                Keys.onReturnPressed: {\n                    if (listView.visible && listView.count > 0) {\n                        // 如果没有选中项，默认选中第一项\n                        if (listView.currentIndex < 0) {\n                            loader.setViewIndex(0)\n                        }\n                        \n                        // 直接设置checked状态触发选择\n                        if (listView.currentIndex >= 0 && listView.currentItem) {\n                            listView.currentItem.checked = true\n                        }\n                    }\n                }\n                \n                Keys.onUpPressed: {\n                    if (listView.visible && listView.count > 0) {\n                        listView.forceActiveFocus()\n                        // 如果没有选中项，选择最后一项，否则向上移动\n                        if (listView.currentIndex < 0) {\n                            loader.setViewIndex(listView.count - 1)\n                        } else {\n                            loader.setViewIndex(listView.currentIndex - 1)\n                        }\n                    }\n                }\n                \n                Keys.onDownPressed: {\n                    if (listView.visible && listView.count > 0) {\n                        listView.forceActiveFocus()\n                        // 如果没有选中项，选择第一项，否则向下移动\n                        if (listView.currentIndex < 0) {\n                            loader.setViewIndex(0)\n                        } else {\n                            loader.setViewIndex(listView.currentIndex + 1)\n                        }\n                    }\n                }\n            }\n\n            // ArrowListView 样式的容器\n            ColumnLayout {\n                Layout.fillWidth: true\n                Layout.preferredHeight: Math.min(listView.contentHeight + (listView.interactive ? upButton.height + downButton.height : 0), \n                                                 loader.maxVisibleItems * 36 + (listView.interactive ? upButton.height + downButton.height : 0))\n                visible: loader.delegateModel.count > 0\n                spacing: 0\n                \n                // 上箭头按钮\n                P.ArrowListViewButton {\n                    id: upButton\n                    visible: listView.interactive\n                    Layout.alignment: Qt.AlignHCenter\n                    Layout.preferredWidth: width\n                    Layout.preferredHeight: height\n                    view: listView\n                    direction: P.ArrowListViewButton.UpButton\n                    focusPolicy: Qt.NoFocus\n                    activeFocusOnTab: false\n                }\n\n                ListView {\n                    id: listView\n                    clip: true\n                    Layout.fillWidth: true\n                    Layout.fillHeight: true\n                    model: loader.delegateModel\n                    currentIndex: loader.highlightedIndex\n                    highlightMoveDuration: -1\n                    highlightMoveVelocity: -1\n                    highlightFollowsCurrentItem: true\n                    focus: true\n                    activeFocusOnTab: true\n                    ScrollBar.vertical: verticalScrollBar\n                    \n                    // 根据内容确定是否需要交互（模仿ArrowListView逻辑）\n                    interactive: loader.delegateModel.count > loader.maxVisibleItems\n                    \n                    // 传递给delegate使用  \n                    property bool keyboardScrolling: loader.contentScrolling\n                    \n                    // 键盘滚动保护计时器\n                    Timer {\n                        id: keyboardScrollTimer\n                        interval: 50\n                        onTriggered: {\n                            loader.contentScrolling = false\n                        }\n                    }\n                    \n                    // 键盘事件处理（参考SearchBar模式）\n                    Keys.onUpPressed: {\n                        // 键盘导航时启用滚动保护\n                        loader.contentScrolling = true\n                        keyboardScrollTimer.restart()\n                        loader.setViewIndex(currentIndex - 1)\n                    }\n                    \n                    Keys.onDownPressed: {\n                        // 键盘导航时启用滚动保护\n                        loader.contentScrolling = true\n                        keyboardScrollTimer.restart()\n                        loader.setViewIndex(currentIndex + 1)\n                    }\n                    \n                    Keys.onEscapePressed: {\n                        // Escape键返回到搜索框\n                        searchEdit.forceActiveFocus()\n                    }\n\n                    Component.onCompleted: {\n                        loader.view = listView\n                        loader.viewWidth = listView.width\n                        \n                        // 查找checked为true的项目并设置为当前高亮\n                        var foundChecked = false\n                        for (var i = 0; i < count; i++) {\n                            var item = itemAtIndex(i)\n                            if (item && item.checked === true) {\n                                loader.setViewIndex(i)\n                                positionViewAtIndex(i, ListView.Center)\n                                foundChecked = true\n                                break\n                            }\n                        }\n                        \n                        // 如果没找到checked项，使用highlightedIndex作为备选\n                        if (!foundChecked && loader.highlightedIndex >= 0) {\n                            loader.setViewIndex(loader.highlightedIndex)\n                            positionViewAtIndex(loader.highlightedIndex, ListView.Center)\n                        }\n                        \n                        // 确保获得焦点\n                        forceActiveFocus()\n                    }\n\n                    onWidthChanged: {\n                        loader.viewWidth = listView.width\n                    }\n                }\n                \n                // 下箭头按钮\n                P.ArrowListViewButton {\n                    id: downButton\n                    visible: listView.interactive\n                    Layout.alignment: Qt.AlignHCenter\n                    Layout.preferredWidth: width\n                    Layout.preferredHeight: height\n                    view: listView\n                    direction: P.ArrowListViewButton.DownButton\n                    enabled: !listView.atYEnd\n                    focusPolicy: Qt.NoFocus\n                    activeFocusOnTab: false\n                }\n\n                ScrollBar {\n                    id: verticalScrollBar\n                    anchors.top: parent.top\n                    anchors.bottom: parent.bottom\n                    anchors.right: parent.right\n                    anchors.rightMargin: -6\n                    implicitWidth: 10\n                    orientation: Qt.Vertical\n\n                    position: listView.visibleArea.yPosition\n                    size: listView.visibleArea.heightRatio\n                    active: hovered || pressed || listView.moving || listView.flicking\n                }\n            }\n\n            Item {\n                Layout.fillHeight: true\n                visible: loader.delegateModel.count > 0\n            }\n\n            Text {\n                id: noResultsText\n                text: qsTr(\"No search results\")\n                horizontalAlignment: Text.AlignHCenter\n                verticalAlignment: Text.AlignVCenter\n                Layout.fillWidth: true\n                Layout.fillHeight: true\n                visible: loader.delegateModel.count === 0\n                color: this.palette.windowText\n                opacity: 0.4\n                font: DTK.fontManager.t6\n            }\n        }\n\n        function closeWindow() {\n            searchEdit.clear()\n            searchWindow.close()\n            loader.active = false\n            loader.closed()\n        }\n\n        onActiveFocusItemChanged: {\n            if (!activeFocusItem) {\n                searchWindow.closeWindow()\n            }\n        }\n\n        onActiveChanged: {\n            if (!active) {\n                searchWindow.closeWindow()\n            }\n        }\n    }\n\n    onLoaded: {\n        item.show()\n        Qt.callLater(function() {\n            item.requestActivate();\n        });\n    }\n}\n"
  },
  {
    "path": "src/plugin-datetime/qml/SpinboxEx.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport org.deepin.dtk 1.0 as D\n\nSpinBox {\n    id: sp\n    editable: true\n    property string unitText\n    implicitWidth: valueMetrics.width + unitMetrics.width + 60\n\n    TextMetrics {\n        id: valueMetrics\n        text: Math.max(sp.from, sp.to).toString()\n    }\n\n    TextMetrics {\n        id: unitMetrics\n        text: unitText\n    }\n\n    Label {\n        id: unit\n        text: unitText\n        font: D.DTK.fontManager.t6\n        anchors.right: parent.right\n        anchors.rightMargin: 30\n        height: parent.height\n        verticalAlignment: Qt.AlignVCenter\n    }\n}\n"
  },
  {
    "path": "src/plugin-datetime/qml/TimeAndDate.qml",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQml.Models 2.11\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.private 1.0 as P\nimport org.deepin.dtk.style 1.0 as DS\n\nimport ZoneInfoModel 1.0\n\n// 时间和日期\nDccObject {\n    DccObject {\n        id: dateTimeContent\n        name: \"dateTimeContent\"\n        parentName: \"datetime\"\n        weight: 10\n        pageType: DccObject.Item\n        page: ColumnLayout {\n            FontLoader {\n                id: webFont\n                source: \"qrc:/builtin-font/resource/Outfit-Light.ttf\"\n            }\n\n            Label {\n                id: timeLabel\n                height: contentHeight\n                Layout.leftMargin: 14\n                Layout.topMargin: 10\n                leftPadding: 0\n                rightPadding: 0\n                horizontalAlignment: Text.AlignLeft\n                font {\n                    pointSize: 32\n                    family: webFont.font.family\n                }\n                text: dccData.currentTime\n            }\n            Label {\n                id: dateLabel\n                height: contentHeight\n                Layout.leftMargin: 18\n                leftPadding: 0\n                rightPadding: 0\n                horizontalAlignment: Text.AlignLeft\n                font {\n                    pointSize: 16\n                    family: webFont.font.family\n                }\n                text: dccData.currentDate\n            }\n            Timer {\n                interval: 500\n                running: dateTimeContent.visible\n                repeat: true\n                onTriggered: {\n                    dccData.updateCurrentTime()\n                }\n                onRunningChanged: {\n                    if (running) {\n                        dccData.updateCurrentTime()\n                    }\n                }\n            }\n        }\n    }\n\n    // 时间同步\n    DccObject {\n        name: \"dateTimeGroup\"\n        parentName: \"datetime\"\n        weight: 12\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        onParentItemChanged: item => {\n            if (item) {\n                item.topPadding = 10\n                item.bottomPadding = 5\n            }\n        }\n\n        DccObject {\n            id: ntpSettings\n            property bool ntpOn: dccData.ntpEnabled\n            name: \"ntpSettings\"\n            parentName: \"dateTimeGroup\"\n            displayName: qsTr(\"Auto sync time\")\n            weight: 10\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            page: Switch {\n                checked: ntpSettings.ntpOn\n                onCheckedChanged: {\n                    dccData.ntpEnabled = checked\n                }\n            }\n        }\n\n        DccObject {\n            id: dateAndTimeSettings\n            name: \"dateAndTimeSettings\"\n            parentName: \"dateTimeGroup\"\n            displayName: dccData.ntpEnabled ? qsTr(\"Ntp server\") : qsTr(\"System date and time\")\n            weight: 12\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            property bool showCustom: false\n            property string customAddr\n\n            onParentItemChanged: item => {\n                if (item) {\n                    item.rightPadding = DS.Style.comboBox.spacing\n                }\n            }\n\n            page: Item {\n                implicitHeight: 36\n                implicitWidth: dccData.ntpEnabled ? 280 : 80\n\n                ComboBox {\n                    id: comboBox\n                    property var serverList: dccData.ntpServerList\n                    flat: true\n                    padding: 0\n                    visible: dccData.ntpEnabled\n                    anchors.fill: parent\n                    hoverEnabled: true\n                    model: serverList\n                    // 不设置默认的话可能无法滚动（不显示上下箭头按钮）。。。\n                    maxVisibleItems: serverList.length - 1\n                    currentIndex:  {\n                        let index = serverList.indexOf(dccData.ntpServerAddress)\n                        dateAndTimeSettings.showCustom = (index < 0)\n                        if (index < 0)\n                            dateAndTimeSettings.customAddr = dccData.ntpServerAddress\n                        if (dccData.ntpServerAddress.length > 0)\n                            dccData.previousServerAddress = dccData.ntpServerAddress\n                        return index < 0 ? serverList.length - 1 : index\n                    }\n                    onActivated: function (index) {\n                        if (dccData.ntpServerAddress.length > 0)\n                            dccData.previousServerAddress = dccData.ntpServerAddress\n\n                        dateAndTimeSettings.showCustom = (serverList[index] === qsTr(\"Customize\"))\n                        if (dateAndTimeSettings.showCustom) {\n                            let savedCustomServer = dccData.getCustomNtpServer()\n                            if (savedCustomServer.length > 0) {\n                                dateAndTimeSettings.customAddr = savedCustomServer\n                                dccData.ntpServerAddress = savedCustomServer\n                            } else if (dateAndTimeSettings.customAddr.length > 0) {\n                                dccData.ntpServerAddress = dateAndTimeSettings.customAddr\n                            } else {\n                                dccData.ntpServerAddress = \"\"\n                            }\n                            return\n                        }\n\n                        dccData.ntpServerAddress = serverList[index]\n                    }\n\n                    Component.onCompleted: {\n                        let text = qsTr(\"Customize\")\n                        if (!comboBox.serverList.includes(text))\n                            comboBox.serverList.push(text)\n\n                        if (dccData.ntpServerAddress.length === 0 && dccData.previousServerAddress.length > 0) {\n                            dccData.ntpServerAddress = dccData.previousServerAddress\n                        }\n\n                        let currentServer = dccData.ntpServerAddress\n                        let index = comboBox.serverList.indexOf(currentServer)\n                        if (index < 0) {\n                            comboBox.currentIndex = comboBox.serverList.length - 1\n                            dateAndTimeSettings.showCustom = true\n                            dateAndTimeSettings.customAddr = currentServer\n                        } else {\n                            dateAndTimeSettings.showCustom = false\n                            let savedCustomServer = dccData.getCustomNtpServer()\n                            if (savedCustomServer.length > 0) {\n                                dateAndTimeSettings.customAddr = savedCustomServer\n                            }\n                        }\n                    }\n                }\n\n                Button {\n                    id: settingsButton\n                    visible: !dccData.ntpEnabled\n                    anchors.fill: parent\n                    property bool needShowDialog: false\n                    text: qsTr(\"Settings\")\n                    implicitWidth: fm.advanceWidth(text) + 12\n                    implicitHeight: 30\n                    FontMetrics {\n                        id: fm\n                    }\n\n                    Loader {\n                        id: loader\n                        active: settingsButton.needShowDialog\n                        sourceComponent: DateTimeSettingDialog {\n                            onClosing: {\n                                settingsButton.needShowDialog = false\n                            }\n                        }\n                        onLoaded: {\n                            item.show()\n                        }\n                    }\n\n                    onClicked: {\n                        settingsButton.needShowDialog = true\n                    }\n                }\n            }\n            onDeactive: {\n                if (dateAndTimeSettings.showCustom &&\n                        dateAndTimeSettings.customAddr.length === 0) {\n                    dateAndTimeSettings.showCustom = false\n                    if (dccData.previousServerAddress.length > 0) {\n                        dccData.ntpServerAddress = dccData.previousServerAddress\n                    }\n                }\n            }\n        }\n        DccObject {\n            id: customNTPServer\n            name: \"customNTPServer\"\n            parentName: \"dateTimeGroup\"\n            displayName: qsTr(\"Server address\")\n            visible: dccData.ntpEnabled && dateAndTimeSettings.showCustom\n            weight: 13\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            page: Item {\n                id: item\n                implicitHeight: 40\n                implicitWidth: 300\n                D.LineEdit {\n                    id: addr\n                    implicitWidth: 200\n                    text: dateAndTimeSettings.customAddr\n                    placeholderText: qsTr(\"Required\")\n                    alertText: qsTr(\"The ntp server address cannot be empty\")\n                    alertDuration: 3000\n                    horizontalAlignment: background.visible ? TextInput.AlignLeft : TextInput.AlignRight\n                    anchors{\n                        rightMargin: 5\n                        right: editBtn.left\n                        verticalCenter: parent.verticalCenter\n                    }\n                    rightPadding: (!addr.readOnly && addr.text.length > 0 ? addr.clearButton.width : 5)\n                    onReadOnlyChanged: {\n                        addr.background.visible = !addr.readOnly\n                        addr.clearButton.visible = !addr.readOnly && text.length > 0\n                        addr.focus = !addr.readOnly\n                    }\n                    onTextChanged: {\n                        if (addr.showAlert && addr.text.length > 0) {\n                            addr.showAlert = false\n                        }\n                    }\n                    Component.onCompleted: {\n                        Qt.callLater( function(){ addr.forceActiveFocus() } )\n                        addr.readOnly = text.length > 0\n                    }\n                }\n                D.IconButton {\n                    id: editBtn\n                    anchors.right: parent.right\n                    anchors.verticalCenter: parent.verticalCenter\n                    hoverEnabled: true\n                    background: Rectangle {\n                        anchors.fill: parent\n                        property D.Palette pressedColor: D.Palette {\n                            normal: Qt.rgba(0, 0, 0, 0.2)\n                            normalDark: Qt.rgba(1, 1, 1, 0.25)\n                        }\n                        property D.Palette hoveredColor: D.Palette {\n                            normal: Qt.rgba(0, 0, 0, 0.1)\n                            normalDark: Qt.rgba(1, 1, 1, 0.1)\n                        }\n                        radius: DS.Style.control.radius\n                        color: parent.pressed ? D.ColorSelector.pressedColor : (parent.hovered ? D.ColorSelector.hoveredColor : \"transparent\")\n                        border {\n                            color: parent.palette.highlight\n                            width: parent.visualFocus ? DS.Style.control.focusBorderWidth : 0\n                        }\n                    }\n                    icon {\n                        name: addr.readOnly ? \"dcc-edit\" : \"inactive\"\n                        width: 16\n                        height: 16\n                    }\n                    onClicked: {\n                        if (addr.text.length === 0) {\n                            addr.showAlert = true\n                            return\n                        }\n\n                        addr.showAlert = false\n\n                        if (!addr.readOnly) {\n                            dccData.ntpServerAddress = addr.text\n                        }\n\n                        addr.readOnly = !addr.readOnly\n                    }\n                }\n            }\n        }\n        DccObject {\n            visible: false // 暂时隐藏，会导致逻辑很复杂\n            name: \"12/24h\"\n            parentName: \"dateTimeGroup\"\n            displayName: qsTr(\"Use 24-hour format\")\n            weight: 14\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            page: Switch {\n                checked: dccData.use24HourFormat\n                onCheckedChanged: {\n                    dccData.use24HourFormat = checked\n                }\n            }\n        }\n    }\n\n    // 系统时区\n    DccObject {\n        id: timezoneGroup\n        name: \"timezoneGroup\"\n        parentName: \"datetime\"\n        weight: 20\n        pageType: DccObject.Item\n        page: DccGroupView {\n            id: view\n        }\n\n        DccRepeater {\n            id: userTimezoneRepeater\n            model: dccData.userTimezoneModel()\n            delegate: ItemZoneComp {\n                name: \"userTimezoneItem\" + index\n                parentName: \"timezoneGroup\"\n                displayName: model.display\n                description: model.description\n                weight: 20 + 10 * (index + 1)\n                shift: model.shift\n                zoneId: model.zoneId\n            }\n        }\n\n        onParentItemChanged: item => { if (item) item.topPadding = 5 }\n\n        DccObject {\n            id: systemTimezone\n            name: \"systemTimezone\"\n            parentName: \"timezoneGroup\"\n            displayName: qsTr(\"system time zone\")\n            weight: 12\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n\n            onParentItemChanged: item => {\n                if (item) {\n                    item.rightPadding = DS.Style.comboBox.spacing\n                }\n            }\n\n            page: Item {\n                id: systemTimezoneItem\n                implicitWidth: rowlayout.implicitWidth\n                implicitHeight: rowlayout.implicitHeight\n                property var model: dccData.zoneSearchModel()\n                property var currentIndex: dccData.currentTimeZoneIndex\n                property string saveZoneId: \"\"\n                RowLayout {\n                    id: rowlayout\n                    Label {\n                        id: timezoneLabel\n                        text: dccData.timeZoneDispalyName\n                    }\n                    D.IconLabel {\n                        Layout.alignment: Qt.AlignRight | Qt.AlignHCenter\n                        icon.name: \"arrow_ordinary_down\"\n                        icon.palette: D.DTK.makeIconPalette(timezoneLabel.palette)\n                    }\n                }\n\n                MouseArea {\n                    id: mouseArea\n                    anchors.fill: parent\n\n                    Component.onCompleted: {\n                        if (dccData.currentTimeZoneIndex >= 0) {\n                            let model = dccData.zoneSearchModel()\n                            systemTimezoneItem.saveZoneId = model.data(model.index(systemTimezoneItem.currentIndex, 0), ZoneInfoModel.ZoneIdRole)\n                        }\n                    }\n\n                    Connections {\n                        target: dccData\n                        function onCurrentTimeZoneIndexChanged() {\n                            if (dccData.currentTimeZoneIndex >= 0) {\n                                let model = dccData.zoneSearchModel()\n                                systemTimezoneItem.saveZoneId = model.data(model.index(systemTimezoneItem.currentIndex, 0), ZoneInfoModel.ZoneIdRole)\n                            }\n                        }\n                    }\n\n                    SearchableListViewPopup {\n                        id: timezoneWindow\n                        highlightedIndex: systemTimezoneItem.currentIndex\n                        maxVisibleItems: 13\n\n                        delegateModel: DelegateModel {\n                            model: systemTimezoneItem.model\n                            delegate: D.MenuItem {\n                                useIndicatorPadding: true\n                                width: timezoneWindow.viewWidth\n                                text: model.display\n                                font: D.DTK.fontManager.t6\n                                highlighted: ListView.isCurrentItem\n                                hoverEnabled: true\n                                checkable: true\n                                autoExclusive: true\n                                checked: model.zoneId === systemTimezoneItem.saveZoneId\n\n                                contentItem: RowLayout {\n                                    spacing: 8\n                                    Item {\n                                        Layout.preferredWidth: parent.parent.useIndicatorPadding ? 20 : 0\n                                        Layout.preferredHeight: parent.height\n                                        visible: parent.parent.useIndicatorPadding\n                                    }\n                                    Text {\n                                        Layout.fillWidth: true\n                                        Layout.alignment: Qt.AlignVCenter\n                                        text: parent.parent.text\n                                        font: D.DTK.fontManager.t6\n                                        color: parent.parent.palette.windowText\n                                        elide: Text.ElideRight\n                                        horizontalAlignment: Text.AlignLeft\n                                        verticalAlignment: Text.AlignVCenter\n                                    }\n                                }\n                                onHoveredChanged: {\n                                    if (hovered && !ListView.view.keyboardScrolling) {\n                                        timezoneWindow.setViewIndex(index)\n                                    }\n                                }\n                                onCheckedChanged: {\n                                    if (checked && model.zoneId != systemTimezoneItem.saveZoneId) {\n                                        let zoneId = model.zoneId\n                                        dccData.setSystemTimeZone(zoneId)\n                                        timezoneWindow.close()\n                                    }\n                                }\n                            }\n                        }\n\n                        onSearchTextChanged: {\n                            let delegateModel = dccData.zoneSearchModel()\n                            delegateModel.setFilterWildcard(timezoneWindow.searchText)\n                        }\n                    }\n\n                    onClicked: function (mouse) {\n                        if (!timezoneWindow.isVisible()) {\n                            // 保持当前选中项可见，但居中显示\n                            timezoneWindow.highlightedIndex = systemTimezoneItem.currentIndex\n                            timezoneWindow.show()\n                            timezoneWindow.setPositionByItem(parent)\n                        }\n                    }\n                }\n            }\n        }\n\n        DccObject {\n            name: \"timezoneList\"\n            parentName: \"timezoneGroup\"\n            displayName: qsTr(\"Timezone list\")\n            weight: 12\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            page: RowLayout {\n                spacing: 10\n                Button {\n                    id: addButton\n                    text: qsTr(\"Add\")\n                    implicitHeight: 30\n                    implicitWidth: 60\n\n                    SearchableListViewPopup {\n                        id: timezoneListWindow\n                        delegateModel: DelegateModel {\n                            model: dccData.zoneSearchModel()\n                            delegate: D.MenuItem {\n                                useIndicatorPadding: true\n                                width: timezoneListWindow.viewWidth\n                                text: model.display\n                                font: D.DTK.fontManager.t6\n                                highlighted: ListView.isCurrentItem\n                                hoverEnabled: true\n                                checkable: true\n                                autoExclusive: true\n\n                                contentItem: RowLayout {\n                                    spacing: 8\n                                    Item {\n                                        Layout.preferredWidth: parent.parent.useIndicatorPadding ? 20 : 0\n                                        Layout.preferredHeight: parent.height\n                                        visible: parent.parent.useIndicatorPadding\n                                    }\n                                    Text {\n                                        Layout.fillWidth: true\n                                        Layout.alignment: Qt.AlignVCenter\n                                        text: parent.parent.text\n                                        font: D.DTK.fontManager.t6\n                                        color: parent.parent.palette.windowText\n                                        elide: Text.ElideRight\n                                        horizontalAlignment: Text.AlignLeft\n                                        verticalAlignment: Text.AlignVCenter\n                                    }\n                                }\n                                onHoveredChanged: {\n                                    if (hovered && !ListView.view.keyboardScrolling) {\n                                        timezoneListWindow.setViewIndex(index)\n                                    }\n                                }\n                                onCheckedChanged: {\n                                    if (checked) {\n                                        let zoneId = model.zoneId\n                                        dccData.addUserTimeZoneById(zoneId)\n                                        timezoneListWindow.close()\n                                    }\n                                }\n                            }\n                        }\n                        maxVisibleItems: 13\n                        onSearchTextChanged: {\n                            let delegateModel = dccData.zoneSearchModel()\n                            delegateModel.setFilterWildcard(searchText);\n                        }\n                    }\n\n                    onClicked: {\n                        if (!timezoneListWindow.isVisible()) {\n                            timezoneListWindow.setPositionByItem(parent)\n                            timezoneListWindow.highlightedIndex = 0\n                            timezoneListWindow.show()\n                        }\n                    }\n                }\n            }\n        }\n    }\n\n    component ItemZoneComp: DccObject {\n        property int shift: 8\n        property string zoneId\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: ItemDelegate {\n            id: itemZoneCompItemDelegate\n            visible: dccObj\n            hoverEnabled: true\n            implicitHeight: Math.max(50, textColumn.implicitHeight + 2)\n            icon.name: dccObj.icon\n            checkable: false\n\n            contentItem: Item {\n                id: contentLayout\n                Column {\n                    id: textColumn\n                    anchors {\n                        left: parent.left\n                        leftMargin: 50\n                        verticalCenter: parent.verticalCenter\n                    }\n                    spacing: 2\n\n                    Label {\n                        id: display\n                        text: dccObj.displayName\n                        font: D.DTK.fontManager.t6\n                        elide: Text.ElideRight\n                    }\n                    Label {\n                        id: description\n                        visible: text !== \"\"\n                        font: D.DTK.fontManager.t10\n                        text: dccObj.description\n                        opacity: 0.6\n                        elide: Text.ElideRight\n                    }\n                }\n            }\n\n            TimezoneClock {\n                id: clock\n                width: 24\n                height: 24\n                shift: dccObj.shift\n                anchors {\n                    left: itemZoneCompItemDelegate.left\n                    leftMargin: 20\n                    top: itemZoneCompItemDelegate.top\n                    topMargin: (itemZoneCompItemDelegate.height - clock.height) / 2\n                }\n            }\n\n            D.IconButton {\n                id: removeButton\n                visible: itemZoneCompItemDelegate.hovered\n                icon.name: \"dcc-delete\"\n                icon.width: 16\n                icon.height: 16\n                implicitWidth: 32\n                implicitHeight: 32\n                anchors {\n                    right: itemZoneCompItemDelegate.right\n                    rightMargin: 10\n                    verticalCenter: itemZoneCompItemDelegate.verticalCenter\n                }\n                background: Rectangle {\n                    property D.Palette pressedColor: D.Palette {\n                        normal: Qt.rgba(0, 0, 0, 0.2)\n                        normalDark: Qt.rgba(1, 1, 1, 0.25)\n                    }\n                    property D.Palette hoveredColor: D.Palette {\n                        normal: Qt.rgba(0, 0, 0, 0.1)\n                        normalDark: Qt.rgba(1, 1, 1, 0.1)\n                    }\n                    radius: DS.Style.control.radius\n                    color: parent.pressed ? D.ColorSelector.pressedColor : (parent.hovered ? D.ColorSelector.hoveredColor : \"transparent\")\n                    border {\n                        color: parent.palette.highlight\n                        width: parent.visualFocus ? DS.Style.control.focusBorderWidth : 0\n                    }\n                }\n                onClicked: {\n                    console.log(\"need remove timezone\", dccObj.displayName)\n                    dccData.removeUserTimeZoneById(dccObj.zoneId)\n                }\n            }\n            background: DccItemBackground {\n                separatorVisible: true\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-datetime/qml/TimezoneClock.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick\nimport QtQuick.Controls\n\nItem {\n    id: clock\n\n    property int hours\n    property int minutes\n    property real shift: 8 // (UTC+08)\n    property bool internationalTime: true\n    property bool animationEnabled: false\n\n    width: 24\n    height: 24\n\n    Component.onCompleted: {\n        tick()\n    }\n\n    function tick() {\n        const date = new Date\n        clock.hours = internationalTime ? date.getUTCHours() + Math.floor(clock.shift) : date.getHours()\n        clock.minutes = internationalTime ? date.getUTCMinutes() + ((clock.shift % 1) * 60) : date.getMinutes()\n        if (clock.hours < 0)\n            clock.hours += 12\n    }\n\n    Timer {\n        id: timer\n        interval: 800\n        running: clock.visible\n        repeat: true\n        onTriggered: clock.tick()\n    }\n\n    Item {\n        id: clockPanel\n        anchors.fill: parent\n\n        Rectangle {\n            id: background\n            anchors.centerIn: parent\n            radius: width / 2\n            height: clockPanel.height\n            width: clockPanel.width\n            color: (hours >= 6 && hours < 18) ? \"#E1E1E1\" : \"#575757\"\n        }\n\n        Rectangle {\n            id: hourHandle\n            width: background.width / 3\n            height: 2\n            radius: height / 2\n            x: background.x + (background.width) / 2 - 1\n            y: background.y + background.height / 2 - 1\n            color: \"#07c5fb\"\n            antialiasing: true\n            transform: Rotation {\n                id: hourRotation\n                origin.x: 1\n                origin.y: 1\n                angle: (clock.hours * 30) + (clock.minutes * 0.5) - 90\n                Behavior on angle {\n                    enabled: clock.animationEnabled\n                    SpringAnimation {\n                        spring: 2\n                        damping: 0.2\n                        modulus: 360\n                    }\n                }\n            }\n        }\n\n        Rectangle {\n            id: minuteHandle\n            color: \"#f97676\"\n            height: 2\n            radius: height / 2\n            width: background.width * 0.4\n            x: background.x + background.width / 2 - 1\n            y: background.y + background.height / 2 - 1\n            antialiasing: true\n            transform: Rotation {\n                id: minuteRotation\n                origin.x: 1\n                origin.y: 1\n                angle: clock.minutes * 6 - 90\n                Behavior on angle {\n                    enabled: clock.animationEnabled\n                    SpringAnimation {\n                        spring: 2\n                        damping: 0.2\n                        modulus: 360\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-datetime/qml/TimezoneDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n// import org.deepin.dtk 1.0 as D\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Window\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc 1.0 as Dcc\n\nD.DialogWindow {\n    id: timezoneDialog\n    property string currentTimeZone: \"武汉 (UTC+08:00)\"\n    property string currentLocation: \"武汉-中国大陆\"\n    property string selectedTimeZone\n    property bool saved: false\n\n    visible: true\n    width: 1080\n    height: 730\n    minimumWidth: width\n    minimumHeight: height\n    maximumWidth: minimumWidth\n    maximumHeight: minimumHeight\n    color: \"#66000000\"\n    modality: Qt.WindowModal\n\n    // remove titlebar background\n    header: D.DialogTitleBar {\n        enableInWindowBlendBlur: false\n    }\n\n    ColumnLayout {\n        id: layout\n        y: -20\n        spacing: 10\n        height: parent.height\n        width: parent.width\n\n        function showIndicator(zoneId, zoneDiplayName) {\n            let size = zoneMap.sourceSize\n            let zonePos = dccData.zonePosition(zoneId, size.width, size.height)\n\n            let displaytexts = zoneDiplayName.split(' '); // [上海, (UTC+08:00)]\n\n            indicator.x = zonePos.x - 6\n            indicator.y = zonePos.y - 6\n            zoneMap.timZonePos = Qt.point(indicator.x, indicator.y)\n            timezoneDialog.selectedTimeZone = displaytexts[0]\n            indicator.visible = true\n        }\n\n        Label {\n            text: qsTr(\"Add time zone\")\n            font: D.DTK.fontManager.t2\n\n            Layout.alignment: Qt.AlignCenter\n        }\n\n        Dcc.SearchBar {\n            id: searchBar\n            Layout.preferredWidth: 300\n            Layout.alignment: Qt.AlignCenter\n            model: dccData.zoneSearchModel()\n            onClicked: function(model) {\n                layout.showIndicator(model.zoneId, model.cityName)\n            }\n        }\n\n        CheckBox {\n            text: qsTr(\"Determine the time zone based on the current location\")\n            Layout.alignment: Qt.AlignCenter\n            visible: false\n        }\n\n        D.DciIcon {\n            id: zoneMap\n            property point timZonePos\n\n            name: \"dcc_timezone_map\"\n            sourceSize: Qt.size(978, 500)\n            Layout.alignment: Qt.AlignCenter\n\n            ToolTip {\n                id: toolTip\n                property alias model: arrowListView.model\n                contentItem: ColumnLayout {\n                    Repeater {\n                        id: arrowListView\n                        D.ItemDelegate {\n                            id: item\n                            implicitWidth: 120\n                            implicitHeight: 30\n                            text: modelData\n                            background: Item {\n                                implicitWidth: item.width\n                                implicitHeight: item.height\n                                Loader {\n                                    anchors.fill: parent\n                                    active: item.hovered\n                                    sourceComponent: D.HighlightPanel {}\n                                }\n                            }\n                            onClicked: {\n                                timezoneDialog.selectedTimeZone = modelData\n                                //toolTip.x = pos.x - 50 toolTip.y = pos.y - 10\n                                zoneMap.timZonePos = Qt.point(toolTip.x + 50 - 6, toolTip.y + 10 - 6)\n                                toolTip.hide()\n\n                            }\n                        }\n                    }\n                }\n\n                onVisibleChanged: {\n                    indicator.x = zoneMap.timZonePos.x\n                    indicator.y = zoneMap.timZonePos.y\n                    indicator.visible = !toolTip.visible && timezoneDialog.selectedTimeZone.length > 0\n                }\n            }\n\n            D.DciIcon {\n                id: indicator\n                visible: !toolTip.visible && timezoneDialog.selectedTimeZone.length > 0\n                name: \"indicator_active\"\n                sourceSize:  Qt.size(12, 12)\n            }\n\n            ToolTip {\n                id: holdToolTip\n                x: indicator.x - holdToolTip.width / 2 + 6\n                y: indicator.y - holdToolTip.height - 6\n                closePolicy: Popup.NoAutoClose\n                text: timezoneDialog.selectedTimeZone\n                visible: indicator.visible && text.length > 0\n            }\n\n            function showTips(pos, model) {\n                toolTip.visible = true\n                toolTip.delay = 200\n                toolTip.model = model\n                toolTip.x = pos.x - 50\n                toolTip.y = pos.y - 10\n            }\n\n            MouseArea {\n                anchors.fill: parent\n                onPressed: function(mouse) {\n                    let zones = dccData.zones(mouse.x, mouse.y, zoneMap.width, zoneMap.height)\n                    if (zones.length < 1) {\n                        console.log(\"mouse pos:\", mouse.x, mouse.y, \"no zone found....\");\n                        return\n                    }\n\n                    indicator.visible = false\n\n                    let zonePos = Qt.point(mouse.x, mouse.y)\n                    zonePos = dccData.zonePosition(zones[0], zoneMap.width, zoneMap.height)\n                    Qt.callLater(zoneMap.showTips, zonePos, zones);\n                }\n            }\n\n            Component.onCompleted: {\n                // show with indicator\n                layout.showIndicator(dccData.systemTimeZone, dccData.timeZoneDispalyName)\n            }\n        }\n\n        RowLayout {\n            visible: false\n            spacing: 10\n            Layout.alignment: Qt.AlignCenter\n            Layout.bottomMargin: 10\n            Label {\n                text: qsTr(\"Time zone:\")\n            }\n            Label {\n                text: timezoneDialog.currentTimeZone\n            }\n        }\n\n        RowLayout {\n            visible: false\n            spacing: 10\n            Layout.alignment: Qt.AlignCenter\n            Layout.bottomMargin: 30\n            Label {\n                text: qsTr(\"Nearest City:\")\n            }\n            Label {\n                text: timezoneDialog.currentLocation\n            }\n        }\n\n        RowLayout {\n            Layout.alignment: Qt.AlignCenter | Qt.AlignBottom\n            spacing: 10\n            Button {\n                Layout.bottomMargin: 10\n                text: qsTr(\"Cancel\")\n                onClicked: {\n                    timezoneDialog.saved = false\n                    close()\n                }\n            }\n            D.RecommandButton {\n                enabled: timezoneDialog.selectedTimeZone.length > 0\n                Layout.bottomMargin: 10\n                text: qsTr(\"Save\")\n                onClicked: {\n                    timezoneDialog.saved = true\n                    close()\n                }\n            }\n        }\n    }\n}\n    \n"
  },
  {
    "path": "src/plugin-datetime/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-deepinid/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\nset(pluginName deepinid)\nfile(GLOB_RECURSE deepinid_SRCS\n    \"operation/*.cpp\"\n    \"operation/*.h\"\n    \"operation/qrc/deepinid.qrc\"\n)\n\nfind_package(OpenSSL REQUIRED)\n\nadd_library(${pluginName} MODULE\n    ${deepinid_SRCS}\n)\n\nset(deepinid_Libraries\n    ${DCC_FRAME_Library}\n    ${QT_NS}::DBus\n    ${QT_NS}::Concurrent\n    ${DTK_NS}::Gui\n)\n\ntarget_link_libraries(${pluginName} PRIVATE\n    ${deepinid_Libraries}\n    libcrypto.so\n)\n\ndcc_install_plugin(NAME ${pluginName} TARGET ${pluginName})\n"
  },
  {
    "path": "src/plugin-deepinid/operation/appinfolistmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"appinfolistmodel.h\"\n\n#include <QUrl>\n\nAppInfoListModel::AppInfoListModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n\n}\n\nAppInfoListModel::~AppInfoListModel()\n{\n    clearItem();\n}\n\nvoid AppInfoListModel::addAppItem(AppItemData *item)\n{\n    beginInsertRows(QModelIndex(), m_appItemList.count(), m_appItemList.count());\n    m_appItemList.append(item);\n    endInsertRows();\n}\n\nvoid AppInfoListModel::removeAppItem(AppItemData* item)\n{\n    beginResetModel();\n    m_appItemList.removeAll(item);\n    delete item;\n    item = nullptr;\n    endResetModel();\n}\n\nvoid AppInfoListModel::clearItem()\n{\n    beginResetModel();\n    for (AppItemData* item : m_appItemList) {\n        delete item;\n        item = nullptr;\n    }\n    m_appItemList.clear();\n    endResetModel();\n}\n\nvoid AppInfoListModel::updateAppItem(const QString &key, bool enable)\n{\n    for (AppItemData* item : m_appItemList) {\n        if (item->key == key) {\n            item->enable = enable;\n            QModelIndex modelIndex = createIndex(m_appItemList.indexOf(item), 0);\n            emit dataChanged(modelIndex, modelIndex, { EnableRole });\n            return;\n        }\n    }\n}\n\nint AppInfoListModel::rowCount(const QModelIndex &parent) const\n{\n    Q_UNUSED(parent);\n\n    return m_appItemList.count();\n}\n\nQVariant AppInfoListModel::data(const QModelIndex &index, int role) const\n{\n    if (index.row() < 0 || index.row() >= m_appItemList.count())\n        return QVariant();\n\n    auto appItem = m_appItemList[index.row()];\n    switch (role) {\n        case NameRole:\n            return appItem->name;\n        case IconRole:\n            return appItem->icon.startsWith(\"/\") ? QUrl::fromLocalFile(appItem->icon).toString() : appItem->icon;\n        case KeyRole:\n            return appItem->key;\n        case EnableRole:\n            return appItem->enable;\n        default:\n            break;\n    }\n\n    return QVariant();\n}\n"
  },
  {
    "path": "src/plugin-deepinid/operation/appinfolistmodel.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef APPINFOLISTMODEL_H\n#define APPINFOLISTMODEL_H\n\n#include <QAbstractListModel>\n\nstruct AppItemData\n{\n    QString name;\n    QString icon;\n    QString key;\n    bool enable;\n    bool state;\n};\n\nclass AppInfoListModel : public QAbstractListModel\n{\n    Q_OBJECT\n\npublic:\n    enum AppItemRoles {\n        NameRole = Qt::UserRole + 1,\n        IconRole,\n        KeyRole,\n        EnableRole,\n    };\n    Q_ENUM(AppItemRoles)\n\n    explicit AppInfoListModel(QObject *parent = nullptr);\n    ~AppInfoListModel() override;\n\n    void addAppItem(AppItemData *item);\n    void removeAppItem(AppItemData* item);\n    void clearItem();\n    void updateAppItem(const QString &key, bool enable);\n\nprotected:\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n    QHash<int, QByteArray> roleNames() const override {\n        QHash<int, QByteArray> roles;\n        roles[NameRole] = \"name\";\n        roles[IconRole] = \"icon\";\n        roles[KeyRole] = \"key\";\n        roles[EnableRole] = \"enable\";\n        return roles;\n    }\n\nprivate:\n    QList<AppItemData*> m_appItemList;\n};\n\n#endif // APPINFOLISTMODEL_H\n"
  },
  {
    "path": "src/plugin-deepinid/operation/cryptor.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"cryptor.h\"\n#include <QDebug>\n#include <openssl/err.h>\n#include <openssl/rsa.h>\n\nCryptor::Cryptor()\n{\n}\n\nbool Cryptor::RSAPublicEncryptData(const std::string &rsakey, const QString &strin, QByteArray &strout)\n{\n    BIO *bio = BIO_new_mem_buf(rsakey.c_str(), rsakey.length());\n    EVP_PKEY *pkey = PEM_read_bio_PUBKEY(bio, nullptr, nullptr, nullptr);\n    if(pkey == nullptr)\n    {\n        QString strerror = QString::fromLocal8Bit(ERR_error_string(ERR_get_error(), nullptr));\n        qWarning() << \"read rsa public key failed, error:\" << strerror;\n        qWarning() << \"RSA pubkey:\" << QString::fromStdString(rsakey);\n        qWarning() << \"length:\" << rsakey.length();\n        if(bio) BIO_free(bio);\n        return false;\n    }\n\n    EVP_PKEY_CTX *ctx = EVP_PKEY_CTX_new(pkey, nullptr);\n    if (!ctx || EVP_PKEY_encrypt_init(ctx) <= 0) {\n        qWarning() << \"Failed to initialize encryption context\";\n        if(ctx) EVP_PKEY_CTX_free(ctx);\n        EVP_PKEY_free(pkey);\n        if(bio) BIO_free(bio);\n        return false;\n    }\n\n    if (EVP_PKEY_CTX_set_rsa_padding(ctx, RSA_PKCS1_PADDING) <= 0) {\n        qWarning() << \"Failed to set RSA padding\";\n        EVP_PKEY_CTX_free(ctx);\n        EVP_PKEY_free(pkey);\n        if(bio) BIO_free(bio);\n        return false;\n    }\n\n    QByteArray inputData = strin.toLocal8Bit();\n    const unsigned char *input = (const unsigned char*)inputData.constData();\n    size_t inlen = inputData.length();\n\n    size_t outlen;\n    if (EVP_PKEY_encrypt(ctx, nullptr, &outlen, input, inlen) <= 0) {\n        qWarning() << \"Failed to determine output length\";\n        EVP_PKEY_CTX_free(ctx);\n        EVP_PKEY_free(pkey);\n        if(bio) BIO_free(bio);\n        return false;\n    }\n\n    unsigned char *outbuff = new unsigned char[outlen];\n    if (EVP_PKEY_encrypt(ctx, outbuff, &outlen, input, inlen) <= 0) {\n        qWarning() << \"Encryption failed\";\n        delete[] outbuff;\n        EVP_PKEY_CTX_free(ctx);\n        EVP_PKEY_free(pkey);\n        if(bio) BIO_free(bio);\n        return false;\n    }\n\n    strout.append((char*)outbuff, outlen);\n    delete[] outbuff;\n\n    EVP_PKEY_CTX_free(ctx);\n    EVP_PKEY_free(pkey);\n    if(bio) BIO_free(bio);\n\n    return true;\n}\n"
  },
  {
    "path": "src/plugin-deepinid/operation/cryptor.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef CRYPTOR_H\n#define CRYPTOR_H\n#include <openssl/bio.h>\n#include <openssl/evp.h>\n#include <openssl/pem.h>\n#include <QString>\n\nclass Cryptor\n{\npublic:\n    Cryptor();\n\n    static bool RSAPublicEncryptData(const std::string &rsakey, const QString &strin, QByteArray &strout);\n};\n\n#endif // CRYPTOR_H\n"
  },
  {
    "path": "src/plugin-deepinid/operation/deepiniddbusproxy.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"deepiniddbusproxy.h\"\n#include \"utils.h\"\n\nDeepinidDBusProxy::DeepinidDBusProxy(QObject *parent)\n    : QObject(parent)\n    , m_deepinId(new DDBusInterface(DEEPINID_SERVICE, DEEPINID_PATH, DEEPINID_INTERFACE, QDBusConnection::sessionBus(), this))\n{\n}\n\nvoid DeepinidDBusProxy::login() const\n{\n    m_deepinId->asyncCall(\"Login\");\n}\n\nvoid DeepinidDBusProxy::logout() const\n{\n    m_deepinId->asyncCall(\"Logout\");\n}\n\nQDBusReply<QString> DeepinidDBusProxy::localBindCheck(const QString &uuid)\n{\n    return m_deepinId->call(QDBus::BlockWithGui, \"LocalBindCheck\", uuid);\n}\n\nQDBusReply<QString> DeepinidDBusProxy::meteInfo()\n{\n    return m_deepinId->call(\"MeteInfo\");\n}\n\nQVariantMap DeepinidDBusProxy::userInfo()\n{\n    return m_deepinId->property(\"UserInfo\").toMap();\n}\n"
  },
  {
    "path": "src/plugin-deepinid/operation/deepiniddbusproxy.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef DEEPINIDDBUSPROXY_H\n#define DEEPINIDDBUSPROXY_H\n\n#include <DDBusInterface>\n#include <QObject>\n#include <QDBusReply>\n\nusing Dtk::Core::DDBusInterface;\n\nclass DeepinidDBusProxy: public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(QVariantMap UserInfo READ userInfo NOTIFY UserInfoChanged)\n\npublic:\n    explicit DeepinidDBusProxy(QObject *parent = nullptr);\n\n    void login() const;\n    void logout() const;\n\n    QDBusReply<QString> localBindCheck(const QString &uuid);\n    QDBusReply<QString> meteInfo();\n    QVariantMap userInfo();\n\nsignals:\n    void UserInfoChanged(const QVariantMap& value) const;\n\nprivate:\n    DDBusInterface *m_deepinId;\n};\n\n#endif // DEEPINIDDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-deepinid/operation/deepinidinterface.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"dccfactory.h\"\n#include \"deepinidinterface.h\"\n#include \"utils.h\"\n\nDeepinIDInterface::DeepinIDInterface(QObject *parent)\n    : QObject(parent)\n    , m_model(new DeepinidModel(this))\n    , m_worker(new DeepinWorker(m_model, this))\n{\n    m_worker->initData();\n}\n\nQString DeepinIDInterface::editionName() const\n{\n    if (IsCommunitySystem) {\n        return tr(\"deepin\");\n    } else {\n        return tr(\"UOS\");\n    }\n}\n\nDCC_FACTORY_CLASS(DeepinIDInterface)\n\n#include \"deepinidinterface.moc\"\n"
  },
  {
    "path": "src/plugin-deepinid/operation/deepinidinterface.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef DEEPINIDINTERFACE_H\n#define DEEPINIDINTERFACE_H\n\n#include \"deepinidmodel.h\"\n#include \"deepinidworker.h\"\n\nclass DeepinIDInterface : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(DeepinidModel *model READ getModel NOTIFY deepinidModelChanged)\n    Q_PROPERTY(DeepinWorker *worker READ getWorker NOTIFY deepinidWorkerChanged)\n\npublic:\n    explicit DeepinIDInterface(QObject *parent = nullptr);\n\n    DeepinidModel *getModel() const { return m_model; };\n    DeepinWorker *getWorker() const { return m_worker; };\n\n    Q_INVOKABLE QString editionName() const;\n\nsignals:\n    void deepinidModelChanged(DeepinidModel *model);\n    void deepinidWorkerChanged(DeepinWorker *worker);\n\nprivate:\n    DeepinidModel *m_model;\n    DeepinWorker *m_worker;\n\n};\n\n#endif // DEEPINIDINTERFACE_H\n"
  },
  {
    "path": "src/plugin-deepinid/operation/deepinidmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"deepinidmodel.h\"\n\n#include <QDateTime>\n#include <QDir>\n#include <QLoggingCategory>\n\nQ_LOGGING_CATEGORY(DeepinIDModel, \"dcc-deepinid-model\");\n\nDeepinidModel::DeepinidModel(QObject *parent)\n    : QObject{ parent }\n    , m_loginState(false)\n    , m_activation(false)\n    , m_syncEnabled(true)\n    , m_syncSwitch(false)\n    , m_syncItemShow(false)\n    , m_syncInfoListModel(new SyncInfoListModel(this))\n    , m_appInfoListModel(new AppInfoListModel(this))\n    , m_downloader(nullptr)\n{\n\n}\n\nvoid DeepinidModel::setUserinfo(const QVariantMap &userinfo)\n{\n    if (m_userinfo == userinfo)\n        return;\n\n    m_userinfo = userinfo;\n    m_loginState = !m_userinfo[\"Username\"].toString().isEmpty();\n    m_region = (m_userinfo[\"Region\"].toString() == \"CN\") ? tr(\"Mainland China\") : tr(\"Other regions\");\n    m_userName = m_userinfo[\"Nickname\"].toString();\n    if (m_userName.isEmpty()) {\n        m_userName = m_userinfo[\"Username\"].toString();\n    }\n    m_wechatName = m_userinfo[\"WechatNickname\"].toString().trimmed();\n\n    updateAvatarPath();\n\n    Q_EMIT loginStateChanged(m_loginState);\n    Q_EMIT avatarChanged(m_avatar);\n    Q_EMIT regionChanged(m_region);\n    Q_EMIT userNameChanged(m_userName);\n    Q_EMIT wechatNameChanged(m_wechatName);\n    Q_EMIT syncEnabledChanged(syncEnabled());\n}\n\nvoid DeepinidModel::setActivation(bool activation)\n{\n    if (m_activation == activation)\n        return;\n\n    m_activation = activation;\n    Q_EMIT syncEnabledChanged(syncEnabled());\n}\n\nbool DeepinidModel::syncEnabled() const\n{\n    return m_activation && (m_userinfo[\"Region\"].toString() == \"CN\");\n}\n\nvoid DeepinidModel::setSyncSwitch(bool enable)\n{\n    if (m_syncSwitch == enable)\n        return;\n\n    m_syncSwitch = enable;\n    Q_EMIT syncSwitchChanged(m_syncSwitch);\n}\n\nvoid DeepinidModel::setSyncItemShow(bool show)\n{\n    if (m_syncItemShow == show)\n        return;\n\n    m_syncItemShow = show;\n    Q_EMIT syncItemShowChanged(m_syncItemShow);\n}\n\nvoid DeepinidModel::setLastSyncTime(const qlonglong &lastSyncTime)\n{\n    if (m_syncTimestamp == lastSyncTime)\n        return;\n\n    m_lastSyncTime = QDateTime::fromMSecsSinceEpoch(lastSyncTime * 1000).toString(\"yyyy/MM/dd hh:mm\");\n    Q_EMIT lastSyncTimeChanged(m_lastSyncTime);\n}\n\nvoid DeepinidModel::updateSyncItem(const QString &key, bool enable)\n{\n    m_syncInfoListModel->updateSyncItem(key, enable);\n}\n\nvoid DeepinidModel::initAppItemList(QList<AppItemData*> appItemList)\n{\n    m_appInfoListModel->clearItem();\n    for (auto item : appItemList) {\n        m_appInfoListModel->addAppItem(item);\n    }\n}\n\nvoid DeepinidModel::updateAppItem(const QString &key, bool enable)\n{\n    m_appInfoListModel->updateAppItem(key, enable);\n}\n\nQString DeepinidModel::warnTipsMessage()\n{\n    if (!m_activation) {\n        return tr(\"The feature is not available at present, please activate your system first\");\n    };\n\n    if (m_userinfo[\"Region\"].toString() != \"CN\") {\n        return tr(\"Subject to your local laws and regulations, it is currently unavailable in your region.\");\n    }\n\n    return QString();\n}\n\nvoid DeepinidModel::updateAvatarPath()\n{\n    QString profile_image = m_userinfo[\"ProfileImage\"].toString();\n    if (profile_image.isEmpty()) {\n        return;\n    }\n\n    QString avatarPath(QString(\"%1/.cache/deepin/dde-control-center/sync%2\").arg(getenv(\"HOME\")).arg(getUserName()));\n    QDir dir;\n    dir.mkpath(avatarPath);\n    qCDebug(DeepinIDModel) << \"profile image:\" << profile_image << \", avatar path:\" << avatarPath;\n\n    QString localAvatar = avatarPath + profile_image.right(profile_image.size() - profile_image.lastIndexOf(\"/\"));\n    QString localDefault = avatarPath + \"/default.svg\";\n    if (QFile::exists(localAvatar)) {\n        qCDebug(DeepinIDModel) << \"local Avatar:\" << localAvatar;\n        m_avatar = localAvatar;\n        return;\n    } else if (QFile::exists(localDefault)) {\n        qCDebug(DeepinIDModel) << \"local default:\" << localDefault;\n        m_avatar = localDefault;\n        return;\n    }\n\n    if (m_downloader == nullptr) {\n        m_downloader = new DownloadUrl(this);\n        connect(m_downloader, &DownloadUrl::fileDownloaded, this, &DeepinidModel::updateAvatarPath, Qt::UniqueConnection);\n    }\n    m_downloader->downloadFileFromURL(profile_image, avatarPath);\n}\n"
  },
  {
    "path": "src/plugin-deepinid/operation/deepinidmodel.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef DEEPINIDMODEL_H\n#define DEEPINIDMODEL_H\n\n#include \"syncinfolistmodel.h\"\n#include \"appinfolistmodel.h\"\n#include \"downloadurl.h\"\n\n#include <QObject>\n#include <QVariantMap>\n\nclass DeepinidModel : public QObject\n{\n    Q_OBJECT\n\n    // deepinid\n    Q_PROPERTY(bool loginState READ getLoginState NOTIFY loginStateChanged)\n    Q_PROPERTY(QString avatar READ getAvatar NOTIFY avatarChanged)\n    Q_PROPERTY(QString region READ getRegion NOTIFY regionChanged)\n    Q_PROPERTY(QString userName READ getUserName NOTIFY userNameChanged)\n    Q_PROPERTY(QString wechatName READ getWechatName NOTIFY wechatNameChanged)\n\n    // 同步服务\n    Q_PROPERTY(bool syncEnabled READ syncEnabled NOTIFY syncEnabledChanged)\n    Q_PROPERTY(bool syncSwitch READ syncSwitch WRITE setSyncSwitch NOTIFY syncSwitchChanged)\n    Q_PROPERTY(bool syncItemShow READ syncItemShow WRITE setSyncItemShow NOTIFY syncItemShowChanged)\n    Q_PROPERTY(QString lastSyncTime READ lastSyncTime NOTIFY lastSyncTimeChanged)\n\npublic:\n    explicit DeepinidModel(QObject *parent = nullptr);\n\n    // deepinid账户\n    inline const QVariantMap userinfo() const { return m_userinfo; }\n    void setUserinfo(const QVariantMap &userinfo);\n\n    inline bool getLoginState() const { return m_loginState; }\n    inline const QString getAvatar() const { return m_avatar; }\n    inline const QString getRegion() const { return m_region; }\n    inline const QString getUserName() const { return m_userName; }\n    inline const QString getWechatName() const { return m_wechatName; }\n\n    // 同步服务\n    inline bool activation() const { return m_activation; }\n    void setActivation(bool activation);\n\n    bool syncEnabled() const;\n\n    inline bool syncSwitch() const { return m_syncSwitch; }\n    void setSyncSwitch(bool enable);\n\n    inline bool syncItemShow() const { return m_syncItemShow; }\n    void setSyncItemShow(bool show);\n\n    inline QString lastSyncTime() const { return m_lastSyncTime; }\n    void setLastSyncTime(const qlonglong &lastSyncTime);\n\n    void updateSyncItem(const QString &key, bool enable);\n\n    void initAppItemList(QList<AppItemData*> appItemList);\n    void updateAppItem(const QString &key, bool enable);\n\n    Q_INVOKABLE SyncInfoListModel* syncInfoListModel() const { return m_syncInfoListModel; }\n    Q_INVOKABLE AppInfoListModel* appInfoListModel() const { return m_appInfoListModel; }\n\n    Q_INVOKABLE QString warnTipsMessage(); // 获取警告提示信息\n\nprotected Q_SLOTS:\n    void updateAvatarPath();\n\nsignals:\n    void loginStateChanged(bool loginState);\n    void avatarChanged(const QString &avatar);\n    void regionChanged(const QString &region);\n    void userNameChanged(const QString &userName);\n    void wechatNameChanged(const QString &wechatName);\n\n    void syncEnabledChanged(bool enable);\n    void syncSwitchChanged(bool enable);\n    void syncItemShowChanged(bool show);\n    void syncStateChanged(const std::pair<qint32, QString>& syncState);\n    void lastSyncTimeChanged(const QString &lastSyncTime);\n\nprivate:\n    // deepinid账户\n    QVariantMap m_userinfo;\n    bool m_loginState;\n    QString m_avatar;\n    QString m_region;\n    QString m_userName;\n    QString m_wechatName;\n\n    // 同步服务\n    bool m_activation;   // 激活状态\n    bool m_syncEnabled;  // 同步是否可用：受激活状态、地区限制(未激活不可用，非中国地区不可用)\n    bool m_syncSwitch;   // 同步开关是否已开启\n    bool m_syncItemShow; // 是否显示系统设置中的同步项\n    qlonglong m_syncTimestamp; // 上次同步时间戳\n    QString m_lastSyncTime;    // 上次同步时间\n    SyncInfoListModel *m_syncInfoListModel;\n    AppInfoListModel *m_appInfoListModel;\n    DownloadUrl *m_downloader;\n};\n\n#endif // DEEPINIDMODEL_H\n"
  },
  {
    "path": "src/plugin-deepinid/operation/deepinidworker.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"deepinidworker.h\"\n#include \"cryptor.h\"\n#include \"utils.h\"\n\n#include <DDBusSender>\n#include <DNotifySender>\n#include <dsysinfo.h>\n\n#include <QUrl>\n#include <QDesktopServices>\n#include <QFuture>\n#include <QFutureWatcher>\n#include <QtConcurrent>\n#include <QLoggingCategory>\n\nQ_LOGGING_CATEGORY(DeepinIDWorker, \"dcc-deepinid-worker\");\n\nDCORE_USE_NAMESPACE\n\nstatic const QString SurPlusError = QStringLiteral(\"7520\");\nstatic const QString NicknameOnce = QStringLiteral(\"7518\");\n\nstatic void notifyInfo(const QString &reason)\n{\n    QDBusPendingReply<unsigned int> reply = DUtil::DNotifySender(utils::getEditionName() + \" ID\")\n                                                .appName(\"org.deepin.dde.control-center\")\n                                                .appIcon(utils::getIconName())\n                                                .appBody(reason)\n                                                .replaceId(0)\n                                                .timeOut(3000)\n                                                .actions(QStringList() << \"default\")\n                                                .call();\n\n    reply.waitForFinished();\n}\n\nDeepinWorker::DeepinWorker(DeepinidModel *model, QObject *parent)\n    : QObject(parent)\n    , m_model(model)\n    , m_deepinIDProxy(new DeepinidDBusProxy(this))\n    , m_syncProxy(new SyncDBusProxy(this))\n    , m_utcloudProxy(new UtcloudDBusProxy(this))\n    , m_clientService(nullptr)\n{\n    QDBusConnection::systemBus().connect(LICENSE_SERVICE, LICENSE_PATH, LICENSE_INTERFACE, \"LicenseStateChange\", this, SLOT(licenseStateChangeSlot()));\n\n    connect(m_deepinIDProxy, &DeepinidDBusProxy::UserInfoChanged, [this](const QVariantMap &userinfo) {\n        m_model->setUserinfo(userinfo);\n        if (m_model->syncEnabled()) {\n            activate();\n        }\n    });\n\n    connect(m_syncProxy, &SyncDBusProxy::SwitcherChange, this, &DeepinWorker::onSyncSwitcherChange, Qt::QueuedConnection);\n    connect(m_syncProxy, &SyncDBusProxy::LastSyncTimeChanged, this, &DeepinWorker::onLastSyncTimeChanged, Qt::QueuedConnection);\n\n    connect(m_utcloudProxy, &UtcloudDBusProxy::SwitcherChange, this, &DeepinWorker::onUtcloudSwitcherChange, Qt::QueuedConnection);\n    connect(m_utcloudProxy, &UtcloudDBusProxy::LoginStatus, this, &DeepinWorker::onUtcloudLoginStatusChange, Qt::QueuedConnection);\n\n    m_forgetUrl = utils::forgetPwdURL();\n    m_wechatUrl = utils::wechatURL();\n}\n\nvoid DeepinWorker::initData()\n{\n    // 初始化用户登陆数据\n    m_model->setUserinfo(m_deepinIDProxy->userInfo());\n\n    // 获取认证状态\n    licenseStateChangeSlot();\n}\n\nvoid DeepinWorker::loginUser()\n{\n    m_deepinIDProxy->login();\n}\n\nvoid DeepinWorker::logoutUser()\n{\n    m_deepinIDProxy->logout();\n}\n\nvoid DeepinWorker::openWeb()\n{\n    QString url = loadCodeURL();\n    QUrl::toPercentEncoding(url);\n    QDesktopServices::openUrl(QUrl(url));\n}\n\nvoid DeepinWorker::setFullName(const QString &name)\n{\n    QString error;\n    bool ret = m_utcloudProxy->SetNickname(name.trimmed(), error);\n    if (!ret) {\n        QString errorMsg;\n        if (error.contains(NicknameOnce)) {\n            errorMsg = tr(\"The nickname can be modified only once a day\");\n            notifyInfo(errorMsg);\n        }\n    }\n}\n\nvoid DeepinWorker::setAutoSync(bool autoSync)\n{\n    m_syncProxy->SwitcherSet(\"enabled\", autoSync);\n}\n\nvoid DeepinWorker::setSyncSwitcher(const QStringList &keyList, bool enable)\n{\n    foreach(auto key, keyList) {\n        m_syncProxy->SwitcherSet(key, enable);\n    }\n}\n\nvoid DeepinWorker::setUtcloudSwitcher(const QString &key, bool enable)\n{\n    m_utcloudProxy->SwitcherSet(key, enable);\n}\n\nbool DeepinWorker::checkPasswdEmpty()\n{\n    QDBusReply<QString> reply = m_deepinIDProxy->meteInfo();\n    if (!reply.isValid()) {\n        qCWarning(DeepinIDWorker) << \"get mete info error:\" << reply.error();\n        return false;\n    }\n\n    QString data = reply.value();\n    QJsonDocument jsonDoc = QJsonDocument::fromJson(data.toUtf8());\n    QJsonObject jsonObj = jsonDoc.object();\n    return jsonObj[\"passwordEmpty\"].toBool();\n}\n\nQVariantMap DeepinWorker::checkPassword(const QString &passwd)\n{\n    QVariantMap result;\n    result[\"isOk\"] = false;\n    result[\"errMsg\"] = \"\";\n\n    QByteArray encryptData;\n    if (!Cryptor::RSAPublicEncryptData(m_RSApubkey, passwd, encryptData)) {\n        result[\"errMsg\"] = tr(\"encrypt password failed\");\n        return result;\n    }\n\n    QDBusInterface deepinIf(SYNC_SERVICE, DEEPINID_PATH, DEEPINID_INTERFACE, QDBusConnection::sessionBus());\n    QDBusReply<QString> reply = deepinIf.call(\"Checkpwd\", QString::fromLocal8Bit(encryptData.toBase64()));\n    if (reply.isValid()) {\n        m_pwdToken = reply.value();\n        result[\"isOk\"] = true;\n    } else {\n        QString errmsg = reply.error().message();\n        qCDebug(DeepinIDWorker) << \"check password error:\" << errmsg;\n        if(errmsg.contains(SurPlusError)) {\n            QJsonDocument jsonDoc = QJsonDocument::fromJson(errmsg.toUtf8());\n            QJsonObject jsonObj = jsonDoc.object();\n            QJsonObject dataObj = jsonObj[\"data\"].toObject();\n            int count = dataObj[\"surplus_count\"].toInt();\n            if (count > 0) {\n                result[\"errMsg\"] = tr(\"Wrong password, %1 chances left\").arg(count);\n            } else {\n                result[\"errMsg\"] = tr(\"The login error has reached the limit today. You can reset the password and try again.\");\n            }\n        }\n    }\n\n    return result;\n}\n\nvoid DeepinWorker::registerPasswd(const QString &passwd)\n{\n    QByteArray encryptPwd;\n    if (Cryptor::RSAPublicEncryptData(m_RSApubkey, passwd, encryptPwd)) {\n        QDBusInterface deepinIf(SYNC_SERVICE, DEEPINID_PATH, DEEPINID_INTERFACE, QDBusConnection::sessionBus());\n        QDBusReply<void> reply = deepinIf.call(\"SetPassword\", QString::fromLocal8Bit(encryptPwd.toBase64()));\n        if (!reply.isValid()) {\n            qCWarning(DeepinIDWorker) << \"set password error:\" << QDBusError::errorString(reply.error().type()) << reply.error();\n        }\n    } else {\n        qCWarning(DeepinIDWorker) << \"encrypt password failed\";\n    }\n}\n\nvoid DeepinWorker::clearData()\n{\n    QDBusInterface deepinIf(SYNC_SERVICE, UTCLOUD_PATH, UTCLOUD_INTERFACE, QDBusConnection::sessionBus());\n    QDBusReply<void> reply = deepinIf.asyncCall(\"Empty\");\n    if (!reply.isValid()) {\n        qCWarning(DeepinIDWorker) << \"clear cloud data error:\" << reply.error();\n    } else {\n        qCDebug(DeepinIDWorker) << \"clear cloud data success\";\n    }\n\n    notifyInfo(tr(\"Operation Successful\"));\n}\n\nvoid DeepinWorker::openForgetPasswd()\n{\n    QString url = QString(\"%1&time=%2\").arg(m_forgetUrl).arg(QDateTime::currentMSecsSinceEpoch());\n    qCDebug(DeepinIDWorker) << \"forget passwd url:\" << url;\n    QDBusInterface clientIf(DEEPINCLIENT_SERVICE, DEEPINCLIENT_PATH, DEEPINCLIENT_INTERFACE, QDBusConnection::sessionBus());\n    QDBusReply<void> reply = clientIf.asyncCall(\"LoadPage\", url);\n    if (!reply.isValid()) {\n        qCWarning(DeepinIDWorker) << \"load page error:\" << reply.error();\n    }\n}\n\nvoid DeepinWorker::unBindPlatform()\n{\n    QDBusInterface deepinIf(SYNC_SERVICE, DEEPINID_PATH, DEEPINID_INTERFACE, QDBusConnection::sessionBus());\n    QDBusReply<void> reply = deepinIf.asyncCall(\"UnBindPlatform\", \"wechat\");\n    if (!reply.isValid()) {\n        qCWarning(DeepinIDWorker) << \"Unbind platform failed, error: \" << reply.error();\n    } else {\n        qCDebug(DeepinIDWorker) << \"Unbind wechat success\";\n    }\n\n    notifyInfo(tr(\"Operation Successful\"));\n}\n\nvoid DeepinWorker::bindAccount()\n{\n    QString bindurl;\n    QString strsession = getSessionID();\n    if (strsession.isEmpty()) {\n        bindurl = \"\";\n    } else {\n        bindurl = m_wechatUrl;\n        bindurl += \"&sessionid=\";\n        bindurl += strsession;\n        bindurl += QString(\"&time=%1\").arg(QDateTime::currentMSecsSinceEpoch());\n    }\n\n    qCDebug(DeepinIDWorker) << \"Init wechat dialog, set bind url: \" << bindurl;\n    if (m_clientService == nullptr) {\n        m_clientService = new QDBusInterface(DEEPINCLIENT_SERVICE, DEEPINCLIENT_PATH, DEEPINCLIENT_INTERFACE, QDBusConnection::sessionBus());\n    } else if (!m_clientService->isValid()) {\n        delete m_clientService;\n        m_clientService = new QDBusInterface(DEEPINCLIENT_SERVICE, DEEPINCLIENT_PATH, DEEPINCLIENT_INTERFACE, QDBusConnection::sessionBus());\n    }\n\n    connect(m_clientService, SIGNAL(bindSuccess()), this, SLOT(onBindSuccess()), Qt::UniqueConnection);\n    m_clientService->asyncCall(\"BindAccount\", bindurl);\n}\n\nvoid DeepinWorker::onSyncSwitcherChange(const QString &key, bool enable)\n{\n    if (key == \"enabled\") {\n        m_model->setSyncSwitch(enable);\n        return;\n    }\n\n    m_model->updateSyncItem(key, enable);\n}\n\nvoid DeepinWorker::onLastSyncTimeChanged(qlonglong lastSyncTime)\n{\n    m_model->setLastSyncTime(lastSyncTime);\n}\n\nvoid DeepinWorker::licenseStateChangeSlot()\n{\n    QFutureWatcher<void> *watcher = new QFutureWatcher<void>(this);\n    connect(watcher, &QFutureWatcher<void>::finished, this, [this, watcher] {\n        // 如果系统为激活状态，并且是中国大陆地区用户，则请求同步状态\n        if (m_model->syncEnabled()) {\n            activate();\n        } else {  // 否则，关闭自动同步\n            setAutoSync(false);\n        }\n        watcher->deleteLater();\n    });\n\n    QFuture<void> future = QtConcurrent::run(&DeepinWorker::getLicenseState, this);\n    watcher->setFuture(future);\n}\n\nvoid DeepinWorker::onUtcloudSwitcherChange(const QVariantList &args)\n{\n    if (args.size() >= 2) {\n        m_model->updateAppItem(args.at(0).toString(), args.at(1).toBool());\n    } else {\n        qCWarning(DeepinIDWorker) << \"onUtcloudSwitcherChange: args size is wrong\";\n    }\n}\n\nvoid DeepinWorker::onUtcloudLoginStatusChange(const QVariantList &args)\n{\n    if (args.size() >= 1) {\n        if (args.at(0).toInt() == 4) {\n            requestUtCloudDump();\n        }\n    } else {\n        qCWarning(DeepinIDWorker) << \"onUtcloudLoginStatusChange: args size is wrong\";\n    }\n}\n\nvoid DeepinWorker::onBindSuccess()\n{\n    qCDebug(DeepinIDWorker) << \"on bind success\";\n    notifyInfo(tr(\"Operation Successful\"));\n\n    QDBusInterface deepinIf(SYNC_SERVICE, DEEPINID_PATH, DEEPINID_INTERFACE, QDBusConnection::sessionBus());\n    QDBusReply<void> reply = deepinIf.asyncCall(\"FlushUseInfo\");\n    if (!reply.isValid()) {\n        qCWarning(DeepinIDWorker) << \"Refresh user info failed, error: \" << reply.error();\n    }\n}\n\nvoid DeepinWorker::activate()\n{\n    requestSyncDump();\n    requestUtCloudDump();\n    onLastSyncTimeChanged(m_syncProxy->lastSyncTime());\n    getRSAPubKey();\n}\n\nvoid DeepinWorker::requestSyncDump()\n{\n    QFutureWatcher<QJsonObject> *watcher = new QFutureWatcher<QJsonObject>(this);\n    connect(watcher, &QFutureWatcher<QJsonObject>::finished, this, [=] {\n        QJsonObject obj = watcher->result();\n        if (obj.isEmpty()) {\n            qCWarning(DeepinIDWorker) << \"Sync Info is Wrong\";\n            return;\n        }\n\n        qCDebug(DeepinIDWorker) << \"Sync dump:\" << obj;\n        for (auto key : obj.keys()) {\n            if (key == \"enabled\") {\n                m_model->setSyncSwitch(obj[key].toBool());\n            } else {\n                m_model->updateSyncItem(key, obj[key].toBool());\n            }\n        }\n        watcher->deleteLater();\n    });\n\n    QFuture<QJsonObject> future = QtConcurrent::run([=]() -> QJsonObject {\n        QDBusPendingReply<QString> reply = m_syncProxy->SwitcherDump();\n        reply.waitForFinished();\n        return QJsonDocument::fromJson(reply.value().toUtf8()).object();\n    });\n\n    watcher->setFuture(future);\n}\n\nvoid DeepinWorker::requestUtCloudDump()\n{\n    QFutureWatcher<QJsonObject> *watcher = new QFutureWatcher<QJsonObject>(this);\n    connect(watcher, &QFutureWatcher<QJsonObject>::finished, this, [=] {\n        QJsonObject obj = watcher->result();\n        if (obj.isEmpty()) {\n            qCWarning(DeepinIDWorker) << \"Sync Info is Wrong\";\n            return;\n        }\n        qCDebug(DeepinIDWorker) << \"utcloud dump:\" << obj;\n        m_model->setSyncSwitch(obj[\"enabled\"].toBool());\n        QJsonObject apps = obj[\"apps\"].toObject();\n\n        QList<AppItemData*> appItemList;\n        for (auto key : apps.keys()) {\n            QJsonObject appData = apps[key].toObject();\n            QString name = appData[\"name\"].toString();\n            QString displayName = appData[\"display_name\"].toString();\n            QString icon = appData[\"icon\"].toString();\n            bool enable = appData[\"enable\"].toBool();\n\n            AppItemData *item = new AppItemData;\n            item->key = key;\n            item->name = displayName.isEmpty() ? name : displayName;\n            item->icon = icon;\n            item->enable = enable;\n            appItemList.append(item);\n        }\n        m_model->initAppItemList(appItemList);\n        watcher->deleteLater();\n    });\n\n    QFuture<QJsonObject> future = QtConcurrent::run([=]() -> QJsonObject {\n        QDBusPendingReply<QString> reply = m_utcloudProxy->SwitcherDump();\n        reply.waitForFinished();\n        return QJsonDocument::fromJson(reply.value().toUtf8()).object();\n    });\n\n    watcher->setFuture(future);\n}\n\nQString DeepinWorker::loadCodeURL()\n{\n    auto func_getToken = [] {\n        QDBusPendingReply<QString> retToken = DDBusSender()\n                .service(SYNC_SERVICE)\n                .interface(UTCLOUD_INTERFACE)\n                .path(UTCLOUD_PATH)\n                .method(\"UnionLoginToken\")\n                .call();\n        retToken.waitForFinished();\n        QString token = retToken.value();\n        if (token.isEmpty())\n            qCWarning(DeepinIDWorker) << retToken.error().message();\n        return token;\n    };\n\n    QString oauthURI = \"https://login.uniontech.com\";\n    if (IsCommunitySystem) {\n        oauthURI = \"https://login.deepin.org\";\n    }\n\n    if (!qEnvironmentVariableIsEmpty(\"DEEPINID_OAUTH_URI\")) {\n        oauthURI = qgetenv(\"DEEPINID_OAUTH_URI\");\n    }\n\n    QString url = oauthURI + QString(\"/oauth2/authorize/registerlogin?autoLoginKey=%1\").arg(func_getToken());\n    qCDebug(DeepinIDWorker) << \"open url:\" << url;\n    return url;\n}\n\nvoid DeepinWorker::getLicenseState()\n{\n    if (IsCommunitySystem) {\n        m_model->setActivation(true);\n        return;\n    }\n\n    QDBusInterface licenseInfo(LICENSE_SERVICE, LICENSE_PATH, LICENSE_INTERFACE, QDBusConnection::systemBus());\n    if (!licenseInfo.isValid()) {\n        qCWarning(DeepinIDWorker) << \"com.deepin.license error ,\"<< licenseInfo.lastError().name();\n    } else {\n        quint32 reply = licenseInfo.property(\"AuthorizationState\").toUInt();\n        m_model->setActivation(reply == 1 || reply == 3);\n    }\n}\n\nvoid DeepinWorker::getRSAPubKey()\n{\n    QDBusInterface deepinIf(SYNC_SERVICE, DEEPINID_PATH, DEEPINID_INTERFACE, QDBusConnection::sessionBus());\n    QDBusPendingCall call = deepinIf.asyncCall(\"GetRSAKey\");\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, [=](QDBusPendingCallWatcher *self){\n        QDBusPendingReply<QString> reply = *self;\n        if(reply.isError()) {\n            qCDebug(DeepinIDWorker) << \"get rsa key error:\" << reply.error();\n        }\n        else {\n            m_RSApubkey = reply.value().toStdString();\n        }\n        self->deleteLater();\n    });\n}\n\nQString DeepinWorker::getSessionID()\n{\n    QString strsession;\n    QDBusInterface deepinIdIf(DEEPINID_SERVICE, DEEPINID_PATH, DEEPINID_INTERFACE, QDBusConnection::sessionBus());\n    QDBusReply<QByteArray> reply = deepinIdIf.call(\"Get\");\n    if (reply.isValid()) {\n        auto sessionJson = reply.value();\n        auto doc = QJsonDocument::fromJson(sessionJson);\n        auto session = doc.object();\n        strsession = session.value(\"SessionID\").toString();\n    } else {\n        qCWarning(DeepinIDWorker) << \"get session id error:\" << reply.error();\n    }\n\n    return strsession;\n}\n"
  },
  {
    "path": "src/plugin-deepinid/operation/deepinidworker.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef DEEPINIDWORKER_H\n#define DEEPINIDWORKER_H\n\n#include \"deepinidmodel.h\"\n#include \"deepiniddbusproxy.h\"\n#include \"syncdbusproxy.h\"\n#include \"utclouddbusproxy.h\"\n\nclass DeepinWorker : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit DeepinWorker(DeepinidModel *model, QObject *parent = nullptr);\n\n    void initData();\n\n    Q_INVOKABLE void loginUser();\n    Q_INVOKABLE void logoutUser();\n    Q_INVOKABLE void openWeb();\n    Q_INVOKABLE void setFullName(const QString &name);\n    Q_INVOKABLE void setAutoSync(bool autoSync);\n    Q_INVOKABLE void setSyncSwitcher(const QStringList &keyList, bool enable);\n    Q_INVOKABLE void setUtcloudSwitcher(const QString &key, bool enable);\n\n    Q_INVOKABLE bool checkPasswdEmpty();\n    Q_INVOKABLE QVariantMap checkPassword(const QString &passwd);\n    Q_INVOKABLE void registerPasswd(const QString &passwd);\n    Q_INVOKABLE void clearData();\n    Q_INVOKABLE void openForgetPasswd();\n    Q_INVOKABLE void unBindPlatform();\n    Q_INVOKABLE void bindAccount();\n\npublic Q_SLOTS:\n    void onSyncSwitcherChange(const QString &key, bool enable);\n    void onLastSyncTimeChanged(qlonglong lastSyncTime);\n    void licenseStateChangeSlot();\n\n    void onUtcloudSwitcherChange(const QVariantList &args);\n    void onUtcloudLoginStatusChange(const QVariantList &args);\n\n    void onBindSuccess();\n\nprivate:\n    void activate();\n    void requestSyncDump();\n    void requestUtCloudDump();\n    QString loadCodeURL();\n    void getLicenseState();\n    void getRSAPubKey();\n    QString getSessionID();\n\nprivate:\n    DeepinidModel *m_model;\n    DeepinidDBusProxy *m_deepinIDProxy;\n    SyncDBusProxy *m_syncProxy;\n    UtcloudDBusProxy *m_utcloudProxy;\n    std::string m_RSApubkey;\n    QDBusInterface *m_clientService;\n    QString m_pwdToken;\n    QString m_forgetUrl;\n    QString m_wechatUrl;\n};\n\n#endif // DEEPINIDWORKER_H\n"
  },
  {
    "path": "src/plugin-deepinid/operation/downloadurl.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"downloadurl.h\"\n\n#include <QNetworkAccessManager>\n#include <QNetworkRequest>\n#include <QNetworkReply>\n#include <QFile>\n#include <QTimer>\n#include <QPixmap>\n#include <QDebug>\n#include <QEventLoop>\n\nDownloadUrl::DownloadUrl(QObject *parent)\n    : QObject(parent)\n    , m_isReady(true)\n{\n\n}\n\nDownloadUrl::~DownloadUrl()\n{\n\n}\n\nvoid DownloadUrl::downloadFileFromURL(const QString &url, const QString &filePath, bool fullname)\n{\n    if (url.isEmpty())\n        return;\n\n    QString fileName;\n    fileName = fullname ? filePath : filePath + url.right(url.size() - url.lastIndexOf(\"/\"));\n    if (fileName.contains(\"default.png\", Qt::CaseInsensitive)) {\n        fileName = fileName.remove(\"png\").append(\"svg\");\n    }\n    qDebug() << \"Download file from URL, URL: \" << url << \", fileName: \" << fileName << \", ready: \" << m_isReady;\n\n    if (!m_isReady)\n        return;\n    m_isReady = false;\n    fileName = fileName + \".tmp\";\n    m_retryMap.insert(fileName, url);\n\n    QNetworkAccessManager manager;\n    QNetworkRequest request;\n    QEventLoop loop;\n    QTimer timer;\n\n    request.setUrl(QUrl(url));\n    request.setAttribute(QNetworkRequest::RedirectPolicyAttribute, QNetworkRequest::NoLessSafeRedirectPolicy);\n\n    QNetworkReply *pReply = manager.get(request);\n    connect(pReply, &QNetworkReply::finished, &loop, &QEventLoop::quit);\n    connect(&timer, &QTimer::timeout, &loop, &QEventLoop::quit);\n    if (pReply) {\n        timer.setSingleShot(true);\n        timer.start(10 * 1000);\n        loop.exec();\n        if (QNetworkReply::NoError == pReply->error()) {\n            QByteArray replyData = pReply->readAll();\n\n            QFile file(fileName);\n            file.open(QIODevice::WriteOnly);\n            if (!file.isOpen()) {\n                m_isReady = true;\n                delete pReply;\n                return;\n            }\n\n            if (file.write(replyData) <= 0) {\n                qWarning() << \"On download file failed, reply data is empty: \" << url;\n                file.remove();\n            } else {\n                file.close();\n                if (m_retryMap.contains(file.fileName()))\n                    m_retryMap.remove(file.fileName());\n\n                const QString fileName = file.fileName().left(file.fileName().length() - 4);\n                QFile::rename(file.fileName(), fileName);\n                qInfo() << \"On download file, file name: \" << fileName;\n                Q_EMIT fileDownloaded(fileName);\n            }\n        } else {\n            qWarning() << \"Download failed:\" << url << pReply->errorString();\n            QString url = pReply->url().toString();\n            if (m_retryMap.value(fileName) != url)\n                qWarning() << \"Download file error, url: \" << m_retryMap.value(fileName) << \" is different from \" << url;\n        }\n\n        pReply->close();\n        pReply->deleteLater();\n        pReply = nullptr;\n        m_isReady = true;\n        if (!m_retryMap.isEmpty())\n            onDownloadFileError(m_retryMap.begin().key(), m_retryMap.begin().value());\n    }\n}\n\nvoid DownloadUrl::onDownloadFileError(const QString &url, const QString &fileName)\n{\n    qDebug() << \"Download file error, will try again after 20 seconds if url is valid\";\n    if (url.isEmpty())\n        return;\n\n    QTimer::singleShot(20000, this, [=] {\n        qInfo() << \"Retry to download file \" << url << \" to \" << fileName;\n        downloadFileFromURL(url, fileName, true);\n    });\n}\n"
  },
  {
    "path": "src/plugin-deepinid/operation/downloadurl.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#pragma once\n\n#include <QObject>\n#include <QMap>\n\nclass DownloadUrl : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit DownloadUrl(QObject *parent = nullptr);\n    virtual ~DownloadUrl();\n    void downloadFileFromURL(const QString &url, const QString &filePath, bool fullname = false);\n\nQ_SIGNALS:\n    void fileDownloaded(const QString &fileName);\n\npublic Q_SLOTS:\n    void onDownloadFileError(const QString &url, const QString &fileName);\n\nprivate:\n    bool m_isReady;\n    QMap<QString, QString> m_retryMap;\n};\n"
  },
  {
    "path": "src/plugin-deepinid/operation/hardwareinfo.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"hardwareinfo.h\"\n\nDMIInfo::DMIInfo()\n{\n}\n\nvoid registerDMIInfoMetaType()\n{\n    qRegisterMetaType<DMIInfo>(\"DMIInfo\");\n    qDBusRegisterMetaType<DMIInfo>();\n}\n\nQDebug operator<<(QDebug debug, const DMIInfo &info)\n{\n    debug << QString(\"DMIInfo(\") << info.biosVendor << \", \" << info.biosVersion << \", \"\n          << info.biosDate << \", \" << info.boardName << \", \" << info.boardSerial << \", \"\n          << info.boardVendor << \", \" << info.boardVersion << \", \"\n          << info.productName << \", \" << info.productFamily << \", \"\n          << info.producctSerial << \", \" << info.productUUID << \", \"\n          << info.productVersion << \")\";\n\n    return debug;\n}\n\nconst QDBusArgument &operator>>(const QDBusArgument &arg, DMIInfo &info)\n{\n    arg.beginStructure();\n    arg >> info.biosVendor >> info.biosVersion >> info.biosDate\n            >> info.boardName >> info.boardSerial >> info.boardVendor >> info.boardVersion\n            >> info.productName >> info.productFamily\n            >> info.producctSerial >> info.productUUID >> info.productVersion;\n    arg.endStructure();\n\n    return arg;\n}\n\nQDBusArgument &operator<<(QDBusArgument &arg, const DMIInfo &info)\n{\n    arg.beginStructure();\n    arg << info.biosVendor << info.biosVersion << info.biosDate\n            << info.boardName << info.boardSerial << info.boardVendor << info.boardVersion\n            << info.productName << info.productFamily\n            << info.producctSerial << info.productUUID << info.productVersion;\n    arg.endStructure();\n\n    return arg;\n}\n\nHardwareInfo::HardwareInfo()\n{\n\n}\n\nQDebug operator<<(QDebug debug, const HardwareInfo &info)\n{\n    debug << \"HardwareInfo(\" <<info.id << \", \" << info.hostName  << \", \"\n          << info.username  << \", \" << info.os  << \", \" << info.cpu << \", \"\n          << info.laptop  << \", \" << info.memory  << \", \" << info.diskTotal\n          << \", \" << info.networkCards << \", \" << info.diskList  << \", \" << info.dmi << ')';\n\n    return debug;\n}\n\nQDBusArgument &operator<<(QDBusArgument &arg, const HardwareInfo &info)\n{\n    arg.beginStructure();\n    arg << info.id << info.hostName << info.username << info.os << info.cpu\n            << info.laptop << info.memory << info.diskTotal << info.networkCards\n            << info.diskList << info.dmi;\n    arg.endStructure();\n\n    return arg;\n}\n\nconst QDBusArgument &operator>>(const QDBusArgument &arg, HardwareInfo &info)\n{\n    arg.beginStructure();\n    arg >> info.id >> info.hostName >> info.username >> info.os >> info.cpu\n            >> info.laptop >> info.memory >> info.diskTotal >> info.networkCards\n            >> info.diskList >> info.dmi;\n    arg.endStructure();\n\n    return arg;\n}\n\n\nvoid registerHardwareInfoMetaType()\n{\n    qRegisterMetaType<HardwareInfo>(\"HardwareInfo\");\n    qDBusRegisterMetaType<HardwareInfo>();\n}\n"
  },
  {
    "path": "src/plugin-deepinid/operation/hardwareinfo.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef HARDWAREINFO_H\n#define HARDWAREINFO_H\n\n#include <QDBusMetaType>\n#include <QDebug>\n\nclass DMIInfo\n{\npublic:\n    DMIInfo();\n\n    friend QDebug operator<<(QDebug debug, const DMIInfo &info);\n    friend const QDBusArgument &operator>>(const QDBusArgument &arg, DMIInfo &info);\n    friend QDBusArgument &operator<<(QDBusArgument &arg, const DMIInfo &info);\n\npublic:\n    QString biosVendor{\"\"};\n    QString biosVersion{\"\"};\n    QString biosDate{\"\"};\n    QString boardName{\"\"};\n    QString boardSerial{\"\"};\n    QString boardVendor{\"\"};\n    QString boardVersion{\"\"};\n    QString productName{\"\"};\n    QString productFamily{\"\"};\n    QString producctSerial{\"\"};\n    QString productUUID{\"\"};\n    QString productVersion{\"\"};\n};\n\nQ_DECLARE_METATYPE(DMIInfo)\n\nvoid registerDMIInfoMetaType();\n\nclass HardwareInfo\n{\npublic:\n    HardwareInfo();\n\n    friend QDebug operator<<(QDebug debug, const HardwareInfo &info);\n    friend const QDBusArgument &operator>>(const QDBusArgument &arg, HardwareInfo &info);\n    friend QDBusArgument &operator<<(QDBusArgument &arg, const HardwareInfo &info);\n\npublic:\n    QString id{\"\"};\n    QString hostName{\"\"};\n    QString username{\"\"};\n    QString os{\"\"};\n    QString cpu{\"\"};\n    bool laptop{false};\n    qint64 memory{0};\n    qint64 diskTotal{0};\n    QString networkCards{\"\"};\n    QString diskList{\"\"};\n    DMIInfo dmi;\n};\n\nQ_DECLARE_METATYPE(HardwareInfo)\n\nvoid registerHardwareInfoMetaType();\n\n\n#endif // HARDWAREINFO_H\n"
  },
  {
    "path": "src/plugin-deepinid/operation/qrc/deepinid.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/dsg\">\n        <file>icons/dcc_cloud_logo.dci</file>\n    </qresource>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_login_bg.svg</file>\n        <file>icons/dcc_cfg_set_24px.svg</file>\n        <file>icons/dcc_union_id_32px.svg</file>\n        <file>icons/dcc_not_use_28px.svg</file>\n        <file>icons/dcc_secwechat_26px.svg</file>\n        <file>icons/dcc_wechattip_24px.svg</file>\n        <file>icons/dcc_uosidtip_24px.svg</file>\n        <file>light/actions/dcc_cloud_net_12px.svg</file>\n        <file>light/actions/dcc_cloud_luncher_12px.svg</file>\n        <file>light/actions/dcc_cloud_mouse_12px.svg</file>\n        <file>light/actions/dcc_cloud_power_12px.svg</file>\n        <file>light/actions/dcc_cloud_taskbar_12px.svg</file>\n        <file>light/actions/dcc_cloud_them_12px.svg</file>\n        <file>light/actions/dcc_cloud_update_12px.svg</file>\n        <file>light/actions/dcc_cloud_voice_12px.svg</file>\n        <file>light/actions/dcc_cloud_wallpaper_12px.svg</file>\n        <file>dark/actions/dcc_cloud_net_12px.svg</file>\n        <file>dark/actions/dcc_cloud_luncher_12px.svg</file>\n        <file>dark/actions/dcc_cloud_mouse_12px.svg</file>\n        <file>dark/actions/dcc_cloud_power_12px.svg</file>\n        <file>dark/actions/dcc_cloud_taskbar_12px.svg</file>\n        <file>dark/actions/dcc_cloud_them_12px.svg</file>\n        <file>dark/actions/dcc_cloud_update_12px.svg</file>\n        <file>dark/actions/dcc_cloud_voice_12px.svg</file>\n        <file>dark/actions/dcc_cloud_wallpaper_12px.svg</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-deepinid/operation/syncdbusproxy.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"syncdbusproxy.h\"\n#include \"utils.h\"\n\nSyncDBusProxy::SyncDBusProxy(QObject *parent)\n    : QObject(parent)\n    , m_syncInter(new DDBusInterface(SYNC_SERVICE, SYNC_PATH, SYNC_INTERFACE, QDBusConnection::sessionBus(), this))\n{\n\n}\n\nvoid SyncDBusProxy::SwitcherSet(const QString &arg_0, bool state)\n{\n    m_syncInter->asyncCallWithArgumentList(\"SwitcherSet\", { arg_0, state });\n}\n\nbool SyncDBusProxy::SwitcherGet(const QString &arg_0)\n{\n    QDBusPendingReply<bool> reply = m_syncInter->asyncCallWithArgumentList(\"SwitcherGet\", { arg_0 });\n    reply.waitForFinished();\n    if (!reply.isValid()) {\n        return false;\n    }\n    return reply.value();\n}\n\nQDBusPendingCall SyncDBusProxy::SwitcherDump()\n{\n    return m_syncInter->asyncCall(\"SwitcherDump\");\n}\n\nqlonglong SyncDBusProxy::lastSyncTime()\n{\n    return m_syncInter->property(\"LastSyncTime\").toLongLong();\n}\n"
  },
  {
    "path": "src/plugin-deepinid/operation/syncdbusproxy.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef SYNCDBUSPROXY_H\n#define SYNCDBUSPROXY_H\n\n#include <DDBusInterface>\n\n#include <QDBusMetaType>\n#include <QObject>\n#include <QtCore/QString>\n#include <QtDBus/QtDBus>\n\nusing Dtk::Core::DDBusInterface;\n\nclass SyncDBusProxy : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(qlonglong LastSyncTime READ lastSyncTime NOTIFY LastSyncTimeChanged)\n\npublic:\n    explicit SyncDBusProxy(QObject *parent = nullptr);\n\n    void SwitcherSet(const QString &arg_0, bool state);\n    bool SwitcherGet(const QString &arg_0);\n    QDBusPendingCall SwitcherDump();\n\n    qlonglong lastSyncTime();\n\nsignals:\n    void SwitcherChange(QString, bool);\n    void LastSyncTimeChanged(qlonglong);\n\nprivate:\n    DDBusInterface *m_syncInter;\n\n};\n\n#endif // SYNCDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-deepinid/operation/syncinfolistmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"syncinfolistmodel.h\"\n\n#include <QUrl>\n\nSyncInfoListModel::SyncInfoListModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n    m_syncItemList = {\n        { Sound, \"dcc_cloud_voice\", tr(\"Sound\"), QStringList() << \"audio\", false },\n        { Power, \"dcc_cloud_power\", tr(\"Power\"), QStringList() << \"power\", false },\n        { Mouse, \"dcc_cloud_mouse\", tr(\"Mouse\"), QStringList() << \"peripherals\", false },\n        { Update, \"dcc_cloud_update\", tr(\"Update\"), QStringList() << \"updater\", false },\n        { Screensaver, \"dcc_cloud_wallpaper\", tr(\"Screensaver\"), QStringList() << \"screensaver\", false },\n    };\n}\n\nvoid SyncInfoListModel::updateSyncItem(const QString &key, bool enable)\n{\n    for (int i = 0; i < m_syncItemList.count(); i++) {\n        auto &syncItem = m_syncItemList[i];\n        if (syncItem.keyList.contains(key)) {\n            syncItem.isChecked = enable;\n            QModelIndex modelIndex = createIndex(i, 0);\n            emit dataChanged(modelIndex, modelIndex, { IsCheckedRole });\n            break;\n        }\n    }\n}\n\nint SyncInfoListModel::rowCount(const QModelIndex &parent) const\n{\n    Q_UNUSED(parent);\n\n    return m_syncItemList.count();\n}\n\nQVariant SyncInfoListModel::data(const QModelIndex &index, int role) const\n{\n    if (index.row() < 0 || index.row() >= m_syncItemList.count())\n        return QVariant();\n\n    auto syncItem = m_syncItemList[index.row()];\n    switch (role) {\n        case TypeRole:\n            return syncItem.type;\n        case DisplayIconRole:\n            return syncItem.displayIcon.startsWith(\"/\") ? QUrl::fromLocalFile(syncItem.displayIcon).toString() : syncItem.displayIcon;\n        case DisplayNameRole:\n            return syncItem.displayName;\n        case KeyListRole:\n            return syncItem.keyList;\n        case IsCheckedRole:\n            return syncItem.isChecked;\n        default:\n            break;\n    }\n\n    return QVariant();\n}\n"
  },
  {
    "path": "src/plugin-deepinid/operation/syncinfolistmodel.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef SYNCINFOLISTMODEL_H\n#define SYNCINFOLISTMODEL_H\n\n#include \"utils.h\"\n#include <QAbstractListModel>\n\nstruct SyncItemData\n{\n    SyncType type;\n    QString displayIcon;\n    QString displayName;\n    QStringList keyList;\n    bool isChecked;\n};\n\nclass SyncInfoListModel : public QAbstractListModel\n{\n    Q_OBJECT\n\npublic:\n    enum SyncItemRoles {\n        TypeRole = Qt::UserRole + 1,\n        DisplayIconRole,\n        DisplayNameRole,\n        KeyListRole,\n        IsCheckedRole,\n    };\n    Q_ENUM(SyncItemRoles)\n\n    explicit SyncInfoListModel(QObject *parent = nullptr);\n\n    void updateSyncItem(const QString &key, bool enable);\n\nprotected:\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n    QHash<int, QByteArray> roleNames() const override {\n        QHash<int, QByteArray> roles;\n        roles[TypeRole] = \"type\";\n        roles[DisplayIconRole] = \"displayIcon\";\n        roles[DisplayNameRole] = \"displayName\";\n        roles[KeyListRole] = \"keyList\";\n        roles[IsCheckedRole] = \"isChecked\";\n        return roles;\n    }\n\nprivate:\n    QList<SyncItemData> m_syncItemList;\n};\n\n#endif // SYNCINFOLISTMODEL_H\n"
  },
  {
    "path": "src/plugin-deepinid/operation/utclouddbusproxy.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"utclouddbusproxy.h\"\n#include \"utils.h\"\n\n#include <QDBusConnection>\n#include <QDBusInterface>\n\nUtcloudDBusProxy::UtcloudDBusProxy(QObject *parent)\n    : QObject(parent)\n{\n    m_utcloudInter = new QDBusInterface(SYNC_SERVICE, UTCLOUD_PATH, UTCLOUD_INTERFACE, QDBusConnection::sessionBus(), this);\n    QDBusConnection dbusConnection = m_utcloudInter->connection();\n\n    dbusConnection.connect(SYNC_SERVICE, UTCLOUD_PATH, UTCLOUD_INTERFACE, \"SwitcherChange\", \"av\", this, SIGNAL(SwitcherChange(QVariantList)));\n    dbusConnection.connect(SYNC_SERVICE, UTCLOUD_PATH, UTCLOUD_INTERFACE, \"LoginStatus\", \"av\", this, SIGNAL(LoginStatus(QVariantList)));\n\n}\n\nvoid UtcloudDBusProxy::SwitcherSet(const QString &arg_0, bool state)\n{\n    m_utcloudInter->asyncCallWithArgumentList(\"SwitcherSet\", { arg_0, state });\n}\n\nbool UtcloudDBusProxy::SwitcherGet(const QString &arg_0)\n{\n    QDBusPendingReply<bool> reply = m_utcloudInter->asyncCallWithArgumentList(\"SwitcherGet\", { arg_0 });\n    reply.waitForFinished();\n    if (!reply.isValid()) {\n        return false;\n    }\n    return reply.value();\n}\n\nQDBusPendingCall UtcloudDBusProxy::SwitcherDump()\n{\n    return m_utcloudInter->asyncCall(\"SwitcherDump\");\n}\n\nbool UtcloudDBusProxy::SetNickname(const QString &name, QString &errorMsg)\n{\n    QDBusPendingReply<bool> reply = m_utcloudInter->asyncCallWithArgumentList(\"SetNickname\", { name });\n    reply.waitForFinished();\n    if (!reply.isValid()) {\n        qWarning() << \"set nickname failed, error: \" << reply.error().message();\n        errorMsg = reply.error().message();\n        return false;\n    }\n\n    return reply.value();\n}\n"
  },
  {
    "path": "src/plugin-deepinid/operation/utclouddbusproxy.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef UTCLOUDDBUSPROXY_H\n#define UTCLOUDDBUSPROXY_H\n\n#include <QObject>\n#include <QDBusPendingReply>\n\nclass QDBusInterface;\n\nclass UtcloudDBusProxy : public QObject\n{\n    Q_OBJECT\n\npublic:\n    explicit UtcloudDBusProxy(QObject *parent = nullptr);\n\n    void SwitcherSet(const QString &arg_0, bool state);\n    bool SwitcherGet(const QString &arg_0);\n    QDBusPendingCall SwitcherDump();\n    bool SetNickname(const QString &name, QString &errorMsg);\n\nsignals:\n    void SwitcherChange(const QVariantList &);\n    void LoginStatus(const QVariantList &);\n\nprivate:\n    QDBusInterface *m_utcloudInter;\n\n};\n\n#endif // UTCLOUDDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-deepinid/operation/utils.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"utils.h\"\n#include \"hardwareinfo.h\"\n\n#include <DGuiApplicationHelper>\n#include <DNotifySender>\n#include <DSysInfo>\n#include <DUtil>\n\n#include <QDBusInterface>\n#include <QDBusReply>\n#include <QDebug>\n#include <QJsonObject>\n#include <QLocale>\n#include <QProcess>\n#include <QRegularExpression>\n#include <QRegularExpressionMatch>\n\nDCORE_USE_NAMESPACE\n\nnamespace utils {\n\nQString getUrlTitle()\n{\n    QString url;\n    if (qEnvironmentVariableIsEmpty(\"DEEPIN_PRE\")) {\n        url = IsCommunitySystem ? QStringLiteral(\"https://login.deepin.org\") : QStringLiteral(\"https://login.uniontech.com\");\n    } else {\n        url = IsCommunitySystem ? QStringLiteral(\"https://login-pre.deepin.org\") : QStringLiteral(\"https://login-pre.uniontech.com\");\n    }\n    return url;\n}\n\nQString forgetPwdURL()\n{\n    static QString forgetUrl;\n    if (forgetUrl.isEmpty()) {\n        forgetUrl = getUrlTitle() + QStringLiteral(\"/view/client/forgot-password\");\n    }\n\n    QString templateURL = \"%1\";\n    templateURL += \"?lang=%2\";\n    templateURL += \"&theme=%3\";\n    templateURL += \"&color=%4\";\n    templateURL += \"&font_family=%5\";\n    templateURL += \"&client_version=%6\";\n    templateURL += \"&device_kernel=%7\";\n    templateURL += \"&device_processor=%8\";\n    templateURL += \"&os_version=%9\";\n    templateURL += \"&device_code=%10\";\n    templateURL += \"&user_name=%11\";\n    templateURL += \"&device_name=%12\";\n\n    QStringList deviceInfo = getDeviceInfo();\n\n    auto url = QString(templateURL)\n                       .arg(forgetUrl)\n                       .arg(QLocale().name())\n                       .arg(getThemeName())\n                       .arg(getActiveColor())\n                       .arg(getStandardFont())\n                       .arg(qApp->applicationVersion())\n                       .arg(getDeviceKernel())\n                       .arg(deviceInfo.at(2))\n                       .arg(getOsVersion())\n                       .arg(getDeviceCode())\n                       .arg(deviceInfo.at(0))\n                       .arg(deviceInfo.at(1));\n\n    return url.remove(QRegularExpression(\"#\"));\n}\n\nQString wechatURL()\n{\n    static QString wechatUrl;\n    if (wechatUrl.isEmpty()) {\n        wechatUrl = getUrlTitle() + QStringLiteral(\"/view/client/bind-third/wechat\");\n    }\n\n    QString templateURL = \"%1\";\n    templateURL += \"?lang=%2\";\n    templateURL += \"&theme=%3\";\n    templateURL += \"&color=%4\";\n    templateURL += \"&font_family=%5\";\n    templateURL += \"&client_version=%6\";\n    templateURL += \"&device_kernel=%7\";\n    templateURL += \"&device_processor=%8\";\n    templateURL += \"&os_version=%9\";\n    templateURL += \"&device_code=%10\";\n    templateURL += \"&user_name=%11\";\n    templateURL += \"&device_name=%12\";\n\n    QStringList deviceInfo = getDeviceInfo();\n\n    auto url = QString(templateURL)\n                       .arg(wechatUrl)\n                       .arg(QLocale().name())\n                       .arg(getThemeName())\n                       .arg(getActiveColor())\n                       .arg(getStandardFont())\n                       .arg(qApp->applicationVersion())\n                       .arg(getDeviceKernel())\n                       .arg(deviceInfo.at(2))\n                       .arg(getOsVersion())\n                       .arg(getDeviceCode())\n                       .arg(deviceInfo.at(0))\n                       .arg(deviceInfo.at(1));\n\n    return url.remove(QRegularExpression(\"#\"));\n}\n\nQString getThemeName()\n{\n    auto themeType = Dtk::Gui::DGuiApplicationHelper::instance()->themeType();\n    return themeType == Dtk::Gui::DGuiApplicationHelper::DarkType ? \"dark\" : \"light\";\n}\n\nQString getActiveColor()\n{\n    QDBusInterface appearance_ifc_(\"org.deepin.dde.Appearance1\",\n                                   \"/org/deepin/dde/Appearance1\",\n                                   \"org.deepin.dde.Appearance1\",\n                                   QDBusConnection::sessionBus());\n    return appearance_ifc_.property(\"QtActiveColor\").toString();\n}\n\nQString getStandardFont()\n{\n    QDBusInterface appearance_ifc_(\"org.deepin.dde.Appearance1\",\n                                   \"/org/deepin/dde/Appearance1\",\n                                   \"org.deepin.dde.Appearance1\",\n                                   QDBusConnection::sessionBus());\n    return appearance_ifc_.property(\"StandardFont\").toString();\n}\n\nQString getDeviceKernel()\n{\n    QProcess process;\n    process.start(\"uname\", { \"-r\" });\n    process.waitForFinished();\n    QByteArray output = process.readAllStandardOutput();\n    int idx = output.indexOf('\\n');\n    if (-1 != idx) {\n        output.remove(idx, 1);\n    }\n    return output.data();\n}\n\nQString getOsVersion()\n{\n    QString version =\n            QString(\"%1 (%2)\").arg(DSysInfo::uosEditionName()).arg(DSysInfo::minorVersion());\n    return version;\n}\n\nQString getDeviceCode()\n{\n    QDBusInterface Interface(\"com.deepin.deepinid\",\n                             \"/com/deepin/deepinid\",\n                             \"org.freedesktop.DBus.Properties\",\n                             QDBusConnection::sessionBus());\n    QDBusMessage reply = Interface.call(\"Get\", \"com.deepin.deepinid\", \"HardwareID\");\n    QList<QVariant> outArgs = reply.arguments();\n    QString deviceCode = outArgs.at(0).value<QDBusVariant>().variant().toString();\n    return deviceCode;\n}\n\nQStringList getDeviceInfo()\n{\n    qDBusRegisterMetaType<HardwareInfo>();\n    QDBusInterface licenseInfo(\"com.deepin.sync.Helper\",\n                               \"/com/deepin/sync/Helper\",\n                               \"com.deepin.sync.Helper\",\n                               QDBusConnection::systemBus());\n\n    QDBusReply<HardwareInfo> hardwareInfo = licenseInfo.call(QDBus::AutoDetect, \"GetHardware\");\n    QJsonObject jsonObject;\n    auto hardwareInfoValue = hardwareInfo.value();\n    auto hardwareDMIValue = hardwareInfo.value().dmi;\n\n    qDebug() << hardwareInfo.error();\n    // -pc\n    QString userName = hardwareInfoValue.hostName;\n    QString Vendor = hardwareDMIValue.boardVendor;\n    QString cpu = hardwareInfoValue.cpu;\n\n    QStringList deviceInfo;\n    deviceInfo.append(userName);\n    deviceInfo.append(Vendor);\n    deviceInfo.append(cpu);\n    return deviceInfo;\n}\n\nQString getEditionName()\n{\n    return IsCommunitySystem ? \"deepin\" : \"UOS\";\n}\n\nQString getIconName()\n{\n    return IsCommunitySystem ? \"deepin-id\" : \"uos-id\";\n}\n\n}; // namespace utils\n"
  },
  {
    "path": "src/plugin-deepinid/operation/utils.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef UTILS_H\n#define UTILS_H\n\n#include <DSysInfo>\n\nDCORE_USE_NAMESPACE\n\n// com.deepin.deepinid 主要是用于登陆登出，和账户信息相关\n#define DEEPINID_SERVICE   QStringLiteral(\"com.deepin.deepinid\")\n#define DEEPINID_PATH      QStringLiteral(\"/com/deepin/deepinid\")\n#define DEEPINID_INTERFACE QStringLiteral(\"com.deepin.deepinid\")\n\n// com.deepin.sync.Daemon 主要是用于dde系统设置同步\n#define SYNC_SERVICE   QStringLiteral(\"com.deepin.sync.Daemon\")\n#define SYNC_INTERFACE QStringLiteral(\"com.deepin.sync.Daemon\")\n#define SYNC_PATH      QStringLiteral(\"/com/deepin/sync/Daemon\")\n\n// com.deepin.sync.Daemon 主要是用于应用数据同步（例如：日历、浏览器...）\n#define UTCLOUD_PATH      QStringLiteral(\"/com/deepin/utcloud/Daemon\")\n#define UTCLOUD_INTERFACE QStringLiteral(\"com.deepin.utcloud.Daemon\")\n\n#define LICENSE_SERVICE   QStringLiteral(\"com.deepin.license\")\n#define LICENSE_PATH      QStringLiteral(\"/com/deepin/license/Info\")\n#define LICENSE_INTERFACE QStringLiteral(\"com.deepin.license.Info\")\n\n#define DEEPINCLIENT_SERVICE QStringLiteral(\"com.deepin.deepinid.Client\")\n#define DEEPINCLIENT_PATH QStringLiteral(\"/com/deepin/deepinid/Client\")\n#define DEEPINCLIENT_INTERFACE QStringLiteral(\"com.deepin.deepinid.Client\")\n\nconst DSysInfo::UosType UosType = DSysInfo::uosType();\nconst DSysInfo::UosEdition UosEdition = DSysInfo::uosEditionType();\nconst bool IsServerSystem = (DSysInfo::UosServer == UosType);          // 是否是服务器版\nconst bool IsCommunitySystem = (DSysInfo::UosCommunity == UosEdition); // 是否是社区版\nconst bool IsProfessionalSystem = (DSysInfo::UosProfessional == UosEdition); // 是否是专业版\nconst bool IsHomeSystem = (DSysInfo::UosHome == UosEdition);                 // 是否是个人版\nconst bool IsDeepinDesktop = (DSysInfo::DeepinDesktop == DSysInfo::deepinType()); // 是否是Deepin桌面\n\nenum SyncType {\n    Sound,\n    Theme,\n    Power,\n    Network,\n    Mouse,\n    Update,\n    Dock,\n    Launcher,\n    Wallpaper,\n    Screensaver\n};\n\n\nnamespace utils {\n\nQString getUrlTitle();\n\nQString forgetPwdURL();\n\nQString wechatURL();\n\nQString getThemeName();\n\nQString getActiveColor();\n\nQString getStandardFont();\n\nQString getDeviceKernel();\n\nQString getOsVersion();\n\nQString getDeviceCode();\n\nQStringList getDeviceInfo();\n\nQString getEditionName();\n\nQString getIconName();\n\n} // namespace utils\n\n\n#endif // UTILS_H\n"
  },
  {
    "path": "src/plugin-deepinid/qml/ConFirmDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls\nimport QtQuick.Layouts\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nD.DialogWindow {\n    id: dialog\n    icon: \"dcc_union_id\"\n    width: 420\n    modality: Qt.WindowModal\n\n    property string title\n    property string message\n    property string leftBtnText\n    property string rightBtnText\n\n    signal accepted()\n\n    // FIXME: Label文本如果设置wrapMode换行，那么这里如果不指定dialog窗口的高，显示就有问题;并且这里要考虑中文不换行和英文会换行的情况，所以通过advance属性动态调整高度\n    Component.onCompleted: {\n        dialog.height = 175 + titleLable.advance.height + messageLable.advance.height\n    }\n\n    ColumnLayout {\n        width: parent.width\n        Label {\n            id: titleLable\n            Layout.fillWidth: true\n            font: D.DTK.fontManager.t5\n            text: dialog.title\n            horizontalAlignment: Text.AlignHCenter\n            verticalAlignment: Text.AlignVCenter\n            wrapMode: Text.WordWrap\n        }\n\n        Label {\n            id: messageLable\n            Layout.fillWidth: true\n            font: D.DTK.fontManager.t7\n            text: dialog.message\n            horizontalAlignment: Text.AlignHCenter\n            verticalAlignment: Text.AlignVCenter\n            wrapMode: Text.WordWrap\n        }\n\n        Item {\n            Layout.fillWidth: true\n            height: 20\n        }\n\n        RowLayout {\n            Layout.fillWidth: true\n            Layout.bottomMargin: 10\n            spacing: 10\n            Button {\n                text: dialog.leftBtnText\n                Layout.fillWidth: true\n                onClicked: {\n                    close()\n                }\n            }\n            D.WarningButton {\n                text: dialog.rightBtnText\n                Layout.fillWidth: true\n                onClicked: {\n                    dialog.accepted()\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-deepinid/qml/ConfirmManager.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls\nimport QtQuick.Layouts\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nItem {\n    id: root\n\n    property alias title: confirmDlg.title\n    property alias message: confirmDlg.message\n    property alias leftBtnText: confirmDlg.leftBtnText\n    property alias rightBtnText: confirmDlg.rightBtnText\n\n    signal accepted()\n\n    function show() {\n        if (title.length === 0 && message.length === 0) {\n            if (dccData.worker.checkPasswdEmpty()) {\n                loader.sourceComponent = registerDlg\n            } else {\n                loader.sourceComponent = verifyDlg\n            }\n            loader.active = true\n        } else {\n            confirmDlg.show()\n        }\n    }\n\n    // 检查密码是否合法，要求至少包含字母和数字，且8-64个字符\n    function checkPasswordValid(password) {\n        let result = {\n            isValid: true,\n            message: \"\"\n        }\n\n        const hasLetter = /[a-zA-Z]/.test(password)\n        const hasDigit = /\\d/.test(password)\n        if (!hasLetter || !hasDigit) {\n            result.isValid = false\n            result.message = qsTr(\"Password must contain numbers and letters\")\n            return result  \n        }\n\n        if (password.length < 8 || password.length > 64) {\n            result.isValid = false\n            result.message = qsTr(\"Password must be between 8 and 64 characters\")\n            return result\n        }\n\n        return result\n    }    \n\n    ConFirmDialog {\n        id: confirmDlg\n\n        onClosing: function (close) {\n            confirmDlg.close()\n        }\n\n        onAccepted: {\n            if (dccData.worker.checkPasswdEmpty()) {\n                loader.sourceComponent = registerDlg\n            } else {\n                loader.sourceComponent = verifyDlg\n            }\n            loader.active = true\n            confirmDlg.close()\n        }\n    }\n\n    Loader {\n        id: loader\n        active: false\n        onLoaded: function () {\n            loader.item.show()\n        }\n    }\n\n    Component {\n        id: registerDlg\n\n        RegisterDialog {\n            onClosing: function (close) {\n                loader.active = false\n            }\n            onRegisterPasswd: {\n                dccData.worker.registerPasswd(passwd)\n                root.accepted()\n                loader.active = false\n            }\n        }\n    }\n\n    Component {\n        id: verifyDlg\n\n        VerifyDialog {\n            onClosing: function (close) {\n                loader.active = false\n            }\n            onVerifyPasswd: {\n                root.accepted()\n                loader.active = false\n            }\n            onForgetPasswd: {\n                dccData.worker.openForgetPasswd()\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-deepinid/qml/DeepinIDAccountSecurity.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\n\nDccObject {\n    DccObject {\n        name: \"wechatAccount\"\n        parentName: \"deepinid/userinfo/body\"\n        weight: 50\n        pageType: DccObject.Item\n        visible: false\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"wechatTitle\"\n            parentName: \"deepinid/userinfo/body/wechatAccount\"\n            displayName: qsTr(\"Bind WeChat\")\n            description: qsTr(\"By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.\").arg(dccData.editionName())\n            weight: 10\n            pageType: DccObject.Editor\n        }\n\n        DccObject {\n            name: \"wechatInfo\"\n            parentName: \"deepinid/userinfo/body/wechatAccount\"\n            weight: 20\n            pageType: DccObject.Item\n            page: RowLayout {\n                id: wechatLayout\n                property bool isBindWechat: dccData.model.wechatName.length > 0\n\n                Item {\n                    implicitHeight: 40\n                    Layout.leftMargin: 10\n                    Layout.fillWidth: true\n                    Layout.fillHeight: true\n\n                    D.DciIcon {\n                        id: wechatIcon\n                        anchors.left: parent.left\n                        anchors.verticalCenter: parent.verticalCenter\n                        name: \"dcc_secwechat\"\n                        sourceSize: Qt.size(24, 24)\n                        opacity: wechatLayout.isBindWechat ? 1 : 0.6\n                    }\n\n                    Label {\n                        text: wechatLayout.isBindWechat ? dccData.model.wechatName : qsTr(\"Unlinked\")\n                        anchors.left: wechatIcon.right\n                        anchors.leftMargin: 10\n                        anchors.verticalCenter: parent.verticalCenter\n                        horizontalAlignment: Text.AlignLeft\n                        opacity: wechatLayout.isBindWechat ? 1 : 0.6\n                    }\n                }\n\n                D.ToolButton {\n                    text: wechatLayout.isBindWechat ? qsTr(\"Unbinding\") : qsTr(\"Link\")\n                    visible: dccData.editionName() === \"deepin\" ? false : true\n                    textColor: D.Palette {\n                        normal {\n                            common: D.DTK.makeColor(D.Color.Highlight)\n                        }\n                        normalDark: normal\n                        hovered {\n                            common: D.DTK.makeColor(D.Color.Highlight).lightness(+30)\n                        }\n                        hoveredDark: hovered\n                    }\n                    background: Item {}\n                    onClicked: {\n                        if (isBindWechat) {\n                            unbindWechat.show()\n                        } else {\n                            bindWechat.show()\n                        }\n                    }\n                }\n\n                ConfirmManager {\n                    id: unbindWechat\n                    title: qsTr(\"Are you sure you want to unbind WeChat?\")\n                    message: qsTr(\"After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.\").arg(dccData.editionName())\n                    leftBtnText: qsTr(\"Let me think it over\")\n                    rightBtnText: qsTr(\"Unbinding\")\n\n                    onAccepted: {\n                        dccData.worker.unBindPlatform()\n                    }\n                }\n\n                ConfirmManager {\n                    id: bindWechat\n\n                    onAccepted: {\n                        dccData.worker.bindAccount();\n                    }\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"localAccount\"\n        parentName: \"deepinid/userinfo/body\"\n        weight: 60\n        pageType: DccObject.Item\n        visible: false\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"localTitle\"\n            parentName: \"deepinid/userinfo/body/localAccount\"\n            displayName: qsTr(\"Local Account Binding\")\n            description: qsTr(\"After binding your local account, you can use the following functions:\").arg(dccData.editionName())\n            weight: 10\n            pageType: DccObject.Editor\n        }\n\n        DccObject {\n            parentName: \"deepinid/userinfo/body/localAccount\"\n            displayName: qsTr(\"WeChat Scan Code Login System\")\n            description: qsTr(\"Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.\").arg(dccData.editionName())\n            icon: \"dcc_wechattip\"\n            weight: 20\n            pageType: DccObject.Editor\n        }\n\n        DccObject {\n            parentName: \"deepinid/userinfo/body/localAccount\"\n            displayName: qsTr(\"Reset password via %1 ID\").arg(dccData.editionName())\n            description: qsTr(\"Reset your local password via %1 ID in case you forget it.\").arg(dccData.editionName())\n            icon: \"dcc_uosidtip\"\n            weight: 30\n            pageType: DccObject.Editor\n        }\n\n        DccObject {\n            parentName: \"deepinid/userinfo/body/localAccount\"\n            displayName: qsTr(\"To use the above features, please go to Control Center - Accounts and turn on the corresponding options.\")\n            weight: 40\n            pageType: DccObject.Editor\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-deepinid/qml/DeepinIDLogin.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    id: root\n\n    property var parentView\n\n    name: \"login\"\n    parentName: \"deepinid\"\n    pageType: DccObject.Item\n    page: Flickable {\n        Layout.fillWidth: true\n        Layout.fillHeight: true\n        contentHeight: groupView.height\n        ScrollBar.vertical: ScrollBar {\n            width: 10\n        }\n\n        DccGroupView {\n            id: groupView\n            isGroup: false\n            height: implicitHeight + 10\n            anchors {\n                left: parent.left\n                right: parent.right\n            }\n        }\n\n        Component.onCompleted: {\n            root.parentView = this\n        }\n    }\n    DccObject {\n        parentName: \"deepinid/login\"\n        weight: 10\n        pageType: DccObject.Item\n        page: Rectangle {\n            implicitHeight: root.parentView ? root.parentView.height * 0.5 : 350\n            color: \"transparent\"\n\n            Image {\n                id: bgImage\n                anchors.horizontalCenter: parent.horizontalCenter\n                anchors.bottom: parent.bottom\n                fillMode: Image.Pad\n                clip: true\n                source: \"qrc:/icons/deepin/builtin/icons/dcc_login_bg.svg\"\n            }\n\n            D.DciIcon {\n                id: logoImage\n                anchors.horizontalCenter: parent.horizontalCenter\n                anchors.bottom: parent.bottom\n                name: \"dcc_cloud_logo\"\n            }\n        }\n\n        onParentItemChanged: {\n            if (parentItem) {\n                parentItem.bottomPadding = 20\n            }\n        }\n    }\n\n    DccObject {\n        parentName: \"deepinid/login\"\n        weight: 20\n        pageType: DccObject.Item\n        page: RowLayout {\n            Label {\n                Layout.fillWidth: true\n                horizontalAlignment: Text.AlignHCenter\n                font.pixelSize: 30 \n                font.bold: true\n                text: qsTr(\"Cloud Sync\")\n            }\n        }\n\n        onParentItemChanged: {\n            if (parentItem) {\n                parentItem.bottomPadding = 20\n            }\n        }\n    }\n\n    DccObject {\n        parentName: \"deepinid/login\"\n        weight: 30\n        pageType: DccObject.Item\n        page: RowLayout{\n            Label {\n                Layout.fillWidth: true\n                horizontalAlignment: Text.AlignHCenter\n                wrapMode: Text.WordWrap\n                text: qsTr(\"Manage your %1 ID and sync your personal data across devices.\\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.\").arg(dccData.editionName())\n            }\n        }\n\n        onParentItemChanged: {\n            if (parentItem) {\n                parentItem.bottomPadding = 20\n            }\n        }        \n    }\n    \n    DccObject {\n        parentName: \"deepinid/login\"\n        weight: 40\n        pageType: DccObject.Item\n        page: RowLayout{\n            Button {\n                Layout.preferredWidth: 200\n                Layout.preferredHeight: 30\n                Layout.alignment: Qt.AlignHCenter\n                text: qsTr(\"Sign In to %1 ID\").arg(dccData.editionName())\n                onClicked: {\n                    dccData.worker.loginUser()\n                }\n            } \n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-deepinid/qml/DeepinIDSyncService.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\n\nDccObject {\n    name: \"syncService\"\n    parentName: \"deepinid/userinfo\"\n    weight: 30\n    pageType: DccObject.Item\n    page: DccGroupView {}\n\n    DccObject {\n        name: \"syncServiceSwitch\"\n        parentName: \"deepinid/userinfo/syncService\"\n        displayName: qsTr(\"Auto Sync\")\n        description: qsTr(\"Securely store system settings and personal data in the cloud, and keep them in sync across devices\")\n        weight: 10\n        pageType: DccObject.Editor\n        page: Control {\n            implicitWidth: rowlayout.implicitWidth\n            implicitHeight: rowlayout.implicitHeight\n            RowLayout {\n                id: rowlayout\n                spacing: 10\n                Image {\n                    id: warnImg\n                    source: \"qrc:/icons/deepin/builtin/icons/dcc_not_use_28px.svg\"\n                    visible: !dccData.model.syncEnabled\n                    MouseArea {\n                        anchors.fill: parent\n                        hoverEnabled: true\n                        onEntered: {\n                            toolTip.visible = true\n                        }\n                        onExited: {\n                            toolTip.visible = false\n                        }\n                    }\n                }\n                Switch {\n                    checked: dccData.model.syncSwitch\n                    enabled: dccData.model.syncEnabled\n                    onCheckedChanged: {\n                        dccData.worker.setAutoSync(checked)\n                    }\n                }\n            }\n\n            D.ToolTip {\n                id: toolTip\n                text: dccData.model.warnTipsMessage()\n                y: warnImg.implicitHeight + 4\n                visible: false\n                delay: 0\n            }\n        }\n    }\n\n    DccObject {\n        name: \"systemSettings\"\n        parentName: \"deepinid/userinfo/syncService\"\n        displayName: qsTr(\"System Settings\")\n        icon: \"dcc-systemcset\"\n        weight: 20\n        backgroundType: DccObject.ClickStyle\n        pageType: DccObject.Editor\n        visible: dccData.model.syncSwitch\n\n        page: Control {\n            id: control\n            rotation: dccData.model.syncItemShow ? 180 : 0\n            Behavior on rotation {\n                NumberAnimation {\n                    duration: 200\n                }\n            }\n            contentItem: D.DciIcon {\n                name: \"arrow_ordinary_down\"\n                sourceSize: Qt.size(12, 12)\n                theme: D.DTK.themeType\n                palette: D.DTK.makeIconPalette(control.palette)\n            }\n        }\n\n        onActive: {\n            dccData.model.syncItemShow = !dccData.model.syncItemShow\n        }\n    }\n\n    DccRepeater {\n        model: dccData.model.syncInfoListModel()\n        delegate: DccObject {\n            name: model.type\n            parentName: \"deepinid/userinfo/syncService\"\n            weight: 30 + index\n            icon: model.displayIcon\n            displayName: model.displayName\n            backgroundType: DccObject.ClickStyle\n            visible: dccData.model.syncSwitch && dccData.model.syncItemShow\n            pageType: DccObject.Editor\n            property real iconSize: 16\n            property real leftPaddingSize: 14\n            page: DccCheckIcon {\n                checked: model.isChecked\n                onClicked: {\n                    dccData.worker.setSyncSwitcher(model.keyList, !model.isChecked)\n                }\n            }\n            onActive: {\n                dccData.worker.setSyncSwitcher(model.keyList, !model.isChecked)\n            }\n        }\n    }\n\n    DccRepeater {\n        model: dccData.model.appInfoListModel()\n        delegate: DccObject {\n            name: model.key\n            parentName: \"deepinid/userinfo/syncService\"\n            weight: 50 + index\n            icon: model.icon\n            displayName: model.name\n            backgroundType: DccObject.ClickStyle\n            visible: dccData.model.syncSwitch\n            pageType: DccObject.Editor\n            page: DccCheckIcon {\n                checked: model.enable\n                onClicked: {\n                    dccData.worker.setUtcloudSwitcher(model.key, !model.enable)\n                }\n            }\n            onActive: {\n                dccData.worker.setUtcloudSwitcher(model.key, !model.enable)\n            }\n        }\n    }\n\n    DccObject {\n        name: \"syncTimeUpdate\"\n        parentName: \"deepinid/userinfo/syncService\"\n        displayName: qsTr(\"Last sync time: %1\").arg(dccData.model.lastSyncTime)\n        weight: 100\n        visible: dccData.model.syncSwitch\n        pageType: DccObject.Item\n        page: RowLayout {\n            DccLabel {\n                Layout.leftMargin: 10\n                horizontalAlignment: Text.AlignLeft\n                text: dccObj.displayName\n                font: D.DTK.fontManager.t10\n                opacity: 0.7\n            }\n\n            Item {\n                Layout.fillWidth: true\n            }\n\n            D.ToolButton {\n                Layout.preferredHeight: 40\n                text: qsTr(\"Clear cloud data\")\n                font: D.DTK.fontManager.t10\n\n                textColor: D.Palette {\n                    normal {\n                        common: D.DTK.makeColor(D.Color.Highlight)\n                    }\n                    normalDark: normal\n                    hovered {\n                        common: D.DTK.makeColor(D.Color.Highlight).lightness(+30)\n                    }\n                    hoveredDark: hovered\n                }\n                background: Item {}\n                onClicked: {\n                    clearData.show()\n                }\n\n                ConfirmManager {\n                    id: clearData\n                    title: qsTr(\"Are you sure you want to clear your system settings and personal data saved in the cloud?\")\n                    message: qsTr(\"Once the data is cleared, it cannot be recovered!\")\n                    leftBtnText: qsTr(\"Cancel\")\n                    rightBtnText: qsTr(\"Clear\")\n\n                    onAccepted: {\n                        dccData.worker.clearData()\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-deepinid/qml/DeepinIDUserInfo.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls\nimport QtQuick.Layouts\nimport QtQuick.Effects\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: root\n\n    name: \"userinfo\"\n    parentName: \"deepinid\"\n    pageType: DccObject.Item\n    page: DccRightView {\n        Layout.fillWidth: true\n        Layout.fillHeight: true\n    }\n\n    DccObject {\n        name: \"title\"\n        parentName: \"deepinid/userinfo\"\n        weight: 10\n        pageType: DccObject.Item\n        page: ColumnLayout {\n            Rectangle {\n                id: iconBackground\n                width: 100\n                height: 100\n                Layout.alignment: Qt.AlignHCenter\n                color: \"transparent\"\n\n                Image {\n                    id: image\n                    anchors.fill: parent\n                    source: \"file://\" + dccData.model.avatar\n                    sourceSize: Qt.size(80, 80)\n\n                    layer.enabled: true\n                    layer.effect: MultiEffect {\n                        maskEnabled: true\n                        maskSource: maskRect\n                        maskThresholdMin: 0.5\n                        maskSpreadAtMin: 1.0\n                    }\n\n                    Rectangle {\n                        id: maskRect\n                        anchors.fill: parent\n                        radius: iconBackground.width / 2\n                        layer.enabled: true\n                        visible: false\n                    }\n                }\n            }\n\n            Label {\n                id: userRegion\n                Layout.fillWidth: true\n                Layout.topMargin: 20\n                horizontalAlignment: Text.AlignHCenter\n                font: D.DTK.fontManager.t8\n                text: dccData.model.region\n            }\n\n            Control {\n                id: nameControl\n                Layout.fillWidth: true\n                property bool editing: false\n\n                Label {\n                    id: nameLabel\n                    anchors.horizontalCenter: parent.horizontalCenter\n                    anchors.horizontalCenterOffset: -10\n                    anchors.top: parent.top\n                    horizontalAlignment: Text.AlignHCenter\n                    visible: !nameControl.editing\n                    font: D.DTK.fontManager.t6\n                    text: dccData.model.userName\n                }\n\n                D.ActionButton {\n                    id: editButton\n                    anchors.left: nameLabel.right\n                    anchors.leftMargin: 10\n                    anchors.verticalCenter: nameLabel.verticalCenter\n                    focusPolicy: Qt.NoFocus\n                    width: 30\n                    height: 30\n                    icon.name: \"dcc-edit\"\n                    icon.width: DS.Style.edit.actionIconSize\n                    icon.height: DS.Style.edit.actionIconSize\n                    hoverEnabled: true\n                    background: Rectangle {\n                        anchors.fill: parent\n                        property D.Palette pressedColor: D.Palette {\n                            normal: Qt.rgba(0, 0, 0, 0.2)\n                            normalDark: Qt.rgba(1, 1, 1, 0.25)\n                        }\n                        property D.Palette hoveredColor: D.Palette {\n                            normal: Qt.rgba(0, 0, 0, 0.1)\n                            normalDark: Qt.rgba(1, 1, 1, 0.1)\n                        }\n                        radius: DS.Style.control.radius\n                        color: parent.pressed ? D.ColorSelector.pressedColor : (parent.hovered ? D.ColorSelector.hoveredColor : \"transparent\")\n                        border {\n                            color: parent.palette.highlight\n                            width: parent.visualFocus ? DS.Style.control.focusBorderWidth : 0\n                        }\n                    }\n                    visible: !nameControl.editing\n                    onClicked: {\n                        nameControl.editing = true\n                        nameEdit.text = nameLabel.text\n                        nameEdit.selectAll()\n                        nameEdit.forceActiveFocus()\n                    }\n                }\n\n                D.LineEdit {\n                    id: nameEdit\n                    anchors.horizontalCenter: parent.horizontalCenter\n                    anchors.top: parent.top\n                    width: 240\n                    visible: nameControl.editing\n                    maximumLength: 32 // 限制昵称长度为32个字符\n                    validator: RegularExpressionValidator { regularExpression: /^[^<>&'\"\\s]{0,32}$/ }  //昵称不能包含<、>、&、'、\"和空格\n                    alertDuration: 3000\n                    font: D.DTK.fontManager.t6\n                    text: visible ? dccData.model.userName : \"\"\n                    activeFocusOnPress: false\n                    onTextChanged: {\n                        // 如果输入为空，需要弹出提示\n                        if (nameEdit.text.length === 0) {\n                            nameEdit.alertText = qsTr(\"The nickname must be 1~32 characters long\")\n                            nameEdit.showAlert = true\n                        } else if (nameEdit.showAlert) {\n                            nameEdit.showAlert = false\n                        }\n                    }\n\n                    onEditingFinished: {\n                        nameEdit.showAlert = false\n                        nameControl.editing = false\n                        if (nameEdit.text.length !== 0 && nameEdit.text !== dccData.model.userName) {\n                            dccData.worker.setFullName(text)\n                        }\n                    }\n\n                    Keys.onPressed: {\n                        // TODO: 按下回车键时，把焦点转移到昵称标签上，避免鼠标点击空白时又触发一次editingFinished信号\n                        if (event.key === Qt.Key_Return) {\n                            nameLabel.forceActiveFocus(true);\n                        }\n                    }\n                }\n            }\n        }\n\n        onParentItemChanged: {\n            if (parentItem) {\n                parentItem.bottomPadding = 50\n            }\n        }\n    }\n\n    DccTitleObject {\n        name: \"syncServiceTitle\"\n        parentName: \"deepinid/userinfo\"\n        displayName: qsTr(\"Synchronization Service\")\n        weight: 20\n    }\n\n    DeepinIDSyncService{}\n\n    DccTitleObject {\n        name: \"accountSecurityTitle\"\n        parentName: \"deepinid/userinfo\"\n        displayName: qsTr(\"Account and Security\")\n        weight: 40\n        visible: false\n    }\n\n    DeepinIDAccountSecurity{}\n\n    DccObject {\n        name: \"buttonGrp\"\n        parentName: \"deepinid/userinfo\"\n        pageType: DccObject.Item\n        weight: 60\n        page: RowLayout {\n            Button {\n                text: qsTr(\"Sign out\")\n                onClicked: {\n                    dccData.worker.logoutUser()\n                }\n            }\n            Item {\n                Layout.fillWidth: true\n            }\n            Button {\n                text: qsTr(\"Go to web settings\")\n                onClicked: {\n                    dccData.worker.openWeb()\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-deepinid/qml/Deepinid.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.3\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: root\n    name: \"deepinid\"\n    parentName: \"root\"\n    displayName: DccApp.uosEdition() === DccApp.UosCommunity ? qsTr(\"deepin ID\") : qsTr(\"UOS ID\")\n    description: qsTr(\"Cloud services\")\n    icon: \"deepinid\"\n    weight: 70\n\n    page: DccRowView {}\n\n    visible: false\n    DccDBusInterface {\n        property var isLogin\n        service: \"com.deepin.deepinid\"\n        path: \"/com/deepin/deepinid\"\n        inter: \"com.deepin.deepinid\"\n        connection: DccDBusInterface.SessionBus\n        onIsLoginChanged: {\n            root.visible = true\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-deepinid/qml/DeepinidMain.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n    DeepinIDLogin {\n        visible: !dccData.model.loginState\n    }\n\n    DeepinIDUserInfo {\n        visible: dccData.model.loginState\n    }\n}\n"
  },
  {
    "path": "src/plugin-deepinid/qml/RegisterDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls\nimport QtQuick.Layouts\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nD.DialogWindow {\n    id: dialog\n    icon: \"dcc_union_id\"\n    width: 400\n    modality: Qt.WindowModal\n\n    signal registerPasswd(string passwd)\n\n    ColumnLayout {\n        width: parent.width\n        spacing: 10\n        Label {\n            Layout.fillWidth: true\n            font: D.DTK.fontManager.t5\n            text: qsTr(\"Set a Password\")\n            horizontalAlignment: Text.AlignHCenter\n            verticalAlignment: Text.AlignVCenter\n        }\n\n        Item {\n            Layout.fillWidth: true\n            height: 5\n        }\n\n        D.PasswordEdit {\n            id: edit0\n            Layout.fillWidth: true\n            placeholderText: qsTr(\"8-64 characters\")\n            validator: RegularExpressionValidator {\n                regularExpression: /^[a-zA-Z0-9~`!@#$%^&*()_+\\-=\\[\\]{};':\"\\\\|,.<>\\/?]+$/ // 允许的输入数字、字母和特殊字符\n            }\n            alertDuration: 3000\n            onTextChanged: {\n                if (showAlert)\n                    showAlert = false\n            }\n        }\n\n        D.PasswordEdit {\n            id: edit1\n            Layout.fillWidth: true\n            placeholderText: qsTr(\"Repeat the password\")\n            validator: RegularExpressionValidator {\n                regularExpression: /^[a-zA-Z0-9~`!@#$%^&*()_+\\-=\\[\\]{};':\"\\\\|,.<>\\/?]+$/ // 允许的输入数字、字母和特殊字符\n            }\n            alertDuration: 3000\n            onTextChanged: {\n                if (showAlert)\n                    showAlert = false\n            }\n        }\n\n        RowLayout {\n            Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n            Layout.bottomMargin: 10\n            Layout.fillWidth: true\n            spacing: 10\n            Button {\n                text: qsTr(\"Cancel\")\n                Layout.fillWidth: true\n                onClicked: {\n                    close()\n                }\n            }\n            D.RecommandButton {\n                text: qsTr(\"Confirm\")\n                Layout.fillWidth: true\n                onClicked: {\n                    var result0 = checkPasswordValid(edit0.text)\n                    if (!result0.isValid) {\n                        edit0.showAlert = false\n                        edit0.showAlert = true\n                        edit0.alertText = result0.message\n                        return\n                    }\n\n                    var result1 = checkPasswordValid(edit1.text)\n                    if (!result1.isValid) {\n                        edit1.showAlert = false\n                        edit1.showAlert = true\n                        edit1.alertText = result1.message\n                        return\n                    }\n\n                    if(edit0.text != edit1.text) {\n                        edit1.showAlert = false\n                        edit1.showAlert = true\n                        edit1.alertText = qsTr(\"Passwords don't match\")\n                        return;\n                    }\n\n                    dialog.registerPasswd(edit0.text)\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-deepinid/qml/VerifyDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls\nimport QtQuick.Layouts\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nD.DialogWindow {\n    id: dialog\n    icon: \"dcc_union_id\"\n    width: 400\n    modality: Qt.WindowModal\n\n    signal verifyPasswd()\n    signal forgetPasswd()\n\n    ColumnLayout {\n        width: parent.width\n        Label {\n            Layout.fillWidth: true\n            font: D.DTK.fontManager.t5\n            text: qsTr(\"Security Verification\")\n            horizontalAlignment: Text.AlignHCenter\n            verticalAlignment: Text.AlignVCenter\n        }\n\n        Label {\n            Layout.fillWidth: true\n            font: D.DTK.fontManager.t6\n            text: qsTr(\"The action is sensitive, please enter the login password first\")\n            horizontalAlignment: Text.AlignHCenter\n            verticalAlignment: Text.AlignVCenter\n        }\n\n        Item {\n            Layout.fillWidth: true\n            height: 10\n        }\n\n        D.PasswordEdit {\n            id: edit0\n            Layout.fillWidth: true\n            placeholderText: qsTr(\"8-64 characters\")\n            validator: RegularExpressionValidator {\n                regularExpression: /^[a-zA-Z0-9~`!@#$%^&*()_+\\-=\\[\\]{};':\"\\\\|,.<>\\/?]+$/ // 允许的输入数字、字母和特殊字符\n            }\n            alertDuration: 3000\n            onTextChanged: {\n                if (showAlert)\n                    showAlert = false\n            }\n        }\n\n        D.ToolButton {\n            id: btn\n            Layout.alignment: Qt.AlignRight\n            Layout.preferredHeight: 30\n            text: qsTr(\"Forgot Password?\")\n            textColor: D.Palette {\n                normal {\n                    common: D.DTK.makeColor(D.Color.Highlight)\n                }\n                normalDark: normal\n                hovered {\n                    common: D.DTK.makeColor(D.Color.Highlight).lightness(+30)\n                }\n                hoveredDark: hovered\n            }\n            background: Item {}\n\n            onClicked: {\n                dialog.forgetPasswd()\n            }\n        }\n\n        RowLayout {\n            Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n            Layout.bottomMargin: 10\n            Layout.fillWidth: true\n            spacing: 10\n            Button {\n                text: qsTr(\"Cancel\")\n                Layout.fillWidth: true\n                onClicked: {\n                    close()\n                }\n            }\n            D.WarningButton {\n                text: qsTr(\"Confirm\")\n                Layout.fillWidth: true\n                onClicked: {\n                    var result = checkPasswordValid(edit0.text)\n                    if (!result.isValid) {\n                        edit0.showAlert = false\n                        edit0.showAlert = true\n                        edit0.alertText = result.message\n                        return\n                    }\n\n                    var checkRes = dccData.worker.checkPassword(edit0.text)\n                    if (checkRes.isOk) {\n                        dialog.verifyPasswd()\n                    } else {\n                        edit0.showAlert = false\n                        edit0.showAlert = true\n                        edit0.alertText = checkRes.errMsg\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-defaultapp/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\nset(DefaultApp_Name defaultapp)\nfile(GLOB_RECURSE defaultapp_SRCS\n    \"operation/*.cpp\"\n)\n\nadd_library(${DefaultApp_Name} MODULE\n    ${defaultapp_SRCS}\n)\n\nset(DefaultApp_Libraries\n    ${DCC_FRAME_Library}\n    ${QT_NS}::DBus\n)\n\ntarget_link_libraries(${DefaultApp_Name} PRIVATE\n    ${DefaultApp_Libraries}\n)\n\ndcc_install_plugin(NAME ${DefaultApp_Name} TARGET ${DefaultApp_Name})\n"
  },
  {
    "path": "src/plugin-defaultapp/operation/category.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"category.h\"\n#include <QDebug>\n\nCategory::Category(QObject *parent)\n    : QObject(parent)\n{\n\n}\n\nvoid Category::setDefault(const App &def)\n{\n    if (m_default.Id != def.Id) {\n        m_default = def;\n        Q_EMIT defaultChanged(def);\n    }\n}\n\nvoid Category::setCategory(const QString &category)\n{\n    if (m_category == category)\n        return;\n\n    m_category = category;\n    Q_EMIT categoryNameChanged(category);\n}\n\nvoid Category::clear()\n{\n    bool clearFlag = !m_applist.isEmpty();\n\n    m_systemAppList.clear();\n    m_userAppList.clear();\n    m_applist.clear();\n    if (clearFlag)\n        Q_EMIT clearAll();\n}\n\nvoid Category::addUserItem(const App &value)\n{\n    if (value.isUser) {\n        if (m_userAppList.contains(value)) return;\n        m_userAppList << value;\n    } else {\n        if (m_systemAppList.contains(value)) return;\n        m_systemAppList << value;\n    }\n\n    m_applist << value;\n    Q_EMIT addedUserItem(value);\n}\n\nvoid Category::delUserItem(const App &value)\n{\n    bool isRemove = false;\n\n    if (value.isUser) {\n        isRemove = m_userAppList.removeOne(value);\n    } else {\n        isRemove = m_systemAppList.removeOne(value);\n    }\n\n    if (isRemove) {\n        m_applist.removeOne(value);\n        Q_EMIT removedUserItem(value);\n    }\n}\n"
  },
  {
    "path": "src/plugin-defaultapp/operation/category.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef CATEGORY_H\n#define CATEGORY_H\n\n#include <QObject>\n#include <QList>\n\nstruct App {\n    QString dbusPath;\n    QString Id;\n    QString Name;\n    QString DisplayName;\n    QString Description;\n    QString Icon;\n    QString Exec;\n    bool isUser;\n    bool CanDelete;\n    bool MimeTypeFit;\n\n    App() : isUser(false), CanDelete(false), MimeTypeFit(false) {}\n\n    bool operator ==(const App &app) const {\n        return app.Id == Id && app.isUser == isUser;\n    }\n\n    bool operator !=(const App &app) const {\n        return app.Id != Id && app.isUser != isUser;\n    }\n};\n\nclass Category : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit Category(QObject *parent = 0);\n\n    void setDefault(const App &def);\n\n    const QString getName() const { return m_category;}\n    void setCategory(const QString &category);\n    inline const QList<App> getappItem() const { return m_applist;}\n    inline const QList<App> systemAppList() const { return m_systemAppList; }\n    inline const QList<App> userAppList() const { return m_userAppList; }\n    inline const App getDefault() { return m_default;}\n    void clear();\n    void addUserItem(const App &value);\n    void delUserItem(const App &value);\n\nQ_SIGNALS:\n    void defaultChanged(const App &id);\n    void addedUserItem(const App &app);\n    void removedUserItem(const App &app);\n    void categoryNameChanged(const QString &name);\n    void clearAll();\n\nprivate:\n    QList<App> m_applist;\n    QList<App> m_systemAppList;\n    QList<App> m_userAppList;\n    QString m_category;\n    App m_default;\n};\n#endif // CATEGORY_H\n"
  },
  {
    "path": "src/plugin-defaultapp/operation/categorymodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"categorymodel.h\"\n\n#include <QFileInfo>\n#include <QUrl>\n\nenum DefAppDataRole {\n    DefAppIsUserRole = Qt::UserRole << (2 + 1),\n    DefAppIdRole,\n    DefAppCanDeleteRole,\n    DefAppNameRole,\n    DefAppIconRole,\n    DefAppIsDefaultRole,\n};\n\nCategoryModel::CategoryModel(Category *parent)\n    : QAbstractItemModel(parent)\n    , m_category(parent)\n{\n    for (auto &&item : m_category->getappItem()) {\n        onAddApp(item);\n    }\n    connect(m_category, &Category::addedUserItem, this, &CategoryModel::onAddApp);\n    connect(m_category, &Category::removedUserItem, this, &CategoryModel::onRemoveApp);\n    connect(m_category, &Category::defaultChanged, this, &CategoryModel::onDefaultChanged);\n    connect(m_category, &Category::clearAll, this, &CategoryModel::resetApp);\n}\n\nCategoryModel::~CategoryModel() { }\n\nQHash<int, QByteArray> CategoryModel::roleNames() const\n{\n    QHash<int, QByteArray> names = QAbstractItemModel::roleNames();\n    names[DefAppIsUserRole] = \"isUser\";\n    names[DefAppIdRole] = \"id\";\n    names[DefAppCanDeleteRole] = \"canDelete\";\n    names[DefAppNameRole] = \"name\";\n    names[DefAppIconRole] = \"icon\";\n    names[DefAppIsDefaultRole] = \"isDefault\";\n    return names;\n}\n\nQModelIndex CategoryModel::index(int row, int column, const QModelIndex &) const\n{\n    if (row < 0 || row >= m_applist.size()) {\n        return QModelIndex();\n    }\n    return createIndex(row, column);\n}\n\nQModelIndex CategoryModel::parent(const QModelIndex &) const\n{\n    return QModelIndex();\n}\n\nint CategoryModel::rowCount(const QModelIndex &) const\n{\n    return m_applist.size();\n}\n\nint CategoryModel::columnCount(const QModelIndex &) const\n{\n    return 1;\n}\n\nQVariant CategoryModel::data(const QModelIndex &index, int role) const\n{\n    if (!index.isValid() || index.row() < 0 || index.row() >= m_applist.size()) {\n        return QModelIndex();\n    }\n    const App &app = m_applist.at(index.row());\n    switch (role) {\n    case Qt::DisplayRole:\n        return app.DisplayName;\n    case DefAppIsUserRole:\n        return app.isUser;\n    case DefAppIdRole:\n        return app.Id;\n    case DefAppCanDeleteRole:\n        return app.CanDelete;\n    case DefAppNameRole:\n        return app.Name;\n    case DefAppIconRole:\n        return app.Icon.trimmed().isEmpty() ? \"application-default-icon\" : app.Icon;\n    case DefAppIsDefaultRole:\n        return app.Id == m_category->getDefault().Id;\n    default:\n        break;\n    }\n    return QVariant();\n}\n\nvoid CategoryModel::addApp(const QString &path)\n{\n    if (path.isEmpty())\n        return;\n\n    QUrl url(path);\n    QFileInfo info(url.toLocalFile());\n    Q_EMIT requestCreateFile(m_category->getName(), info);\n}\n\nvoid CategoryModel::removeApp(const QString &id)\n{\n    const App *app = getAppById(id);\n    if (!app || !isValid(*app)) {\n        return;\n    }\n    Q_EMIT requestDelUserApp(m_category->getName(), *app);\n}\n\nvoid CategoryModel::setDefaultApp(const QString &id)\n{\n    const App *app = getAppById(id);\n    if (!app || !isValid(*app)) {\n        return;\n    }\n    Q_EMIT requestSetDefaultApp(m_category->getName(), *app);\n}\n\nvoid CategoryModel::onAddApp(const App &app)\n{\n    const QList<App> &applist = m_category->getappItem();\n    if (!applist.contains(app))\n        return;\n\n    int index = 0;\n    for (auto &&item : m_applist) {\n        if ((item.CanDelete && item.CanDelete != app.CanDelete) || item.Name > app.Name) {\n            break;\n        }\n        index++;\n    }\n    beginInsertRows(QModelIndex(), index, index);\n    m_applist.insert(index, app);\n    endInsertRows();\n}\n\nvoid CategoryModel::onRemoveApp(const App &app)\n{\n    int index = m_applist.indexOf(app);\n    if (index < 0)\n        return;\n    beginRemoveRows(QModelIndex(), index, index);\n    m_applist.remove(index);\n    endRemoveRows();\n}\n\nvoid CategoryModel::onDefaultChanged(const App &)\n{\n    Q_EMIT dataChanged(createIndex(0, 0), createIndex(m_applist.size() - 1, 0), { DefAppIsDefaultRole, Qt::CheckStateRole });\n}\n\nvoid CategoryModel::resetApp()\n{\n    beginResetModel();\n    m_applist = m_category->getappItem();\n    endResetModel();\n}\n\nconst App *CategoryModel::getAppById(const QString &appId)\n{\n    auto res = std::find_if(m_category->getappItem().begin(), m_category->getappItem().end(), [&appId](const App &item) -> bool {\n        return item.Id == appId;\n    });\n\n    if (res != m_category->getappItem().cend()) {\n        return &(*res);\n    }\n\n    return nullptr;\n}\n"
  },
  {
    "path": "src/plugin-defaultapp/operation/categorymodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef CATEGORYMODEL_H\n#define CATEGORYMODEL_H\n\n#include \"category.h\"\n\n#include <QAbstractItemModel>\n#include <QFileInfo>\n\nclass CategoryModel : public QAbstractItemModel\n{\n    Q_OBJECT\npublic:\n    explicit CategoryModel(Category *parent = nullptr);\n    ~CategoryModel() override;\n\n    inline Category *category() const { return m_category; }\n\n    // Basic functionality:\n    QHash<int, QByteArray> roleNames() const override;\n    QModelIndex index(int row, int column, const QModelIndex &parentIndex = QModelIndex()) const override;\n    QModelIndex parent(const QModelIndex &index) const override;\n\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n    int columnCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n\npublic Q_SLOTS:\n    void addApp(const QString &path);\n    void removeApp(const QString &id);\n    void setDefaultApp(const QString &id);\n\nQ_SIGNALS:\n    void requestCreateFile(const QString &category, const QFileInfo &info);\n    void requestDelUserApp(const QString &name, const App &item);\n    void requestSetDefaultApp(const QString &category, const App &item);\n\nprivate Q_SLOTS:\n    void onAddApp(const App &app);\n    void onRemoveApp(const App &app);\n    void onDefaultChanged(const App &app);\n    void resetApp();\n\nprivate:\n    const App *getAppById(const QString &appId);\n\n    inline bool isValid(const App &app) const { return (!app.Id.isNull() && !app.Id.isEmpty()); }\n\nprivate:\n    QList<App> m_applist;\n    Category *m_category;\n};\n\n#endif // CATEGORYMODEL_H\n"
  },
  {
    "path": "src/plugin-defaultapp/operation/defappmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"defappmodel.h\"\n\n#include \"QtQml/qqml.h\"\n#include \"categorymodel.h\"\n#include \"dccfactory.h\"\n#include \"defappworker.h\"\n#include \"defappworkerold.h\"\n#include \"mimedbusproxyold.h\"\n\nDefAppModel::DefAppModel(QObject *parent)\n    : QObject(parent)\n{\n    qmlRegisterType<CategoryModel>(\"org.deepin.dcc.defApp\", 1, 0, \"CategoryModel\");\n    for (int i = 0; i < Count; i++) {\n        m_categoryModel[i] = new CategoryModel(new Category(this));\n    }\n    if (MimeDBusProxyOld::isRegisted()) {\n        m_oldwork = new DefAppWorkerOld(this, this);\n        m_isOldInterface = true;\n        for (int i = 0; i < Count; i++) {\n            m_categoryModel[i] = new CategoryModel(new Category(this));\n            connect(m_categoryModel[i], &CategoryModel::requestCreateFile, m_oldwork, &DefAppWorkerOld::onCreateFile);\n            connect(m_categoryModel[i], &CategoryModel::requestDelUserApp, m_oldwork, &DefAppWorkerOld::onDelUserApp);\n            connect(m_categoryModel[i], &CategoryModel::requestSetDefaultApp, m_oldwork, &DefAppWorkerOld::onSetDefaultApp);\n        }\n        m_oldwork->active();\n        m_oldwork->onGetListApps();\n    } else {\n        m_work = new DefAppWorker(this, this);\n        for (int i = 0; i < Count; i++) {\n            m_categoryModel[i] = new CategoryModel(new Category(this));\n            connect(m_categoryModel[i], &CategoryModel::requestCreateFile, m_work, &DefAppWorker::onCreateFile);\n            connect(m_categoryModel[i], &CategoryModel::requestDelUserApp, m_work, &DefAppWorker::onDelUserApp);\n            connect(m_categoryModel[i], &CategoryModel::requestSetDefaultApp, m_work, &DefAppWorker::onSetDefaultApp);\n        }\n        m_work->active();\n        m_work->onGetListApps();\n    }\n}\n\nDefAppModel::~DefAppModel()\n{\n    for (int i = 0; i < Count; i++) {\n        m_categoryModel[i]->deleteLater();\n    }\n}\n\nDCC_FACTORY_CLASS(DefAppModel)\n\n#include \"defappmodel.moc\"\n"
  },
  {
    "path": "src/plugin-defaultapp/operation/defappmodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DEFAPPMODEL_H\n#define DEFAPPMODEL_H\n\n#include \"category.h\"\n#include \"categorymodel.h\"\n\n#include <QObject>\n\nclass Category;\nclass DefAppWorker;\nclass DefAppWorkerOld;\n\nclass DefAppModel : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit DefAppModel(QObject *parent = 0);\n    ~DefAppModel();\n\n    enum DefAppCategory {\n        Browser = 0,\n        Mail,\n        Text,\n        Music,\n        Video,\n        Picture,\n        Terminal,\n        Count,\n    };\n\npublic Q_SLOTS:\n\n    inline CategoryModel *browser() const { return m_categoryModel[Browser]; }\n\n    inline CategoryModel *mail() const { return m_categoryModel[Mail]; }\n\n    inline CategoryModel *text() const { return m_categoryModel[Text]; }\n\n    inline CategoryModel *music() const { return m_categoryModel[Music]; }\n\n    inline CategoryModel *video() const { return m_categoryModel[Video]; }\n\n    inline CategoryModel *picture() const { return m_categoryModel[Picture]; }\n\n    inline CategoryModel *terminal() const { return m_categoryModel[Terminal]; }\n\n    inline Category *getModBrowser() const { return m_categoryModel[Browser]->category(); }\n\n    inline Category *getModMail() const { return m_categoryModel[Mail]->category(); }\n\n    inline Category *getModText() const { return m_categoryModel[Text]->category(); }\n\n    inline Category *getModMusic() const { return m_categoryModel[Music]->category(); }\n\n    inline Category *getModVideo() const { return m_categoryModel[Video]->category(); }\n\n    inline Category *getModPicture() const { return m_categoryModel[Picture]->category(); }\n\n    inline Category *getModTerminal() const { return m_categoryModel[Terminal]->category(); }\n\nprivate:\n    CategoryModel *m_categoryModel[Count];\n    DefAppWorker *m_work;\n    DefAppWorkerOld *m_oldwork;\n    bool m_isOldInterface;\n};\n#endif // DEFAPPMODEL_H\n"
  },
  {
    "path": "src/plugin-defaultapp/operation/defappworker.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"defappworker.h\"\n\n#include \"defappmodel.h\"\n\n#include <QProcess>\n#include <QDBusPendingCall>\n#include <QDBusPendingCallWatcher>\n#include <QDebug>\n#include <QDir>\n#include <QFileInfo>\n#include <QJsonArray>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QList>\n#include <QLoggingCategory>\n#include <QStringList>\n#include <QTimer>\n\nQ_LOGGING_CATEGORY(DdcDefaultWorker, \"dcc-default-worker\")\n\nconst QString TerminalGSetting = QStringLiteral(\"com.deepin.desktop.default-applications.terminal\");\n\nDefAppWorker::DefAppWorker(DefAppModel *model, QObject *parent)\n    : QObject(parent)\n    , m_defAppModel(model)\n    , m_dbusManager(new MimeDBusProxy(this))\n    , m_debounceTimer(new QTimer(this))\n{\n    m_stringToCategory.insert(\"Browser\", Browser);\n    m_stringToCategory.insert(\"Mail\", Mail);\n    m_stringToCategory.insert(\"Text\", Text);\n    m_stringToCategory.insert(\"Music\", Music);\n    m_stringToCategory.insert(\"Video\", Video);\n    m_stringToCategory.insert(\"Picture\", Picture);\n    m_stringToCategory.insert(\"Terminal\", Terminal);\n\n    m_debounceTimer->setSingleShot(true);\n    m_debounceTimer->setInterval(500);\n    connect(m_debounceTimer, &QTimer::timeout, this, &DefAppWorker::onGetListApps);\n    connect(m_dbusManager, &MimeDBusProxy::Change, this, [this]() {\n        m_debounceTimer->start();\n    });\n\n    m_userLocalPath = QDir::homePath() + \"/.local/share/applications/\";\n\n    // mkdir folder\n    QDir dir(m_userLocalPath);\n    dir.mkpath(m_userLocalPath);\n}\n\nDefAppWorker::~DefAppWorker()\n{\n}\n\nvoid DefAppWorker::active()\n{\n    m_dbusManager->blockSignals(false);\n}\n\nvoid DefAppWorker::deactive()\n{\n    m_dbusManager->blockSignals(true);\n}\n\nvoid DefAppWorker::onSetDefaultApp(const QString &category, const App &item)\n{\n    if (category == \"Terminal\") {\n        onSetDefaultTerminal(item);\n        return;\n    }\n    QStringList mimelist = getTypeListByCategory(m_stringToCategory[category]);\n\n    for (auto mimeType : mimelist) {\n        QDBusPendingCall call = m_dbusManager->SetDefaultApp(mimeType, item.Id);\n        QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n        connect(watcher,\n                &QDBusPendingCallWatcher::finished,\n                this,\n                [watcher, this, item, category] {\n                    if (!watcher->isError()) {\n                        qCDebug(DdcDefaultWorker)\n                                << \"Setting MIME \" << category << \"to \" << item.Id;\n                        auto tosetCategory = getCategory(category);\n                        tosetCategory->setDefault(item);\n                    } else {\n                        qCWarning(DdcDefaultWorker)\n                                << \"Cannot set MIME\" << category << \"to\" << item.Id;\n                    }\n                    watcher->deleteLater();\n                });\n    }\n}\n\nbool DefAppWorker::executeGsettingsCommand(const QStringList &args, const QString &errorMessage)\n{\n    QProcess process;\n    process.start(\"gsettings\", args);\n    process.waitForStarted();\n    if (!process.waitForFinished(5000)) {\n        qCWarning(DdcDefaultWorker) << errorMessage << process.errorString();\n        return false;\n    }\n    return true;\n}\n\nvoid DefAppWorker::onSetDefaultTerminal(const App &item)\n{\n    Category *defaultTerminalCategory = getCategory(\"Terminal\");\n    if (!defaultTerminalCategory) {\n        qCWarning(DdcDefaultWorker) << \"Failed to get Terminal category\";\n        return;\n    }\n\n    // Set app-id\n    if (!executeGsettingsCommand({\"set\", TerminalGSetting, \"app-id\", item.Id}, \n                               \"Failed to set terminal app-id:\")) {\n        return;\n    }\n\n    // Set exec command\n    QString execCommand = QStringLiteral(\"gdbus call --session --dest org.desktopspec.ApplicationManager1 \"\n                                       \"--object-path '%1' --method org.desktopspec.ApplicationManager1.Application.Launch \"\n                                       \"'' [] {}\").arg(item.dbusPath);\n    \n    if (!executeGsettingsCommand({\"set\", TerminalGSetting, \"exec\", execCommand},\n                               \"Failed to set terminal exec:\")) {\n        return;\n    }\n\n    defaultTerminalCategory->setDefault(item);\n    qCInfo(DdcDefaultWorker) << \"Successfully set default terminal to:\" << item.Id;\n}\n\nvoid DefAppWorker::onGetListApps()\n{\n    // 遍历QMap去获取dbus数据\n    for (auto mimelist = m_stringToCategory.constBegin(); mimelist != m_stringToCategory.constEnd();\n         ++mimelist) {\n        if (mimelist.key() == \"Terminal\") {\n            QDBusPendingReply<ObjectMap> call = m_dbusManager->GetManagedObjects();\n            QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n            connect(watcher,\n                    &QDBusPendingCallWatcher::finished,\n                    this,\n                    &DefAppWorker::getManagerObjectFinished);\n            continue;\n        }\n\n        const QString type{ getTypeByCategory(mimelist.value()) };\n\n        QDBusPendingReply<ObjectMap> call = m_dbusManager->ListApps(type);\n        QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n        connect(watcher, &QDBusPendingCallWatcher::finished, this, [watcher, mimelist, type, this] {\n            if (watcher->isError()) {\n                qCWarning(DdcDefaultWorker) << \"Cannot get AppList\";\n                watcher->deleteLater();\n                return;\n            }\n            QDBusPendingReply<ObjectMap> call = *watcher;\n            getListAppFinished(mimelist.key(), call.value());\n\n            QDBusPendingReply<QString, QDBusObjectPath> getDefaultAppCall =\n                    m_dbusManager->GetDefaultApp(type);\n            QDBusPendingCallWatcher *defappWatcher =\n                    new QDBusPendingCallWatcher(getDefaultAppCall, this);\n            connect(defappWatcher,\n                    &QDBusPendingCallWatcher::finished,\n                    this,\n                    [getDefaultAppCall, this, mimelist, type, defappWatcher] {\n                        if (getDefaultAppCall.isError()) {\n                            qCWarning(DdcDefaultWorker) << \"Cannot get DefaultApp\";\n                            defappWatcher->deleteLater();\n                            return;\n                        }\n                        QString mimeType = getDefaultAppCall.argumentAt<0>();\n                        if (mimeType != type) {\n                            qCWarning(DdcDefaultWorker) << \"MimeType not match\";\n                            defappWatcher->deleteLater();\n                            return;\n                        }\n                        QDBusObjectPath objectPath = getDefaultAppCall.argumentAt<1>();\n                        if (objectPath.path() == \"/\") {\n                            qCWarning(DdcDefaultWorker) << \"Cannot find Mime: \" << type;\n                            // Still call getDefaultAppFinished with empty id to trigger fallback logic\n                            getDefaultAppFinished(mimelist.key(), QString());\n                            defappWatcher->deleteLater();\n                            return;\n                        }\n                        getDefaultAppFinished(mimelist.key(), m_dbusManager->getAppId(objectPath));\n                        defappWatcher->deleteLater();\n                    });\n            watcher->deleteLater();\n        });\n    }\n}\n\nstatic QStringList getUILanguages()\n{\n    QLocale syslocal = QLocale::system();\n\n    QStringList uiLanguages = syslocal.uiLanguages();\n    // the nameMap uses underscore instead of minus sign\n    for (auto &lang : uiLanguages) {\n        lang.replace('-', '_');\n    }\n    uiLanguages << \"default\";\n\n    return uiLanguages;\n}\n\nvoid DefAppWorker::getManagerObjectFinished(QDBusPendingCallWatcher *call)\n{\n    Category *category = getCategory(\"Terminal\");\n    QList<App> list;\n    auto uiLanguages = getUILanguages();\n    QDBusPendingReply<ObjectMap> reply = *call;\n    if (reply.isError()) {\n        call->deleteLater();\n        return;\n    }\n    ObjectMap map = reply.value();\n    call->deleteLater();\n    for (auto it = map.cbegin(); it != map.cend(); it++) {\n        QString dbusPath = it.key().path();\n        auto mapInterface = it.value();\n        for (const QVariantMap &mapInter : mapInterface) {\n            if (mapInter.count() == 0) {\n                continue;\n            }\n            if (mapInter.value(\"Categories\").isNull()) {\n                continue;\n            }\n            QStringList cats = qdbus_cast<QStringList>(mapInter[\"Categories\"]);\n            if (!cats.contains(\"TerminalEmulator\")) {\n                continue;\n            }\n            auto nameMap = qdbus_cast<QMap<QString, QString>>(mapInter[\"Name\"]);\n            auto genericNameMap = qdbus_cast<QMap<QString, QString>>(mapInter[\"GenericName\"]);\n            QString id = qdbus_cast<QString>(mapInter[\"ID\"]);\n            bool isDeepinVendor = qdbus_cast<QString>(mapInter[\"X_Deepin_Vendor\"]) == \"deepin\";\n\n            QString name = id;\n            for (auto &lang : uiLanguages) {\n                auto iter = nameMap.find(lang);\n                if (iter != nameMap.end()) {\n                    name = iter.value();\n                    break;\n                }\n            }\n\n            QString genericName;\n            if (isDeepinVendor) {\n                for (auto &lang : uiLanguages) {\n                    auto iter = genericNameMap.find(lang);\n                    if (iter != genericNameMap.end()) {\n                        genericName = iter.value();\n                        break;\n                    }\n                }\n            }\n\n            QString icon;\n            if (auto mapicons = mapInter.value(\"Icons\"); !mapicons.isNull()) {\n                auto icons = qdbus_cast<QMap<QString, QString>>(mapicons);\n                if (!icons.value(\"Desktop Entry\").isNull()) {\n                    icon = icons[\"Desktop Entry\"];\n                }\n            }\n\n            App app;\n            app.dbusPath = dbusPath;\n            app.Id = id;\n            app.Name = name;\n            app.DisplayName = genericName != \"\" ? genericName : name;\n            app.Icon = icon;\n            app.isUser = false;\n            list << app;\n            break;\n        }\n    }\n\n    QList<App> systemList = category->getappItem();\n\n    for (App app : list) {\n        if (!systemList.contains(app)) {\n            category->addUserItem(app);\n        }\n    }\n\n    systemList = category->getappItem();\n    for (App app : systemList) {\n        if (!list.contains(app)) {\n            category->delUserItem(app);\n        }\n    }\n    category->setCategory(\"Terminal\");\n\n    QProcess process;\n    process.start(\"gsettings\", {\"get\", TerminalGSetting, \"app-id\"});\n    if (!process.waitForFinished(5000)) {\n        qCWarning(DdcDefaultWorker) << \"Failed to get terminal app-id:\" << process.errorString();\n        return;\n    }\n    QString id = process.readAllStandardOutput().trimmed().replace(\"\\\"\", \"\");\n    if (id.isEmpty()) {\n        qCWarning(DdcDefaultWorker) << \"Got empty terminal app-id\";\n        return;\n    }\n    \n    auto it = std::find_if(list.cbegin(), list.cend(), [&id](const App &app) {\n        return app.Id.trimmed() == id.remove(QChar('\\''), Qt::CaseInsensitive).trimmed();\n    });\n\n    if (it != list.cend()) {\n        category->setDefault(*it);\n    }\n}\n\nvoid DefAppWorker::onDelUserApp([[maybe_unused]] const QString &mime,\n                                [[maybe_unused]] const App &item)\n{\n    App itemToDelete = item;\n    m_dbusManager->DeleteUserApp(itemToDelete.Id);\n    // Delete user application\n    if (Category *category = getCategory(mime)) {\n        category->delUserItem(itemToDelete);\n    }\n}\n\nvoid DefAppWorker::onCreateFile([[maybe_unused]] const QString &mime, [[maybe_unused]] const QFileInfo &info)\n{\n    const bool isDesktop = info.suffix() == \"desktop\";\n    if (isDesktop) {\n        // 获取相同mime类型的应用列表\n        QList<App> appList = getCategory(mime)->getappItem();\n        // 检查是否存在与应用ID一致的文件名称（去掉后缀）\n        for (const App &app : appList) {\n            if (app.Id == info.completeBaseName()) {\n                qCDebug(DdcDefaultWorker) << \"File name matches app ID, skipping:\" << info.completeBaseName();\n                return;\n            }\n        }\n        QFile file(info.filePath());\n        QString name = \"deepin-custom-\" + mime + \"-\" + info.completeBaseName() + \".desktop\";\n        QVariantMap appInfo;\n        QMap<QString, QString> nameMap;\n        QMap<QString, QString> execMap;\n        QMap<QString, QString> iconMap;\n        QMap<QString, QString> genericNameMap;\n        const QStringList keys = { \"Type\", \"Version\", \"Path\", \"Terminal\", \"Categories\" };\n        if (file.open(QFile::ReadOnly)) {\n            QTextStream in(&file);\n            bool isEntry = false;\n            while (!in.atEnd()) {\n                QString line = in.readLine();\n                if (line.startsWith('[')) {\n                    isEntry = line == \"[Desktop Entry]\";\n                } else if (isEntry) {\n                    int index = line.indexOf('=');\n                    if (index > 0) {\n                        QString key = line.mid(0, index);\n                        QString value = line.mid(index + 1);\n                        if (key == \"Icon\" && !value.isEmpty()) {\n                            iconMap.insert(\"default\", value);\n                            iconMap.insert(\"default-icon\", value);\n                        } else if (key == \"Exec\") {\n                            execMap.insert(\"default\", value);\n                        } else if (key.startsWith(\"Name\")) {\n                            int nameIndex = key.indexOf('[');\n                            if (nameIndex < 0) {\n                                nameMap.insert(\"default\", value);\n                            } else {\n                                nameMap.insert(key.mid(nameIndex + 1, key.length() - nameIndex - 2), value);\n                            }\n                        } else if (key.startsWith(\"GenericName\")) {\n                            int genericNameIndex = key.indexOf('[');\n                            if (genericNameIndex < 0) {\n                                appInfo.insert(\"default\", value);\n                            } else {\n                                genericNameMap.insert(key.mid(genericNameIndex + 1, key.length() - genericNameIndex - 2), value);\n                            }\n                        } else if (key == \"X-Deepin-Vendor\") {\n                            appInfo.insert(\"X-Deepin-Vendor\", value);\n                        } else if (keys.contains(key)) {\n                            if (\"Terminal\" != mime && \"Categories\" == key) {\n                                value.remove(\"TerminalEmulator;\");\n                            }\n                            appInfo.insert(key, value);\n                        }\n                    }\n                }\n            }\n            file.close();\n        }\n        if (!appInfo.isEmpty() || !nameMap.isEmpty() || !iconMap.isEmpty() || !execMap.isEmpty()) {\n            appInfo.insert(\"MimeType\", getTypeListByCategory(m_stringToCategory.value(mime)));\n            appInfo.insert(\"Name\", QVariant::fromValue(nameMap));\n            appInfo.insert(\"Exec\", QVariant::fromValue(execMap));\n            if (!genericNameMap.isEmpty()) {\n                appInfo.insert(\"GenericName\", QVariant::fromValue(genericNameMap));\n            }\n            if (iconMap.isEmpty()) {\n                iconMap.insert(\"default-icon\", \"application-default-icon\");\n            }\n            appInfo.insert(\"Icon\", QVariant::fromValue(iconMap));\n            appInfo.insert(\"NoDisplay\", true);\n            QDBusPendingReply<QString> reply = m_dbusManager->addUserApplication(appInfo, name);\n            reply.waitForFinished();\n        }\n    } else {\n        QVariantMap appInfo;\n        appInfo.insert(\"Type\", \"Application\");\n        appInfo.insert(\"Version\", 1);\n        QMap<QString, QString> nameMap;\n        nameMap.insert(\"default\", info.completeBaseName());\n        appInfo.insert(\"Name\", QVariant::fromValue(nameMap));\n        appInfo.insert(\"Path\", info.path());\n        QMap<QString, QString> execMap;\n        execMap.insert(\"default\", info.filePath());\n        appInfo.insert(\"Exec\", QVariant::fromValue(execMap));\n        QMap<QString, QString> iconMap;\n        iconMap.insert(\"default-icon\", \"application-default-icon\");\n        appInfo.insert(\"Icon\", QVariant::fromValue(iconMap));\n        appInfo.insert(\"NoDisplay\", true);\n        appInfo.insert(\"Terminal\", false);\n        appInfo.insert(\"Categories\", mime);\n        appInfo.insert(\"MimeType\", getTypeListByCategory(m_stringToCategory.value(mime)));\n        QString name = \"deepin-custom-\" + mime + \"-\" + info.completeBaseName() + \".desktop\";\n        QDBusPendingReply<QString> reply = m_dbusManager->addUserApplication(appInfo, name);\n        reply.waitForFinished();\n    }\n    // 刷新列表\n    onGetListApps();\n}\n\nvoid DefAppWorker::getListAppFinished(const QString &mimeKey, const ObjectMap &map)\n{\n    Category *category = getCategory(mimeKey);\n    if (!category) {\n        return;\n    }\n\n    QList<App> list;\n    auto uiLanguages = getUILanguages();\n\n    for (auto it = map.cbegin(); it != map.cend(); it++) {\n        QString dbusPath = it.key().path();\n        auto mapInterface = it.value();\n        for (const QVariantMap &mapInter : mapInterface) {\n            if (mapInter.count() == 0) {\n                continue;\n            }\n\n            if (auto nodisplay = mapInter.value(\"NoDisplay\"); !nodisplay.isNull() && !mapInter.value(\"ID\").toString().contains(\"deepin-custom-\")) {\n                if (qdbus_cast<bool>(nodisplay)) {\n                    continue;\n                }\n            }\n\n            auto nameMap = qdbus_cast<QMap<QString, QString>>(mapInter[\"Name\"]);\n            auto genericNameMap = qdbus_cast<QMap<QString, QString>>(mapInter[\"GenericName\"]);\n            QString id = qdbus_cast<QString>(mapInter[\"ID\"]);\n            bool isDeepinVendor = qdbus_cast<QString>(mapInter[\"X_Deepin_Vendor\"]) == \"deepin\";\n\n            QString name = id;\n            for (auto &lang : uiLanguages) {\n                auto iter = nameMap.find(lang);\n                if (iter != nameMap.end()) {\n                    name = iter.value();\n                    break;\n                }\n            }\n\n            QString genericName;\n            if (isDeepinVendor) {\n                for (auto &lang : uiLanguages) {\n                    auto iter = genericNameMap.find(lang);\n                    if (iter != genericNameMap.end()) {\n                        genericName = iter.value();\n                        break;\n                    }\n                }\n            }\n\n            QString icon;\n            if (auto mapicons = mapInter.value(\"Icons\"); !mapicons.isNull()) {\n                auto icons = qdbus_cast<QMap<QString, QString>>(mapicons);\n                if (!icons.value(\"Desktop Entry\").isNull()) {\n                    icon = icons[\"Desktop Entry\"];\n                }\n            }\n\n            App app;\n            app.dbusPath = dbusPath;\n            app.Id = id;\n            app.Name = name;\n            app.DisplayName = genericName != \"\" ? genericName : name;\n            app.Icon = icon;\n            app.isUser = mapInter.value(\"X_Deepin_CreateBy\").toString() == \"dde-application-manager\";\n            app.CanDelete = app.isUser;\n            list << app;\n            break;\n        }\n    }\n\n    QList<App> systemList = category->getappItem();\n\n    for (App app : list) {\n        if (!systemList.contains(app)) {\n            category->addUserItem(app);\n        }\n    }\n\n    systemList = category->getappItem();\n    for (App app : systemList) {\n        if (!list.contains(app)) {\n            category->delUserItem(app);\n        }\n    }\n\n    category->setCategory(mimeKey);\n}\n\nvoid DefAppWorker::getDefaultAppFinished(const QString &mimeKey, const QString &id)\n{\n    Category *category = getCategory(mimeKey);\n    if (!category) {\n        return;\n    }\n\n    auto items = category->getappItem();\n    auto it = std::find_if(items.cbegin(), items.cend(), [id](const App &app) {\n        return app.Id == id;\n    });\n\n    if (it != items.cend()) {\n        category->setDefault(*it);\n        category->setCategory(mimeKey);\n    } else {\n        // If the default app is not found (e.g., uninstalled), fallback to the first system app\n        auto systemApps = category->systemAppList();\n        if (!systemApps.isEmpty()) {\n            category->setDefault(systemApps.first());\n            category->setCategory(mimeKey);\n        }\n    }\n}\n\nCategory *DefAppWorker::getCategory(const QString &mime) const\n{\n    switch (m_stringToCategory[mime]) {\n    case Browser:\n        return m_defAppModel->getModBrowser();\n    case Mail:\n        return m_defAppModel->getModMail();\n    case Text:\n        return m_defAppModel->getModText();\n    case Music:\n        return m_defAppModel->getModMusic();\n    case Video:\n        return m_defAppModel->getModVideo();\n    case Picture:\n        return m_defAppModel->getModPicture();\n    case Terminal:\n        return m_defAppModel->getModTerminal();\n    }\n    return nullptr;\n}\n\nconst QString DefAppWorker::getTypeByCategory(const DefaultAppsCategory &category)\n{\n    return getTypeListByCategory(category)[0];\n}\n\n// clang-format off\nconst QStringList DefAppWorker::getTypeListByCategory(const DefaultAppsCategory &category)\n{\n    switch (category) {\n    case Browser:       return QStringList() << \"x-scheme-handler/http\" << \"x-scheme-handler/ftp\" << \"x-scheme-handler/https\"\n                                   << \"text/html\" << \"text/xml\" << \"text/xhtml_xml\" << \"text/xhtml+xml\";\n    case Mail:          return QStringList() << \"x-scheme-handler/mailto\" << \"message/rfc822\" << \"application/x-extension-eml\"\n                                   << \"application/x-xpinstall\";\n    case Text:          return QStringList() << \"text/plain\";\n    case Music:         return QStringList() << \"audio/mpeg\" << \"audio/mp3\" << \"audio/x-mp3\" << \"audio/mpeg3\" << \"audio/x-mpeg-3\"\n                                   << \"audio/x-mpeg\" << \"audio/flac\" << \"audio/x-flac\" << \"application/x-flac\"\n                                   << \"audio/ape\" << \"audio/x-ape\" << \"application/x-ape\" << \"audio/ogg\" << \"audio/x-ogg\"\n                                   << \"audio/musepack\" << \"application/musepack\" << \"audio/x-musepack\"\n                                   << \"application/x-musepack\" << \"audio/mpc\" << \"audio/x-mpc\" << \"audio/vorbis\"\n                                   << \"audio/x-vorbis\" << \"audio/x-wav\" << \"audio/x-ms-wma\";\n    case Video:         return QStringList() << \"video/mp4\" << \"audio/mp4\" << \"audio/x-matroska\" << \"video/x-matroska\"\n                                   << \"application/x-matroska\" << \"video/avi\" << \"video/msvideo\" << \"video/x-msvideo\"\n                                   << \"video/ogg\" << \"application/ogg\" << \"application/x-ogg\" << \"video/3gpp\" << \"video/3gpp2\"\n                                   << \"video/flv\" << \"video/x-flv\" << \"video/x-flic\" << \"video/mpeg\" << \"video/x-mpeg\"\n                                   << \"video/x-ogm\" << \"application/x-shockwave-flash\" << \"video/x-theora\" << \"video/quicktime\"\n                                   << \"video/x-ms-asf\" << \"application/vnd.rn-realmedia\" << \"video/x-ms-wmv\";\n    case Picture:       return QStringList() << \"image/jpeg\" << \"image/pjpeg\" << \"image/bmp\" << \"image/x-bmp\" << \"image/png\"\n                                   << \"image/x-png\" << \"image/tiff\" << \"image/svg+xml\" << \"image/x-xbitmap\" << \"image/gif\"\n                                   << \"image/x-xpixmap\" << \"image/vnd.microsoft.icon\";\n    case Terminal:      return QStringList() << \"application/x-terminal\";\n    }\n    return QStringList();\n}\n\n// clang-format on\n"
  },
  {
    "path": "src/plugin-defaultapp/operation/defappworker.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n\n#ifndef DEFAPPWORKER_H\n#define DEFAPPWORKER_H\n\n#include <QObject>\n#include <QMap>\n\n#include <QDBusPendingCall>\n\n#include \"mimedbusproxy.h\"\n#include \"category.h\"\n\n\nclass QFileInfo;\nclass QTimer;\n\nclass DefAppModel;\nclass Category;\nclass DefAppWorker : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit DefAppWorker(DefAppModel *m_defAppModel, QObject *parent = 0);\n\n    ~DefAppWorker();\n    enum DefaultAppsCategory {\n        Browser,\n        Mail,\n        Text,\n        Music,\n        Video,\n        Picture,\n        Terminal\n    };\n\n    void active();\n    void deactive();\n\npublic Q_SLOTS:\n    void onSetDefaultApp(const QString &category, const App &item);\n    void onSetDefaultTerminal(const App &item);\n    void onGetListApps();\n    void onDelUserApp(const QString &mine, const App &item);\n    void onCreateFile(const QString &mime, const QFileInfo &info);\n\nprivate Q_SLOTS:\n    void getListAppFinished(const QString &mime, const ObjectMap &map);\n    void getDefaultAppFinished(const QString &mime, const QString &w);\n    void getManagerObjectFinished(QDBusPendingCallWatcher *call);\n\nprivate:\n    DefAppModel *m_defAppModel;\n    MimeDBusProxy  *m_dbusManager;\n    QMap<QString, DefaultAppsCategory> m_stringToCategory;\n    QString m_userLocalPath;\n    QTimer *m_debounceTimer;  // 防抖定时器\n\nprivate:\n    const QString getTypeByCategory(const DefAppWorker::DefaultAppsCategory &category);\n    const QStringList getTypeListByCategory(const DefAppWorker::DefaultAppsCategory &category);\n    Category* getCategory(const QString &mime) const;\n    // QGSettings *m_defaultTerminal;\n    bool executeGsettingsCommand(const QStringList &args, const QString &errorMessage);\n};\n\n#endif // DEFAPPWORKER_H\n"
  },
  {
    "path": "src/plugin-defaultapp/operation/defappworkerold.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"defappworkerold.h\"\n#include \"defappmodel.h\"\n#include <QDBusPendingCall>\n#include <QStringList>\n#include <QList>\n#include <QFileInfo>\n#include <QDebug>\n#include <QDir>\n#include <QJsonDocument>\n#include <QJsonArray>\n#include <QJsonObject>\n#include <QLoggingCategory>\n\nQ_LOGGING_CATEGORY(DdcDefaultWorkerOld, \"dcc-default-worker-old\")\n\nDefAppWorkerOld::DefAppWorkerOld(DefAppModel *model, QObject *parent) :\n    QObject(parent),\n    m_defAppModel(model),\n    m_dbusManager(new MimeDBusProxyOld(this))\n{\n\n    m_stringToCategory.insert(\"Browser\",     Browser);\n    m_stringToCategory.insert(\"Mail\",        Mail);\n    m_stringToCategory.insert(\"Text\",        Text);\n    m_stringToCategory.insert(\"Music\",       Music);\n    m_stringToCategory.insert(\"Video\",       Video);\n    m_stringToCategory.insert(\"Picture\",     Picture);\n    m_stringToCategory.insert(\"Terminal\",    Terminal);\n\n    connect(m_dbusManager, &MimeDBusProxyOld::Change, this, &DefAppWorkerOld::onGetListApps);\n\n    m_userLocalPath = QDir::homePath() + \"/.local/share/applications/\";\n\n    // mkdir folder\n    QDir dir(m_userLocalPath);\n    dir.mkpath(m_userLocalPath);\n}\n\nvoid DefAppWorkerOld::active()\n{\n    m_dbusManager->blockSignals(false);\n}\n\nvoid DefAppWorkerOld::deactive()\n{\n    m_dbusManager->blockSignals(true);\n}\n\nvoid DefAppWorkerOld::onSetDefaultApp(const QString &category, const App &item)\n{\n    QStringList mimelist = getTypeListByCategory(m_stringToCategory[category]);\n\n    QDBusPendingCall call = m_dbusManager->SetDefaultApp(mimelist, item.Id);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [call, watcher, this, item, category] {\n        if (!call.isError()) {\n            qCDebug(DdcDefaultWorkerOld) << \"Setting MIME \" << category << \"to \" <<  item.Id;\n            auto tosetCategory = getCategory(category);\n            tosetCategory->setDefault(item);\n        } else {\n            qCWarning(DdcDefaultWorkerOld) << \"Cannot set MIME\" << category << \"to\" << item.Id;\n        }\n        watcher->deleteLater();\n    });\n\n}\n\nvoid DefAppWorkerOld::onGetListApps()\n{\n    //遍历QMap去获取dbus数据\n    for (auto  mimelist = m_stringToCategory.constBegin(); mimelist != m_stringToCategory.constEnd(); ++mimelist) {\n        const QString type { getTypeByCategory(mimelist.value()) };\n\n        getDefaultAppFinished(mimelist.key(), m_dbusManager->GetDefaultApp(type));\n        getListAppFinished(mimelist.key(),m_dbusManager->ListApps(type), false);\n        getListAppFinished(mimelist.key(),m_dbusManager->ListUserApps(type), true);\n    }\n}\n\nvoid DefAppWorkerOld::onDelUserApp(const QString &mime, const App &item)\n{\n    Category *category = getCategory(mime);\n\n    category->delUserItem(item);\n    if (item.CanDelete) {\n        QStringList mimelist = getTypeListByCategory(m_stringToCategory[mime]);\n        m_dbusManager->DeleteApp(mimelist, item.Id);\n    } else {\n        m_dbusManager->DeleteUserApp(item.Id);\n    }\n\n    //remove file\n    QFile file(m_userLocalPath + item.Id);\n    file.remove();\n}\n\nvoid DefAppWorkerOld::onCreateFile(const QString &mime, const QFileInfo &info)\n{\n    const bool isDesktop = info.suffix() == \"desktop\";\n\n    if (isDesktop) {\n        QFile file(info.filePath());\n        QString newfile = m_userLocalPath + \"deepin-custom-\" + info.fileName();\n        file.copy(newfile);\n        file.close();\n\n        QStringList mimelist = getTypeListByCategory(m_stringToCategory[mime]);\n        QFileInfo fileInfo(info.filePath());\n\n        const QString &filename = \"deepin-custom-\" + fileInfo.completeBaseName() + \".desktop\";\n\n        m_dbusManager->AddUserApp(mimelist, filename);\n\n        App app;\n        app.Id = filename;\n        app.Name = fileInfo.baseName();\n        app.DisplayName = fileInfo.baseName();\n        app.Icon = \"application-default-icon\";\n        app.Description = \"\";\n        app.Exec = info.filePath();\n        app.isUser = true;\n\n        onGetListApps();\n    } else {\n        QFile file(m_userLocalPath + \"deepin-custom-\" + info.baseName() + \".desktop\");\n\n        if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {\n            return;\n        }\n\n        QTextStream out(&file);\n        out << \"[Desktop Entry]\\n\"\n            \"Type=Application\\n\"\n            \"Version=1.0\\n\"\n            \"Name=\" + info.baseName() + \"\\n\"\n            \"Path=\" + info.path() + \"\\n\"\n            \"Exec=\" +  info.filePath() + \"\\n\"\n            \"Icon=application-default-icon\\n\"\n            \"Terminal=false\\n\"\n            \"Categories=\" + mime + \";\"\n#if (QT_VERSION < QT_VERSION_CHECK(5,15,0))\n            << endl;\n#else\n            << Qt::endl;\n#endif\n        out.flush();\n        file.close();\n\n        QStringList mimelist = getTypeListByCategory(m_stringToCategory[mime]);\n\n        QFileInfo fileInfo(info.filePath());\n        m_dbusManager->AddUserApp(mimelist, \"deepin-custom-\" + fileInfo.baseName() + \".desktop\");\n\n        App app;\n        app.Id = \"deepin-custom-\" + fileInfo.baseName() + \".desktop\";\n        app.Name = fileInfo.baseName();\n        app.DisplayName = fileInfo.baseName();\n        app.Icon = \"application-default-icon\";\n        app.Description = \"\";\n        app.Exec = info.filePath();\n        app.isUser = true;\n\n        onGetListApps();\n    }\n}\n\nvoid DefAppWorkerOld::getListAppFinished(const QString &mime, const QString &defaultApp, bool isUser)\n{\n    const  QJsonArray defApp = QJsonDocument::fromJson(defaultApp.toUtf8()).array();\n    saveListApp(mime, defApp, isUser);\n}\n\n\nvoid DefAppWorkerOld::getDefaultAppFinished(const QString &mime, const QString &w)\n{\n    const QJsonObject &defaultApp = QJsonDocument::fromJson(w.toStdString().c_str()).object();\n    saveDefaultApp(mime, defaultApp);\n}\n\nvoid DefAppWorkerOld::saveListApp(const QString &mime, const QJsonArray &json, const bool isUser)\n{\n    Category *category = getCategory(mime);\n    if (!category) {\n        return;\n    }\n\n    QList<App> list;\n\n    for (const QJsonValue &value : json) {\n        QJsonObject obj = value.toObject();\n        App app;\n        app.Id = obj[\"Id\"].toString();\n        app.Name = obj[\"Name\"].toString();\n        app.DisplayName = obj[\"DisplayName\"].toString();\n        app.Icon = obj[\"Icon\"].toString();\n        app.Description = obj[\"Description\"].toString();\n        app.Exec = obj[\"Exec\"].toString();\n        app.isUser = isUser;\n        app.CanDelete = obj[\"CanDelete\"].toBool();\n        app.MimeTypeFit = obj[\"MimeTypeFit\"].toBool();\n\n        list << app;\n    }\n\n    QList<App> systemList = category->systemAppList();\n    QList<App> userList = category->userAppList();\n    for (App app : list) {\n        if (app.isUser == false) {\n            for (App appUser : userList) {\n                if (appUser.Exec == app.Exec) {\n                    category->delUserItem(appUser);\n                }\n            }\n        }\n    }\n\n    for (App app : list) {\n        if (!systemList.contains(app) || !userList.contains(app)) {\n            category->addUserItem(app);\n        }\n    }\n\n    if (isUser) {\n        userList = category->userAppList();\n        for (App app : userList) {\n            if (!list.contains(app)) {\n                category->delUserItem(app);\n            }\n        }\n    } else {\n        systemList = category->systemAppList();\n        for (App app : systemList) {\n            if (!list.contains(app)) {\n                category->delUserItem(app);\n            }\n        }\n    }\n\n    category->setCategory(mime);\n}\n\nvoid DefAppWorkerOld::saveDefaultApp(const QString &mime, const QJsonObject &json)\n{\n    Category *category = getCategory(mime);\n    if (!category) {\n        return;\n    }\n    category->setCategory(mime);\n\n    App app;\n    app.Id = json[\"Id\"].toString();\n    app.Name = json[\"Name\"].toString();\n    app.DisplayName = json[\"DisplayName\"].toString();\n    app.Icon = json[\"Icon\"].toString();\n    app.Description = json[\"Description\"].toString();\n    app.Exec = json[\"Exec\"].toString();\n    app.isUser = false;\n\n    category->setDefault(app);\n}\n\nCategory *DefAppWorkerOld::getCategory(const QString &mime) const\n{\n    switch (m_stringToCategory[mime]) {\n    case Browser:\n        return m_defAppModel->getModBrowser();\n    case Mail:\n        return m_defAppModel->getModMail();\n    case Text:\n        return m_defAppModel->getModText();\n    case Music:\n        return m_defAppModel->getModMusic();\n    case Video:\n        return m_defAppModel->getModVideo();\n    case Picture:\n        return m_defAppModel->getModPicture();\n    case Terminal:\n        return m_defAppModel->getModTerminal();\n    }\n    return nullptr;\n}\n\nconst QString DefAppWorkerOld::getTypeByCategory(const DefaultAppsCategory &category)\n{\n    return getTypeListByCategory(category)[0];\n}\n\nconst QStringList DefAppWorkerOld::getTypeListByCategory(const DefaultAppsCategory &category)\n{\n    switch (category) {\n    case Browser:       return QStringList() << \"x-scheme-handler/http\" << \"x-scheme-handler/ftp\" << \"x-scheme-handler/https\"\n                                   << \"text/html\" << \"text/xml\" << \"text/xhtml_xml\" << \"text/xhtml+xml\";\n    case Mail:          return QStringList() << \"x-scheme-handler/mailto\" << \"message/rfc822\" << \"application/x-extension-eml\"\n                                   << \"application/x-xpinstall\";\n    case Text:          return QStringList() << \"text/plain\";\n    case Music:         return QStringList() << \"audio/mpeg\" << \"audio/mp3\" << \"audio/x-mp3\" << \"audio/mpeg3\" << \"audio/x-mpeg-3\"\n                                   << \"audio/x-mpeg\" << \"audio/flac\" << \"audio/x-flac\" << \"application/x-flac\"\n                                   << \"audio/ape\" << \"audio/x-ape\" << \"application/x-ape\" << \"audio/ogg\" << \"audio/x-ogg\"\n                                   << \"audio/musepack\" << \"application/musepack\" << \"audio/x-musepack\"\n                                   << \"application/x-musepack\" << \"audio/mpc\" << \"audio/x-mpc\" << \"audio/vorbis\"\n                                   << \"audio/x-vorbis\" << \"audio/x-wav\" << \"audio/x-ms-wma\";\n    case Video:         return QStringList() << \"video/mp4\" << \"audio/mp4\" << \"audio/x-matroska\" << \"video/x-matroska\"\n                                   << \"application/x-matroska\" << \"video/avi\" << \"video/msvideo\" << \"video/x-msvideo\"\n                                   << \"video/ogg\" << \"application/ogg\" << \"application/x-ogg\" << \"video/3gpp\" << \"video/3gpp2\"\n                                   << \"video/flv\" << \"video/x-flv\" << \"video/x-flic\" << \"video/mpeg\" << \"video/x-mpeg\"\n                                   << \"video/x-ogm\" << \"application/x-shockwave-flash\" << \"video/x-theora\" << \"video/quicktime\"\n                                   << \"video/x-ms-asf\" << \"application/vnd.rn-realmedia\" << \"video/x-ms-wmv\";\n    case Picture:       return QStringList() << \"image/jpeg\" << \"image/pjpeg\" << \"image/bmp\" << \"image/x-bmp\" << \"image/png\"\n                                   << \"image/x-png\" << \"image/tiff\" << \"image/svg+xml\" << \"image/x-xbitmap\" << \"image/gif\"\n                                   << \"image/x-xpixmap\" << \"image/vnd.microsoft.icon\";\n    case Terminal:      return QStringList() << \"application/x-terminal\";\n    }\n    return QStringList();\n}\n"
  },
  {
    "path": "src/plugin-defaultapp/operation/defappworkerold.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QObject>\n#include <QMap>\n\n#include \"mimedbusproxyold.h\"\n#include \"category.h\"\n\nclass QFileInfo;\n\nclass DefAppModel;\nclass Category;\nclass DefAppWorkerOld : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit DefAppWorkerOld(DefAppModel *m_defAppModel, QObject *parent = 0);\n\n    enum DefaultAppsCategory {\n        Browser,\n        Mail,\n        Text,\n        Music,\n        Video,\n        Picture,\n        Terminal\n    };\n\n    void active();\n    void deactive();\n\n\npublic Q_SLOTS:\n    void onSetDefaultApp(const QString &category, const App &item);\n    void onGetListApps();\n    void onDelUserApp(const QString &mine, const App &item);\n    void onCreateFile(const QString &mime, const QFileInfo &info);\n\nprivate Q_SLOTS:\n    void getListAppFinished(const QString &mime, const QString &defaultApp, bool isUser);\n    void getDefaultAppFinished(const QString &mime, const QString &w);\n    void saveListApp(const QString &mime, const QJsonArray &json, const bool isUser);\n    void saveDefaultApp(const QString &mime, const QJsonObject &json);\n\nprivate:\n    DefAppModel *m_defAppModel;\n    MimeDBusProxyOld  *m_dbusManager;\n    QMap<QString, DefaultAppsCategory> m_stringToCategory;\n    QString m_userLocalPath;\n\nprivate:\n    const QString getTypeByCategory(const DefAppWorkerOld::DefaultAppsCategory &category);\n    const QStringList getTypeListByCategory(const DefAppWorkerOld::DefaultAppsCategory &category);\n    Category* getCategory(const QString &mime) const;\n};\n"
  },
  {
    "path": "src/plugin-defaultapp/operation/mimedbusproxy.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"mimedbusproxy.h\"\n\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusMetaType>\n#include <QDBusPendingReply>\n#include <QDBusReply>\n#include <QDebug>\n#include <QMetaObject>\n\nconst QString ApplicationManagerServer = QStringLiteral(\"org.desktopspec.ApplicationManager1\");\nconst QString MimePath = QStringLiteral(\"/org/desktopspec/ApplicationManager1/MimeManager1\");\nconst QString MimeInterface = QStringLiteral(\"org.desktopspec.MimeManager1\");\nconst QString AMApplicationInterface =\n        QStringLiteral(\"org.desktopspec.ApplicationManager1.Application\");\n\nconst QString ObjectManagerInterface = QStringLiteral(\"org.desktopspec.DBus.ObjectManager\");\nconst QString ApplicationManager1Path = QStringLiteral(\"/org/desktopspec/ApplicationManager1\");\nconst QString ApplicationManager1Interface = QStringLiteral(\"org.desktopspec.ApplicationManager1\");\n\nMimeDBusProxy::MimeDBusProxy(QObject *parent)\n    : QObject(parent)\n    , m_mimeInter(new QDBusInterface(ApplicationManagerServer,\n                                     MimePath,\n                                     MimeInterface,\n                                     QDBusConnection::sessionBus(),\n                                     this))\n    , m_applicationManagerInter(new QDBusInterface(ApplicationManagerServer,\n                                                   ApplicationManager1Path,\n                                                   ObjectManagerInterface,\n                                                   QDBusConnection::sessionBus(),\n                                                   this))\n{\n    qRegisterMetaType<ObjectInterfaceMap>();\n    qDBusRegisterMetaType<ObjectInterfaceMap>();\n    qRegisterMetaType<ObjectMap>();\n    qDBusRegisterMetaType<ObjectMap>();\n    qRegisterMetaType<QStringMap>();\n    qDBusRegisterMetaType<QStringMap>();\n    qRegisterMetaType<PropMap>();\n    qDBusRegisterMetaType<PropMap>();\n    QDBusConnection::sessionBus().connect(ApplicationManagerServer, ApplicationManager1Path, \"org.freedesktop.DBus.Properties\", \"PropertiesChanged\", this, SIGNAL(Change()));\n    QDBusConnection::sessionBus().connect(ApplicationManagerServer, MimePath, MimeInterface, \"MimeInfoReloaded\", this, SIGNAL(Change()));\n}\n\nQDBusPendingReply<ObjectMap> MimeDBusProxy::GetManagedObjects()\n{\n    return m_applicationManagerInter->asyncCall(\"GetManagedObjects\");\n}\n\nQDBusPendingReply<void> MimeDBusProxy::SetDefaultApp(const QString &mimeType,\n                                                     const QString &desktopId)\n{\n    QStringMap map;\n    map.insert(mimeType, desktopId);\n    return m_mimeInter->asyncCallWithArgumentList(\"setDefaultApplication\",\n                                                  { QVariant::fromValue(map) });\n}\n\nvoid MimeDBusProxy::DeleteApp([[maybe_unused]] const QStringList &mimeTypes,\n                              [[maybe_unused]] const QString &desktopId)\n{\n    // QDBusPendingReply<QString>(m_mimeInter->asyncCall(\"DeleteApp\", mimeTypes, desktopId));\n}\n\nvoid MimeDBusProxy::DeleteUserApp([[maybe_unused]] const QString &desktopId)\n{\n    // QDBusPendingReply<QString>(m_mimeInter->asyncCall(\"DeleteUserApp\", desktopId));\n    QDBusMessage msg = QDBusMessage::createMethodCall(ApplicationManagerServer, ApplicationManager1Path, ApplicationManager1Interface, QStringLiteral(\"deleteUserApplication\"));\n    msg << desktopId;\n    QDBusPendingReply<> reply = QDBusConnection::sessionBus().asyncCall(msg);\n    if (reply.isError()) {\n        qWarning() << \"deleteUserApplication\" << reply.error();\n    }\n}\n\nvoid MimeDBusProxy::AddUserApp([[maybe_unused]] const QStringList &mimeTypes,\n                               [[maybe_unused]] const QString &desktopId)\n{\n    // QDBusPendingReply<QString>(m_mimeInter->asyncCall(\"AddUserApp\", mimeTypes, desktopId));\n}\n\nQDBusPendingReply<QString> MimeDBusProxy::addUserApplication(const QVariantMap &desktopFile, const QString &name)\n{\n    QDBusMessage msg = QDBusMessage::createMethodCall(ApplicationManagerServer, ApplicationManager1Path, ApplicationManager1Interface, QStringLiteral(\"addUserApplication\"));\n    msg << desktopFile << name;\n    QDBusPendingReply<QString> reply = QDBusConnection::sessionBus().asyncCall(msg);\n    return reply;\n}\n\nQString MimeDBusProxy::getAppId(const QDBusObjectPath &appPath)\n{\n    auto interface = QDBusInterface(ApplicationManagerServer,\n                                    appPath.path(),\n                                    AMApplicationInterface,\n                                    QDBusConnection::sessionBus(),\n                                    this);\n    return interface.property(\"ID\").toString();\n}\n\nQDBusPendingReply<QString, QDBusObjectPath> MimeDBusProxy::GetDefaultApp(const QString &mimeType)\n{\n    return m_mimeInter->asyncCallWithArgumentList(\"queryDefaultApplication\", { mimeType });\n}\n\nQDBusPendingReply<ObjectMap> MimeDBusProxy::ListApps(const QString &mimeType)\n{\n    return m_mimeInter->asyncCallWithArgumentList(\"listApplications\", { mimeType });\n}\n"
  },
  {
    "path": "src/plugin-defaultapp/operation/mimedbusproxy.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QObject>\n#include <QDBusPendingReply>\n\nclass QDBusInterface;\nclass QDBusMessage;\n\nusing ObjectInterfaceMap = QMap<QString, QVariantMap>;\nusing ObjectMap = QMap<QDBusObjectPath, ObjectInterfaceMap>;\nusing QStringMap = QMap<QString, QString>;\nusing PropMap = QMap<QString, QStringMap>;\n\nQ_DECLARE_METATYPE(ObjectInterfaceMap)\nQ_DECLARE_METATYPE(ObjectMap)\nQ_DECLARE_METATYPE(QStringMap)\nQ_DECLARE_METATYPE(PropMap)\n\nclass MimeDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit MimeDBusProxy(QObject *parent = nullptr);\n\n    QDBusPendingReply<void> SetDefaultApp(const QString &mime, const QString &desktopId);\n    void DeleteApp(const QStringList &mimeTypes, const QString &desktopId);\n    void DeleteUserApp(const QString &desktopId);\n    void AddUserApp(const QStringList &mimeTypes, const QString &desktopId);\n    QDBusPendingReply<QString> addUserApplication(const QVariantMap &desktopFile, const QString &name);\n\n    QDBusPendingReply<ObjectMap> GetManagedObjects();\n    QDBusPendingReply<QString, QDBusObjectPath> GetDefaultApp(const QString &mimeType);\n    QDBusPendingReply<ObjectMap> ListApps(const QString &mimeType);\n    QString getAppId(const QDBusObjectPath &path);\n\nQ_SIGNALS:\n    void Change();\n\nprivate:\n    QDBusInterface *m_mimeInter;\n    QDBusInterface *m_applicationManagerInter;\n};\n"
  },
  {
    "path": "src/plugin-defaultapp/operation/mimedbusproxyold.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"mimedbusproxyold.h\"\n\n#include <QMetaObject>\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusConnectionInterface>\n#include <QDBusPendingReply>\n\nconst QString MimeService = QStringLiteral(\"org.deepin.dde.Mime1\");\nconst QString MimePath = QStringLiteral(\"/org/deepin/dde/Mime1\");\nconst QString MimeInterface = QStringLiteral(\"org.deepin.dde.Mime1\");\n\nbool MimeDBusProxyOld::isRegisted()\n{\n    return QDBusConnection::sessionBus().interface()->isServiceRegistered(MimeInterface);\n}\n\nMimeDBusProxyOld::MimeDBusProxyOld(QObject *parent)\n    : QObject(parent)\n    , m_mimeInter(new QDBusInterface(MimeService, MimePath, MimeInterface, QDBusConnection::sessionBus(), this))\n{\n    connect(m_mimeInter, SIGNAL(Change()), this, SIGNAL(Change()), Qt::QueuedConnection);\n}\n\nQDBusPendingReply<void> MimeDBusProxyOld::SetDefaultApp(const QStringList &mimeTypes, const QString &desktopId)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(mimeTypes) << QVariant::fromValue(desktopId);\n    return m_mimeInter->asyncCallWithArgumentList(\"SetDefaultApp\", argumentList);\n}\n\nvoid MimeDBusProxyOld::DeleteApp(const QStringList &mimeTypes, const QString &desktopId)\n{\n    QDBusPendingReply<QString>(m_mimeInter->asyncCall(\"DeleteApp\", mimeTypes, desktopId));\n}\n\nvoid MimeDBusProxyOld::DeleteUserApp(const QString &desktopId)\n{\n    QDBusPendingReply<QString>(m_mimeInter->asyncCall(\"DeleteUserApp\", desktopId));\n}\n\nvoid MimeDBusProxyOld::AddUserApp(const QStringList &mimeTypes, const QString &desktopId)\n{\n    QDBusPendingReply<QString>(m_mimeInter->asyncCall(\"AddUserApp\", mimeTypes, desktopId));\n}\n\nQString MimeDBusProxyOld::GetDefaultApp(const QString &mimeType)\n{\n    return QDBusPendingReply<QString>(m_mimeInter->asyncCall(\"GetDefaultApp\", mimeType));\n}\n\nQString MimeDBusProxyOld::ListApps(const QString &mimeType)\n{\n    return QDBusPendingReply<QString>(m_mimeInter->asyncCall(\"ListApps\", mimeType));\n}\n\nQString MimeDBusProxyOld::ListUserApps(const QString &mimeType)\n{\n    return QDBusPendingReply<QString>(m_mimeInter->asyncCall(\"ListUserApps\", mimeType));\n}\n"
  },
  {
    "path": "src/plugin-defaultapp/operation/mimedbusproxyold.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QObject>\n#include <QDBusPendingReply>\nclass QDBusInterface;\nclass QDBusMessage;\n\nclass MimeDBusProxyOld : public QObject\n{\n    Q_OBJECT\npublic:\n    static bool isRegisted();\n    explicit MimeDBusProxyOld(QObject *parent = nullptr);\n\n    QDBusPendingReply<void> SetDefaultApp(const QStringList &mimeTypes, const QString &desktopId);\n    void DeleteApp(const QStringList &mimeTypes, const QString &desktopId);\n    void DeleteUserApp(const QString &desktopId);\n    void AddUserApp(const QStringList &mimeTypes, const QString &desktopId);\n\n    QString GetDefaultApp(const QString &mimeType);\n    QString ListApps(const QString &mimeType);\n\n    QString ListUserApps(const QString &mimeType);\n\nQ_SIGNALS: // SIGNALS\n    void Change();\n    // begin property changed signals\n\nprivate:\n    QDBusInterface *m_mimeInter;\n};\n\n"
  },
  {
    "path": "src/plugin-defaultapp/qml/Defaultapp.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport org.deepin.dcc 1.0\n\nDccObject {\n    name: \"defaultapp\"\n    parentName: \"system\"\n    displayName: qsTr(\"Default App\")\n    description: qsTr(\"Set the default application for opening various types of files\")\n    icon: \"default_program\"\n    weight: 40\n}\n"
  },
  {
    "path": "src/plugin-defaultapp/qml/DefaultappMain.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n// import org.deepin.dtk 1.0 as D\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dcc.defApp 1.0\n\nDccObject {\n    DetailItem {\n        name: \"defappWebpage\"\n        parentName: \"defaultapp\"\n        displayName: qsTr(\"Webpage\")\n        icon: \"defapp_network\"\n        weight: 10\n        categoryModel: dccData.browser()\n    }\n    DetailItem {\n        name: \"defappMail\"\n        parentName: \"defaultapp\"\n        displayName: qsTr(\"Mail\")\n        icon: \"defapp_mail\"\n        weight: 20\n        categoryModel: dccData.mail()\n    }\n    DetailItem {\n        name: \"defappText\"\n        parentName: \"defaultapp\"\n        displayName: qsTr(\"Text\")\n        icon: \"defapp_text\"\n        weight: 30\n        categoryModel: dccData.text()\n    }\n    DetailItem {\n        name: \"defappMusic\"\n        parentName: \"defaultapp\"\n        displayName: qsTr(\"Music\")\n        icon: \"defapp_music\"\n        weight: 40\n        categoryModel: dccData.music()\n    }\n    DetailItem {\n        name: \"defappVideo\"\n        parentName: \"defaultapp\"\n        displayName: qsTr(\"Video\")\n        icon: \"defapp_video\"\n        weight: 50\n        categoryModel: dccData.video()\n    }\n    DetailItem {\n        name: \"defappPicture\"\n        parentName: \"defaultapp\"\n        displayName: qsTr(\"Picture\")\n        icon: \"defapp_picture\"\n        weight: 60\n        categoryModel: dccData.picture()\n    }\n    DetailItem {\n        name: \"defappTerminal\"\n        parentName: \"defaultapp\"\n        displayName: qsTr(\"Terminal\")\n        icon: \"defapp_terminal\"\n        weight: 70\n        categoryModel: dccData.terminal()\n    }\n}\n"
  },
  {
    "path": "src/plugin-defaultapp/qml/DetailItem.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Layouts 1.15\nimport Qt.labs.platform 1.1\nimport Qt.labs.qmlmodels 1.2\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\nimport org.deepin.dcc.defApp 1.0\n\nDccObject {\n    id: root\n    property CategoryModel categoryModel: null\n    property bool canDelete: false\n\n\n    page: DccRightView {\n        isGroup: true\n    }\n\n    DccObject {\n        name: \"title\"\n        parentName: root.name\n        displayName: qsTr(\"Please choose the default program to open '%1'\").arg(root.displayName)\n        weight: 10\n        pageType: DccObject.Editor\n        page: Button {\n            implicitWidth: implicitContentWidth + 20\n            implicitHeight: 30\n            text: qsTr(\"add\")\n            onClicked: {\n                fileDialog.open()\n            }\n            onVisibleChanged: {\n                fileDialog.close()\n            }\n            FileDialog {\n                id: fileDialog\n                title: qsTr(\"Open Desktop file\")\n                folder: \"/usr/share/applications\"\n                visible: false\n                nameFilters: [qsTr(\"Apps (*.desktop)\"), qsTr(\"All files (*)\")]\n                onAccepted: {\n                    categoryModel.addApp(fileDialog.currentFile)\n                }\n            }\n        }\n    }\n    DccRepeater {\n        model: categoryModel\n        delegate: DccObject {\n            name: model.id\n            parentName: root.name\n            weight: 20 + index\n            icon: model.icon\n            displayName: model.display\n            backgroundType: DccObject.ClickStyle\n            pageType: DccObject.Item\n            page: D.ItemDelegate {\n                id: control\n                leftPadding: 10\n                rightPadding: 8\n                topPadding: 0\n                bottomPadding: 0\n                icon.name: dccObj.icon\n                text: dccObj.displayName\n                checked: false\n                hoverEnabled: true\n                cascadeSelected: false\n                checkable: false\n                onClicked: categoryModel.setDefaultApp(model.id)\n                background: null\n                implicitHeight: 48\n                content: RowLayout {\n                    width: 38\n                    DccCheckIcon {\n                        Layout.alignment: Qt.AlignCenter\n                        visible: model.isDefault\n                    }\n                    D.IconButton {\n                        Layout.alignment: Qt.AlignCenter\n                        implicitHeight: 30\n                        implicitWidth: 30\n                        visible: !model.isDefault && model.canDelete && control.hovered\n                        icon {\n                            name: \"dcc-delete\"\n                            width: 16\n                            height: 16\n                        }\n                        onClicked: {\n                            categoryModel.removeApp(model.id)\n                        }\n                        background: Rectangle {\n                            property D.Palette pressedColor: D.Palette {\n                                normal: Qt.rgba(0, 0, 0, 0.2)\n                                normalDark: Qt.rgba(1, 1, 1, 0.25)\n                            }\n                            property D.Palette hoveredColor: D.Palette {\n                                normal: Qt.rgba(0, 0, 0, 0.1)\n                                normalDark: Qt.rgba(1, 1, 1, 0.1)\n                            }\n                            radius: DS.Style.control.radius\n                            color: parent.pressed ? D.ColorSelector.pressedColor : (parent.hovered ? D.ColorSelector.hoveredColor : \"transparent\")\n                            border {\n                                color: parent.palette.highlight\n                                width: parent.visualFocus ? DS.Style.control.focusBorderWidth : 0\n                            }\n                        }\n                    }\n                }\n            }\n            onActive: {\n                if (!model.isDefault) {\n                    categoryModel.setDefaultApp(model.id)\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-defaultapp/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-device/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\nset(Plugin_Name device)\ndcc_install_plugin(NAME ${Plugin_Name})\n"
  },
  {
    "path": "src/plugin-device/qml/Device.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport org.deepin.dcc 1.0\n\nDccObject {\n    name: \"device\"\n    parentName: \"root\"\n    displayName: qsTr(\"Bluetooth and Devices\")\n    icon: \"hardware\"\n    weight: 40\n}\n"
  },
  {
    "path": "src/plugin-device/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-display/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\n###########################################\nfunction(ws_generate_local type input_file output_name)\n    pkg_get_variable(WAYLAND_SCANNER wayland-scanner wayland_scanner)\n    message(${input_file})\n    execute_process(COMMAND ${WAYLAND_SCANNER}\n        ${type}-header\n        ${input_file}\n        ${CMAKE_CURRENT_BINARY_DIR}/${output_name}.h\n    )\n\n    execute_process(COMMAND ${WAYLAND_SCANNER}\n        public-code\n        ${input_file}\n        ${CMAKE_CURRENT_BINARY_DIR}/${output_name}.c\n    )\nendfunction()\n\nfind_package(PkgConfig REQUIRED)\nfind_package(TreelandProtocols REQUIRED)\npkg_check_modules(WaylandClient REQUIRED IMPORTED_TARGET wayland-client)\npkg_check_modules(WLR_PROTOCOLS REQUIRED wlr-protocols)\n\nexecute_process(\n    COMMAND pkg-config --variable=pkgdatadir wlr-protocols\n    OUTPUT_VARIABLE WLR_PROTOCOLS_XML_DIR\n    OUTPUT_STRIP_TRAILING_WHITESPACE\n)\n\nws_generate_local(client\n    ${WLR_PROTOCOLS_XML_DIR}/unstable/wlr-output-management-unstable-v1.xml\n    wlr-output-management-unstable-v1-client-protocol)\n\nws_generate_local(client\n    ${TREELAND_PROTOCOLS_DATA_DIR}/treeland-output-manager-v1.xml\n    treeland-output-management-client-protocol)\n\nfile(GLOB_RECURSE LIBWAYQT_SRCS\n    \"wayland/libwayqt/*.cpp\"\n    \"wayland/libwayqt/*.h\"\n)\n\nadd_library(libwayqt6\n    OBJECT\n    ${LIBWAYQT_SRCS}\n    wlr-output-management-unstable-v1-client-protocol.c\n    treeland-output-management-client-protocol.c\n)\n\n# fix arm64 build failed relocation R_AARCH64_ADR_PREL_PG_HI21 against symbol\ntarget_compile_options(libwayqt6 PRIVATE \"-fpic\")\n\ntarget_include_directories(libwayqt6\n    PUBLIC\n        \"${CMAKE_CURRENT_SOURCE_DIR}/wayland/libwayqt\"\n    PRIVATE\n        ${Qt6Gui_PRIVATE_INCLUDE_DIRS}\n)\n\ntarget_link_libraries(libwayqt6\n    PUBLIC\n    ${QT_NS}::Core\n    ${QT_NS}::Gui\n    ${QT_NS}::GuiPrivate\n    PkgConfig::WaylandClient\n)\n###########################################\nset(Display_Name display)\nfile(GLOB_RECURSE Display_SRCS\n    \"operation/*.cpp\"\n)\n\nadd_library(${Display_Name} MODULE\n    ${Display_SRCS}\n)\n\ntarget_include_directories(${Display_Name} PUBLIC\n    $<TARGET_PROPERTY:libwayqt6,INTERFACE_INCLUDE_DIRECTORIES>\n)\n\nset(Display_Libraries\n    ${DCC_FRAME_Library}\n    ${QT_NS}::Gui\n    ${QT_NS}::DBus\n    ${QT_NS}::Quick\n    ${DTK_NS}::Core\n)\n\ntarget_link_libraries(${Display_Name} PRIVATE\n    ${Display_Libraries}\n    $<TARGET_OBJECTS:libwayqt6>\n    PkgConfig::WaylandClient\n)\n\ndcc_install_plugin(NAME ${Display_Name} TARGET ${Display_Name})\n#########################################\n"
  },
  {
    "path": "src/plugin-display/operation/dccscreen.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"dccscreen.h\"\n\n#include \"private/dccscreen_p.h\"\n#include \"private/displayworker.h\"\n\n#include <QGuiApplication>\n\nnamespace dccV25 {\n\nDccScreenItem *DccScreenItemPrivate::New(Monitor *monitor, DccScreen *screen)\n{\n    DccScreenItem *item = new DccScreenItem(screen);\n    item->d_ptrDccScreenItem->m_monitor = monitor;\n    QObject::connect(monitor, &Monitor::brightnessChanged, item, &DccScreenItem::brightnessChanged);\n    return item;\n}\n\nDccScreenItemPrivate *DccScreenItemPrivate::Private(DccScreenItem *screenItem)\n{\n    return screenItem->d_ptrDccScreenItem.get();\n}\n\nDccScreenItemPrivate::DccScreenItemPrivate(DccScreenItem *screenItem)\n    : q_ptr(screenItem)\n{\n}\n\nDccScreenItemPrivate::~DccScreenItemPrivate() { }\n\nbool DccScreenItem::canBrightness() const\n{\n    return d_ptrDccScreenItem->m_monitor->canBrightness();\n}\n\ndouble DccScreenItem::brightness() const\n{\n    return d_ptrDccScreenItem->m_monitor->brightness();\n}\n\nvoid DccScreenItem::setBrightness(const double brightness)\n{\n    if (this->brightness() == brightness) {\n        return;\n    }\n    DccScreen *screen = static_cast<DccScreen *>(parent());\n    DccScreenPrivate *ptr = DccScreenPrivate::Private(screen);\n    ptr->worker()->setMonitorBrightness(d_ptrDccScreenItem->m_monitor, brightness);\n}\n\nQString DccScreenItem::name() const\n{\n    return d_ptrDccScreenItem->m_monitor->name();\n}\n\nDccScreenItem::DccScreenItem(QObject *parent)\n    : QObject(parent)\n    , d_ptrDccScreenItem(new DccScreenItemPrivate(this))\n{\n}\n\nDccScreenItem::~DccScreenItem() { }\n\nDccScreen *DccScreenPrivate::New(QList<Monitor *> monitors, DisplayWorker *worker, QObject *parent)\n{\n    DccScreen *screen = new DccScreen(parent);\n    screen->d_ptrDccScreen->m_worker = worker;\n    screen->d_ptrDccScreen->setMonitors(monitors);\n    return screen;\n}\n\nDccScreenPrivate *DccScreenPrivate::Private(DccScreen *screen)\n{\n    return screen->d_ptrDccScreen.get();\n}\n\nDccScreenPrivate::DccScreenPrivate(DccScreen *screen)\n    : q_ptr(screen)\n    , m_screen(nullptr)\n    , m_maxScale(1.0)\n{\n}\n\nDccScreenPrivate::~DccScreenPrivate() { }\n\nvoid DccScreenPrivate::setMonitors(QList<Monitor *> monitors)\n{\n    m_monitors = monitors;\n    std::sort(m_monitors.begin(), m_monitors.end(), [](const Monitor *monitor1, const Monitor *monitor2) {\n        return monitor1->name() < monitor2->name();\n    });\n    QStringList name;\n    auto updateMaxScaleFun = [this]() {\n        updateMaxScale();\n    };\n    for (auto monitor : m_monitors) {\n        name << monitor->name();\n        q_ptr->connect(monitor, &Monitor::currentModeChanged, q_ptr, updateMaxScaleFun);\n        q_ptr->connect(monitor, &Monitor::enableChanged, q_ptr, updateMaxScaleFun);\n        m_screenItems.append(DccScreenItemPrivate::New(monitor, q_ptr));\n    }\n    Q_EMIT q_ptr->screenItemsChanged();\n    m_name = name.join(\" = \");\n    updateResolutionList();\n    updateRateList();\n    updateScreen();\n    updateMaxScale();\n    q_ptr->connect(monitor(), &Monitor::modelListChanged, q_ptr, [this]() {\n        updateResolutionList();\n        updateRateList();\n    });\n    q_ptr->connect(monitor(), &Monitor::currentModeChanged, q_ptr, [this]() {\n        updateResolutionList();\n        updateRateList();\n        q_ptr->currentResolutionChanged();\n        q_ptr->currentRateChanged();\n        q_ptr->availableFillModesChanged();\n    });\n    q_ptr->connect(monitor(), &Monitor::availableFillModesChanged, q_ptr, &DccScreen::availableFillModesChanged);\n    q_ptr->connect(monitor(), &Monitor::currentFillModeChanged, q_ptr, &DccScreen::currentFillModeChanged);\n    q_ptr->connect(monitor(), &Monitor::currentModeChanged, q_ptr, &DccScreen::currentModeChanged);\n    q_ptr->connect(monitor(), &Monitor::enableChanged, q_ptr, &DccScreen::enableChanged);\n    q_ptr->connect(monitor(), &Monitor::rotateChanged, q_ptr, &DccScreen::rotateChanged);\n    q_ptr->connect(monitor(), &Monitor::xChanged, q_ptr, &DccScreen::xChanged);\n    q_ptr->connect(monitor(), &Monitor::yChanged, q_ptr, &DccScreen::yChanged);\n    q_ptr->connect(monitor(), &Monitor::wChanged, q_ptr, &DccScreen::widthChanged);\n    q_ptr->connect(monitor(), &Monitor::hChanged, q_ptr, &DccScreen::heightChanged);\n    q_ptr->connect(monitor(), &Monitor::wallpaperChanged, q_ptr, &DccScreen::wallpaperChanged);\n    auto updateScreenFun = [this]() {\n        updateScreen();\n    };\n    q_ptr->connect(qApp, &QGuiApplication::screenAdded, q_ptr, updateScreenFun);\n    q_ptr->connect(qApp, &QGuiApplication::screenRemoved, q_ptr, updateScreenFun);\n}\n\nMonitor *DccScreenPrivate::monitor()\n{\n    for (auto mon : m_monitors) {\n        if (mon->isPrimary()) {\n            return mon;\n        }\n    }\n    return m_monitors.first();\n}\n\nQList<Monitor *> DccScreenPrivate::monitors()\n{\n    return m_monitors;\n}\n\nvoid DccScreenPrivate::setMode(QSize resolution, double rate)\n{\n    m_worker->backupConfig();\n    for (auto monitor : m_monitors) {\n        quint32 id = 0;\n        for (auto mode : monitor->modeList()) {\n            if (mode.width() == resolution.width() && mode.height() == resolution.height()) {\n                if (mode.rate() == rate) {\n                    id = mode.id();\n                    break;\n                } else if (id == 0) {\n                    id = mode.id();\n                }\n            }\n        }\n        if (id != 0) {\n            m_worker->setMonitorResolution(monitor, id);\n        } else {\n            m_worker->setMonitorResolutionBySize(monitor, resolution.width(), resolution.height());\n        }\n    }\n    m_worker->applyChanges();\n}\n\nvoid DccScreenPrivate::setRotate(uint rotate)\n{\n    m_worker->backupConfig();\n    m_worker->setMonitorRotate(monitor(), rotate);\n    m_worker->applyChanges();\n}\n\nvoid DccScreenPrivate::setFillMode(const QString &fileMode)\n{\n    m_worker->backupConfig();\n    for (auto monitor : m_monitors) {\n        m_worker->setCurrentFillMode(monitor, fileMode);\n    }\n}\n\nvoid DccScreenPrivate::setScale(qreal scale)\n{\n    for (auto monitor : m_monitors) {\n        m_worker->setIndividualScaling(monitor, scale);\n    }\n}\n\nvoid DccScreenPrivate::updateResolutionList()\n{\n    QList<QSize> resolutionList;\n    for (auto monitor = m_monitors.cbegin(); monitor != m_monitors.cend(); monitor++) {\n        QList<QSize> tmpResolutionList;\n        for (auto mode : (*monitor)->modeList()) {\n            QSize tmpMode(mode.width(), mode.height());\n            if (!tmpResolutionList.contains(tmpMode)) {\n                tmpResolutionList.append(tmpMode);\n            }\n        }\n        if (monitor == m_monitors.cbegin()) {\n            resolutionList = tmpResolutionList;\n        } else {\n            for (auto it = resolutionList.begin(); it != resolutionList.end();) {\n                if (tmpResolutionList.contains(*it)) {\n                    it++;\n                } else {\n                    it = resolutionList.erase(it);\n                }\n            }\n        }\n    }\n    m_resolutionList = resolutionList;\n    if (m_resolutionList != resolutionList) {\n        m_resolutionList = resolutionList;\n        Q_EMIT q_ptr->resolutionListChanged();\n    }\n}\n\nvoid DccScreenPrivate::updateRateList()\n{\n    QList<double> rateList;\n    Resolution currentMode = monitor()->currentMode();\n    for (auto mode : monitor()->modeList()) {\n        if (mode.width() == currentMode.width() && mode.height() == currentMode.height()) {\n            rateList.append(mode.rate());\n        }\n    }\n    if (m_rateList != rateList) {\n        m_rateList = rateList;\n        Q_EMIT q_ptr->rateListChanged();\n    }\n}\n\nvoid DccScreenPrivate::updateScreen()\n{\n    QString name = monitor()->name();\n    QRect rect = monitor()->rect();\n    QScreen *tmpScreen = nullptr;\n    for (auto screen : QGuiApplication::screens()) {\n        if (rect == screen->geometry()) {\n            if (name == screen->name()) {\n                tmpScreen = screen;\n            }\n            if (!tmpScreen) {\n                tmpScreen = screen;\n            }\n        }\n    }\n    if (tmpScreen != m_screen) {\n        m_screen = tmpScreen;\n        Q_EMIT q_ptr->screenChanged();\n    }\n}\n\nvoid DccScreenPrivate::updateMaxScale()\n{\n    qreal maxScale = 3.0;\n    for (auto monitor : m_monitors) {\n        if (!monitor->enable()) {\n            continue;\n        }\n        auto tmode = monitor->currentMode();\n        if (tmode.width() == 0 || tmode.height() == 0) {\n            maxScale = 1.0;\n            break;\n        }\n        qreal maxWScale = tmode.width() / MinScreenWidth;\n        qreal maxHScale = tmode.height() / MinScreenHeight;\n        maxScale = std::min(maxScale, std::min(maxWScale, maxHScale));\n    }\n    if (maxScale < 1.0) {\n        maxScale = 1.0;\n    }\n    if (m_maxScale != maxScale) {\n        m_maxScale = maxScale;\n        Q_EMIT q_ptr->maxScaleChanged();\n    }\n}\n\nDccScreen::DccScreen(QObject *parent)\n    : QObject(parent)\n    , d_ptrDccScreen(new DccScreenPrivate(this))\n{\n}\n\nDccScreen::~DccScreen() { }\n\nQString DccScreen::name() const\n{\n    return d_ptrDccScreen->m_name;\n}\n\nbool DccScreen::enable() const\n{\n    return d_ptrDccScreen->monitor()->enable();\n}\n\nint DccScreen::x() const\n{\n    return d_ptrDccScreen->monitor()->x();\n}\n\nint DccScreen::y() const\n{\n    return d_ptrDccScreen->monitor()->y();\n}\n\nint DccScreen::width() const\n{\n    return d_ptrDccScreen->monitor()->scale() > 0 ? (d_ptrDccScreen->monitor()->w() / d_ptrDccScreen->monitor()->scale()) : d_ptrDccScreen->monitor()->w();\n}\n\nint DccScreen::height() const\n{\n    return d_ptrDccScreen->monitor()->scale() > 0 ? (d_ptrDccScreen->monitor()->h() / d_ptrDccScreen->monitor()->scale()) : d_ptrDccScreen->monitor()->h();\n}\n\nQSize DccScreen::bestResolution() const\n{\n    Resolution resolution = d_ptrDccScreen->monitor()->bestMode();\n    return QSize(resolution.width(), resolution.height());\n}\n\nQSize DccScreen::currentResolution() const\n{\n    auto mode = d_ptrDccScreen->monitor()->currentMode();\n    return QSize(mode.width(), mode.height());\n}\n\nvoid DccScreen::setCurrentResolution(const QSize &resolution)\n{\n    d_ptrDccScreen->setMode(resolution, currentRate());\n}\n\ndouble DccScreen::bestRate() const\n{\n    return d_ptrDccScreen->monitor()->bestMode().rate();\n}\n\ndouble DccScreen::currentRate() const\n{\n    return d_ptrDccScreen->monitor()->currentMode().rate();\n}\n\nvoid DccScreen::setCurrentRate(const double &rate)\n{\n    d_ptrDccScreen->setMode(currentResolution(), rate);\n}\n\nQList<QSize> DccScreen::resolutionList() const\n{\n    return d_ptrDccScreen->m_resolutionList;\n}\n\nQList<double> DccScreen::rateList() const\n{\n    return d_ptrDccScreen->m_rateList;\n}\n\nuint DccScreen::rotate() const\n{\n    return d_ptrDccScreen->monitor()->rotate();\n}\n\nvoid DccScreen::setRotate(uint rotate)\n{\n    d_ptrDccScreen->setRotate(rotate);\n}\n\ndouble DccScreen::brightness() const\n{\n    return d_ptrDccScreen->monitor()->brightness();\n}\n\nQString DccScreen::currentFillMode() const\n{\n    QString fillMode = d_ptrDccScreen->monitor()->currentFillMode();\n    return fillMode.isEmpty() ? \"None\" : fillMode;\n}\n\nvoid DccScreen::setCurrentFillMode(const QString &fill)\n{\n    d_ptrDccScreen->setFillMode(fill);\n}\n\nQStringList DccScreen::availableFillModes() const\n{\n    return currentResolution() == bestResolution() ? QStringList() : d_ptrDccScreen->monitor()->availableFillModes();\n}\n\nQScreen *DccScreen::screen() const\n{\n    return d_ptrDccScreen->m_screen;\n}\n\nqreal DccScreen::scale() const\n{\n    return d_ptrDccScreen->monitor()->scale();\n}\n\nvoid DccScreen::setScale(qreal scale)\n{\n    d_ptrDccScreen->setScale(scale);\n}\n\nqreal DccScreen::maxScale() const\n{\n    return d_ptrDccScreen->m_maxScale;\n}\n\nQList<DccScreenItem *> DccScreen::screenItems() const\n{\n    return d_ptrDccScreen->m_screenItems;\n}\n\nQString DccScreen::wallpaper() const\n{\n    return d_ptrDccScreen->monitor()->wallpaper();\n}\n\n} // namespace dccV25\n"
  },
  {
    "path": "src/plugin-display/operation/dccscreen.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCCSCREEN_H\n#define DCCSCREEN_H\n\n#include <QMetaType>\n#include <QObject>\n#include <QScreen>\n#include <QSize>\n\nnamespace dccV25 {\nclass DccScreenPrivate;\nclass DccScreenItemPrivate;\n\nclass DccScreenItem : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(double brightness READ brightness WRITE setBrightness NOTIFY brightnessChanged FINAL)\n    Q_PROPERTY(QString name READ name NOTIFY nameChanged FINAL)\npublic:\n    Q_INVOKABLE bool canBrightness() const;\n    double brightness() const;\n    void setBrightness(const double brightness);\n    QString name() const;\n\nQ_SIGNALS:\n    void brightnessChanged();\n    void nameChanged();\n\nprotected:\n    explicit DccScreenItem(QObject *parent = nullptr);\n    ~DccScreenItem() override;\n\n    QScopedPointer<DccScreenItemPrivate> d_ptrDccScreenItem;\n    Q_DECLARE_PRIVATE_D(d_ptrDccScreenItem, DccScreenItem)\n    Q_DISABLE_COPY(DccScreenItem)\n    friend class DccScreenItemPrivate;\n};\n\nclass DccScreen : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(QString name READ name NOTIFY nameChanged FINAL)\n    Q_PROPERTY(bool enable READ enable NOTIFY enableChanged FINAL)\n    Q_PROPERTY(int x READ x NOTIFY xChanged FINAL)\n    Q_PROPERTY(int y READ y NOTIFY yChanged FINAL)\n    Q_PROPERTY(int width READ width NOTIFY widthChanged FINAL)\n    Q_PROPERTY(int height READ height NOTIFY heightChanged FINAL)\n    Q_PROPERTY(QSize bestResolution READ bestResolution NOTIFY bestResolutionChanged FINAL)\n    Q_PROPERTY(QSize currentResolution READ currentResolution WRITE setCurrentResolution NOTIFY currentResolutionChanged FINAL)\n    Q_PROPERTY(QList<QSize> resolutionList READ resolutionList NOTIFY resolutionListChanged FINAL)\n    Q_PROPERTY(double bestRate READ bestRate NOTIFY bestRateChanged FINAL)\n    Q_PROPERTY(double currentRate READ currentRate WRITE setCurrentRate NOTIFY currentRateChanged FINAL)\n    Q_PROPERTY(QList<double> rateList READ rateList NOTIFY rateListChanged FINAL)\n    Q_PROPERTY(double brightness READ brightness NOTIFY brightnessChanged FINAL)\n    Q_PROPERTY(uint rotate READ rotate WRITE setRotate NOTIFY rotateChanged FINAL)\n    Q_PROPERTY(QString currentFillMode READ currentFillMode WRITE setCurrentFillMode NOTIFY currentFillModeChanged FINAL)\n    Q_PROPERTY(QStringList availableFillModes READ availableFillModes NOTIFY availableFillModesChanged FINAL)\n    Q_PROPERTY(QScreen* screen READ screen NOTIFY screenChanged FINAL)\n    Q_PROPERTY(qreal scale READ scale WRITE setScale NOTIFY scaleChanged FINAL)\n    Q_PROPERTY(qreal maxScale READ maxScale NOTIFY maxScaleChanged FINAL)\n    Q_PROPERTY(QList<DccScreenItem *> screenItems READ screenItems NOTIFY screenItemsChanged FINAL)\n    Q_PROPERTY(QString wallpaper READ wallpaper NOTIFY wallpaperChanged FINAL)\n\npublic:\n    QString name() const;\n    bool enable() const;\n    int x() const;\n    int y() const;\n    int width() const;\n    int height() const;\n    QSize bestResolution() const;    // 推荐分辨率\n    QSize currentResolution() const; // 分辨率\n    void setCurrentResolution(const QSize &resolution);\n    QList<QSize> resolutionList() const; // 可选分辨率\n    double bestRate() const;             // 推荐刷新率\n    double currentRate() const;          // 刷新率\n    void setCurrentRate(const double &rate);\n    QList<double> rateList() const; // 可选刷新率\n    uint rotate() const;\n    void setRotate(uint rotate);\n    double brightness() const;\n    QString currentFillMode() const;\n    void setCurrentFillMode(const QString &fill);\n    QStringList availableFillModes() const;\n    QScreen *screen() const;\n    qreal scale() const;\n    void setScale(qreal scale);\n    qreal maxScale() const;\n    QList<DccScreenItem *> screenItems() const;\n    QString wallpaper() const;\n\nQ_SIGNALS:\n    void nameChanged();\n    void enableChanged();\n    void xChanged();\n    void yChanged();\n    void widthChanged();\n    void heightChanged();\n    void bestResolutionChanged();\n    void currentResolutionChanged();\n    void resolutionListChanged();\n    void bestRateChanged();\n    void currentRateChanged();\n    void rateListChanged();\n    void rotateChanged();\n    void brightnessChanged();\n    void currentModeChanged();\n    void currentFillModeChanged();\n    void availableFillModesChanged();\n    void screenChanged();\n    void scaleChanged();\n    void maxScaleChanged();\n    void screenItemsChanged();\n    void wallpaperChanged();\n\nprotected:\n    explicit DccScreen(QObject *parent = nullptr);\n    ~DccScreen() override;\n\n    QScopedPointer<DccScreenPrivate> d_ptrDccScreen;\n    Q_DECLARE_PRIVATE_D(d_ptrDccScreen, DccScreen)\n    Q_DISABLE_COPY(DccScreen)\n    friend class DccScreenPrivate;\n};\n} // namespace dccV25\n#endif // DCCSCREEN_H\n"
  },
  {
    "path": "src/plugin-display/operation/displaymodule.cpp",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"displaymodule.h\"\n\n#include \"WayQtUtils.h\"\n#include \"dccfactory.h\"\n#include \"dccscreen.h\"\n#include \"private/concatscreen.h\"\n#include \"private/dccscreen_p.h\"\n#include \"private/displaymodel.h\"\n#include \"private/displaymodule_p.h\"\n#include \"private/displayworker.h\"\n\n#include <QDateTime>\n#include <QJSValue>\n#include <QMetaObject>\n#include <QMetaType>\n#include <QQuickItem>\n#include <QRect>\n#include <QRegularExpression>\n#include <QThread>\n\nnamespace dccV25 {\nstatic const QString DEFAULT_TIME_FORMAT = \"hh:mm\";\n\nclass Rect : public QRect\n{\npublic:\n    using QRect::QRect;\n\n    bool operator<(const Rect &r) const\n    {\n        if (x() < r.x()) {\n            return true;\n        }\n        if (x() > r.x()) {\n            return false;\n        }\n        if (y() < r.y()) {\n            return true;\n        }\n        if (y() > r.y()) {\n            return false;\n        }\n        if (width() < r.width()) {\n            return true;\n        }\n        if (width() > r.width()) {\n            return false;\n        }\n        if (height() < r.height()) {\n            return true;\n        }\n        return false;\n    }\n};\n\nDisplayModulePrivate::DisplayModulePrivate(DisplayModule *parent)\n    : q_ptr(parent)\n    , m_primary(nullptr)\n    , m_maxGlobalScale(1.0)\n{\n    QMetaObject::invokeMethod(\n            q_ptr,\n            [this]() {\n                init();\n            },\n            Qt::QueuedConnection);\n}\n\nvoid DisplayModulePrivate::init()\n{\n    m_model = new DisplayModel(q_ptr);\n    m_worker = new DisplayWorker(m_model, q_ptr);\n    m_worker->active();\n    q_ptr->connect(m_model, &DisplayModel::monitorListChanged, [this]() {\n        updateMonitorList();\n    });\n    q_ptr->connect(m_model, &DisplayModel::primaryScreenChanged, q_ptr, [this]() {\n        updatePrimary();\n    });\n    q_ptr->connect(m_model, &DisplayModel::displayModeChanged, q_ptr, [this]() {\n        updateVirtualScreens();\n        updateDisplayMode();\n    });\n    q_ptr->connect(m_model, &DisplayModel::colorTemperatureEnabledChanged, q_ptr, &DisplayModule::colorTemperatureEnabledChanged);\n    q_ptr->connect(m_model, &DisplayModel::colorTemperatureChanged, q_ptr, &DisplayModule::colorTemperatureChanged);\n    q_ptr->connect(m_model, &DisplayModel::customColorTempTimePeriodChanged, q_ptr, &DisplayModule::customColorTempTimePeriodChanged);\n    q_ptr->connect(m_model, &DisplayModel::adjustCCTmodeChanged, q_ptr, &DisplayModule::colorTemperatureModeChanged);\n    updateMonitorList();\n    updatePrimary();\n    updateDisplayMode();\n}\n\nvoid DisplayModulePrivate::updateVirtualScreens()\n{\n    bool changed = false;\n    QMap<Rect, QList<Monitor *>> addScreenMap;\n    for (auto srcScreen : m_screens) {\n        if (!srcScreen->enable()) {\n            continue;\n        }\n        DccScreenPrivate *screenPrivate = DccScreenPrivate::Private(srcScreen);\n        Rect rect(QPoint(srcScreen->x(), srcScreen->y()), srcScreen->currentResolution());\n        if (addScreenMap.contains(rect)) {\n            addScreenMap[rect].append(screenPrivate->monitors());\n        } else {\n            addScreenMap.insert(rect, screenPrivate->monitors());\n        }\n    }\n    for (auto it = m_virtualScreens.cbegin(); it != m_virtualScreens.cend();) {\n        DccScreenPrivate *screenPrivate = DccScreenPrivate::Private(*it);\n        Rect rect(QPoint((*it)->x(), (*it)->y()), (*it)->currentResolution());\n        bool isSame = addScreenMap.contains(rect);\n        if (isSame) {\n            auto monitors = addScreenMap[rect];\n            auto screenMonitors = screenPrivate->monitors();\n            isSame = monitors.size() == screenMonitors.size();\n            if (isSame) {\n                for (auto monitor : monitors) {\n                    if (!screenMonitors.contains(monitor)) {\n                        isSame = false;\n                        break;\n                    }\n                }\n            }\n        }\n        if (isSame) {\n            addScreenMap.remove(rect);\n            it++;\n        } else {\n            changed = true;\n            (*it)->deleteLater();\n            it = m_virtualScreens.erase(it);\n        }\n    }\n    for (auto monitors : addScreenMap) {\n        changed = true;\n        DccScreen *screen = DccScreenPrivate::New(monitors, m_worker, q_ptr);\n        q_ptr->connect(screen, &DccScreen::rotateChanged, q_ptr, &DisplayModule::applyChanged, Qt::QueuedConnection);\n        q_ptr->connect(screen, &DccScreen::currentModeChanged, q_ptr, &DisplayModule::applyChanged, Qt::QueuedConnection);\n        q_ptr->connect(screen, &DccScreen::wallpaperChanged, q_ptr, &DisplayModule::wallpaperChanged);\n        m_virtualScreens << screen;\n    }\n    if (changed) {\n        // 屏幕按类型排序，同类型按名称排序,类型顺序：eDP-DP-DisplayPort-HDMI-DVI-VGA\n        static const QStringList c_screenSort({ \"vga\", \"dvi\", \"hdmi\", \"displayport\", \"dp\", \"edp\" });\n        std::sort(m_virtualScreens.begin(), m_virtualScreens.end(), [](const DccScreen *screen1, const DccScreen *screen2) {\n            int index1 = c_screenSort.indexOf(screen1->name().split('-').first().toLower());\n            int index2 = c_screenSort.indexOf(screen2->name().split('-').first().toLower());\n            if (index1 != index2) {\n                return index1 > index2;\n            }\n            return screen1->name() < screen2->name();\n        });\n        updatePrimary();\n        Q_EMIT q_ptr->virtualScreensChanged();\n    }\n}\n\nvoid DisplayModulePrivate::updateMonitorList()\n{\n    bool changed = false;\n    QList<Monitor *> addMonitorList = m_model->monitorList();\n    for (auto it = m_screens.cbegin(); it != m_screens.cend();) {\n        Monitor *monitor = DccScreenPrivate::Private(*it)->monitor();\n        int index = addMonitorList.indexOf(monitor);\n        if (index >= 0) {\n            addMonitorList.remove(index);\n            it++;\n        } else {\n            changed = true;\n            (*it)->deleteLater();\n            it = m_screens.erase(it);\n        }\n    }\n    auto updateVirtualScreensFun = [this]() {\n        updateVirtualScreens();\n    };\n    auto updateMaxGlobalScaleFun = [this]() {\n        updateMaxGlobalScale();\n    };\n    for (auto monitor : addMonitorList) {\n        changed = true;\n        m_screens << DccScreenPrivate::New({ monitor }, m_worker, q_ptr);\n        q_ptr->connect(monitor, &Monitor::xChanged, q_ptr, updateVirtualScreensFun);\n        q_ptr->connect(monitor, &Monitor::yChanged, q_ptr, updateVirtualScreensFun);\n        q_ptr->connect(monitor, &Monitor::wChanged, q_ptr, updateVirtualScreensFun);\n        q_ptr->connect(monitor, &Monitor::hChanged, q_ptr, updateVirtualScreensFun);\n        q_ptr->connect(monitor, &Monitor::enableChanged, q_ptr, updateVirtualScreensFun);\n        q_ptr->connect(monitor, &Monitor::enableChanged, q_ptr, [this]() {\n            updateDisplayMode();\n        });\n        q_ptr->connect(monitor, &Monitor::currentModeChanged, q_ptr, updateMaxGlobalScaleFun);\n        q_ptr->connect(monitor, &Monitor::enableChanged, q_ptr, updateMaxGlobalScaleFun);\n    }\n    if (changed) {\n        std::sort(m_screens.begin(), m_screens.end(), [](const DccScreen *screen1, const DccScreen *screen2) {\n            return screen1->name() < screen2->name();\n        });\n        updateVirtualScreens();\n        updateMaxGlobalScale();\n        updateDisplayMode();\n        Q_EMIT q_ptr->screensChanged();\n    }\n}\n\nvoid DisplayModulePrivate::updatePrimary()\n{\n    DccScreen *primary = nullptr;\n    for (auto screen : m_virtualScreens) {\n        if (m_model->primary() == screen->name()) {\n            primary = screen;\n            break;\n        }\n    }\n    if (m_primary != primary) {\n        m_primary = primary;\n        Q_EMIT q_ptr->primaryScreenChanged();\n    }\n}\n\nvoid DisplayModulePrivate::updateDisplayMode()\n{\n    QString displayMode = m_displayMode;\n    switch (m_model->displayMode()) {\n    case MERGE_MODE:\n        displayMode = \"MERGE\";\n        break;\n    case EXTEND_MODE:\n        displayMode = \"EXTEND\";\n        break;\n    case SINGLE_MODE:\n        for (auto screen : m_screens) {\n            if (screen->enable()) {\n                displayMode = screen->name();\n                break;\n            }\n        }\n        break;\n    default:\n        break;\n    }\n    if (displayMode != m_displayMode) {\n        m_displayMode = displayMode;\n        Q_EMIT q_ptr->displayModeChanged();\n    }\n}\n\nvoid DisplayModulePrivate::updateMaxGlobalScale()\n{\n    qreal maxScale = 3.0;\n    for (auto monitor : m_model->monitorList()) {\n        if (!monitor->enable()) {\n            continue;\n        }\n        auto tmode = monitor->currentMode();\n        if (tmode.width() == 0 || tmode.height() == 0) {\n            maxScale = 1.0;\n            break;\n        }\n        qreal maxWScale = tmode.width() / MinScreenWidth;\n        qreal maxHScale = tmode.height() / MinScreenHeight;\n        maxScale = std::min(maxScale, std::min(maxWScale, maxHScale));\n    }\n    if (maxScale < 1.0) {\n        maxScale = 1.0;\n    }\n    if (m_maxGlobalScale != maxScale) {\n        m_maxGlobalScale = maxScale;\n        Q_EMIT q_ptr->maxGlobalScaleChanged();\n    }\n}\n\nDccScreen *DisplayModulePrivate::primary() const\n{\n    return m_primary;\n}\n\nQString DisplayModulePrivate::displayMode() const\n{\n    return m_displayMode;\n}\n\nvoid DisplayModulePrivate::setScreenPosition(QList<ScreenData *> screensData)\n{\n    qRegisterMetaType<QHash<Monitor *, QPair<int, int>>>(\"QHash<Monitor *, QPair<int, int>>\");\n    QHash<Monitor *, QPair<int, int>> monitorPosition;\n    int lstX = 1000000, lstY = 1000000;\n    for (auto item : screensData) {\n        if (lstX > qRound(item->rect().x())) {\n            lstX = qRound(item->rect().x());\n        }\n        if (lstY > qRound(item->rect().y())) {\n            lstY = qRound(item->rect().y());\n        }\n        DccScreenPrivate *screenPrivate = DccScreenPrivate::Private(item->screen());\n        for (auto monitor : screenPrivate->monitors()) {\n            monitorPosition.insert(monitor, QPair<int, int>(qRound(item->rect().x()), qRound(item->rect().y())));\n        }\n    }\n\n    for (auto &&pos : monitorPosition) {\n        pos = QPair<int, int>(pos.first - lstX, pos.second - lstY);\n    }\n    for (auto it = monitorPosition.cbegin(); it != monitorPosition.cend(); ++it) {\n        qDebug() << \"applySettings 处理之后:\" << it.key()->name() << it.value() << it.key()->w() << it.key()->h();\n    }\n    m_worker->setMonitorPosition(monitorPosition);\n}\n\nDisplayModule::DisplayModule(QObject *parent)\n    : QObject(parent)\n    , d_ptrDisplayModule(new DisplayModulePrivate(this))\n{\n}\n\nDisplayModule::~DisplayModule() { }\n\nQList<DccScreen *> DisplayModule::virtualScreens() const\n{\n    Q_D(const DisplayModule);\n    return d->m_virtualScreens;\n}\n\nQList<DccScreen *> DisplayModule::screens() const\n{\n    Q_D(const DisplayModule);\n    return d->m_screens;\n}\n\nDccScreen *DisplayModule::primaryScreen() const\n{\n    Q_D(const DisplayModule);\n    return d->primary();\n}\n\nvoid DisplayModule::setPrimaryScreen(DccScreen *primary)\n{\n    Q_D(DisplayModule);\n    d->m_worker->setPrimary(primary->name());\n}\n\nQString DisplayModule::displayMode() const\n{\n    Q_D(const DisplayModule);\n    return d->displayMode();\n}\n\nvoid DisplayModule::setDisplayMode(const QString &mode)\n{\n    int modeType = SINGLE_MODE;\n    QString name;\n    if (mode == \"MERGE\") {\n        modeType = MERGE_MODE;\n    } else if (mode == \"EXTEND\") {\n        modeType = EXTEND_MODE;\n    } else {\n        modeType = SINGLE_MODE;\n        name = mode;\n    }\n    Q_D(DisplayModule);\n    d->m_worker->switchMode(modeType, name);\n}\n\nbool DisplayModule::isX11() const\n{\n    return !WQt::Utils::isTreeland();\n}\n\nqreal DisplayModule::globalScale() const\n{\n    Q_D(const DisplayModule);\n    return d->m_model->uiScale();\n}\n\nvoid DisplayModule::setGlobalScale(qreal scale)\n{\n    Q_D(DisplayModule);\n    d->m_worker->setUiScale(scale);\n}\n\nqreal DisplayModule::maxGlobalScale() const\n{\n    Q_D(const DisplayModule);\n    return d->m_maxGlobalScale;\n}\n\nbool DisplayModule::colorTemperatureEnabled() const\n{\n    Q_D(const DisplayModule);\n    return d->m_model->colorTemperatureEnabled();\n}\n\nvoid DisplayModule::setColorTemperatureEnabled(bool enabled)\n{\n    Q_D(DisplayModule);\n    if (colorTemperatureEnabled() != enabled)\n        d->m_worker->setColorTemperatureEnabled(enabled);\n}\n\nint DisplayModule::colorTemperatureMode() const\n{\n    Q_D(const DisplayModule);\n    switch (d->m_model->adjustCCTMode()) { // 0 禁用 1 日落到日出 2 全天 3 自定义\n    case 1:\n        return 1; // 日落到日出\n    case 3:\n        return 2; // 自定义\n    default:\n        break;\n    }\n    return 0; // 全天\n}\n\nvoid DisplayModule::setColorTemperatureMode(int mode)\n{\n    int ccMode = 2;\n    switch (mode) {\n    case 1:\n        ccMode = 1;\n        break;\n    case 2:\n        ccMode = 3;\n    default:\n        break;\n    }\n    Q_D(DisplayModule);\n    d->m_worker->SetMethodAdjustCCT(ccMode);\n}\n\nint DisplayModule::colorTemperature() const\n{\n    Q_D(const DisplayModule);\n    int kelvin = d->m_model->colorTemperature();\n\n    if (kelvin >= 6500)\n        return 50 - (kelvin - 6500) / 300;\n    else if (kelvin < 6500 && kelvin >= 1000)\n        return 50 - (kelvin - 6500) / 100;\n    else\n        return 0;\n}\n\nvoid DisplayModule::setColorTemperature(int pos)\n{\n    int kelvin = pos > 50 ? (6500 - (pos - 50) * 100) : (6500 + (50 - pos) * 300);\n    Q_D(DisplayModule);\n    if (d->m_model->colorTemperature() != kelvin) {\n        d->m_worker->setColorTemperature(kelvin);\n    }\n}\n\nQString DisplayModule::customColorTempTimePeriod() const\n{\n    Q_D(const DisplayModule);\n    QString timePeriod = d->m_model->customColorTempTimePeriod();\n\n    QRegularExpression re(\"^((2[0-3]|[01][0-9]):[0-5][0-9])-((2[0-3]|[01][0-9]):[0-5][0-9])$\");\n    if (!re.match(timePeriod).hasMatch()) {\n        timePeriod = \"22:00-07:00\";\n    }\n    return timePeriod;\n}\n\nvoid DisplayModule::setCustomColorTempTimePeriod(const QString &timePeriod)\n{\n    QString oldTimePeriod = customColorTempTimePeriod();\n    if (oldTimePeriod == timePeriod) {\n        return;\n    }\n    const QRegularExpression re(\"^((2[0-3]|[01][0-9]):[0-5][0-9])-((2[0-3]|[01][0-9]):[0-5][0-9])$\");\n    QRegularExpressionMatch match = re.match(timePeriod);\n    if (!match.hasMatch()) {\n        return;\n    }\n    QTime startTime = QTime::fromString(match.captured(1), \"hh:mm\");\n    QTime endTime = QTime::fromString(match.captured(3), \"hh:mm\");\n    // 计算时间差（秒），自动处理跨天情况\n    int dSecs = startTime.secsTo(endTime);\n    if (dSecs < 0) {\n        dSecs += 86400; // 加上一天的秒数\n    }\n    // 确保最小时间差为5分钟\n    const int MIN_DURATION = 300;\n    if (dSecs == 0) {\n        QRegularExpressionMatch oldMatch = re.match(oldTimePeriod);\n        if (!oldMatch.hasMatch()) {\n            return;\n        }\n        dSecs = (oldMatch.captured(1) <= oldMatch.captured(3)) ? MIN_DURATION : -MIN_DURATION;\n    } else if (dSecs < MIN_DURATION) {\n        dSecs = MIN_DURATION;\n    } else {\n        // 反向计算时间差\n        dSecs = endTime.secsTo(startTime);\n        if (dSecs < 0) {\n            dSecs += 86400;\n        }\n        // 处理反向时间差\n        dSecs = (dSecs < MIN_DURATION) ? -MIN_DURATION : 0;\n    }\n    if (dSecs != 0) {\n        QRegularExpressionMatch oldMatch = re.match(oldTimePeriod);\n        if (!oldMatch.hasMatch()) {\n            return;\n        }\n        QTime oldStartTime = QTime::fromString(oldMatch.captured(1), \"hh:mm\");\n        if (oldStartTime == startTime) {\n            startTime = endTime.addSecs(-dSecs);\n        } else {\n            endTime = startTime.addSecs(dSecs);\n        }\n    }\n\n    Q_D(DisplayModule);\n    d->m_worker->setCustomColorTempTimePeriod(startTime.toString(DEFAULT_TIME_FORMAT) + \"-\" + endTime.toString(DEFAULT_TIME_FORMAT));\n}\n\nvoid DisplayModule::saveChanges()\n{\n    Q_D(DisplayModule);\n    d->m_worker->saveChanges();\n}\n\nvoid DisplayModule::resetBackup()\n{\n    Q_D(DisplayModule);\n    d->m_worker->resetBackup();\n}\n\nvoid DisplayModule::adsorptionScreen(QList<QObject *> listItems, QObject *pw, qreal scale)\n{\n    QQuickItem *tmpPw = dynamic_cast<QQuickItem *>(pw);\n    if (!tmpPw) {\n        return;\n    }\n    QList<ScreenData *> tmpListItems;\n    ScreenData *pwItem = nullptr;\n    for (auto obj : listItems) {\n        QQuickItem *tmpObj = dynamic_cast<QQuickItem *>(obj);\n        if (tmpObj) {\n            ScreenData *item = new ScreenData(tmpObj, scale);\n            tmpListItems.append(item);\n            if (tmpObj == pw) {\n                pwItem = item;\n            }\n        }\n    }\n    if (tmpListItems.isEmpty()) {\n        return;\n    }\n    ConcatScreen *concatScreen = new ConcatScreen(tmpListItems, pwItem);\n    concatScreen->adsorption();\n    delete concatScreen;\n    qDeleteAll(tmpListItems);\n}\n\nvoid DisplayModule::executemultiScreenAlgo(QList<QObject *> listItems, QObject *pw, qreal scale)\n{\n    QQuickItem *tmpPw = dynamic_cast<QQuickItem *>(pw);\n    if (!tmpPw) {\n        return;\n    }\n    QList<ScreenData *> tmpListItems;\n    ScreenData *pwItem = nullptr;\n    for (auto obj : listItems) {\n        QQuickItem *tmpObj = dynamic_cast<QQuickItem *>(obj);\n        if (tmpObj) {\n            ScreenData *item = new ScreenData(tmpObj, scale);\n            tmpListItems.append(item);\n            if (tmpObj == pw) {\n                pwItem = item;\n            }\n        }\n    }\n    if (tmpListItems.size() < 2 || !pwItem) {\n        return;\n    }\n    ConcatScreen *concatScreen = new ConcatScreen(tmpListItems, pwItem);\n    concatScreen->executemultiScreenAlgo(true);\n    delete concatScreen;\n    qDeleteAll(tmpListItems);\n}\n\nvoid DisplayModule::applySettings(QList<QObject *> listItems, qreal scale)\n{\n    QList<ScreenData *> tmpListItems;\n    for (auto obj : listItems) {\n        QQuickItem *tmpObj = dynamic_cast<QQuickItem *>(obj);\n        if (tmpObj) {\n            ScreenData *item = new ScreenData(tmpObj, scale);\n            tmpListItems.append(item);\n        }\n    }\n    Q_D(DisplayModule);\n    d->setScreenPosition(tmpListItems);\n    qDeleteAll(tmpListItems);\n}\n\nvoid DisplayModule::applyChanged()\n{\n    Q_D(DisplayModule);\n    if (!d->m_model->monitorModeChanging()) {\n        return;\n    }\n    d->m_model->setmodeChanging(false);\n    DccScreen *tmpPw = qobject_cast<DccScreen *>(sender());\n    if (!tmpPw || d_ptrDisplayModule->m_model->displayMode() != EXTEND_MODE) {\n        return;\n    }\n    // Fix BUG-345219: Adjust position to keep displays adjacent when resolution changes, without reordering\n    // Sort by current x-coordinate to preserve user-adjusted order\n    QList<ScreenData *> tmpListItems;\n    for (auto obj : virtualScreens()) {\n        if (obj) {\n            ScreenData *item = new ScreenData(obj);\n            tmpListItems.append(item);\n        }\n    }\n    if (tmpListItems.size() < 2) {\n        qDeleteAll(tmpListItems);\n        return;\n    }\n    // Sort by x-coordinate to preserve user-adjusted order\n    std::sort(tmpListItems.begin(), tmpListItems.end(), [](const ScreenData *item1, const ScreenData *item2) {\n        return item1->rect().x() < item2->rect().x();\n    });\n    // Arrange from left to right, keeping displays adjacent\n    int currentX = 0;\n    for (auto item : tmpListItems) {\n        qreal dx = currentX - item->rect().x();\n        item->moveBy(dx, 0);\n        currentX += static_cast<int>(item->rect().width());\n    }\n    d->setScreenPosition(tmpListItems);\n    qDeleteAll(tmpListItems);\n}\n\nDCC_FACTORY_CLASS(DisplayModule)\n\n} // namespace dccV25\n\n#include \"displaymodule.moc\"\n"
  },
  {
    "path": "src/plugin-display/operation/displaymodule.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DISPLAYMODULE_H\n#define DISPLAYMODULE_H\n\n#include <QObject>\nQT_BEGIN_NAMESPACE\nclass QQuickItem;\nQT_END_NAMESPACE\n\nnamespace dccV25 {\nclass DccScreen;\nclass DisplayModulePrivate;\n\nclass DisplayModule : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(QList<DccScreen *> virtualScreens READ virtualScreens NOTIFY virtualScreensChanged FINAL)\n    Q_PROPERTY(QList<DccScreen *> screens READ screens NOTIFY screensChanged FINAL)\n    Q_PROPERTY(DccScreen * primaryScreen READ primaryScreen WRITE setPrimaryScreen NOTIFY primaryScreenChanged FINAL)\n    Q_PROPERTY(QString  displayMode READ displayMode WRITE setDisplayMode NOTIFY displayModeChanged FINAL)\n    Q_PROPERTY(bool isX11 READ isX11 NOTIFY isX11Changed FINAL)\n    Q_PROPERTY(qreal globalScale READ globalScale WRITE setGlobalScale NOTIFY globalScaleChanged FINAL)\n    Q_PROPERTY(qreal maxGlobalScale READ maxGlobalScale NOTIFY maxGlobalScaleChanged FINAL)\n    Q_PROPERTY(bool colorTemperatureEnabled READ colorTemperatureEnabled WRITE setColorTemperatureEnabled NOTIFY colorTemperatureEnabledChanged FINAL)\n    Q_PROPERTY(int colorTemperatureMode READ colorTemperatureMode WRITE setColorTemperatureMode NOTIFY colorTemperatureModeChanged FINAL)\n    Q_PROPERTY(int colorTemperature READ colorTemperature WRITE setColorTemperature NOTIFY colorTemperatureChanged FINAL)\n    Q_PROPERTY(QString customColorTempTimePeriod READ customColorTempTimePeriod WRITE setCustomColorTempTimePeriod NOTIFY customColorTempTimePeriodChanged FINAL)\npublic:\n    explicit DisplayModule(QObject *parent = nullptr);\n    ~DisplayModule() override;\n\n    // 逻辑屏幕 去除禁用的\n    QList<DccScreen *> virtualScreens() const;\n    // 物理屏幕\n    QList<DccScreen *> screens() const;\n    DccScreen *primaryScreen() const; // 关联screens\n    void setPrimaryScreen(DccScreen *primary);\n    QString displayMode() const;\n    void setDisplayMode(const QString &mode);\n    bool isX11() const;\n    qreal globalScale() const;\n    void setGlobalScale(qreal scale);\n    qreal maxGlobalScale() const;\n    bool colorTemperatureEnabled() const;\n    void setColorTemperatureEnabled(bool enabled);\n    int colorTemperatureMode() const;\n    void setColorTemperatureMode(int mode);\n    int colorTemperature() const;\n    void setColorTemperature(int pos);\n    QString customColorTempTimePeriod() const;\n    void setCustomColorTempTimePeriod(const QString &timePeriod);\n\npublic Q_SLOTS:\n    void saveChanges();\n    void resetBackup();\n\n    void adsorptionScreen(QList<QObject *> listItems, QObject *pw, qreal scale);\n    void executemultiScreenAlgo(QList<QObject *> listItems, QObject *pw, qreal scale);\n    void applySettings(QList<QObject *> listItems, qreal scale);\n    void applyChanged(); // 修改分辨率、方向时，要重新处理下拼接\n\nQ_SIGNALS:\n    void virtualScreensChanged();\n    void screensChanged();\n    void primaryScreenChanged();\n    void displayModeChanged();\n    void isX11Changed();\n    void globalScaleChanged();\n    void globalScaleEnabledChanged();\n    void maxGlobalScaleChanged();\n    void colorTemperatureEnabledChanged();\n    void colorTemperatureModeChanged();\n    void colorTemperatureChanged();\n    void customColorTempTimePeriodChanged();\n    void wallpaperChanged();\n\nprivate:\n    QScopedPointer<DisplayModulePrivate> d_ptrDisplayModule;\n    Q_DECLARE_PRIVATE_D(d_ptrDisplayModule, DisplayModule)\n    Q_DISABLE_COPY(DisplayModule)\n};\n} // namespace dccV25\n#endif // DISPLAYMODULE_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/concatscreen.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"concatscreen.h\"\n\n#include \"../dccscreen.h\"\n\n#include <QQuickItem>\n\nnamespace dccV25 {\n\nScreenData::ScreenData(QQuickItem *item, qreal scale)\n    : m_item(item)\n    , m_screen(item->property(\"screen\").value<DccScreen *>())\n    , m_scale(scale)\n    , m_rect(QRectF(item->x() / scale, item->y() / scale, item->width() / scale, item->height() / scale))\n{\n}\n\nScreenData::ScreenData(DccScreen *screen)\n    : m_item(nullptr)\n    , m_screen(screen)\n    , m_scale(1)\n    , m_rect(QRectF(screen->x(), screen->y(), screen->width(), screen->height()))\n{\n}\n\nQRectF ScreenData::rect() const\n{\n    return m_rect;\n}\n\n// 外扩0.05个像素, 规避由于计算导致精度丢失或者坐标值完全一致的情况下不能判定为相交的情况\nQRectF ScreenData::rectEx() const\n{\n    return m_rect.adjusted(-0.05, -0.05, 0.05, 0.05);\n}\n\nQRectF ScreenData::justIntersectRect() const\n{\n    return m_rect.adjusted(1, 1, -1, -1);\n}\n\nDccScreen *ScreenData::screen() const\n{\n    return m_screen;\n}\n\nvoid ScreenData::moveBy(qreal dx, qreal dy)\n{\n    m_rect.translate(dx, dy);\n    if (m_item) {\n        m_item->setX(m_rect.x() * m_scale);\n        m_item->setY(m_rect.y() * m_scale);\n    }\n}\n\nvoid ScreenData::rebound()\n{\n    m_rect = QRectF(m_screen->x(), m_screen->y(), m_screen->width(), m_screen->height());\n    if (m_item) {\n        m_item->setX(m_rect.x() * m_scale);\n        m_item->setY(m_rect.y() * m_scale);\n    }\n}\n\n// 自动吸附实现\nConcatScreen::ConcatScreen(QList<ScreenData *> listItems, ScreenData *pw)\n    : m_listItems(listItems)\n    , m_movingItem(pw)\n{\n}\n\nvoid ConcatScreen::adsorption()\n{\n    // 当鼠标移动的时候开始响应并执行自动吸附的逻辑\n    // 保证 bufferboundingRect 相交且 boundingRect 不相交，保证移动的块item始终在其他item的外边缘移动\n    qreal top = 0.0;\n    qreal bottom = 0.0;\n    qreal right = 0.0;\n    qreal left = 0.0;\n\n    qreal topLeft = 0.0;\n    qreal topRight = 0.0;\n    qreal bottomLeft = 0.0;\n    qreal bottomRight = 0.0;\n    qreal rightTop = 0.0;\n    qreal rightBottom = 0.0;\n    qreal leftTop = 0.0;\n    qreal leftBottom = 0.0;\n\n    int space = 200;\n\n    auto minMoveLen = [=](qreal temp, qreal &len) {\n        if (fabs(len) > 0.0) {\n            if (fabs(temp) < fabs(len))\n                len = temp;\n        } else {\n            len = temp;\n        }\n    };\n    QRectF pwRect(m_movingItem->rect());\n    for (auto item : m_listItems) {\n        if (item == m_movingItem)\n            continue;\n        QRectF itemRect(item->rect());\n        if (pwRect.intersects(itemRect))\n            return;\n\n        // 与boundingRect 不相交\n        if (pwRect.intersects(QRectF(itemRect.topLeft(), itemRect.bottomRight()).adjusted(0, -space, 0, 0))) {\n            // 上相交\n            qreal temp = itemRect.topRight().y() - pwRect.bottomLeft().y();\n            minMoveLen(temp, top);\n            // 判断边对齐\n            temp = itemRect.topRight().x() - pwRect.bottomRight().x();\n            minMoveLen(temp, topLeft);\n            temp = itemRect.topLeft().x() - pwRect.bottomLeft().x();\n            minMoveLen(temp, topRight);\n        } else if (pwRect.intersects(QRectF(itemRect.bottomLeft(), itemRect.bottomRight()).adjusted(0, 0, 0, space))) {\n            // 下相交\n            qreal temp = itemRect.bottomLeft().y() - pwRect.topLeft().y();\n            minMoveLen(temp, bottom);\n            // 判断边对齐的可能\n            temp = itemRect.topRight().x() - pwRect.bottomRight().x();\n            minMoveLen(temp, bottomLeft);\n            temp = itemRect.topLeft().x() - pwRect.bottomLeft().x();\n            minMoveLen(temp, bottomRight);\n        } else if (pwRect.intersects(QRectF(itemRect.topLeft(), itemRect.bottomLeft()).adjusted(-space, 0, 0, 0))) {\n            // 左相交\n            qreal temp = itemRect.bottomLeft().x() - pwRect.bottomRight().x();\n            minMoveLen(temp, left);\n            // 判断边对齐的可能\n            temp = itemRect.topRight().y() - pwRect.topRight().y();\n            minMoveLen(temp, leftTop);\n            temp = itemRect.bottomLeft().y() - pwRect.bottomLeft().y();\n            minMoveLen(temp, leftBottom);\n        } else if (pwRect.intersects(QRectF(itemRect.topRight(), itemRect.bottomRight()).adjusted(0, 0, space, 0))) {\n            // 右相交\n            qreal temp = itemRect.bottomRight().x() - pwRect.bottomLeft().x();\n            minMoveLen(temp, right);\n            // 判断边对齐的可能\n            temp = itemRect.topRight().y() - pwRect.topRight().y();\n            minMoveLen(temp, rightTop);\n            temp = itemRect.bottomLeft().y() - pwRect.bottomLeft().y();\n            minMoveLen(temp, rightBottom);\n        }\n    }\n    auto edgeAlignment = [=](qreal x1, qreal x2) {\n        if (fabs(x1) > fabs(x2))\n            return fabs(x2) < space ? x2 : 0;\n        else\n            return fabs(x1) < space ? x1 : 0;\n    };\n\n    QPointF autoAdsorptionPos(0.0, 0.0), edgeAlignmentPos(0.0, 0.0);\n\n    if (qFuzzyIsNull(top)) {\n        edgeAlignmentPos.setX(edgeAlignment(bottomRight, bottomLeft));\n        autoAdsorptionPos.setY(bottom);\n    } else if (qFuzzyIsNull(bottom)) {\n        edgeAlignmentPos.setX(edgeAlignment(topRight, topLeft));\n        autoAdsorptionPos.setY(top);\n    } else {\n        autoAdsorptionPos.setY((fabs(top) < fabs(bottom)) ? top : bottom);\n        edgeAlignmentPos.setX((fabs(top) < fabs(bottom)) ? edgeAlignment(topRight, topLeft) : edgeAlignment(bottomRight, bottomLeft));\n    }\n    if (qFuzzyIsNull(left)) {\n        autoAdsorptionPos.setX(right);\n        edgeAlignmentPos.setY(edgeAlignment(rightTop, rightBottom));\n    } else if (qFuzzyIsNull(right)) {\n        autoAdsorptionPos.setX(left);\n        edgeAlignmentPos.setY(edgeAlignment(leftTop, leftBottom));\n    } else {\n        autoAdsorptionPos.setX((fabs(left) < fabs(right)) ? left : right);\n        edgeAlignmentPos.setY((fabs(left) < fabs(right)) ? edgeAlignment(leftTop, leftBottom) : edgeAlignment(rightTop, rightBottom));\n    }\n    if (!qFuzzyIsNull(autoAdsorptionPos.x())) {\n        edgeAlignmentPos.setX(0.0);\n    }\n    if (!qFuzzyIsNull(autoAdsorptionPos.y())) {\n        edgeAlignmentPos.setY(0.0);\n    }\n\n    m_movingItem->moveBy(edgeAlignmentPos.x() + autoAdsorptionPos.x(), edgeAlignmentPos.y() + autoAdsorptionPos.y());\n}\n\nvoid ConcatScreen::executemultiScreenAlgo(bool isRebound)\n{\n    bool isRestore = false;\n    if (multiScreenSortAlgo(isRestore, isRebound)) {\n        multiScreenSortAlgo(isRestore, true);\n    }\n\n    if (isRestore == true)\n        return;\n    multiScreenAutoAdjust();\n    updateConnectedState();\n}\n\nbool ConcatScreen::multiScreenSortAlgo(bool &isRestore, const bool isRebound)\n{\n    // 排列算法\n    // 1、寻找位置变化的屏幕块，确定为被移动的块\n    // 2、判断被移动块和其他块之间的位置关系来进行图形拼接移动\n    //*根据中心点判定\n    QList<ScreenData *> lstActivedItemsX;\n    QList<ScreenData *> lstActivedItemsY;\n    QList<ScreenData *> lstNoMovedItems;\n    QList<ScreenData *> lstShelterItems;\n\n    QList<QPair<ScreenData *, qreal>> lstMoveingItemToCenterPosLen; // 所有块的中心点到移动点的距离\n    bool isMove = true;\n    isRestore = false;\n    bool isAutoAdsorption = false;\n    bool isIntersect = false;\n    qreal g_dx = 0.0;\n    qreal g_dy = 0.0;\n\n    qreal intersectedArea = 0.0; // 相交的面积\n\n    bool g_bXYTogetherMoved = false; // 标志XY方向是否一起移动，其余情况按哪个方向离得近向哪个方向移动\n\n    auto mapToSceneIntersectRect = [](ScreenData *item) {\n        return item->rect().adjusted(1, 1, -1, -1);\n    };\n\n    auto mapToSceneBoundingRect = [](ScreenData *item) {\n        return item->rect();\n    };\n\n    QRectF moveItemIntersect = mapToSceneIntersectRect(m_movingItem);\n    QRectF moveItemRect = mapToSceneBoundingRect(m_movingItem);\n    QPointF moveCenter = moveItemRect.center();\n    for (auto &&item : m_listItems) {\n        if (m_movingItem != item) {\n            QRectF otherRect = mapToSceneBoundingRect(item);\n            QRectF rect = moveItemIntersect.intersected(otherRect);\n            intersectedArea += rect.width() * rect.height();\n            // 移动块大部分覆盖一个块时 执行自动回弹操作\n            QPointF otherCenter = otherRect.center();\n            qreal minDistance = std::min({ moveItemRect.width(), moveItemRect.height(), otherRect.width(), otherRect.height() }) * 0.15;\n            minDistance = std::max(minDistance, 10.0);\n            qreal dx = moveCenter.x() - otherCenter.x();\n            qreal dy = moveCenter.y() - otherCenter.y();\n            if (dx * dx + dy * dy < minDistance * minDistance) {\n                lstShelterItems.append(item);\n            }\n\n            // 要么不相交,要相交就是要点线相交的\n            if (!mapToSceneIntersectRect(m_movingItem).intersects(otherRect) && mapToSceneBoundingRect(m_movingItem).intersects(otherRect)) {\n                isAutoAdsorption = true;\n            }\n            // 出现相交的情况\n            if (mapToSceneIntersectRect(m_movingItem).intersects(otherRect) && mapToSceneBoundingRect(m_movingItem).intersects(otherRect)) {\n                isIntersect = true;\n            }\n\n            lstNoMovedItems.append(item);\n        }\n    }\n    // 移动块与其他的块有90%重叠\n    if (intersectedArea > (moveItemIntersect.width() * moveItemIntersect.height()) * 0.9) {\n        qDebug() << \"存在包含关系\";\n        lstShelterItems.append(m_movingItem);\n    }\n    // 移动块到其他块中心点的距离排序\n    QPointF movedPos = moveItemRect.center();\n    for (auto item : lstNoMovedItems) {\n        QPointF tempPos = mapToSceneBoundingRect(item).center();\n        qreal len = sqrt(pow(tempPos.x() - movedPos.x(), 2) + pow(tempPos.y() - movedPos.y(), 2));\n        lstMoveingItemToCenterPosLen.append(qMakePair(item, len));\n    }\n    // 获取距离最近的块\n    std::sort(lstMoveingItemToCenterPosLen.begin(), lstMoveingItemToCenterPosLen.end(), [=](const QPair<ScreenData *, qreal> &item1, const QPair<ScreenData *, qreal> &item2) {\n        return item1.second < item2.second;\n    });\n    // 自动回弹的触发条件: 1. 一个屏幕完全包含另一个屏的时候 2. 一个屏幕剩下的屏幕集合所包围\n    if (lstShelterItems.size() > 0) {\n        if (isMove) {\n            if (isRebound) {\n                autoRebound();\n                qDebug() << \"自动回弹流程触发! == \" << lstShelterItems.size();\n                isRestore = true;\n                // return QPointF(0.0, 0.0);\n                return false;\n            } else {\n                // 当改变方向时出现覆盖多个块的情况，会触发自动会弹流程，但是改变方向的上一个操作状态不存在或者说回弹到上一个状态没有意义，会导致屏幕重叠现象\n                // 如果是由于方向改变导致的重叠，那就将此块移动到items外接矩形的左下角再重新执行拼接算法。\n                m_movingItem->moveBy(-10000, 10000);\n                return true;\n            }\n        }\n    } else { // 没有完全重合的情况处理逻辑\n        std::sort(lstNoMovedItems.begin(), lstNoMovedItems.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n            return item1->rect().bottomLeft().x() < item2->rect().bottomLeft().x();\n        });\n\n        // 将MovedItem放入链表中排序，左排 右排，判定覆盖几个块\n        lstNoMovedItems.append(m_movingItem);\n        // 左排序\n        std::sort(lstNoMovedItems.begin(), lstNoMovedItems.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n            if (item1 == m_movingItem) {\n                return item1->rect().bottomRight().x() < item2->rect().bottomLeft().x();\n            } else if (item2 == m_movingItem) {\n                return item1->rect().bottomLeft().x() < item2->rect().bottomRight().x();\n            }\n            return item1->rect().bottomLeft().x() < item2->rect().bottomLeft().x();\n        });\n        int nBIndexLeft = lstNoMovedItems.indexOf(m_movingItem);\n        // 右排序\n        std::sort(lstNoMovedItems.begin(), lstNoMovedItems.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n            if (item1 == m_movingItem) {\n                return item1->rect().bottomLeft().x() < item2->rect().bottomRight().x();\n            } else if (item2 == m_movingItem) {\n                return item1->rect().bottomRight().x() < item2->rect().bottomLeft().x();\n            }\n            return item1->rect().bottomRight().x() < item2->rect().bottomRight().x();\n        });\n        int nBIndexRight = lstNoMovedItems.indexOf(m_movingItem);\n\n        // 上排序\n        std::sort(lstNoMovedItems.begin(), lstNoMovedItems.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n            if (item1 == m_movingItem) {\n                return item1->rect().bottomLeft().y() < item2->rect().topLeft().y();\n            } else if (item2 == m_movingItem) {\n                return item1->rect().topLeft().y() < item2->rect().bottomLeft().y();\n            }\n            return item1->rect().topLeft().y() < item2->rect().topLeft().y();\n        });\n        int nBIndexTop = lstNoMovedItems.indexOf(m_movingItem);\n\n        // 下排序\n        std::sort(lstNoMovedItems.begin(), lstNoMovedItems.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n            if (item1 == m_movingItem) {\n                return item1->rect().topLeft().y() < item2->rect().bottomLeft().y();\n            } else if (item2 == m_movingItem) {\n                return item1->rect().bottomLeft().y() < item2->rect().topLeft().y();\n            }\n            return item1->rect().bottomLeft().y() < item2->rect().bottomLeft().y();\n        });\n        int nBIndexBottom = lstNoMovedItems.indexOf(m_movingItem);\n\n        int nItemSize = lstNoMovedItems.size() - 1;\n\n        // 说明移动块在其他块X坐标有重合\n        if (nBIndexLeft != 0 && nBIndexRight != nItemSize) {\n\n            // 移动X\n            // 将MovedItem放入链表中排序，上排 下排，判定在Y轴移动的方向和距离\n            // 处理\n            qreal movex1 = m_movingItem->rect().topLeft().x();\n            qreal movex2 = m_movingItem->rect().topRight().x();\n\n            for (auto pair : lstMoveingItemToCenterPosLen) {\n                qreal x1 = pair.first->rect().topLeft().x();\n                qreal x2 = pair.first->rect().topRight().x();\n\n                if (!((x1 >= movex1 && x1 >= movex2) || (x2 <= movex1 && x2 <= movex2))) {\n                    lstActivedItemsX.append(pair.first);\n                }\n            }\n\n            lstActivedItemsX.append(m_movingItem);\n            // 上排序\n            std::sort(lstActivedItemsX.begin(), lstActivedItemsX.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n                return item1->rect().topLeft().y() < item2->rect().topLeft().y();\n            });\n            int nIndexTop = lstActivedItemsX.indexOf(m_movingItem);\n\n            // 下排序\n            std::sort(lstActivedItemsX.begin(), lstActivedItemsX.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n                return item1->rect().bottomLeft().y() < item2->rect().bottomLeft().y();\n            });\n            int nIndexBottom = lstActivedItemsX.indexOf(m_movingItem);\n\n            // 先做预移动，如果有重合，把重合块加入激活块重新排序\n            if (nIndexTop == nIndexBottom) {\n                // 移动块在最上面\n                if (nIndexTop == 0) {\n                    qreal dy = lstActivedItemsX.first()->rect().topLeft().y() - m_movingItem->rect().bottomLeft().y();\n                    m_movingItem->moveBy(0, dy);\n                    // m_graphicsScene.update();\n\n                    QList<ScreenData *> lstShelterItemsTemp;\n                    lstNoMovedItems.removeOne(m_movingItem);\n                    for (int i = 0; i < lstNoMovedItems.size(); i++) {\n                        if (m_movingItem->rect().intersects(lstNoMovedItems[i]->rect())) {\n                            lstShelterItemsTemp.append(lstNoMovedItems[i]);\n                        }\n                    }\n\n                    if (lstShelterItemsTemp.size() >= 0) {\n                        m_movingItem->moveBy(0, -dy); // 先移回去\n                        // m_graphicsScene.update();\n\n                        // 下排序\n                        std::sort(lstActivedItemsX.begin(), lstActivedItemsX.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n                            return item1->rect().bottomLeft().y() < item2->rect().bottomLeft().y();\n                        });\n                        // int nIndexBottomTemp = lstActivedItemsX.indexOf(m_movingItem);\n\n                        // 上排序\n                        for (auto t : lstShelterItemsTemp) {\n                            if (!lstActivedItemsX.contains(t))\n                                lstActivedItemsX.append(t);\n                        }\n                        std::sort(lstActivedItemsX.begin(), lstActivedItemsX.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n                            return item1->rect().topLeft().y() < item2->rect().topLeft().y();\n                        });\n                        int nIndexTopTemp = lstActivedItemsX.indexOf(m_movingItem);\n\n                        lstActivedItemsX.removeOne(m_movingItem);\n\n                        if (!lstActivedItemsX.isEmpty()) {\n                            if (nIndexTopTemp == 0) {\n                                g_dy = lstActivedItemsX.first()->rect().topLeft().y() - m_movingItem->rect().bottomLeft().y();\n                                qDebug() << \"g_dy\" << g_dy;\n                            } else {\n                                g_dy = lstActivedItemsX.last()->rect().bottomLeft().y() - m_movingItem->rect().topLeft().y();\n                                qDebug() << \"g_dy\" << g_dy;\n                            }\n                        }\n                    }\n                }\n                // 移动块在最下面\n                else {\n                    if (!lstActivedItemsX.contains(m_movingItem))\n                        lstActivedItemsX.append(m_movingItem);\n                    // 下排序\n                    std::sort(lstActivedItemsX.begin(), lstActivedItemsX.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n                        return item1->rect().bottomLeft().y() < item2->rect().bottomLeft().y();\n                    });\n\n                    qreal dy = lstActivedItemsX.last()->rect().bottomLeft().y() - m_movingItem->rect().topLeft().y();\n                    m_movingItem->moveBy(0, dy);\n                    // m_graphicsScene.update();\n\n                    lstNoMovedItems.removeOne(m_movingItem);\n                    QList<ScreenData *> lstShelterItemsTemp;\n                    for (int i = 0; i < lstNoMovedItems.size(); i++) {\n                        if (m_movingItem->rect().intersects(lstNoMovedItems[i]->rect())) {\n                            lstShelterItemsTemp.append(lstNoMovedItems[i]);\n                        }\n                    }\n\n                    if (lstShelterItemsTemp.size() >= 0) {\n                        m_movingItem->moveBy(0, -dy); // 先移回去\n                        // m_graphicsScene.update();\n\n                        // 上排序\n                        for (auto t : lstShelterItemsTemp) {\n                            if (!lstActivedItemsX.contains(t))\n                                lstActivedItemsX.append(t);\n                        }\n\n                        std::sort(lstActivedItemsX.begin(), lstActivedItemsX.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n                            return item1->rect().topLeft().y() < item2->rect().topLeft().y();\n                        });\n                        int nIndexTopTemp = lstActivedItemsX.indexOf(m_movingItem);\n\n                        // 下排序\n                        std::sort(lstActivedItemsX.begin(), lstActivedItemsX.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n                            return item1->rect().bottomLeft().y() < item2->rect().bottomLeft().y();\n                        });\n                        // int nIndexBottomTemp = lstActivedItemsX.indexOf(m_movingItem);\n\n                        lstActivedItemsX.removeOne(m_movingItem);\n\n                        if (!lstActivedItemsX.isEmpty()) {\n                            if (nIndexTopTemp == 0) {\n                                g_dy = lstActivedItemsX.first()->rect().topLeft().y() - m_movingItem->rect().bottomLeft().y();\n                                qDebug() << \"g_dy\" << g_dy;\n                            } else {\n                                g_dy = lstActivedItemsX.last()->rect().bottomLeft().y() - m_movingItem->rect().topLeft().y();\n                                qDebug() << \"g_dy\" << g_dy;\n                            }\n                        }\n                    }\n                }\n            }\n        }\n\n        // 说明移动块在其他块Y坐标有重合\n        if (nBIndexTop != 0 && nBIndexBottom != nItemSize) {\n\n            // 移动Y\n            // 处理\n            qreal movey1 = m_movingItem->rect().topLeft().y();\n            qreal movey2 = m_movingItem->rect().bottomLeft().y();\n\n            for (auto pair : lstMoveingItemToCenterPosLen) {\n                qreal y1 = pair.first->rect().topLeft().y();\n                qreal y2 = pair.first->rect().bottomLeft().y();\n\n                if (!((y1 >= movey1 && y1 >= movey2) || (y2 <= movey1 && y2 <= movey2))) {\n                    lstActivedItemsY.append(pair.first);\n                }\n            }\n\n            lstActivedItemsY.append(m_movingItem);\n            // 左排序\n            std::sort(lstActivedItemsY.begin(), lstActivedItemsY.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n                return item1->rect().topLeft().x() < item2->rect().topLeft().x();\n            });\n            int nIndexLeft = lstActivedItemsY.indexOf(m_movingItem);\n\n            // 右排序\n            std::sort(lstActivedItemsY.begin(), lstActivedItemsY.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n                return item1->rect().topRight().x() < item2->rect().topRight().x();\n            });\n            int nIndexRight = lstActivedItemsY.indexOf(m_movingItem);\n\n            if (nIndexLeft == nIndexRight) {\n                // 移动块在最右侧\n                if (nIndexLeft == 0) {\n                    qreal dx = lstActivedItemsY.first()->rect().topLeft().x() - m_movingItem->rect().topRight().x();\n                    m_movingItem->moveBy(dx, 0);\n                    // m_graphicsScene.update();\n\n                    QList<ScreenData *> lstShelterItemsTemp;\n                    lstNoMovedItems.removeOne(m_movingItem);\n                    for (int i = 0; i < lstNoMovedItems.size(); i++) {\n                        if (m_movingItem->rect().intersects(lstNoMovedItems[i]->rect())) {\n                            lstShelterItemsTemp.append(lstNoMovedItems[i]);\n                        }\n                    }\n\n                    if (lstShelterItemsTemp.size() >= 0) {\n                        m_movingItem->moveBy(-dx, 0);\n                        // m_graphicsScene.update();\n\n                        // 下排序\n                        std::sort(lstActivedItemsY.begin(), lstActivedItemsY.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n                            return item1->rect().topRight().x() < item2->rect().topRight().x();\n                        });\n                        // int nIndexRightTemp = lstActivedItemsY.indexOf(m_movingItem);\n\n                        // 上排序\n                        for (auto t : lstShelterItemsTemp) {\n                            if (!lstActivedItemsY.contains(t))\n                                lstActivedItemsY.append(t);\n                        }\n                        std::sort(lstActivedItemsY.begin(), lstActivedItemsY.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n                            return item1->rect().topLeft().x() < item2->rect().topLeft().x();\n                        });\n                        int nIndexLeftTemp = lstActivedItemsY.indexOf(m_movingItem);\n\n                        lstActivedItemsY.removeOne(m_movingItem);\n\n                        if (!lstActivedItemsY.isEmpty()) {\n                            if (nIndexLeftTemp == 0) {\n                                g_dx = lstActivedItemsY.first()->rect().topLeft().x() - m_movingItem->rect().topRight().x();\n                                qDebug() << \"g_dx\" << g_dx;\n                            } else {\n                                g_dx = lstActivedItemsY.last()->rect().topRight().x() - m_movingItem->rect().topLeft().x();\n                                qDebug() << \"g_dx\" << g_dx;\n                            }\n                        }\n                    }\n                }\n                // 移动块在最左侧\n                else {\n                    if (!lstActivedItemsY.contains(m_movingItem))\n                        lstActivedItemsY.append(m_movingItem);\n                    // 右排序\n                    std::sort(lstActivedItemsY.begin(), lstActivedItemsY.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n                        return item1->rect().topRight().x() < item2->rect().topRight().x();\n                    });\n\n                    qreal dx = lstActivedItemsY.last()->rect().topRight().x() - m_movingItem->rect().topLeft().x();\n                    m_movingItem->moveBy(dx, 0);\n                    // m_graphicsScene.update();\n\n                    lstNoMovedItems.removeOne(m_movingItem);\n                    QList<ScreenData *> lstShelterItemsTemp;\n                    for (int i = 0; i < lstNoMovedItems.size(); i++) {\n                        if (m_movingItem->rect().intersects(lstNoMovedItems[i]->rect())) {\n                            lstShelterItemsTemp.append(lstNoMovedItems[i]);\n                        }\n                    }\n\n                    if (lstShelterItemsTemp.size() >= 0) {\n                        m_movingItem->moveBy(-dx, 0);\n                        // m_graphicsScene.update();\n\n                        // 上排序\n                        for (auto t : lstShelterItemsTemp) {\n                            if (!lstActivedItemsY.contains(t))\n                                lstActivedItemsY.append(t);\n                        }\n                        std::sort(lstActivedItemsY.begin(), lstActivedItemsY.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n                            return item1->rect().topLeft().x() < item2->rect().topLeft().x();\n                        });\n                        int nIndexLeftTemp = lstActivedItemsY.indexOf(m_movingItem);\n\n                        // 下排序\n                        std::sort(lstActivedItemsY.begin(), lstActivedItemsY.end(), [=](const ScreenData *item1, const ScreenData *item2) {\n                            return item1->rect().topRight().x() < item2->rect().topRight().x();\n                        });\n                        // int nIndexRightTemp = lstActivedItemsY.indexOf(m_movingItem);\n\n                        lstActivedItemsY.removeOne(m_movingItem);\n\n                        if (!lstActivedItemsY.isEmpty()) {\n                            if (nIndexLeftTemp == 0) {\n                                g_dx = lstActivedItemsY.first()->rect().topLeft().x() - m_movingItem->rect().topRight().x();\n                                qDebug() << \"g_dx\" << g_dx;\n                            } else {\n                                g_dx = lstActivedItemsY.last()->rect().topRight().x() - m_movingItem->rect().topLeft().x();\n                                qDebug() << \"g_dx\" << g_dx;\n                            }\n                        }\n                    }\n                }\n            }\n        }\n        // 说明移动块在其他块的四周\n        if ((nBIndexLeft == 0 || nBIndexRight == nItemSize) || (nBIndexTop == 0 || nBIndexBottom == nItemSize)) {\n            // 表示X方向没有重叠的\n            // TODO：\n            // 找距离他最近的顶点\n            // LT 左上\n            lstNoMovedItems.removeOne(m_movingItem);\n            QRectF movedRectF = m_movingItem->rect();\n            QList<QPair<ScreenData *, qreal>> lstTempLen;\n            if (nBIndexLeft == 0 && nBIndexTop == 0) {\n                for (auto item : lstNoMovedItems) {\n                    QPointF tempPos = item->rect().topLeft();\n                    qreal len = sqrt(pow(tempPos.x() - movedRectF.bottomRight().x(), 2) + pow(tempPos.y() - movedRectF.bottomRight().y(), 2));\n                    lstTempLen.append(qMakePair(item, len));\n                }\n                // 获取距离最近的块\n                std::sort(lstTempLen.begin(), lstTempLen.end(), [=](const QPair<ScreenData *, qreal> &item1, const QPair<ScreenData *, qreal> &item2) {\n                    return item1.second < item2.second;\n                });\n\n                QPointF dPos = lstTempLen.first().first->rect().topLeft() - m_movingItem->rect().bottomRight();\n                g_dx = dPos.x();\n                g_dy = dPos.y();\n                qDebug() << \"g_dx\" << g_dx;\n                qDebug() << \"g_dy\" << g_dy;\n                g_bXYTogetherMoved = true;\n            }\n\n            // LB 左下\n            if (nBIndexLeft == 0 && nBIndexBottom == nItemSize) {\n                for (auto item : lstNoMovedItems) {\n                    QPointF tempPos = item->rect().bottomLeft();\n                    qreal len = sqrt(pow(tempPos.x() - movedRectF.topRight().x(), 2) + pow(tempPos.y() - movedRectF.topRight().y(), 2));\n                    lstTempLen.append(qMakePair(item, len));\n                }\n                // 获取距离最近的块\n                std::sort(lstTempLen.begin(), lstTempLen.end(), [=](const QPair<ScreenData *, qreal> &item1, const QPair<ScreenData *, qreal> &item2) {\n                    return item1.second < item2.second;\n                });\n\n                QPointF dPos = lstTempLen.first().first->rect().bottomLeft() - m_movingItem->rect().topRight();\n                g_dx = dPos.x();\n                g_dy = dPos.y();\n                g_bXYTogetherMoved = true;\n                qDebug() << \"g_dx\" << g_dx;\n                qDebug() << \"g_dy\" << g_dy;\n            }\n\n            // RT 右上\n            if (nBIndexRight == nItemSize && nBIndexTop == 0) {\n                for (auto item : lstNoMovedItems) {\n                    QPointF tempPos = item->rect().topRight();\n                    qreal len = sqrt(pow(tempPos.x() - movedRectF.bottomLeft().x(), 2) + pow(tempPos.y() - movedRectF.bottomLeft().y(), 2));\n                    lstTempLen.append(qMakePair(item, len));\n                }\n                // 获取距离最近的块\n                std::sort(lstTempLen.begin(), lstTempLen.end(), [=](const QPair<ScreenData *, qreal> &item1, const QPair<ScreenData *, qreal> &item2) {\n                    return item1.second < item2.second;\n                });\n\n                QPointF dPos = lstTempLen.first().first->rect().topRight() - m_movingItem->rect().bottomLeft();\n                g_dx = dPos.x();\n                g_dy = dPos.y();\n                g_bXYTogetherMoved = true;\n                qDebug() << \"g_dx\" << g_dx;\n                qDebug() << \"g_dy\" << g_dy;\n            }\n\n            // RB 右下\n\n            if (nBIndexRight == nItemSize && nBIndexBottom == nItemSize) {\n                for (auto item : lstNoMovedItems) {\n                    QPointF tempPos = item->rect().bottomRight();\n                    qreal len = sqrt(pow(tempPos.x() - movedRectF.topLeft().x(), 2) + pow(tempPos.y() - movedRectF.topLeft().y(), 2));\n                    lstTempLen.append(qMakePair(item, len));\n                }\n                // 获取距离最近的块\n                std::sort(lstTempLen.begin(), lstTempLen.end(), [=](const QPair<ScreenData *, qreal> &item1, const QPair<ScreenData *, qreal> &item2) {\n                    return item1.second < item2.second;\n                });\n\n                QPointF dPos = lstTempLen.first().first->rect().bottomRight() - m_movingItem->rect().topLeft();\n                g_dx = dPos.x();\n                g_dy = dPos.y();\n                qDebug() << \"g_dx\" << g_dx;\n                qDebug() << \"g_dy\" << g_dy;\n                g_bXYTogetherMoved = true;\n            }\n        }\n    }\n\n    qreal dx = g_dx, dy = g_dy;\n    // 是自动吸附并且没有相交的情况，不需要要移动\n    if (isAutoAdsorption && !isIntersect) {\n        if (isMove)\n            m_movingItem->moveBy(0, 0);\n        else {\n            dx = 0.0;\n            dy = 0.0;\n        }\n    }\n    // 其他情况需要移动\n    else {\n        // 是否XY一起移动\n        if (g_bXYTogetherMoved) {\n            if (isMove)\n                m_movingItem->moveBy(g_dx, g_dy);\n            qDebug() << \"XY_XY_XY\" << g_dx << g_dy;\n        } else {\n            // XY其中一个为0的情况， 执行移动\n            if (qFuzzyIsNull(g_dx) || qFuzzyIsNull(g_dy)) {\n                if (isMove)\n                    m_movingItem->moveBy(g_dx, g_dy);\n\n                qDebug() << \"DBL_MIN\" << g_dx << g_dy;\n            }\n            // X和Y都不为0的情况下，哪个移动的绝对值小移动哪一个\n            else {\n                if (isMove)\n                    fabs(g_dx) < fabs(g_dy) ? m_movingItem->moveBy(g_dx, 0) : m_movingItem->moveBy(0, g_dy);\n                else {\n                    fabs(g_dx) < fabs(g_dy) ? dy = 0.0 : dx = 0.0;\n                }\n                qDebug() << \"fabs(g_dx) < fabs(g_dy) ?\" << g_dx << g_dy;\n            }\n        }\n    }\n    return false;\n}\n\nvoid ConcatScreen::multiScreenAutoAdjust()\n{\n    // 在自动拼接之后已经达成全连通状态,无效执行自动调整\n    updateConnectedState();\n\n    // 判断是否为全连通状态\n    if (getConnectedDomain(m_movingItem).size() == m_listItems.size()) {\n        updateConnectedState(true);\n        return;\n    }\n\n    // 存储移动块到临时变量\n    ScreenData *pwTemp = m_movingItem;\n    QList<ScreenData *> lstChangedItems = m_listItems;\n\n    // 处理之前变化的块为空则返回\n    if (lstChangedItems.isEmpty())\n        return;\n\n    QMap<ScreenData *, QList<ScreenData *>> maplstItems;\n    QMap<ScreenData *, bool> mapItemsNeedMove;\n    QList<ScreenData *> itemTemp;\n\n    // 这个列表是存放的就是所有移动块相关的块\n    // 判断改变连通的块与移动块的剩余联通块是否存在连接\n    // 【这种是在移动块初始连接块是两个及以上的情况下触发的，如果是一个连通块的话不会改变连通状态的】\n\n    // 获取屏幕集群\n    for (auto iter : m_listItems) {\n\n        if (!lstChangedItems.contains(iter))\n            continue;\n\n        itemTemp = getConnectedDomain(iter);\n        for (auto k : itemTemp) {\n            if (lstChangedItems.contains(k) && k != iter) {\n                lstChangedItems.removeOne(k);\n            }\n        }\n    }\n\n    for (auto item : lstChangedItems) {\n        qDebug() << \"处理之后变化的块:\" << item->rect() << item;\n    }\n\n    for (auto iter : lstChangedItems) {\n        maplstItems.insert(iter, getConnectedDomain(iter));\n    }\n\n    for (auto iter : maplstItems.keys()) {\n        qDebug() << \"屏幕集群:\" << iter->rect() << iter;\n        for (auto k : maplstItems[iter]) {\n            qDebug() << \"val\" << k->rect() << k;\n        }\n    }\n\n    if (maplstItems.size() > 0) {\n        // 说明除了移动块剩下的被拆分成了几部分，需要重新向其中一个部分移动了\n        // 找到中心屏幕集群(包含移动块)\n        for (auto iter1 = maplstItems.begin(); iter1 != maplstItems.end(); ++iter1) {\n            if (iter1.value().contains(pwTemp)) {\n                m_lstSortItems = iter1.value();\n                break;\n            }\n        }\n\n        // 其他屏幕集群依次向中心屏幕集群移动\n        for (auto iter = maplstItems.begin(); iter != maplstItems.end(); ++iter) {\n            if (iter.value().contains(pwTemp))\n                continue;\n\n            QList<QPointF> lstPos;\n            QList<qreal> lstX, lstY;\n            for (auto item : iter.value()) {\n                m_movingItem = item;\n                bool isRestore = false;\n                multiScreenSortAlgo(isRestore);\n\n                if (!m_lstSortItems.contains(item))\n                    m_lstSortItems.append(item);\n            }\n        }\n    }\n    m_lstSortItems = m_listItems;\n    m_movingItem = pwTemp;\n\n    // 自动调整完毕后,更新连通域\n    updateConnectedState(true);\n}\n\nbool ConcatScreen::updateConnectedState(bool isInit)\n{\n    bool isIntersect = false;\n    QList<ScreenData *> listItemsTemp;\n    for (int i = 0; i < m_listItems.size(); i++) {\n        listItemsTemp.clear();\n\n        for (int j = 0; j < m_listItems.size(); j++) {\n            if (j != i && m_listItems[i]->rectEx().intersects(m_listItems[j]->rect()) && !listItemsTemp.contains(m_listItems[j]) && !m_listItems[i]->justIntersectRect().intersects(m_listItems[j]->rect())) {\n                listItemsTemp.append(m_listItems[j]);\n            }\n            if (j != i && m_listItems[i]->justIntersectRect().intersects(m_listItems[j]->rect())) {\n                isIntersect = true;\n            }\n        }\n\n        if (isInit) {\n            m_mapInitItemConnectedState.insert(m_listItems[i], listItemsTemp);\n        }\n\n        m_mapItemConnectedState.insert(m_listItems[i], listItemsTemp);\n    }\n\n    return isIntersect;\n}\n\n// 获取连通域\nQList<ScreenData *> ConcatScreen::getConnectedDomain(ScreenData *item)\n{\n    QList<ScreenData *> lstTemp1Items;\n\n    QList<ScreenData *> lstTemp;\n    QList<ScreenData *> lstItems;\n\n    lstItems.append(item);\n\n    for (auto iter : m_listItems) /*标记循环次数*/ {\n        Q_UNUSED(iter)\n\n        lstTemp.clear();\n        // 获取所有的value\n        for (auto a : lstItems) {\n            for (auto t : m_mapItemConnectedState[a]) {\n                if (!lstTemp1Items.contains(t))\n                    lstTemp.append(t);\n            }\n        }\n\n        // 去重插入\n        for (auto t : lstTemp) {\n            if (!lstTemp1Items.contains(t) && t != item)\n                lstTemp1Items.append(t);\n            else {\n                lstTemp.removeOne(t);\n            }\n        }\n\n        lstItems.clear();\n        lstItems.append(lstTemp);\n    }\n\n    lstTemp1Items.append(item);\n\n    return lstTemp1Items;\n}\n\nvoid ConcatScreen::autoRebound()\n{\n    for (auto &&item : m_listItems) {\n        item->rebound();\n    }\n}\n\n} // namespace dccV25\n"
  },
  {
    "path": "src/plugin-display/operation/private/concatscreen.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef CONCATSCREEN_H\n#define CONCATSCREEN_H\n\n#include <QList>\n#include <QMap>\n#include <QPointF>\n#include <QRectF>\n\nQT_BEGIN_NAMESPACE\nclass QQuickItem;\nQT_END_NAMESPACE\n\nnamespace dccV25 {\nclass DccScreen;\n\nclass ScreenData\n{\npublic:\n    explicit ScreenData(QQuickItem *item, qreal scale);\n    ScreenData(DccScreen *screen);\n    QRectF rect() const;\n    QRectF rectEx() const;\n    QRectF justIntersectRect() const;\n    DccScreen *screen() const;\n    void moveBy(qreal dx, qreal dy);\n    void rebound();\n\nprivate:\n    QQuickItem *m_item;\n    DccScreen *m_screen;\n    qreal m_scale;\n    QRectF m_rect;\n};\n\nclass ConcatScreen\n{\npublic:\n    explicit ConcatScreen(QList<ScreenData *> listItems, ScreenData *pw);\n    void adsorption();\n    void executemultiScreenAlgo(bool isRebound);\n\nprivate:\n    bool multiScreenSortAlgo(bool &isRestore, const bool isRebound = true); // 排序算法 返回值 是否要重新拼接//为计算之后需要移动的XY值\n    void multiScreenAutoAdjust();                                           // 手动调整完如果出现没有完全连通的情况，需要启动自动调整算法\n    bool updateConnectedState(bool isInit = false);                         // 更新连通状态\n    QList<ScreenData *> getConnectedDomain(ScreenData *item);               // 获取每个屏幕的连通域\n    void autoRebound();                                                     // 自动回弹流程\n\nprivate:\n    QList<ScreenData *> m_listItems;\n    ScreenData *m_movingItem;\n    QList<ScreenData *> m_lstSortItems;\n    QMap<ScreenData *, QList<ScreenData *>> m_mapItemConnectedState;     // 所有块的实时连通状态\n    QMap<ScreenData *, QList<ScreenData *>> m_mapInitItemConnectedState; // 所有块的初始连通状态\n};\n} // namespace dccV25\n#endif // CONCATSCREEN_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/dccscreen_p.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCCSCREEN_P_H\n#define DCCSCREEN_P_H\n\n#include \"monitor.h\"\n\n#include <QObject>\n\nnamespace dccV25 {\nconst float MinScreenWidth = 1024.0f;\nconst float MinScreenHeight = 768.0f;\n\nclass DisplayWorker;\nclass DccScreen;\nclass DccScreenItem;\n\nclass DccScreenItemPrivate\n{\npublic:\n    static DccScreenItem *New(Monitor * monitor, DccScreen *screen);\n    static DccScreenItemPrivate *Private(DccScreenItem *screenItem);\n\n    explicit DccScreenItemPrivate(DccScreenItem *screenItem);\n    virtual ~DccScreenItemPrivate();\n\n    Monitor * m_monitor;\n    DccScreenItem *q_ptr;\n    Q_DECLARE_PUBLIC(DccScreenItem)\n};\n\nclass DccScreenPrivate\n{\npublic:\n    static DccScreen *New(QList<Monitor *> monitors, DisplayWorker *worker, QObject *parent = nullptr);\n    static DccScreenPrivate *Private(DccScreen *screen);\n\n    explicit DccScreenPrivate(DccScreen *screen);\n    virtual ~DccScreenPrivate();\n    void setMonitors(QList<Monitor *> monitors);\n    Monitor *monitor();\n    QList<Monitor *> monitors();\n\n    inline DisplayWorker *worker() { return m_worker; }\n\n    void setMode(QSize resolution, double rate);\n    void setRotate(uint rotate);\n    void setFillMode(const QString &fileMode);\n    void setScale(qreal scale);\n\n    void updateResolutionList();\n    void updateRateList();\n    void updateScreen();\n    void updateMaxScale();\n\nprivate:\n    DccScreen *q_ptr;\n    QList<Monitor *> m_monitors;\n    QList<QSize> m_resolutionList;\n    QList<double> m_rateList;\n    QString m_name;\n    DisplayWorker *m_worker;\n    QScreen *m_screen;\n    qreal m_maxScale;\n    QList<DccScreenItem *> m_screenItems;\n    Q_DECLARE_PUBLIC(DccScreen)\n};\n} // namespace dccV25\n#endif // DCCSCREEN_P_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/displaydbusproxy.cpp",
    "content": "// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"displaydbusproxy.h\"\n\n#include <QDBusInterface>\n#include <QDBusMetaType>\n#include <QDBusPendingReply>\n\nconst static QString DisplayService = \"org.deepin.dde.Display1\";\nconst static QString DisplayPath = \"/org/deepin/dde/Display1\";\nconst static QString DisplayInterface = \"org.deepin.dde.Display1\";\n\nconst static QString AppearanceService = \"org.deepin.dde.Appearance1\";\nconst static QString AppearancePath = \"/org/deepin/dde/Appearance1\";\nconst static QString AppearanceInterface = \"org.deepin.dde.Appearance1\";\n\nconst static QString PowerService = \"org.deepin.dde.Power1\";\nconst static QString PowerPath = \"/org/deepin/dde/Power1\";\nconst static QString PowerInterface = \"org.deepin.dde.Power1\";\n\nDisplayDBusProxy::DisplayDBusProxy(QObject *parent)\n    : QObject(parent)\n{\n    registerTouchscreenInfoList_V2MetaType();\n    registerTouchscreenMapMetaType();\n    registerResolutionListMetaType();\n    registerBrightnessMapMetaType();\n    registerTouchscreenInfoListMetaType();\n    registerScreenRectMetaType();\n    registerResolutionMetaType();\n\n    init();\n}\n\nvoid DisplayDBusProxy::init()\n{\n    m_dBusSystemDisplayInter = new DDBusInterface(\"org.deepin.dde.Display1\", \"/org/deepin/dde/Display1\", \"org.deepin.dde.Display1\", QDBusConnection::systemBus(), this);\n    m_dBusDisplayInter = new DDBusInterface(DisplayService, DisplayPath, DisplayInterface, QDBusConnection::sessionBus(), this);\n    m_dBusAppearanceInter = new DDBusInterface(AppearanceService, AppearancePath, AppearanceInterface, QDBusConnection::sessionBus(), this);\n    m_dBusPowerInter = new DDBusInterface(PowerService, PowerPath, PowerInterface, QDBusConnection::sessionBus(), this);\n    QDBusConnection::sessionBus().connect(\"com.deepin.wm\", \"/com/deepin/wm\", \"com.deepin.wm\", \"WorkspaceSwitched\", this, SIGNAL(WorkspaceSwitched(int, int)));\n}\n\n// power\nbool DisplayDBusProxy::ambientLightAdjustBrightness()\n{\n    return qvariant_cast<bool>(m_dBusPowerInter->property(\"AmbientLightAdjustBrightness\"));\n}\n\nvoid DisplayDBusProxy::setAmbientLightAdjustBrightness(bool value)\n{\n    m_dBusPowerInter->setProperty(\"AmbientLightAdjustBrightness\", QVariant::fromValue(value));\n}\n\nbool DisplayDBusProxy::hasAmbientLightSensor()\n{\n    return qvariant_cast<bool>(m_dBusPowerInter->property(\"HasAmbientLightSensor\"));\n}\n\nQString DisplayDBusProxy::wallpaperURls() const\n{\n    return qvariant_cast<QString>(m_dBusAppearanceInter->property(\"WallpaperURls\"));\n}\n\n// display\nBrightnessMap DisplayDBusProxy::brightness()\n{\n    return qvariant_cast<BrightnessMap>(m_dBusDisplayInter->property(\"Brightness\"));\n}\n\nbool DisplayDBusProxy::colorTemperatureEnabled() const\n{\n    return qvariant_cast<bool>(m_dBusDisplayInter->property(\"ColorTemperatureEnabled\"));\n}\n\nvoid DisplayDBusProxy::setColorTemperatureEnabled(bool enabled)\n{\n    m_dBusDisplayInter->setProperty(\"ColorTemperatureEnabled\", enabled);\n}\n\nint DisplayDBusProxy::colorTemperatureManual()\n{\n    return qvariant_cast<int>(m_dBusDisplayInter->property(\"ColorTemperatureManual\"));\n}\n\nint DisplayDBusProxy::colorTemperatureMode()\n{\n    return qvariant_cast<int>(m_dBusDisplayInter->property(\"ColorTemperatureMode\"));\n}\n\nconst QString DisplayDBusProxy::customColorTempTimePeriod()\n{\n    return qvariant_cast<QString>(m_dBusDisplayInter->property(\"CustomColorTempTimePeriod\"));\n}\n\nQString DisplayDBusProxy::currentCustomId()\n{\n    return qvariant_cast<QString>(m_dBusDisplayInter->property(\"CurrentCustomId\"));\n}\n\nQStringList DisplayDBusProxy::customIdList()\n{\n    return qvariant_cast<QStringList>(m_dBusDisplayInter->property(\"CustomIdList\"));\n}\n\nuchar DisplayDBusProxy::displayMode()\n{\n    return qvariant_cast<uchar>(m_dBusDisplayInter->property(\"DisplayMode\"));\n}\n\nbool DisplayDBusProxy::hasChanged()\n{\n    return qvariant_cast<bool>(m_dBusDisplayInter->property(\"HasChanged\"));\n}\n\nuint DisplayDBusProxy::maxBacklightBrightness()\n{\n    return qvariant_cast<uint>(m_dBusDisplayInter->property(\"MaxBacklightBrightness\"));\n}\n\nQList<QDBusObjectPath> DisplayDBusProxy::monitors()\n{\n    return qvariant_cast<QList<QDBusObjectPath>>(m_dBusDisplayInter->property(\"Monitors\"));\n}\n\nQString DisplayDBusProxy::primary()\n{\n    return qvariant_cast<QString>(m_dBusDisplayInter->property(\"Primary\"));\n}\n\nScreenRect DisplayDBusProxy::primaryRect()\n{\n    return qvariant_cast<ScreenRect>(m_dBusDisplayInter->property(\"PrimaryRect\"));\n}\n\nushort DisplayDBusProxy::screenHeight()\n{\n    return qvariant_cast<ushort>(m_dBusDisplayInter->property(\"ScreenHeight\"));\n}\n\nushort DisplayDBusProxy::screenWidth()\n{\n    return qvariant_cast<ushort>(m_dBusDisplayInter->property(\"ScreenWidth\"));\n}\n\nTouchscreenMap DisplayDBusProxy::touchMap()\n{\n    return qvariant_cast<TouchscreenMap>(m_dBusDisplayInter->property(\"TouchMap\"));\n}\n\nTouchscreenInfoList DisplayDBusProxy::touchscreens()\n{\n    return qvariant_cast<TouchscreenInfoList>(m_dBusDisplayInter->property(\"Touchscreens\"));\n}\n\nTouchscreenInfoList_V2 DisplayDBusProxy::touchscreensV2()\n{\n    return qvariant_cast<TouchscreenInfoList_V2>(m_dBusDisplayInter->property(\"TouchscreensV2\"));\n}\n\nQDBusPendingReply<double> DisplayDBusProxy::GetScaleFactor()\n{\n    QList<QVariant> argumentList;\n    return m_dBusAppearanceInter->asyncCallWithArgumentList(QStringLiteral(\"GetScaleFactor\"), argumentList);\n}\n\nQDBusPendingReply<QMap<QString, double>> DisplayDBusProxy::GetScreenScaleFactors()\n{\n    QList<QVariant> argumentList;\n    return m_dBusAppearanceInter->asyncCallWithArgumentList(QStringLiteral(\"GetScreenScaleFactors\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::SetScaleFactor(double in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusAppearanceInter->asyncCallWithArgumentList(QStringLiteral(\"SetScaleFactor\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::SetScreenScaleFactors(const QMap<QString, double> &scaleFactors)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(scaleFactors);\n    return m_dBusAppearanceInter->asyncCallWithArgumentList(QStringLiteral(\"SetScreenScaleFactors\"), argumentList);\n}\n\nQDBusPendingReply<QString> DisplayDBusProxy::GetCurrentWorkspaceBackgroundForMonitor(const QString &strMonitorName)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(strMonitorName);\n    return m_dBusAppearanceInter->asyncCallWithArgumentList(QStringLiteral(\"GetCurrentWorkspaceBackgroundForMonitor\"), argumentList);\n}\n\nQString DisplayDBusProxy::GetConfig()\n{\n    QList<QVariant> argumentList;\n    return QDBusPendingReply<QString>(m_dBusSystemDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"GetConfig\"), argumentList));\n}\n\nvoid DisplayDBusProxy::SetConfig(QString cfgStr)\n{\n    QList<QVariant> argumentList;\n    argumentList << cfgStr;\n    m_dBusSystemDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"SetConfig\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::ApplyChanges()\n{\n    QList<QVariant> argumentList;\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"ApplyChanges\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::AssociateTouch(const QString &in0, const QString &in1)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"AssociateTouch\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::AssociateTouchByUUID(const QString &in0, const QString &in1)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"AssociateTouchByUUID\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::ChangeBrightness(bool in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"ChangeBrightness\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::DeleteCustomMode(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"DeleteCustomMode\"), argumentList);\n}\n\nQDBusPendingReply<uchar> DisplayDBusProxy::GetRealDisplayMode()\n{\n    QList<QVariant> argumentList;\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"GetRealDisplayMode\"), argumentList);\n}\n\nQDBusPendingReply<QStringList> DisplayDBusProxy::ListOutputNames()\n{\n    QList<QVariant> argumentList;\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"ListOutputNames\"), argumentList);\n}\n\nQDBusPendingReply<ResolutionList> DisplayDBusProxy::ListOutputsCommonModes()\n{\n    QList<QVariant> argumentList;\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"ListOutputsCommonModes\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::ModifyConfigName(const QString &in0, const QString &in1)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"ModifyConfigName\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::RefreshBrightness()\n{\n    QList<QVariant> argumentList;\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"RefreshBrightness\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::Reset()\n{\n    QList<QVariant> argumentList;\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"Reset\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::ResetChanges()\n{\n    QList<QVariant> argumentList;\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"ResetChanges\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::Save()\n{\n    QList<QVariant> argumentList;\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"Save\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::SetAndSaveBrightness(const QString &in0, double in1)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"SetAndSaveBrightness\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::SetBrightness(const QString &in0, double in1)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"SetBrightness\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::SetColorTemperature(int in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"SetColorTemperature\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::SetCustomColorTempTimePeriod(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"SetCustomColorTempTimePeriod\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::SetMethodAdjustCCT(int in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"SetMethodAdjustCCT\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::SetPrimary(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"SetPrimary\"), argumentList);\n}\n\nQDBusPendingReply<> DisplayDBusProxy::SwitchMode(uchar in0, const QString &in1)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n    return m_dBusDisplayInter->asyncCallWithArgumentList(QStringLiteral(\"SwitchMode\"), argumentList);\n}\n\nQDBusReply<bool> DisplayDBusProxy::CanSetBrightnessSync(const QString &name)\n{\n    return m_dBusDisplayInter->call(\"CanSetBrightness\", name);\n}\n\nQDBusReply<bool> DisplayDBusProxy::SupportSetColorTemperatureSync()\n{\n    return m_dBusDisplayInter->call(\"SupportSetColorTemperature\");\n}\n"
  },
  {
    "path": "src/plugin-display/operation/private/displaydbusproxy.h",
    "content": "// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DISPLAYDBUSPROXY_H\n#define DISPLAYDBUSPROXY_H\n\n#include \"types/brightnessmap.h\"\n#include \"types/resolutionlist.h\"\n#include \"types/screenrect.h\"\n#include \"types/touchscreeninfolist.h\"\n#include \"types/touchscreeninfolist_v2.h\"\n#include \"types/touchscreenmap.h\"\n\n#include <DDBusInterface>\n\n#include <QDBusPendingReply>\n#include <QDBusReply>\n#include <QObject>\n\nusing Dtk::Core::DDBusInterface;\nclass QDBusMessage;\n\nclass DisplayDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit DisplayDBusProxy(QObject *parent = nullptr);\n    Q_PROPERTY(BrightnessMap Brightness READ brightness NOTIFY BrightnessChanged)\n    BrightnessMap brightness();\n\n    Q_PROPERTY(bool ColorTemperatureEnabled READ colorTemperatureEnabled WRITE setColorTemperatureEnabled NOTIFY ColorTemperatureEnabledChanged FINAL)\n    bool colorTemperatureEnabled() const;\n    void setColorTemperatureEnabled(bool enabled);\n\n    Q_PROPERTY(int ColorTemperatureManual READ colorTemperatureManual NOTIFY ColorTemperatureManualChanged)\n    int colorTemperatureManual();\n\n    Q_PROPERTY(int ColorTemperatureMode READ colorTemperatureMode NOTIFY ColorTemperatureModeChanged)\n    int colorTemperatureMode();\n\n    Q_PROPERTY(QString CustomColorTempTimePeriod READ customColorTempTimePeriod NOTIFY CustomColorTempTimePeriodChanged FINAL)\n    const QString customColorTempTimePeriod();\n\n    Q_PROPERTY(QString CurrentCustomId READ currentCustomId NOTIFY CurrentCustomIdChanged)\n    QString currentCustomId();\n\n    Q_PROPERTY(QStringList CustomIdList READ customIdList NOTIFY CustomIdListChanged)\n    QStringList customIdList();\n\n    Q_PROPERTY(uchar DisplayMode READ displayMode NOTIFY DisplayModeChanged)\n    uchar displayMode();\n\n    Q_PROPERTY(bool HasChanged READ hasChanged NOTIFY HasChangedChanged)\n    bool hasChanged();\n\n    Q_PROPERTY(uint MaxBacklightBrightness READ maxBacklightBrightness NOTIFY MaxBacklightBrightnessChanged)\n    uint maxBacklightBrightness();\n\n    Q_PROPERTY(QList<QDBusObjectPath> Monitors READ monitors NOTIFY MonitorsChanged)\n    QList<QDBusObjectPath> monitors();\n\n    Q_PROPERTY(QString Primary READ primary NOTIFY PrimaryChanged)\n    QString primary();\n\n    Q_PROPERTY(ScreenRect PrimaryRect READ primaryRect NOTIFY PrimaryRectChanged)\n    ScreenRect primaryRect();\n\n    Q_PROPERTY(ushort ScreenHeight READ screenHeight NOTIFY ScreenHeightChanged)\n    ushort screenHeight();\n\n    Q_PROPERTY(ushort ScreenWidth READ screenWidth NOTIFY ScreenWidthChanged)\n    ushort screenWidth();\n\n    Q_PROPERTY(TouchscreenMap TouchMap READ touchMap NOTIFY TouchMapChanged)\n    TouchscreenMap touchMap();\n\n    Q_PROPERTY(TouchscreenInfoList Touchscreens READ touchscreens NOTIFY TouchscreensChanged)\n    TouchscreenInfoList touchscreens();\n\n    Q_PROPERTY(TouchscreenInfoList_V2 TouchscreensV2 READ touchscreensV2 NOTIFY TouchscreensV2Changed)\n    TouchscreenInfoList_V2 touchscreensV2();\n\n    // power\n    Q_PROPERTY(bool AmbientLightAdjustBrightness READ ambientLightAdjustBrightness WRITE setAmbientLightAdjustBrightness NOTIFY AmbientLightAdjustBrightnessChanged)\n    bool ambientLightAdjustBrightness();\n    void setAmbientLightAdjustBrightness(bool value);\n\n    Q_PROPERTY(bool HasAmbientLightSensor READ hasAmbientLightSensor NOTIFY HasAmbientLightSensorChanged)\n    bool hasAmbientLightSensor();\n\n    Q_PROPERTY(QString WallpaperURls READ wallpaperURls NOTIFY WallpaperURlsChanged FINAL)\n    QString wallpaperURls() const;\n\nprivate:\n    void init();\n\npublic Q_SLOTS: // METHODS\n    // Display\n    QDBusPendingReply<> ApplyChanges();\n    QDBusPendingReply<> AssociateTouch(const QString &in0, const QString &in1);\n    QDBusPendingReply<> AssociateTouchByUUID(const QString &in0, const QString &in1);\n    QDBusPendingReply<> ChangeBrightness(bool in0);\n    QDBusPendingReply<> DeleteCustomMode(const QString &in0);\n    QDBusPendingReply<uchar> GetRealDisplayMode();\n    QDBusPendingReply<QStringList> ListOutputNames();\n    QDBusPendingReply<ResolutionList> ListOutputsCommonModes();\n    QDBusPendingReply<> ModifyConfigName(const QString &in0, const QString &in1);\n    QDBusPendingReply<> RefreshBrightness();\n    QDBusPendingReply<> Reset();\n    QDBusPendingReply<> ResetChanges();\n    QDBusPendingReply<> Save();\n    QDBusPendingReply<> SetAndSaveBrightness(const QString &in0, double in1);\n    QDBusPendingReply<> SetBrightness(const QString &in0, double in1);\n    QDBusPendingReply<> SetColorTemperature(int in0);\n    QDBusPendingReply<> SetCustomColorTempTimePeriod(const QString &in0);\n    QDBusPendingReply<> SetMethodAdjustCCT(int in0);\n    QDBusPendingReply<> SetPrimary(const QString &in0);\n    QDBusPendingReply<> SwitchMode(uchar in0, const QString &in1);\n    QDBusReply<bool> CanSetBrightnessSync(const QString &name);\n    QDBusReply<bool> SupportSetColorTemperatureSync();\n    // Appearance\n    QDBusPendingReply<double> GetScaleFactor();\n    QDBusPendingReply<QMap<QString, double> > GetScreenScaleFactors();\n    QDBusPendingReply<> SetScaleFactor(double in0);\n    QDBusPendingReply<> SetScreenScaleFactors(const QMap<QString, double> &scaleFactors);\n    QDBusPendingReply<QString> GetCurrentWorkspaceBackgroundForMonitor(const QString &strMonitorName);\n    // SystemDisplay\n    QString GetConfig();\n    void SetConfig(QString cfgStr);\n\nQ_SIGNALS: // SIGNALS\n    // begin property changed signals\n    void BrightnessChanged(BrightnessMap value) const;\n    void ColorTemperatureEnabledChanged(bool value) const;\n    void ColorTemperatureManualChanged(int value) const;\n    void ColorTemperatureModeChanged(int value) const;\n    void CustomColorTempTimePeriodChanged(const QString &value) const;\n    void CurrentCustomIdChanged(const QString &value) const;\n    void CustomIdListChanged(const QStringList &value) const;\n    void DisplayModeChanged(uchar value) const;\n    void HasChangedChanged(bool value) const;\n    void MaxBacklightBrightnessChanged(uint value) const;\n    void MonitorsChanged(const QList<QDBusObjectPath> &value) const;\n    void PrimaryChanged(const QString &value) const;\n    void PrimaryRectChanged(ScreenRect value) const;\n    void ScreenHeightChanged(ushort value) const;\n    void ScreenWidthChanged(ushort value) const;\n    void TouchMapChanged(TouchscreenMap value) const;\n    void TouchscreensChanged(TouchscreenInfoList value) const;\n    void TouchscreensV2Changed(TouchscreenInfoList_V2 value) const;\n\n    // power\n    void AmbientLightAdjustBrightnessChanged(bool value) const;\n    void HasAmbientLightSensorChanged(bool value) const;\n    void WallpaperURlsChanged(const QString &value) const;\n    void WorkspaceSwitched(int oldIndex,int newIndex);\n\nprivate:\n    Dtk::Core::DDBusInterface *m_dBusDisplayInter;\n    Dtk::Core::DDBusInterface *m_dBusSystemDisplayInter;\n    Dtk::Core::DDBusInterface *m_dBusAppearanceInter;\n    Dtk::Core::DDBusInterface *m_dBusPowerInter;\n};\n\n#endif // DISPLAYDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/displaymodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"displaymodel.h\"\n\nusing namespace dccV25;\nconst double DoubleZero = 0.000001;\nbool contains(const QList<Resolution> &container, const Resolution &item)\n{\n    for (auto r : container)\n        if (r.width() == item.width() && r.height() == item.height())\n            return true;\n\n    return false;\n}\n\nDisplayModel::DisplayModel(QObject *parent)\n    : QObject(parent)\n    , m_screenHeight(0)\n    , m_screenWidth(0)\n    , m_uiScale(1)\n    , m_minimumBrightnessScale(0.0)\n    , m_redshiftIsValid(false)\n    , m_allowEnableMultiScaleRatio(false)\n    , m_resolutionRefreshEnable(true)\n    , m_brightnessEnable(true)\n    , m_monitorModeChanging(true)\n{\n}\n\ndouble DisplayModel::monitorScale(Monitor *moni)\n{\n    qDebug() << \"ui scale : \" << m_uiScale << \"\\tmonitor scale:\" << moni->scale();\n    return moni->scale() < 1.0 ? m_uiScale : moni->scale();\n}\n\nMonitor *DisplayModel::primaryMonitor() const\n{\n    for (auto mon : m_monitors)\n        if (mon->name() == m_primary)\n            return mon;\n\n    return nullptr;\n}\n\nvoid DisplayModel::setScreenHeight(const int h)\n{\n    if (m_screenHeight != h) {\n        m_screenHeight = h;\n        Q_EMIT screenHeightChanged(m_screenHeight);\n    }\n}\n\nvoid DisplayModel::setScreenWidth(const int w)\n{\n    if (m_screenWidth != w) {\n        m_screenWidth = w;\n        Q_EMIT screenWidthChanged(m_screenWidth);\n    }\n}\n\nvoid DisplayModel::setDisplayMode(const int mode)\n{\n    if (m_mode != mode && mode >= 0 && mode < 5) {\n        m_mode = mode;\n        Q_EMIT displayModeChanged(m_mode);\n    }\n}\n\nvoid DisplayModel::setUIScale(const double scale)\n{\n    if (fabs(m_uiScale - scale) > DoubleZero) {\n        m_uiScale = scale;\n        Q_EMIT uiScaleChanged(m_uiScale);\n    }\n}\n\nvoid DisplayModel::setMinimumBrightnessScale(const double scale)\n{\n    if (fabs(m_minimumBrightnessScale - scale) > DoubleZero) {\n        m_minimumBrightnessScale = scale;\n        Q_EMIT minimumBrightnessScaleChanged(m_minimumBrightnessScale);\n    }\n}\n\nvoid DisplayModel::setPrimary(const QString &primary)\n{\n    if (m_primary != primary) {\n        m_primary = primary;\n        Q_EMIT primaryScreenChanged(m_primary);\n    }\n}\n\nvoid DisplayModel::monitorAdded(Monitor *mon)\n{\n    m_monitors.append(mon);\n    //  按照名称排序，显示的时候VGA在前，HDMI在后\n    std::sort(m_monitors.begin(), m_monitors.end(), [=](const Monitor *m1, const Monitor *m2){\n        return m1->name() > m2->name();\n    });\n    checkAllSupportFillModes();\n\n    Q_EMIT monitorListChanged();\n}\n\nvoid DisplayModel::monitorRemoved(Monitor *mon)\n{\n    m_monitors.removeOne(mon);\n    checkAllSupportFillModes();\n\n    Q_EMIT monitorListChanged();\n}\n\nvoid DisplayModel::setAutoLightAdjustIsValid(bool ala)\n{\n    if (m_AutoLightAdjustIsValid == ala)\n        return;\n    m_AutoLightAdjustIsValid = ala;\n    Q_EMIT autoLightAdjustVaildChanged(ala);\n}\n\nvoid DisplayModel::setBrightnessMap(const BrightnessMap &brightnessMap)\n{\n    if (brightnessMap == m_brightnessMap)\n        return;\n\n    m_brightnessMap = brightnessMap;\n}\n\nvoid DisplayModel::setTouchscreenList(const TouchscreenInfoList_V2 &touchscreenList)\n{\n    if (touchscreenList == m_touchscreenList)\n        return;\n\n    m_touchscreenList = touchscreenList;\n\n    Q_EMIT touchscreenListChanged();\n}\n\nvoid DisplayModel::setTouchMap(const TouchscreenMap &touchMap)\n{\n    if (touchMap == m_touchMap)\n        return;\n\n    m_touchMap = touchMap;\n\n    Q_EMIT touchscreenMapChanged();\n}\n\nvoid DisplayModel::setAutoLightAdjust(bool ala)\n{\n    if (ala == m_isAutoLightAdjust)\n        return;\n\n    m_isAutoLightAdjust = ala;\n\n    Q_EMIT autoLightAdjustSettingChanged(m_isAutoLightAdjust);\n}\n\nbool DisplayModel::redshiftIsValid() const\n{\n    return m_redshiftIsValid;\n}\n\nvoid DisplayModel::setColorTemperatureEnabled(bool enabled)\n{\n    if (enabled == m_colorTemperatureEnabled)\n        return;\n\n    m_colorTemperatureEnabled = enabled;\n\n    Q_EMIT colorTemperatureEnabledChanged(m_colorTemperatureEnabled);\n}\n\nvoid DisplayModel::setAdjustCCTmode(int mode)\n{\n    if (m_adjustCCTMode == mode)\n        return;\n\n    m_adjustCCTMode = mode;\n\n    Q_EMIT adjustCCTmodeChanged(mode);\n}\n\nvoid DisplayModel::setColorTemperature(int value)\n{\n    if (m_colorTemperature == value)\n        return;\n\n    m_colorTemperature = value;\n    Q_EMIT colorTemperatureChanged(value);\n}\n\nvoid DisplayModel::setCustomColorTempTimePeriod(const QString &timePeriod)\n{\n    if (m_customColorTempTimePeriod == timePeriod)\n        return;\n\n    m_customColorTempTimePeriod = timePeriod;\n    Q_EMIT customColorTempTimePeriodChanged(m_customColorTempTimePeriod);\n}\n\nvoid DisplayModel::setRedshiftIsValid(bool redshiftIsValid)\n{\n    if (m_redshiftIsValid == redshiftIsValid)\n        return;\n\n    m_redshiftIsValid = redshiftIsValid;\n\n    Q_EMIT redshiftVaildChanged(redshiftIsValid);\n}\n\nvoid DisplayModel::setAllowEnableMultiScaleRatio(bool allowEnableMultiScaleRatio)\n{\n    if (m_allowEnableMultiScaleRatio == allowEnableMultiScaleRatio)\n        return;\n\n    m_allowEnableMultiScaleRatio = allowEnableMultiScaleRatio;\n}\n\nvoid DisplayModel::setRefreshRateEnable(bool isEnable)\n{\n    m_RefreshRateEnable = isEnable;\n}\n\nvoid DisplayModel::setmaxBacklightBrightness(const uint value)\n{\n    if (m_maxBacklightBrightness != value && value < 100) {\n        m_maxBacklightBrightness = value;\n        Q_EMIT maxBacklightBrightnessChanged(value);\n    }\n}\n\nvoid DisplayModel::setResolutionRefreshEnable(const bool enable)\n{\n    if (m_resolutionRefreshEnable != enable) {\n        m_resolutionRefreshEnable = enable;\n        Q_EMIT resolutionRefreshEnableChanged(m_resolutionRefreshEnable);\n    }\n}\n\nvoid DisplayModel::setBrightnessEnable(const bool enable)\n{\n    if (m_brightnessEnable != enable) {\n        m_brightnessEnable = enable;\n        Q_EMIT brightnessEnableChanged(m_brightnessEnable);\n    }\n}\n\nvoid DisplayModel::checkAllSupportFillModes()\n{\n    for (auto m : monitorList()) {\n        if (m->availableFillModes().isEmpty()) {\n            m_allSupportFillModes = false;\n            return;\n        }\n    }\n    m_allSupportFillModes = true;\n}\n\nvoid DisplayModel::setmodeChanging(bool changing)\n{\n    m_monitorModeChanging = changing;\n}\n"
  },
  {
    "path": "src/plugin-display/operation/private/displaymodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DISPLAYMODEL_H\n#define DISPLAYMODEL_H\n\n#include \"math.h\"\n\n#include <QObject>\n#include <QDebug>\n\n#include \"monitor.h\"\n#include \"types/brightnessmap.h\"\n#include \"types/touchscreeninfolist_v2.h\"\n#include \"types/touchscreenmap.h\"\n\n#define CUSTOM_MODE 0\n#define MERGE_MODE 1\n#define EXTEND_MODE 2\n#define SINGLE_MODE 3\n\nnamespace dccV25 {\n\nclass DisplayWorker;\nclass DisplayModel : public QObject\n{\n    Q_OBJECT\n\npublic:\n    friend class DisplayWorker;\n\npublic:\n    explicit DisplayModel(QObject *parent = 0);\n\n    double monitorScale(Monitor *moni);\n    inline int screenHeight() const { return m_screenHeight; }\n    inline int screenWidth() const { return m_screenWidth; }\n    inline int displayMode() const { return m_mode; }\n    inline double uiScale() const { return m_uiScale; }\n    inline double minimumBrightnessScale() const { return m_minimumBrightnessScale; }\n    inline const QString primary() const { return m_primary; }\n    inline const QList<Monitor *> monitorList() const { return m_monitors; }\n    Monitor *primaryMonitor() const;\n    inline const QString defaultFillMode() { return \"None\"; }\n\n    bool isNightMode() const;\n    void setIsNightMode(bool isNightMode);\n\n    bool redshiftIsValid() const;\n\n    inline bool colorTemperatureEnabled() const { return m_colorTemperatureEnabled; }\n    void setColorTemperatureEnabled(bool enabled);\n\n    inline int adjustCCTMode() const { return m_adjustCCTMode; }\n    void setAdjustCCTmode(int mode);\n\n    inline int colorTemperature() const { return m_colorTemperature; }\n    void setColorTemperature(int value);\n\n    inline QString customColorTempTimePeriod() const { return m_customColorTempTimePeriod; }\n    void setCustomColorTempTimePeriod(const QString &timePeriod);\n\n    inline bool autoLightAdjustIsValid() const { return m_AutoLightAdjustIsValid; }\n\n    inline bool isAudtoLightAdjust() const { return m_isAutoLightAdjust; }\n    void setAutoLightAdjust(bool);\n\n    inline BrightnessMap brightnessMap() const { return m_brightnessMap; }\n    void setBrightnessMap(const BrightnessMap &brightnessMap);\n\n    inline TouchscreenInfoList_V2 touchscreenList() const { return m_touchscreenList; }\n    void setTouchscreenList(const TouchscreenInfoList_V2 &touchscreenList);\n\n    inline TouchscreenMap touchMap() const { return m_touchMap; }\n    void setTouchMap(const TouchscreenMap &touchMap);\n\n    inline bool allowEnableMultiScaleRatio() { return m_allowEnableMultiScaleRatio; }\n    void setAllowEnableMultiScaleRatio(bool allowEnableMultiScaleRatio);\n\n    inline bool isRefreshRateEnable() const { return m_RefreshRateEnable; }\n    void setRefreshRateEnable(bool isEnable);\n\n    inline uint maxBacklightBrightness() const { return m_maxBacklightBrightness; }\n\n    inline bool resolutionRefreshEnable() const { return m_resolutionRefreshEnable; }\n    void setResolutionRefreshEnable(const bool enable);\n\n    inline bool brightnessEnable() const { return m_brightnessEnable; }\n    void setBrightnessEnable(const bool enable);\n\n    inline bool allSupportFillModes() const { return m_allSupportFillModes; }\n    void checkAllSupportFillModes();\n\n    inline bool monitorModeChanging() const { return m_monitorModeChanging; }\n    void setmodeChanging(bool changing);\n\nQ_SIGNALS:\n    void screenHeightChanged(const int h) const;\n    void screenWidthChanged(const int w) const;\n    void displayModeChanged(const int mode) const;\n    void uiScaleChanged(const double scale) const;\n    void minimumBrightnessScaleChanged(const double) const;\n    void primaryScreenChanged(const QString &primary) const;\n    void monitorListChanged() const;\n    void machinesListChanged() const;\n    void nightModeChanged(const bool nightmode) const;\n    void redshiftVaildChanged(const bool isvalid) const;\n    void autoLightAdjustSettingChanged(bool setting) const;\n    void autoLightAdjustVaildChanged(bool isvalid) const;\n    void touchscreenListChanged() const;\n    void touchscreenMapChanged() const;\n    void maxBacklightBrightnessChanged(uint value);\n    void adjustCCTmodeChanged(int mode);\n    void colorTemperatureEnabledChanged(const bool enabled);\n    void colorTemperatureChanged(int value);\n    void resolutionRefreshEnableChanged(const bool enable);\n    void brightnessEnableChanged(const bool enable);\n    void deviceSharingSwitchChanged(const bool enable);\n    void sharedClipboardChanged(bool on) const;\n    void sharedDevicesChanged(bool on) const;\n    void filesStoragePathChanged(const QString& path) const;\n    void customColorTempTimePeriodChanged(const QString& timePeriod);\n\nprivate Q_SLOTS:\n    void setScreenHeight(const int h);\n    void setScreenWidth(const int w);\n    void setDisplayMode(const int mode);\n    void setUIScale(const double scale);\n    void setMinimumBrightnessScale(const double scale);\n    void setPrimary(const QString &primary);\n    void setRedshiftIsValid(bool redshiftIsValid);\n    void monitorAdded(Monitor *mon);\n    void monitorRemoved(Monitor *mon);\n    void setAutoLightAdjustIsValid(bool);\n    void setmaxBacklightBrightness(const uint value);\n\nprivate:\n    int m_screenHeight;\n    int m_screenWidth;\n    int m_mode {-1};\n    int m_colorTemperature {0}; //当前色温对应的颜色值\n    int m_adjustCCTMode {0}; //当前自动调节色温模式   0  不开启      1  自动调节    2 手动调节\n    double m_uiScale;\n    double m_minimumBrightnessScale;\n    QString m_primary;\n    QString m_customColorTempTimePeriod;\n    QList<Monitor *> m_monitors;\n    bool m_colorTemperatureEnabled;\n    bool m_redshiftIsValid;\n    bool m_RefreshRateEnable {false};\n    bool m_isAutoLightAdjust {false};\n    bool m_AutoLightAdjustIsValid {false};\n    bool m_allowEnableMultiScaleRatio;\n    bool m_resolutionRefreshEnable;\n    bool m_brightnessEnable;\n    BrightnessMap m_brightnessMap;\n    TouchscreenInfoList_V2 m_touchscreenList;\n    TouchscreenMap m_touchMap;\n    uint m_maxBacklightBrightness {0};\n    bool m_allSupportFillModes;\n    bool m_monitorModeChanging; // 配置修改中,仅控制中心修改时才处理自动拼接\n};\n}\n\n#endif // DISPLAYMODEL_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/displaymodule_p.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DISPLAYMODULE_P_H\n#define DISPLAYMODULE_P_H\n\n#include <QObject>\n\nnamespace dccV25 {\nclass DisplayWorker;\nclass DisplayModel;\nclass DisplayModule;\nclass DccScreen;\nclass ScreenData;\n\nclass DisplayModulePrivate\n{\n\npublic:\n    explicit DisplayModulePrivate(DisplayModule *parent);\n\n    virtual ~DisplayModulePrivate() { }\n\n    void init();\n    void updateVirtualScreens();\n    void updateMonitorList();\n    void updatePrimary();\n    void updateDisplayMode();\n    void updateMaxGlobalScale();\n    DccScreen *primary() const;\n    QString displayMode() const;\n    void setScreenPosition(QList<ScreenData *> screensData);\n\npublic:\n    DisplayModule *q_ptr;\n    DisplayModel *m_model;\n    DisplayWorker *m_worker;\n    QList<DccScreen *> m_screens;\n    QList<DccScreen *> m_virtualScreens;\n    DccScreen *m_primary;\n    QString m_displayMode;\n    qreal m_maxGlobalScale;\n\n    Q_DECLARE_PUBLIC(DisplayModule)\n};\n} // namespace dccV25\n#endif // DISPLAYMODULE_P_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/displayworker.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"displayworker.h\"\n#include \"displaymodel.h\"\n\n#include <dconfig.h>\n\n#include <QDebug>\n#include <QDateTime>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QLoggingCategory>\n\n#include <Registry.h>\n#include <WayQtUtils.h>\n#include <OutputManager.h>\n#include <Output.h>\n#include <TreeLandOutputManager.h>\n\nQ_LOGGING_CATEGORY(DdcDisplayWorker, \"dcc-display-worker\")\n\n\nconst QString DisplayInterface(\"org.deepin.dde.Display1\");\n\nQ_DECLARE_METATYPE(QList<QDBusObjectPath>)\nusing namespace dccV25;\n\nDisplayWorker::DisplayWorker(DisplayModel *model, QObject *parent, bool isSync)\n    : QObject(parent)\n    , m_model(model)\n    , m_displayInter(new DisplayDBusProxy(this))\n    , m_updateScale(false)\n    , m_timer(new QTimer(this))\n    , m_dconfig(DTK_CORE_NAMESPACE::DConfig::create(\"org.deepin.dde.control-center\", QStringLiteral(\"org.deepin.dde.control-center.display\"), QString(), this))\n{\n    // NOTE: what will it be used?\n    Q_UNUSED(isSync)\n    m_timer->setSingleShot(true);\n    m_timer->setInterval(200);\n\n    if (WQt::Utils::isTreeland()) {\n        m_reg = new WQt::Registry(WQt::Wayland::display(), this);\n        connect(m_reg, &WQt::Registry::interfaceRegistered, this, &DisplayWorker::onInterfaceRegistered);\n        m_reg->setup();\n    } else {\n        connect(m_displayInter, &DisplayDBusProxy::WallpaperURlsChanged, this, &DisplayWorker::updateWallpaper);\n        connect(m_displayInter, &DisplayDBusProxy::WorkspaceSwitched, this, &DisplayWorker::updateWallpaper);\n        connect(m_displayInter, &DisplayDBusProxy::MonitorsChanged, this, &DisplayWorker::onMonitorListChanged);\n        connect(m_displayInter, &DisplayDBusProxy::BrightnessChanged, this, &DisplayWorker::onMonitorsBrightnessChanged);\n        connect(m_displayInter, &DisplayDBusProxy::BrightnessChanged, model, &DisplayModel::setBrightnessMap);\n        connect(m_displayInter, &DisplayDBusProxy::TouchscreensV2Changed, model, &DisplayModel::setTouchscreenList);\n        connect(m_displayInter, &DisplayDBusProxy::TouchMapChanged, model, &DisplayModel::setTouchMap);\n        connect(m_displayInter, &DisplayDBusProxy::ScreenHeightChanged, model, &DisplayModel::setScreenHeight);\n        connect(m_displayInter, &DisplayDBusProxy::ScreenWidthChanged, model, &DisplayModel::setScreenWidth);\n        connect(m_displayInter, &DisplayDBusProxy::DisplayModeChanged, model, &DisplayModel::setDisplayMode);\n        connect(m_displayInter, &DisplayDBusProxy::MaxBacklightBrightnessChanged, model, &DisplayModel::setmaxBacklightBrightness);\n        connect(m_displayInter, &DisplayDBusProxy::ColorTemperatureEnabledChanged, model, &DisplayModel::setColorTemperatureEnabled);\n        connect(m_displayInter, &DisplayDBusProxy::ColorTemperatureModeChanged, model, &DisplayModel::setAdjustCCTmode);\n        connect(m_displayInter, &DisplayDBusProxy::ColorTemperatureManualChanged, model, &DisplayModel::setColorTemperature);\n        connect(m_displayInter, &DisplayDBusProxy::CustomColorTempTimePeriodChanged, model, &DisplayModel::setCustomColorTempTimePeriod);\n        connect(m_displayInter, static_cast<void (DisplayDBusProxy::*)(const QString &) const>(&DisplayDBusProxy::PrimaryChanged), model, &DisplayModel::setPrimary);\n\n        //display redSfit/autoLight\n        connect(m_displayInter, &DisplayDBusProxy::HasAmbientLightSensorChanged, m_model, &DisplayModel::autoLightAdjustVaildChanged);\n        connect(m_timer, &QTimer::timeout, this, [this] {\n            m_displayInter->ApplyChanges().waitForFinished();\n            m_displayInter->Save().waitForFinished();\n        });\n    }\n}\n\nDisplayWorker::~DisplayWorker()\n{\n    qDeleteAll(m_monitors.keys());\n    qDeleteAll(m_monitors.values());\n}\n\nvoid DisplayWorker::active()\n{\n    if (!WQt::Utils::isTreeland()) {\n        //    m_model->setAllowEnableMultiScaleRatio(\n        //        valueByQSettings<bool>(DCC_CONFIG_FILES,\n        //                               \"Display\",\n        //                               \"AllowEnableMultiScaleRatio\",\n        //                               false));\n\n        QDBusPendingCallWatcher *scalewatcher = new QDBusPendingCallWatcher(m_displayInter->GetScaleFactor());\n        connect(scalewatcher, &QDBusPendingCallWatcher::finished, this, &DisplayWorker::onGetScaleFinished);\n\n        QDBusPendingCallWatcher *screenscaleswatcher = new QDBusPendingCallWatcher(m_displayInter->GetScreenScaleFactors());\n        connect(screenscaleswatcher, &QDBusPendingCallWatcher::finished, this, &DisplayWorker::onGetScreenScalesFinished);\n\n        onMonitorsBrightnessChanged(m_displayInter->brightness());\n        m_model->setBrightnessMap(m_displayInter->brightness());\n        onMonitorListChanged(m_displayInter->monitors());\n\n        m_model->setDisplayMode(m_displayInter->displayMode());\n        m_model->setTouchscreenList(m_displayInter->touchscreensV2());\n        m_model->setTouchMap(m_displayInter->touchMap());\n        m_model->setPrimary(m_displayInter->primary());\n        m_model->setScreenHeight(m_displayInter->screenHeight());\n        m_model->setScreenWidth(m_displayInter->screenWidth());\n        m_model->setAdjustCCTmode(m_displayInter->colorTemperatureMode());\n        m_model->setColorTemperatureEnabled(m_displayInter->colorTemperatureEnabled());\n        m_model->setColorTemperature(m_displayInter->colorTemperatureManual());\n        m_model->setCustomColorTempTimePeriod(m_displayInter->customColorTempTimePeriod());\n        m_model->setmaxBacklightBrightness(m_displayInter->maxBacklightBrightness());\n        m_model->setAutoLightAdjustIsValid(m_displayInter->hasAmbientLightSensor());\n\n        bool isRedshiftValid = true;\n        QDBusReply<bool> reply = m_displayInter->SupportSetColorTemperatureSync();\n        if (QDBusError::NoError == reply.error().type())\n            isRedshiftValid = reply.value();\n        else\n            qCWarning(DdcDisplayWorker) << \"Call SupportSetColorTemperature method failed: \" << reply.error().message();\n        m_model->setRedshiftIsValid(isRedshiftValid);\n        QVariant minBrightnessValue = 0.1f;\n        minBrightnessValue = m_dconfig->value(\"minBrightnessValue\", minBrightnessValue);\n        m_model->setMinimumBrightnessScale(minBrightnessValue.toDouble());\n        //    m_model->setResolutionRefreshEnable(m_dccSettings->get(GSETTINGS_SHOW_MUTILSCREEN).toBool());\n        //    m_model->setBrightnessEnable(m_dccSettings->get(GSETTINGS_BRIGHTNESS_ENABLE).toBool());\n    }\n}\n\nvoid DisplayWorker::saveChanges()\n{\n    clearBackup();\n    m_displayInter->Save().waitForFinished();\n    if (m_updateScale)\n        setUiScale(m_currentScale);\n    m_updateScale = false;\n}\n\nvoid DisplayWorker::switchMode(const int mode, const QString &name)\n{\n    if (WQt::Utils::isTreeland()) {\n        auto *opCfg = m_reg->outputManager()->createConfiguration();\n        m_model->setDisplayMode(mode);\n        int posX = 0;\n\n        for (auto it(m_wl_monitors.cbegin()); it != m_wl_monitors.cend(); ++it) {\n            switch (mode) {\n            case MERGE_MODE: {\n                auto *cfgHead = opCfg->enableHead(it.value());\n                cfgHead->setPosition({0, 0});\n                break;\n            }\n            case EXTEND_MODE: {\n                auto *cfgHead = opCfg->enableHead(it.value());\n                cfgHead->setPosition({posX, 0});\n                posX += it.key()->w();\n                break;\n            }\n            case SINGLE_MODE: {\n                if (it.key()->name() == name) {\n                    auto *cfgHead = opCfg->enableHead(it.value());\n                    WQt::OutputMode *preferMode = nullptr;\n                    for (auto *mode: it.value()->property(WQt::OutputHead::Modes).value<QList<WQt::OutputMode *>>()) {\n                        preferMode = mode;\n                        if (mode->isPreferred())\n                            break;\n                    }\n                    cfgHead->setMode(preferMode);\n                    cfgHead->setPosition({0, 0});\n                } else {\n                    opCfg->disableHead(it.value());\n                }\n                break;\n            }\n            default:\n                break;\n            }\n        }\n\n        opCfg->apply();\n    } else {\n        m_displayInter->SwitchMode(static_cast<uchar>(mode), name).waitForFinished();\n    }\n}\n\nvoid DisplayWorker::onMonitorListChanged(const QList<QDBusObjectPath> &mons)\n{\n    QList<QString> ops;\n    for (const auto *mon : m_monitors.keys())\n        ops << mon->path();\n\n    qCDebug(DdcDisplayWorker) << mons.size();\n    QList<QString> pathList;\n    for (const auto &op : mons) {\n        const QString path = op.path();\n        pathList << path;\n        if (!ops.contains(path))\n            monitorAdded(path);\n    }\n\n    for (const auto &op : ops)\n        if (!pathList.contains(op))\n            monitorRemoved(op);\n}\n\nvoid DisplayWorker::onWlMonitorListChanged()\n{\n    // Only check new output here, listen OutputHead::finished for remove\n    auto heads = m_reg->outputManager()->heads();\n\n    qCDebug(DdcDisplayWorker) << heads.size();\n    for (auto *head : heads) {\n        bool isNew = true;\n        for (const auto *oldHead : m_wl_monitors.values())\n            if (head == oldHead) {\n                isNew = false;\n                break;\n            }\n        if (isNew)\n            wlMonitorAdded(head);\n    }\n    for (auto output : m_reg->waylandOutputs()) {\n        wlOutputAdded(output);\n    }\n    connect(m_reg, &WQt::Registry::outputAdded, this, &DisplayWorker::wlOutputAdded);\n    connect(m_reg, &WQt::Registry::outputRemoved, this, &DisplayWorker::wlOutputRemoved);\n}\n\nvoid DisplayWorker::updateWallpaper()\n{\n    for (auto it(m_monitors.cbegin()); it != m_monitors.cend(); ++it) {\n        updateMonitorWallpaper(it.key());\n    }\n}\n\nvoid DisplayWorker::updateMonitorWallpaper(Monitor *mon)\n{\n    mon->setWallpaper(m_displayInter->GetCurrentWorkspaceBackgroundForMonitor(mon->name()));\n}\n\nvoid DisplayWorker::onBrightnessChanged(const treeland_output_color_control_v1 *colorControl, double brightness)\n{\n    brightness = qBound(0.0, brightness / 100.0, 1.0);\n    for (auto it(m_control_monitors.cbegin()); it != m_control_monitors.cend(); ++it) {\n        if (it.value() == colorControl) {\n            it.key()->setBrightness(brightness);\n            return;\n        }\n    }\n}\n\nvoid DisplayWorker::onMonitorsBrightnessChanged(const BrightnessMap &brightness)\n{\n    if (brightness.isEmpty())\n        return;\n\n    for (auto it = m_monitors.begin(); it != m_monitors.end(); ++it) {\n        it.key()->setBrightness(brightness[it.key()->name()]);\n    }\n}\n\nvoid DisplayWorker::onGetScaleFinished(QDBusPendingCallWatcher *w)\n{\n    QDBusPendingReply<double> reply = w->reply();\n\n    m_model->setUIScale(reply);\n\n    w->deleteLater();\n}\n\nvoid DisplayWorker::onGetScreenScalesFinished(QDBusPendingCallWatcher *w)\n{\n    QDBusPendingReply<QMap<QString, double>> reply = w->reply();\n    QMap<QString, double> rmap = reply;\n\n    for (auto &m : m_model->monitorList()) {\n        if (rmap.find(m->name()) != rmap.end()) {\n            m->setScale(rmap.value(m->name()) < 1.0\n                            ? m_model->uiScale()\n                            : rmap.value(m->name()));\n        }\n    }\n\n    w->deleteLater();\n}\n\nvoid DisplayWorker::onInterfaceRegistered(WQt::Registry::Interface interface)\n{\n    switch (interface) {\n    case WQt::Registry::OutputManagerInterface: {\n        auto *opMgr = m_reg->outputManager();\n        if (!opMgr) {\n            qCFatal(DdcDisplayWorker) << \"Unable to start the output manager\";\n        }\n        connect(opMgr, &WQt::OutputManager::done, this, &DisplayWorker::onWlOutputManagerDone);\n    } break;\n    case WQt::Registry::TreeLandOutputManagerInterface: {\n        connect(m_reg->treeLandOutputManager(), &WQt::TreeLandOutputManager::brightnessChanged, this, &DisplayWorker::onBrightnessChanged);\n    } break;\n    default:\n        break;\n    }\n}\n\nvoid DisplayWorker::onWlOutputManagerDone()\n{\n    onWlMonitorListChanged();\n\n    m_model->setDisplayMode(EXTEND_MODE); // TODO: use dconfig\n    auto *treelandOpMgr = m_reg->treeLandOutputManager();\n    m_model->setPrimary(treelandOpMgr->mPrimaryOutput);\n    connect(treelandOpMgr, &WQt::TreeLandOutputManager::primaryOutputChanged, this, [this](){\n        m_model->setPrimary(m_reg->treeLandOutputManager()->mPrimaryOutput);\n    });\n\n    m_model->setResolutionRefreshEnable(true);\n    m_model->setBrightnessEnable(false); // TODO: support gamma effects\n}\n\n#ifndef DCC_DISABLE_ROTATE\n\nconstexpr static int wlRotate2dcc(int wlRotate) {\n    switch (wlRotate) {\n    case WL_OUTPUT_TRANSFORM_NORMAL:\n        return 1;\n    case WL_OUTPUT_TRANSFORM_90:\n        return 2;\n    case WL_OUTPUT_TRANSFORM_180:\n        return 4;\n    case WL_OUTPUT_TRANSFORM_270:\n        return 8;\n    default:\n        qWarning(\"dcc dont support FLIPPED\");\n        return 0;\n    }\n}\n\nconstexpr static int dccRotate2wl(int dccRotate) {\n    switch (dccRotate) {\n    case 1:\n        return WL_OUTPUT_TRANSFORM_NORMAL;\n    case 2:\n        return WL_OUTPUT_TRANSFORM_90;\n    case 4:\n        return WL_OUTPUT_TRANSFORM_180;\n    case 8:\n        return WL_OUTPUT_TRANSFORM_270;\n    default:\n        qWarning(\"unkone dccRotate, feedback to normal\");\n        return WL_OUTPUT_TRANSFORM_NORMAL;\n    }\n}\n\nvoid DisplayWorker::setMonitorRotate(Monitor *mon, const quint16 rotate)\n{\n    m_model->setmodeChanging(true);\n    if (WQt::Utils::isTreeland()) {\n        auto *opCfg = m_reg->outputManager()->createConfiguration();\n        for (auto it(m_wl_monitors.cbegin()); it != m_wl_monitors.cend(); ++it) {\n            if (!it.key()->enable()) {\n                opCfg->disableHead(it.value());\n                continue;\n            }\n            auto *cfgHead = opCfg->enableHead(it.value());\n            if (m_model->displayMode() == MERGE_MODE || it.key() == mon) {\n                cfgHead->setTransform(dccRotate2wl(rotate));\n            }\n        }\n        opCfg->apply();\n    } else {\n        if (m_model->displayMode() == MERGE_MODE) {\n            for (auto *m : m_monitors) {\n                m->SetRotation(rotate).waitForFinished();\n            }\n        } else {\n            MonitorDBusProxy *inter = m_monitors.value(mon);\n            inter->SetRotation(rotate).waitForFinished();\n        }\n    }\n}\n#endif\n\nvoid DisplayWorker::setPrimary(const QString &name)\n{\n    if (WQt::Utils::isTreeland()) {\n        m_reg->treeLandOutputManager()->setPrimaryOutput(name.toStdString().c_str());;\n    } else {\n        m_displayInter->SetPrimary(name);\n    }\n}\n\nvoid DisplayWorker::setMonitorEnable(Monitor *monitor, const bool enable)\n{\n    if (WQt::Utils::isTreeland()) {\n        auto *opCfg = m_reg->outputManager()->createConfiguration();\n\n        for (auto it(m_wl_monitors.cbegin()); it != m_wl_monitors.cend(); ++it) {\n            if (it.key() == monitor) {\n                if (enable) {\n                    auto *cfgHead = opCfg->enableHead(it.value());\n                    WQt::OutputMode *preferMode = nullptr;\n                    for (auto *mode: it.value()->property(WQt::OutputHead::Modes).value<QList<WQt::OutputMode *>>()) {\n                        preferMode = mode;\n                        if (mode->isPreferred())\n                            break;\n                    }\n                    cfgHead->setMode(preferMode);\n                } else {\n                    opCfg->disableHead(it.value());\n                }\n            } else {\n                if (!it.key()->enable()) {\n                    opCfg->disableHead(it.value());\n                } else {\n                    opCfg->enableHead(it.value());\n                }\n            }\n        }\n        opCfg->apply();\n    } else {\n        MonitorDBusProxy *inter = m_monitors.value(monitor);\n        inter->Enable(enable).waitForFinished();\n        applyChanges();\n    }\n}\n\nvoid DisplayWorker::applyChanges()\n{\n    if (!m_timer->isActive()) {\n        m_timer->start();\n    }\n}\n\nvoid DisplayWorker::setColorTemperatureEnabled(bool enabled)\n{\n    m_displayInter->setColorTemperatureEnabled(enabled);\n}\n\nvoid DisplayWorker::setColorTemperature(int value)\n{\n    if (WQt::Utils::isTreeland()) {\n#if GAMMA_SUPPORT\n        auto *gammaEffect = m_wl_gammaEffects->value(mon);\n        auto *gammaConfig = m_wl_gammaConfig->value(mon);\n        gammaConfig->temperature = value;\n        gammaEffect->setConfiguration(*gammaConfig);\n#endif\n    } else {\n        m_displayInter->SetColorTemperature(value).waitForFinished();\n    }\n}\n\nvoid DisplayWorker::SetMethodAdjustCCT(int mode)\n{\n    m_displayInter->SetMethodAdjustCCT(mode);\n}\n\nvoid DisplayWorker::setCustomColorTempTimePeriod(const QString &timePeriod)\n{\n    m_displayInter->SetCustomColorTempTimePeriod(timePeriod);\n}\n\nvoid DisplayWorker::setCurrentFillMode(Monitor *mon,const QString fillMode)\n{\n    if (WQt::Utils::isTreeland()) {\n        // TODO: support treeland\n    } else {\n        MonitorDBusProxy *inter = m_monitors.value(mon);\n        Q_ASSERT(inter);\n        inter->setCurrentFillMode(fillMode);\n    }\n}\n\nvoid DisplayWorker::backupConfig()\n{\n    m_displayConfig = m_displayInter->GetConfig();\n}\n\nvoid DisplayWorker::clearBackup()\n{\n    m_displayConfig.clear();\n}\n\nvoid DisplayWorker::resetBackup()\n{\n    //TODO: can't use in treeland\n    if (!m_displayConfig.isEmpty()) {\n\n        QJsonDocument doc = QJsonDocument::fromJson(m_displayConfig.toLatin1());\n        QJsonObject jsonObj = doc.object();\n\n        QDateTime time = QDateTime::currentDateTime();\n        int offset = time.offsetFromUtc()/60;\n        bool negative = offset <0;\n        if (negative)\n            offset = -offset;\n\n        jsonObj.insert(\"UpdateAt\", QString(\"%1%2%3:%4\").arg(time.toString(\"yyyy-MM-ddThh:mm:ss.zzz000000\")).arg(negative ? '-' : '+').arg(offset / 60, 2, 10, QChar('0')).arg(offset % 60, 2, 10, QChar('0')));\n        doc.setObject(jsonObj);\n\n        m_displayInter->SetConfig(doc.toJson(QJsonDocument::Compact));\n        clearBackup();\n    }\n}\n\nvoid DisplayWorker::setMonitorResolution(Monitor *mon, const int mode)\n{\n    m_model->setmodeChanging(true);\n    if (WQt::Utils::isTreeland()) {\n        auto *opCfg = m_reg->outputManager()->createConfiguration();\n        auto res = mon->getResolutionById(mode);\n        if (!res.has_value())\n            return;\n\n        for (auto it(m_wl_monitors.cbegin()); it != m_wl_monitors.cend(); ++it) {\n            if (!it.key()->enable()) {\n                opCfg->disableHead(it.value());\n                continue;\n            }\n            auto *cfgHead = opCfg->enableHead(it.value());\n            if (it.key() == mon) {\n                for (auto *mode: it.value()->property(WQt::OutputHead::Modes).value<QList<WQt::OutputMode *>>()) {\n                    if (mode->size().width() == res.value().width()\n                        && mode->size().height() == res.value().height()\n                        && qFuzzyCompare(mode->refreshRate()*0.001, res.value().rate())) {\n                        cfgHead->setMode(mode);\n                        break;\n                    }\n                }\n            }\n        }\n        opCfg->apply();\n    } else {\n        MonitorDBusProxy *inter = m_monitors.value(mon);\n        if (inter)\n            inter->SetMode(static_cast<uint>(mode)).waitForFinished();\n    }\n}\n\nvoid DisplayWorker::setMonitorBrightness(Monitor *mon, const double brightness)\n{\n    if (WQt::Utils::isTreeland()) {\n#if GAMMA_SUPPORT\n        auto *gammaEffect = m_wl_gammaEffects->value(mon);\n        auto *gammaConfig = m_wl_gammaConfig->value(mon);\n        gammaConfig->brightness = brightness;\n        gammaEffect->setConfiguration(*gammaConfig);\n#else\n        for (auto it(m_control_monitors.cbegin()); it != m_control_monitors.cend(); ++it) {\n            if (it.key() == mon) {\n                m_reg->treeLandOutputManager()->setBrightness(it.value(), brightness * 100.0);\n                break;\n            }\n        }\n#endif\n    } else {\n        m_displayInter->SetAndSaveBrightness(mon->name(), std::max(brightness, m_model->minimumBrightnessScale())).waitForFinished();\n    }\n}\n\nvoid DisplayWorker::setMonitorPosition(QHash<Monitor *, QPair<int, int>> monitorPosition)\n{\n    if (WQt::Utils::isTreeland()) {\n        auto *opCfg = m_reg->outputManager()->createConfiguration();\n        for (auto it(monitorPosition.cbegin()); it != monitorPosition.cend(); ++it) {\n            auto *head = m_wl_monitors.value(it.key());\n            Q_ASSERT(head);\n            if (!it.key()->enable()) {\n                opCfg->disableHead(head);\n                continue;\n            }\n            auto *cfgHead = opCfg->enableHead(head);\n            cfgHead->setPosition({ it.value().first, it.value().second });\n        }\n        opCfg->apply();\n    } else {\n        for (auto it(monitorPosition.cbegin()); it != monitorPosition.cend(); ++it) {\n            MonitorDBusProxy *inter = m_monitors.value(it.key());\n            Q_ASSERT(inter);\n            inter->SetPosition(static_cast<short>(it.value().first), static_cast<short>(it.value().second)).waitForFinished();\n        }\n        applyChanges();\n    }\n}\n\nvoid DisplayWorker::setUiScale(const double value)\n{\n    qCDebug(DdcDisplayWorker) << \"set display scale:\" << value;\n    double rv = value;\n    if (rv < 0)\n        rv = m_model->uiScale();\n    for (auto &mm : m_model->monitorList()) {\n        mm->setScale(-1);\n    }\n\n    if (WQt::Utils::isTreeland()) {\n        auto *opCfg = m_reg->outputManager()->createConfiguration();\n        for (auto it(m_wl_monitors.cbegin()); it != m_wl_monitors.cend(); ++it) {\n            if (!it.key()->enable()) {\n                opCfg->disableHead(it.value());\n                continue;\n            }\n            auto *cfgHead = opCfg->enableHead(it.value());\n            cfgHead->setScale(rv);\n        }\n        opCfg->apply();\n        connect(opCfg, &WQt::OutputConfiguration::succeeded, this, [this, rv]() {\n            m_model->setUIScale(rv);\n        });\n    } else {\n        QDBusPendingCall call = m_displayInter->SetScaleFactor(rv);\n\n        QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n        watcher->waitForFinished();\n        if (!watcher->isError()) {\n            m_model->setUIScale(rv);\n        }\n        watcher->deleteLater();\n    }\n}\n\nvoid DisplayWorker::setIndividualScaling(Monitor *m, const double scaling)\n{\n    if (m && scaling >= 1.0) {\n        m->setScale(scaling);\n    } else {\n        return;\n    }\n\n    if (WQt::Utils::isTreeland()) {\n        auto *opCfg = m_reg->outputManager()->createConfiguration();\n        for (auto it(m_wl_monitors.cbegin()); it != m_wl_monitors.cend(); ++it) {\n            if (!it.key()->enable()) {\n                opCfg->disableHead(it.value());\n                continue;\n            }\n            auto *cfgHead = opCfg->enableHead(it.value());\n            if (it.key() == m) {\n                cfgHead->setScale(scaling);\n            }\n        }\n        opCfg->apply();\n    } else {\n        QMap<QString, double> scalemap;\n        for (Monitor *m : m_model->monitorList()) {\n            scalemap[m->name()] = m_model->monitorScale(m);\n        }\n        m_displayInter->SetScreenScaleFactors(scalemap);\n    }\n}\n\n\nvoid DisplayWorker::monitorAdded(const QString &path)\n{\n    MonitorDBusProxy *inter = new MonitorDBusProxy(path, this);\n    Monitor *mon = new Monitor(this);\n\n    connect(inter, &MonitorDBusProxy::XChanged, mon, &Monitor::setX);\n    connect(inter, &MonitorDBusProxy::YChanged, mon, &Monitor::setY);\n    connect(inter, &MonitorDBusProxy::WidthChanged, mon, &Monitor::setW);\n    connect(inter, &MonitorDBusProxy::HeightChanged, mon, &Monitor::setH);\n    connect(inter, &MonitorDBusProxy::MmWidthChanged, mon, &Monitor::setMmWidth);\n    connect(inter, &MonitorDBusProxy::MmHeightChanged, mon, &Monitor::setMmHeight);\n    connect(inter, &MonitorDBusProxy::RotationChanged, mon, &Monitor::setRotate);\n    connect(inter, &MonitorDBusProxy::NameChanged, mon, &Monitor::setName);\n    connect(inter, &MonitorDBusProxy::CurrentModeChanged, mon, &Monitor::setCurrentMode);\n    connect(inter, &MonitorDBusProxy::BestModeChanged, mon, &Monitor::setBestMode);\n    connect(inter, &MonitorDBusProxy::CurrentModeChanged, this, [=](Resolution value) {\n        if (value.id() == 0) {\n            return;\n        }\n        auto maxWScale = value.width() / 1024.0;\n        auto maxHScale = value.height() / 768.0;\n        auto maxScale = maxWScale < maxHScale ? maxWScale : maxHScale;\n        if ((m_model->uiScale() - maxScale) > 0.01 && maxScale >= 1.0) {\n            m_currentScale = 1.0;\n            for (int idx = 0; idx * 0.25 + 1.0 <= maxScale; ++idx) {\n                m_currentScale = idx * 0.25 + 1.0;\n            }\n            m_updateScale = true;\n        }\n    });\n\n    connect(inter, &MonitorDBusProxy::ModesChanged, mon, &Monitor::setModeList);\n    connect(inter, &MonitorDBusProxy::RotationsChanged, mon, &Monitor::setRotateList);\n    connect(inter, &MonitorDBusProxy::EnabledChanged, mon, &Monitor::setMonitorEnable);\n    connect(inter, &MonitorDBusProxy::CurrentRotateModeChanged, mon, &Monitor::setCurrentRotateMode);\n    connect(inter, &MonitorDBusProxy::AvailableFillModesChanged, mon, &Monitor::setAvailableFillModes);\n    connect(inter, &MonitorDBusProxy::CurrentFillModeChanged, mon, &Monitor::setCurrentFillMode);\n    connect(m_displayInter, static_cast<void (DisplayDBusProxy::*)(const QString &) const>(&DisplayDBusProxy::PrimaryChanged), mon, &Monitor::setPrimary);\n    connect(this, &DisplayWorker::requestUpdateModeList, this, [=] {\n        mon->setModeList(inter->modes());\n    });\n\n    // NOTE: DO NOT using async dbus call. because we need to have a unique name to distinguish each monitor\n    mon->setName(inter->name());\n    mon->setManufacturer(inter->manufacturer());\n    mon->setModel(inter->model());\n    QDBusReply<bool> reply = m_displayInter->CanSetBrightnessSync(inter->name());\n    mon->setCanBrightness(reply.value());\n    mon->setMonitorEnable(inter->enabled());\n    mon->setCurrentRotateMode(inter->currentRotateMode());\n    mon->setMonitorEnable(inter->enabled());\n    mon->setCurrentFillMode(inter->currentFillMode());\n    mon->setAvailableFillModes(inter->availableFillModes());\n    mon->setPath(path);\n    mon->setX(inter->x());\n    mon->setY(inter->y());\n    mon->setW(inter->width());\n    mon->setH(inter->height());\n    mon->setRotate(inter->rotation());\n    mon->setCurrentMode(inter->currentMode());\n    mon->setBestMode(inter->bestMode());\n    mon->setModeList(inter->modes());\n    if (m_model->isRefreshRateEnable() == false) {\n        for (auto resolutionModel : mon->modeList()) {\n            if (qFuzzyCompare(resolutionModel.rate(), 0.0) == false) {\n                m_model->setRefreshRateEnable(true);\n            }\n        }\n    }\n    mon->setRotateList(inter->rotations());\n    mon->setPrimary(m_displayInter->primary());\n    mon->setMmWidth(inter->mmWidth());\n    mon->setMmHeight(inter->mmHeight());\n\n    if (!m_model->brightnessMap().isEmpty()) {\n        mon->setBrightness(m_model->brightnessMap()[mon->name()]);\n    }\n    updateMonitorWallpaper(mon);\n    m_model->monitorAdded(mon);\n    m_monitors.insert(mon, inter);\n}\n\nvoid DisplayWorker::monitorRemoved(const QString &path)\n{\n    Monitor *monitor = nullptr;\n    for (auto it(m_monitors.cbegin()); it != m_monitors.cend(); ++it) {\n        if (it.key()->path() == path) {\n            monitor = it.key();\n            break;\n        }\n    }\n    if (!monitor)\n        return;\n\n    m_model->monitorRemoved(monitor);\n\n    m_monitors[monitor]->deleteLater();\n    m_monitors.remove(monitor);\n\n    monitor->deleteLater();\n}\n\nstatic inline Resolution createResolutionFromMode(WQt::OutputMode *mode) {\n    static int idcount = 0;\n    Resolution res;\n    res.m_id = ++idcount;\n    res.m_width = mode->size().width();\n    res.m_height = mode->size().height();\n    res.m_rate = mode->refreshRate() * 0.001;\n    return res;\n}\n\nvoid DisplayWorker::wlMonitorAdded(WQt::OutputHead *head)\n{\n    Monitor *mon = new Monitor(this);\n\n    connect(head, &WQt::OutputHead::finished, this, [head, this]() {\n        wlMonitorRemoved(head);\n    });\n\n    connect(head, &WQt::OutputHead::changed, mon, [mon, head](WQt::OutputHead::Property type) {\n        switch (type) {\n        case WQt::OutputHead::Name:\n            mon->setName(head->property(WQt::OutputHead::Name).toString());\n            break;\n        case WQt::OutputHead::PhysicalSize: {\n            auto physicalSize = head->property(WQt::OutputHead::PhysicalSize).toSize();\n            mon->setMmWidth(physicalSize.width());\n            mon->setMmHeight(physicalSize.height());\n            break;\n        }\n        case WQt::OutputHead::Modes: {\n            ResolutionList resolutionList;\n            for (auto *mode: head->property(WQt::OutputHead::Modes).value<QList<WQt::OutputMode *>>()) {\n                Resolution res = createResolutionFromMode(mode);\n                resolutionList << res;\n                if (mode->isPreferred()) {\n                    mon->setBestMode(res);\n                }\n            }\n            mon->setModeList(resolutionList);\n            break;\n        }\n        case WQt::OutputHead::CurrentMode: {\n            Resolution currentRes = createResolutionFromMode(head->property(WQt::OutputHead::CurrentMode).value<WQt::OutputMode *>());\n            mon->setCurrentMode(currentRes);\n            mon->setW(currentRes.width());\n            mon->setH(currentRes.height());\n            break;\n        }\n        case WQt::OutputHead::Position:\n            mon->setX(head->property(WQt::OutputHead::Position).toPoint().x());\n            mon->setY(head->property(WQt::OutputHead::Position).toPoint().y());\n            break;\n        case WQt::OutputHead::Transform:\n            mon->setRotate(wlRotate2dcc(head->property(WQt::OutputHead::Transform).toInt()));\n            break;\n        case WQt::OutputHead::Scale:\n            mon->setScale(head->property(WQt::OutputHead::Scale).toFloat());\n            break;\n        case WQt::OutputHead::Make:\n            mon->setManufacturer(head->property(WQt::OutputHead::Make).toString());\n            break;\n        case WQt::OutputHead::Model:\n            mon->setModel(head->property(WQt::OutputHead::Model).toString());\n            break;\n        case WQt::OutputHead::Enabled:\n        case WQt::OutputHead::Description:\n        case WQt::OutputHead::SerialNumber:\n            // Not handle\n        default:\n            break;\n        }\n    });\n\n    // TODO: where to get UI Scale for model\n    m_model->setUIScale(head->property(WQt::OutputHead::Scale).toFloat());\n    mon->setScale(head->property(WQt::OutputHead::Scale).toFloat());\n\n    // NOTE: we need to have a unique name to distinguish each monitor\n    mon->setName(head->property(WQt::OutputHead::Name).toString());\n    mon->setManufacturer(head->property(WQt::OutputHead::Make).toString());\n    mon->setModel(head->property(WQt::OutputHead::Model).toString());\n    mon->setMonitorEnable(head->property(WQt::OutputHead::Enabled).toBool());\n    mon->setCanBrightness(true);\n\n    mon->setX(head->property(WQt::OutputHead::Position).toPoint().x());\n    mon->setY(head->property(WQt::OutputHead::Position).toPoint().y());\n\n    mon->setRotateList({1, 2, 4, 8});\n    mon->setRotate(wlRotate2dcc(head->property(WQt::OutputHead::Transform).toInt()));\n\n    ResolutionList resolutionList;\n    for (auto *mode: head->property(WQt::OutputHead::Modes).value<QList<WQt::OutputMode *>>()) {\n        Resolution res = createResolutionFromMode(mode);\n        resolutionList << res;\n        if (mode->isPreferred()) {\n            mon->setBestMode(res);\n        }\n    }\n    mon->setModeList(resolutionList);\n\n    Resolution currentRes = createResolutionFromMode(head->property(WQt::OutputHead::CurrentMode).value<WQt::OutputMode *>());\n    mon->setCurrentMode(currentRes);\n    mon->setW(currentRes.width());\n    mon->setH(currentRes.height());\n\n    if (m_model->isRefreshRateEnable() == false) {\n        for (auto resolutionModel : mon->modeList()) {\n            if (qFuzzyCompare(resolutionModel.rate(), 0.0) == false) {\n                m_model->setRefreshRateEnable(true);\n            }\n        }\n    }\n    mon->setPrimary(m_reg->treeLandOutputManager()->mPrimaryOutput);\n\n    auto physicalSize = head->property(WQt::OutputHead::PhysicalSize).toSize();\n    mon->setMmWidth(physicalSize.width());\n    mon->setMmHeight(physicalSize.height());\n\n\n    m_model->monitorAdded(mon);\n    m_wl_monitors.insert(mon, head);\n\n#if GAMMA_SUPPORT\n    auto *gammaMgr = m_reg->gammaControlManager();\n    auto *gammaEffect = new DFL::GammaEffects(gammaMgr->getGammaControl(op->get()));\n    auto *effectsConfig = new DFL::GammaEffectsConfig;\n    effectsConfig->mode = 0x8EC945;\n    effectsConfig->gamma = 0.5;\n    effectsConfig->brightness = 0.3;\n    effectsConfig->minTemp = 4000;\n    effectsConfig->maxTemp = 6500;\n    effectsConfig->temperature = 6500;\n    effectsConfig->latitude = 0; // How to get\n    effectsConfig->longitude = 0;\n    effectsConfig->sunrise = QTime( 6, 30, 0 );\n    effectsConfig->sunset = QTime( 18, 30, 0 );\n    effectsConfig->whitepoint = { 0, 0, 0 };\n\n    // gammaEffect->setConfiguration(config);\n    m_wl_gammaEffects->insert(mon, gammaEffect);\n    m_wl_gammaConfig->insert(mon, effectsConfig);\n#endif\n}\n\nvoid DisplayWorker::wlMonitorRemoved(WQt::OutputHead *head)\n{\n    Monitor *monitor = nullptr;\n    for (auto it(m_wl_monitors.cbegin()); it != m_wl_monitors.cend(); ++it) {\n        if (it.value() == head) {\n            monitor = it.key();\n            break;\n        }\n    }\n    if (!monitor)\n        return;\n\n    m_model->monitorRemoved(monitor);\n\n#if GAMMA_SUPPORT\n    //delete m_wl_gammaConfig[monitor];\n    //delete m_wl_gammaEffects[monitor];\n#endif\n    head->deleteLater();\n\n    m_wl_monitors.remove(monitor);\n    if (m_control_monitors.contains(monitor)) {\n        m_reg->treeLandOutputManager()->destroyColorControl(m_control_monitors.value(monitor));\n        m_control_monitors.remove(monitor);\n    }\n\n    monitor->deleteLater();\n}\n\nvoid DisplayWorker::wlOutputAdded(WQt::Output *output)\n{\n    connect(output, &WQt::Output::done, this, &DisplayWorker::updateControl);\n}\n\nvoid DisplayWorker::wlOutputRemoved(WQt::Output *output)\n{\n    Q_UNUSED(output);\n    // TODO:\n}\n\nvoid DisplayWorker::updateControl()\n{\n    for (auto output : m_reg->waylandOutputs()) {\n        if (output->isReady()) {\n            for (auto it(m_wl_monitors.cbegin()); it != m_wl_monitors.cend(); ++it) {\n                if (it.key()->name() == output->name()) {\n                    if (!m_control_monitors.contains(it.key())) {\n                        auto control = m_reg->treeLandOutputManager()->getColorControl(output->get());\n                        m_control_monitors.insert(it.key(), control);\n                    }\n                    break;\n                }\n            }\n        }\n    }\n}\n\nvoid DisplayWorker::setAmbientLightAdjustBrightness(bool able)\n{\n    m_displayInter->setAmbientLightAdjustBrightness(able);\n}\n\nvoid DisplayWorker::setTouchScreenAssociation(const QString &monitor, const QString &touchscreenUUID)\n{\n    m_displayInter->AssociateTouch(monitor, touchscreenUUID);\n}\n\nvoid DisplayWorker::setMonitorResolutionBySize(Monitor *mon, const int width, const int height)\n{\n    m_model->setmodeChanging(true);\n    if (WQt::Utils::isTreeland()) {\n        auto *opCfg = m_reg->outputManager()->createConfiguration();\n        for (auto it(m_wl_monitors.cbegin()); it != m_wl_monitors.cend(); ++it) {\n            if (!it.key()->enable()) {\n                opCfg->disableHead(it.value());\n                continue;\n            }\n            auto *cfgHead = opCfg->enableHead(it.value());\n            if (it.key() == mon)\n                cfgHead->setCustomMode({width, height}, mon->currentMode().rate());\n        }\n        opCfg->apply();\n    } else {\n        MonitorDBusProxy *inter = m_monitors.value(mon);\n        Q_ASSERT(inter);\n\n        QDBusPendingCall call = inter->SetModeBySize(static_cast<ushort>(width), static_cast<ushort>(height));\n        QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n        connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n            if (call.isError()) {\n                qCDebug(DdcDisplayWorker) << call.error().message();\n            }\n            watcher->deleteLater();\n        });\n        watcher->waitForFinished();\n    }\n}\n"
  },
  {
    "path": "src/plugin-display/operation/private/displayworker.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DISPLAYWORKER_H\n#define DISPLAYWORKER_H\n\n#include \"Registry.h\"\n#include \"displaydbusproxy.h\"\n#include \"monitor.h\"\n\n#include <dtkcore_global.h>\n\n#include <QObject>\n#include <QTimer>\n#include <QProcess>\n\n#define GAMMA_SUPPORT false\n/*\n * Disable gamma support for treeland now\n * We can't keep GammaTable when dde-control-center close\n * We need write a daemon in future\n */\n\nDCORE_BEGIN_NAMESPACE\nclass DConfig;\nDCORE_END_NAMESPACE\n\nnamespace WQt {\n    class Output;\n    class Registry;\n    class OutputHead;\n}\nstruct treeland_output_color_control_v1;\n\nnamespace dccV25 {\nclass DisplayModel;\nclass DisplayWorker : public QObject\n{\n    Q_OBJECT\n\npublic:\n    explicit DisplayWorker(DisplayModel *model, QObject *parent = nullptr, bool isSync = false);\n    ~DisplayWorker() override;\n\n    void active();\n\npublic Q_SLOTS:\n    void saveChanges();\n    void switchMode(const int mode, const QString &name);\n    void setPrimary(const QString &name);\n    void setMonitorEnable(Monitor *monitor, const bool enable);\n    void applyChanges();\n    void setColorTemperatureEnabled(bool enabled);\n    void setColorTemperature(int value);\n    void SetMethodAdjustCCT(int mode);\n    void setCustomColorTempTimePeriod(const QString &timePeriod);\n#ifndef DCC_DISABLE_ROTATE\n    void setMonitorRotate(Monitor *mon, const quint16 rotate);\n#endif\n    void setMonitorResolution(Monitor *mon, const int mode);\n    void setMonitorBrightness(Monitor *mon, const double brightness);\n    void setMonitorPosition(QHash<Monitor *, QPair<int, int>> monitorPosition);\n    void setUiScale(const double value);\n    void setIndividualScaling(Monitor *m, const double scaling);\n    void setTouchScreenAssociation(const QString &monitor, const QString &touchscreenUUID);\n    void setMonitorResolutionBySize(Monitor *mon, const int width, const int height);\n    void setAmbientLightAdjustBrightness(bool);\n    void setCurrentFillMode(Monitor *mon, const QString fillMode);\n\n    void backupConfig();\n    void clearBackup();\n    void resetBackup();\n\nprivate Q_SLOTS:\n    void onMonitorListChanged(const QList<QDBusObjectPath> &mons);\n    void onMonitorsBrightnessChanged(const BrightnessMap &brightness);\n    void onGetScaleFinished(QDBusPendingCallWatcher *w);\n    void onGetScreenScalesFinished(QDBusPendingCallWatcher *w);\n\n    // for wlroots-based compositors\n    void onInterfaceRegistered(WQt::Registry::Interface interface);\n    void onWlOutputManagerDone();\n    void onWlMonitorListChanged();\n    void updateWallpaper();\n    void updateMonitorWallpaper(Monitor *mon);\n\n    void onBrightnessChanged(const treeland_output_color_control_v1 *colorControl, double brightness);\n\nprivate:\n    void monitorAdded(const QString &path);\n    void monitorRemoved(const QString &path);\n\n    // for wlroots-based compositors\n    void wlMonitorAdded(WQt::OutputHead *head);\n    void wlMonitorRemoved(WQt::OutputHead *head);\n\n    void wlOutputAdded(WQt::Output *output);\n    void wlOutputRemoved(WQt::Output *output);\n\n    void updateControl();\n\nQ_SIGNALS:\n    void requestUpdateModeList();\n\nprivate:\n    DisplayModel *m_model;\n    DisplayDBusProxy *m_displayInter;\n    QMap<Monitor *, MonitorDBusProxy *> m_monitors;\n\n    // for wlroots-based compositors\n    WQt::Registry *m_reg { nullptr };\n    QMap<Monitor *, WQt::OutputHead *> m_wl_monitors;\n    QMap<Monitor *, treeland_output_color_control_v1 *> m_control_monitors;\n#if GAMMA_SUPPORT\n    QMap<Monitor *, DFL::GammaEffects *> *m_wl_gammaEffects;\n    QMap<Monitor *, DFL::GammaEffectsConfig *> *m_wl_gammaConfig;\n#endif\n\n    double m_currentScale;\n    bool m_updateScale;\n    QTimer *m_timer;\n    DTK_CORE_NAMESPACE::DConfig *m_dconfig;\n    QString m_displayConfig;\n};\n}\n\n#endif // DISPLAYWORKER_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/monitor.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"monitor.h\"\n\n#include <math.h>\n#include <QGuiApplication>\n\n\nusing namespace dccV25;\nconst double DoubleZero = 0.000001;\n\nMonitor::Monitor(QObject *parent)\n    : QObject(parent)\n    , m_x(0)\n    , m_y(0)\n    , m_w(0)\n    , m_h(0)\n    , m_mmWidth(0)\n    , m_mmHeight(0)\n    , m_scale(-1.0)\n    , m_rotate(0)\n    , m_brightness(1.0)\n    , m_enable(false)\n    , m_canBrightness(true)\n    , m_screenSensingMode(RotateMode::Normal)\n{\n}\n\nvoid Monitor::setX(const int x)\n{\n    if (m_x == x)\n        return;\n\n    m_x = x;\n\n    Q_EMIT xChanged(m_x);\n    Q_EMIT geometryChanged();\n}\n\nvoid Monitor::setY(const int y)\n{\n    if (m_y == y)\n        return;\n\n    m_y = y;\n\n    Q_EMIT yChanged(m_y);\n    Q_EMIT geometryChanged();\n}\n\nvoid Monitor::setW(const int w)\n{\n    if (m_w == w)\n        return;\n\n    m_w = w;\n\n    Q_EMIT wChanged(m_w);\n}\n\nvoid Monitor::setH(const int h)\n{\n    if (m_h == h)\n        return;\n\n    m_h = h;\n\n    Q_EMIT hChanged(m_h);\n}\n\nvoid Monitor::setMmWidth(const uint mmWidth)\n{\n    m_mmWidth = mmWidth;\n}\n\nvoid Monitor::setMmHeight(const uint mmHeight)\n{\n    m_mmHeight = mmHeight;\n}\n\nvoid Monitor::setScale(const double scale)\n{\n    if (fabs(m_scale - scale) < DoubleZero)\n        return;\n\n    m_scale = scale;\n\n    Q_EMIT scaleChanged(m_scale);\n}\n\nvoid Monitor::setPrimary(const QString &primaryName)\n{\n    m_primary = primaryName;\n}\n\nvoid Monitor::setRotate(const quint16 rotate)\n{\n    if (m_rotate == rotate)\n        return;\n\n    m_rotate = rotate;\n\n    Q_EMIT rotateChanged(m_rotate);\n}\n\nvoid Monitor::setBrightness(const double brightness)\n{\n    if (fabs(m_brightness - brightness) < DoubleZero)\n        return;\n\n    m_brightness = brightness;\n\n    Q_EMIT brightnessChanged(m_brightness);\n}\n\nvoid Monitor::setName(const QString &name)\n{\n    m_name = name;\n}\n\nvoid Monitor::setManufacturer(const QString &manufacturer)\n{\n    m_manufacturer = manufacturer;\n}\n\nvoid Monitor::setModel(const QString &model)\n{\n    m_model = model;\n}\n\nvoid Monitor::setCanBrightness(bool canBrightness)\n{\n    m_canBrightness = canBrightness;\n}\n\nvoid Monitor::setPath(const QString &path)\n{\n    m_path = path;\n}\n\nvoid Monitor::setRotateList(const QList<quint16> &rotateList)\n{\n    m_rotateList = rotateList;\n}\n\nvoid Monitor::setCurrentMode(const Resolution &resolution)\n{\n    m_currentMode = resolution;\n\n    Q_EMIT currentModeChanged(m_currentMode);\n}\n\nbool compareResolution(const Resolution &first, const Resolution &second)\n{\n    long firstSum = long(first.width()) * first.height();\n    long secondSum = long(second.width()) * second.height();\n    if (firstSum > secondSum\n        || (firstSum == secondSum && (first.rate() - second.rate()) > 0.000001)) {\n        return true;\n    }\n\n    return false;\n}\n\nvoid Monitor::setModeList(const ResolutionList &modeList)\n{\n    m_modeList.clear();\n\n    QList<int> miniMode;\n    miniMode << 1024 << 768;\n\n    for (auto m : modeList) {\n        if (m.width() >= miniMode.at(0) && m.height() >= miniMode.at(1)) {\n            m_modeList.append(m);\n        }\n    }\n    std::sort(m_modeList.begin(), m_modeList.end(), compareResolution);\n\n    Q_EMIT modelListChanged(m_modeList);\n}\n\n\nvoid Monitor::setAvailableFillModes(const QStringList &fillModeList)\n{\n    if (m_fillModeList == fillModeList)\n        return;\n\n    m_fillModeList = fillModeList;\n    Q_EMIT availableFillModesChanged(m_fillModeList);\n}\n\nvoid Monitor::setCurrentFillMode(const QString currentFillMode)\n{\n    if (m_currentFillMode == currentFillMode)\n        return;\n\n    m_currentFillMode = currentFillMode;\n    Q_EMIT currentFillModeChanged(currentFillMode);\n}\n\nvoid Monitor::setMonitorEnable(bool enable)\n{\n    if (m_enable == enable)\n        return;\n\n    m_enable = enable;\n    Q_EMIT enableChanged(enable);\n}\n\nvoid Monitor::setBestMode(const Resolution &mode)\n{\n    if (m_bestMode == mode)\n        return;\n    m_bestMode = mode;\n\n    Q_EMIT bestModeChanged();\n}\n\nvoid Monitor::setCurrentRotateMode(const unsigned char mode)\n{\n    RotateMode screenDate = static_cast<RotateMode>(mode);\n    if (screenDate == RotateMode::Gravity)\n        Q_EMIT currentRotateModeChanged();\n\n    if (m_screenSensingMode != screenDate) {\n        m_screenSensingMode = screenDate;\n    }\n}\n\nbool Monitor::isSameResolution(const Resolution &r1, const Resolution &r2)\n{\n    return r1.width() == r2.width() && r1.height() == r2.height();\n}\n\nbool Monitor::isSameRatefresh(const Resolution &r1, const Resolution &r2)\n{\n    return fabs(r1.rate() - r2.rate()) < 0.000001;\n}\n\nbool Monitor::hasResolution(const Resolution &r)\n{\n    for (auto m : m_modeList) {\n        if (isSameResolution(m, r)) {\n            return true;\n        }\n    }\n\n    return false;\n}\n\nbool Monitor::hasResolutionAndRate(const Resolution &r)\n{\n    for (auto m : m_modeList) {\n        if (fabs(m.rate() - r.rate()) < 0.000001 && m.width() == r.width() && m.height() == r.height()) {\n            return true;\n        }\n    }\n\n    return false;\n}\n\nbool Monitor::hasRatefresh(const double r)\n{\n    for (auto m : m_modeList) {\n        if (fabs(m.rate() - r) < 0.000001) {\n            return true;\n        }\n    }\n\n    return false;\n}\n\nQScreen *Monitor::getQScreen()\n{\n    auto screens = QGuiApplication::screens();\n\n    for(auto screen : screens) {\n        //x11下，qt获取的名字和后端给的名字一致 wayland下，qt获取的序列号中包含名称\n        if(screen->name() == name() || screen->model().contains(name()))\n            return screen;\n    }\n\n    return nullptr;\n}\n\nstd::optional<Resolution> Monitor::getResolutionById(quint32 id)\n{\n    for (auto res : m_modeList) {\n        if (res.id() == id)\n            return res;\n    }\n    return std::nullopt;\n}\n\nvoid Monitor::setWallpaper(const QString &wallpaper)\n{\n    if (m_wallpaper == wallpaper)\n        return;\n    m_wallpaper = wallpaper;\n\n    Q_EMIT wallpaperChanged();\n}\n"
  },
  {
    "path": "src/plugin-display/operation/private/monitor.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef MONITOR_H\n#define MONITOR_H\n\n#include \"monitordbusproxy.h\"\n\n#include <QObject>\n#include <QScreen>\n\n#include <optional>\n\nnamespace dccV25 {\n\nclass DisplayWorker;\nclass TouchscreenWorker;\nclass Monitor : public QObject\n{\n    Q_OBJECT\n    friend class DisplayWorker;\n    friend class TouchscreenWorker;\n\npublic:\n    enum RotateMode {\n        Normal,\n        Gravity,\n        Rotate\n    };\n\npublic:\n    explicit Monitor(QObject *parent = 0);\n\n    inline int x() const { return m_x; }\n    inline int y() const { return m_y; }\n    inline int w() const { return m_w; }\n    inline int h() const { return m_h; }\n    inline int mmWidth() const { return m_mmWidth; }\n    inline int mmHeight() const { return m_mmHeight; }\n    inline double scale() const { return m_scale; }\n    inline bool isPrimary() const { return m_primary == m_name; }\n    inline quint16 rotate() const { return m_rotate; }\n    inline double brightness() const { return m_brightness; }\n    inline const QRect rect() const { return QRect(m_x, m_y, m_w, m_h); }\n    inline const QString name() const\n    {\n        Q_ASSERT(!m_name.isEmpty());\n        return m_name;\n    }\n    inline const QString manufacturer() const\n    {\n        Q_ASSERT(!m_manufacturer.isEmpty());\n        return m_manufacturer;\n    }\n    inline const QString model() const\n    {\n        Q_ASSERT(!m_model.isEmpty());\n        return m_model;\n    }\n    inline bool canBrightness() const { return m_canBrightness; }\n    inline const QString path() const { return m_path; }\n    inline const Resolution currentMode() const { return m_currentMode; }\n    inline const QList<quint16> rotateList() const { return m_rotateList; }\n    inline const QList<Resolution> modeList() const { return m_modeList; }\n    inline bool enable() const { return m_enable; }\n    inline QStringList availableFillModes() const { return m_fillModeList; }\n    inline QString currentFillMode() const { return m_currentFillMode; }\n    inline const Resolution bestMode() const { return m_bestMode; }\n    inline RotateMode currentRotateMode() const { return m_screenSensingMode; }\n    inline QString wallpaper() const { return m_wallpaper; }\n\nQ_SIGNALS:\n    void geometryChanged() const;\n    void xChanged(const int x) const;\n    void yChanged(const int y) const;\n    void wChanged(const int w) const;\n    void hChanged(const int h) const;\n    void scaleChanged(const double scale) const;\n    void rotateChanged(const quint16 rotate) const;\n    void brightnessChanged(const double brightness) const;\n    void currentModeChanged(const Resolution &resolution) const;\n    void modelListChanged(const QList<Resolution> &resolution) const;\n    void enableChanged(bool enable) const;\n    void bestModeChanged() const;\n    void availableFillModesChanged(const QStringList &fillModeList);\n    // TODO: 重力旋转\n    void currentRotateModeChanged() const;\n    void currentFillModeChanged(QString currentFillMode) const;\n    void wallpaperChanged() const;\n\npublic:\n    static bool isSameResolution(const Resolution &r1, const Resolution &r2);\n    static bool isSameRatefresh(const Resolution &r1, const Resolution &r2);\n    bool hasResolution(const Resolution &r);\n    bool hasResolutionAndRate(const Resolution &r);\n    bool hasRatefresh(const double r);\n    QScreen *getQScreen();\n\nprivate Q_SLOTS:\n    void setX(const int x);\n    void setY(const int y);\n    void setW(const int w);\n    void setH(const int h);\n    void setMmWidth(const uint mmWidth);\n    void setMmHeight(const uint mmHeight);\n    void setScale(const double scale);\n    void setPrimary(const QString &primaryName);\n    void setRotate(const quint16 rotate);\n    void setBrightness(const double brightness);\n    void setName(const QString &name);\n    void setManufacturer(const QString &manufacturer);\n    void setModel(const QString &model);\n    void setCanBrightness(bool canBrightness);\n    void setPath(const QString &path);\n    void setRotateList(const QList<quint16> &rotateList);\n    void setCurrentMode(const Resolution &resolution);\n    void setModeList(const ResolutionList &modeList);\n    void setMonitorEnable(bool enable);\n    void setBestMode(const Resolution &mode);\n    void setCurrentRotateMode(const unsigned char mode);\n    void setAvailableFillModes(const QStringList &fillModeList);\n    void setCurrentFillMode(const QString currentFillMode);\n    std::optional<Resolution> getResolutionById(quint32 id);\n    void setWallpaper(const QString &wallpaper);\n\nprivate:\n    int m_x;\n    int m_y;\n    int m_w;\n    int m_h;\n    uint m_mmWidth;\n    uint m_mmHeight;\n    double m_scale;\n    quint16 m_rotate;\n    double m_brightness;\n    QString m_name;\n    QString m_manufacturer;\n    QString m_model;\n    QString m_path;\n    QString m_primary;\n    Resolution m_currentMode;\n    QList<quint16> m_rotateList;\n    QList<Resolution> m_modeList;\n    bool m_enable;\n    bool m_canBrightness;\n    Resolution m_bestMode;\n    RotateMode m_screenSensingMode;\n    QStringList m_fillModeList;\n    QString m_currentFillMode;\n    QString m_wallpaper;\n};\n}\n\n#endif // MONITOR_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/monitordbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"monitordbusproxy.h\"\n\n#include <QMetaObject>\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusPendingReply>\n#include <QDBusMetaType>\n#include <QDebug>\n\nconst static QString MonitorService = \"org.deepin.dde.Display1\";\nconst static QString MonitorInterface = \"org.deepin.dde.Display1.Monitor\";\n\nconst static QString PropertiesInterface = \"org.freedesktop.DBus.Properties\";\nconst static QString PropertiesChanged = \"PropertiesChanged\";\n\nDCORE_USE_NAMESPACE\n\nMonitorDBusProxy::MonitorDBusProxy(QString monitorPath, QObject *parent)\n    : QObject(parent)\n    , m_monitorUserPath(monitorPath)\n{\n    registerResolutionMetaType();\n    registerReflectListMetaType();\n    registerRotationListMetaType();\n    registerResolutionListMetaType();\n\n    init();\n}\n\nvoid MonitorDBusProxy::init()\n{\n    m_dBusMonitorInter = new DDBusInterface(MonitorService, m_monitorUserPath, MonitorInterface, QDBusConnection::sessionBus(), this);\n    m_dBusMonitorPropertiesInter = new DDBusInterface(MonitorService, m_monitorUserPath, PropertiesInterface, QDBusConnection::sessionBus(), this);\n    QDBusConnection dbusConnection = m_dBusMonitorInter->connection();\n    dbusConnection.connect(MonitorService, m_monitorUserPath, PropertiesInterface, PropertiesChanged, this, SLOT(onPropertiesChanged(QDBusMessage)));\n}\n\nQStringList MonitorDBusProxy::availableFillModes()\n{\n    return qvariant_cast<QStringList>(m_dBusMonitorInter->property(\"AvailableFillModes\"));\n}\n\nResolution MonitorDBusProxy::bestMode()\n{\n    Resolution val;\n    m_dBusMonitorPropertiesInter->call(\"Get\", MonitorInterface, \"BestMode\").arguments().at(0).value<QDBusVariant>().variant().value<QDBusArgument>() >> val;\n    return val;\n}\n\nbool MonitorDBusProxy::connected()\n{\n    return qvariant_cast<bool>(m_dBusMonitorInter->property(\"Connected\"));\n}\n\nQString MonitorDBusProxy::currentFillMode()\n{\n    return qvariant_cast<QString>(m_dBusMonitorInter->property(\"CurrentFillMode\"));\n}\n\nvoid MonitorDBusProxy::setCurrentFillMode(const QString &value)\n{\n    m_dBusMonitorInter->setProperty(\"CurrentFillMode\", QVariant::fromValue(value));\n}\n\nResolution MonitorDBusProxy::currentMode()\n{\n    Resolution val;\n    m_dBusMonitorPropertiesInter->call(\"Get\", MonitorInterface, \"CurrentMode\").arguments().at(0).value<QDBusVariant>().variant().value<QDBusArgument>() >> val;\n    return val;\n}\n\nuchar MonitorDBusProxy::currentRotateMode()\n{\n    return qvariant_cast<uchar>(m_dBusMonitorInter->property(\"CurrentRotateMode\"));\n}\n\nbool MonitorDBusProxy::enabled()\n{\n    return qvariant_cast<bool>(m_dBusMonitorInter->property(\"Enabled\"));\n}\n\nushort MonitorDBusProxy::height()\n{\n    return qvariant_cast<ushort>(m_dBusMonitorInter->property(\"Height\"));\n}\n\nQString MonitorDBusProxy::manufacturer()\n{\n    return qvariant_cast<QString>(m_dBusMonitorInter->property(\"Manufacturer\"));\n}\n\nuint MonitorDBusProxy::mmHeight()\n{\n    return qvariant_cast<uint>(m_dBusMonitorInter->property(\"MmHeight\"));\n}\n\nuint MonitorDBusProxy::mmWidth()\n{\n    return qvariant_cast<uint>(m_dBusMonitorInter->property(\"MmWidth\"));\n}\n\nQString MonitorDBusProxy::model()\n{\n    return qvariant_cast<QString>(m_dBusMonitorInter->property(\"Model\"));\n}\n\nResolutionList MonitorDBusProxy::modes()\n{\n    ResolutionList val;\n    m_dBusMonitorPropertiesInter->call(\"Get\", MonitorInterface, \"Modes\").arguments().at(0).value<QDBusVariant>().variant().value<QDBusArgument>() >> val;\n    return val;\n}\n\nQString MonitorDBusProxy::name()\n{\n    return qvariant_cast<QString>(m_dBusMonitorInter->property(\"Name\"));\n}\n\nushort MonitorDBusProxy::reflect()\n{\n    return qvariant_cast<ushort>(m_dBusMonitorInter->property(\"Reflect\"));\n}\n\nReflectList MonitorDBusProxy::reflects()\n{\n    return qvariant_cast<ReflectList>(m_dBusMonitorPropertiesInter->call(\"Get\", MonitorInterface, \"Reflects\").arguments().at(0).value<QDBusVariant>().variant());\n}\n\ndouble MonitorDBusProxy::refreshRate()\n{\n    return qvariant_cast<double>(m_dBusMonitorInter->property(\"RefreshRate\"));\n}\n\nushort MonitorDBusProxy::rotation()\n{\n    return qvariant_cast<ushort>(m_dBusMonitorInter->property(\"Rotation\"));\n}\n\nRotationList MonitorDBusProxy::rotations()\n{\n    return qvariant_cast<RotationList>(m_dBusMonitorPropertiesInter->call(\"Get\", MonitorInterface, \"Rotations\").arguments().at(0).value<QDBusVariant>().variant());\n}\n\nushort MonitorDBusProxy::width()\n{\n    return qvariant_cast<ushort>(m_dBusMonitorInter->property(\"Width\"));\n}\n\nshort MonitorDBusProxy::x()\n{\n    return qvariant_cast<short>(m_dBusMonitorInter->property(\"X\"));\n}\n\nshort MonitorDBusProxy::y()\n{\n    return qvariant_cast<short>(m_dBusMonitorInter->property(\"Y\"));\n}\n\nQDBusPendingReply<> MonitorDBusProxy::Enable(bool in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusMonitorInter->asyncCallWithArgumentList(QStringLiteral(\"Enable\"), argumentList);\n}\n\nQDBusPendingReply<> MonitorDBusProxy::SetMode(uint in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusMonitorInter->asyncCallWithArgumentList(QStringLiteral(\"SetMode\"), argumentList);\n}\n\nQDBusPendingReply<> MonitorDBusProxy::SetModeBySize(ushort in0, ushort in1)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n    return m_dBusMonitorInter->asyncCallWithArgumentList(QStringLiteral(\"SetModeBySize\"), argumentList);\n}\n\nQDBusPendingReply<> MonitorDBusProxy::SetPosition(short in0, short in1)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n    return m_dBusMonitorInter->asyncCallWithArgumentList(QStringLiteral(\"SetPosition\"), argumentList);\n}\n\nQDBusPendingReply<> MonitorDBusProxy::SetReflect(ushort in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusMonitorInter->asyncCallWithArgumentList(QStringLiteral(\"SetReflect\"), argumentList);\n}\n\nQDBusPendingReply<> MonitorDBusProxy::SetRotation(ushort in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusMonitorInter->asyncCallWithArgumentList(QStringLiteral(\"SetRotation\"), argumentList);\n}\n\nvoid MonitorDBusProxy::onPropertiesChanged(const QDBusMessage &message)\n{\n    QVariantMap changedProps = qdbus_cast<QVariantMap>(message.arguments().at(1).value<QDBusArgument>());\n    for (QVariantMap::const_iterator it = changedProps.begin(); it != changedProps.end(); ++it) {\n        if(it.key() ==\"CurrentMode\") {\n            emit CurrentModeChanged(qdbus_cast<Resolution>(changedProps.value(it.key())));\n        } else if(it.key() ==\"BestMode\") {\n            emit BestModeChanged(qdbus_cast<Resolution>(changedProps.value(it.key())));\n        } else if(it.key() ==\"Modes\") {\n            emit ModesChanged(qdbus_cast<ResolutionList>(changedProps.value(it.key())));\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-display/operation/private/monitordbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef MONITORDBUSPROXY_H\n#define MONITORDBUSPROXY_H\n\n#include \"types/resolutionlist.h\"\n#include \"types/reflectlist.h\"\n#include \"types/rotationlist.h\"\n#include \"types/resolution.h\"\n\n\n#include <QObject>\n#include <QDBusPendingReply>\n#include <QDBusReply>\n\n#include <DDBusInterface>\n\nclass QDBusMessage;\n\nclass MonitorDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    static inline const char *staticInterfaceName()\n    { return \"org.deepin.dde.Display1.Monitor\"; }\n\npublic:\n    explicit MonitorDBusProxy(QString monitorPath, QObject *parent = nullptr);\n    Q_PROPERTY(QStringList AvailableFillModes READ availableFillModes NOTIFY AvailableFillModesChanged)\n    QStringList availableFillModes();\n\n    Q_PROPERTY(Resolution BestMode READ bestMode NOTIFY BestModeChanged)\n    Resolution bestMode();\n\n    Q_PROPERTY(bool Connected READ connected NOTIFY ConnectedChanged)\n    bool connected();\n\n    Q_PROPERTY(QString CurrentFillMode READ currentFillMode WRITE setCurrentFillMode NOTIFY CurrentFillModeChanged)\n    QString currentFillMode();\n    void setCurrentFillMode(const QString &value);\n\n    Q_PROPERTY(Resolution CurrentMode READ currentMode NOTIFY CurrentModeChanged)\n    Resolution currentMode();\n\n    Q_PROPERTY(uchar CurrentRotateMode READ currentRotateMode NOTIFY CurrentRotateModeChanged)\n    uchar currentRotateMode();\n\n    Q_PROPERTY(bool Enabled READ enabled NOTIFY EnabledChanged)\n    bool enabled();\n\n    Q_PROPERTY(ushort Height READ height NOTIFY HeightChanged)\n    ushort height();\n\n    Q_PROPERTY(QString Manufacturer READ manufacturer NOTIFY ManufacturerChanged)\n    QString manufacturer();\n\n    Q_PROPERTY(uint MmHeight READ mmHeight NOTIFY MmHeightChanged)\n    uint mmHeight();\n\n    Q_PROPERTY(uint MmWidth READ mmWidth NOTIFY MmWidthChanged)\n    uint mmWidth();\n\n    Q_PROPERTY(QString Model READ model NOTIFY ModelChanged)\n    QString model();\n\n    Q_PROPERTY(ResolutionList Modes READ modes NOTIFY ModesChanged)\n    ResolutionList modes();\n\n    Q_PROPERTY(QString Name READ name NOTIFY NameChanged)\n    QString name();\n\n    Q_PROPERTY(ushort Reflect READ reflect NOTIFY ReflectChanged)\n    ushort reflect();\n\n    Q_PROPERTY(ReflectList Reflects READ reflects NOTIFY ReflectsChanged)\n    ReflectList reflects();\n\n    Q_PROPERTY(double RefreshRate READ refreshRate NOTIFY RefreshRateChanged)\n    double refreshRate();\n\n    Q_PROPERTY(ushort Rotation READ rotation NOTIFY RotationChanged)\n    ushort rotation();\n\n    Q_PROPERTY(RotationList Rotations READ rotations NOTIFY RotationsChanged)\n    RotationList rotations();\n\n    Q_PROPERTY(ushort Width READ width NOTIFY WidthChanged)\n    ushort width();\n\n    Q_PROPERTY(short X READ x NOTIFY XChanged)\n    short x();\n\n    Q_PROPERTY(short Y READ y NOTIFY YChanged)\n    short y();\n\nprivate:\n    void init();\n\npublic Q_SLOTS: // METHODS\n    QDBusPendingReply<> Enable(bool in0);\n    QDBusPendingReply<> SetMode(uint in0);\n    QDBusPendingReply<> SetModeBySize(ushort in0, ushort in1);\n    QDBusPendingReply<> SetPosition(short in0, short in1);\n    QDBusPendingReply<> SetReflect(ushort in0);\n    QDBusPendingReply<> SetRotation(ushort in0);\n\n    void onPropertiesChanged(const QDBusMessage &message);\n\nQ_SIGNALS: // SIGNALS\n    // begin property changed signals\n    void AvailableFillModesChanged(const QStringList & value) const;\n    void BestModeChanged(Resolution  value) const;\n    void ConnectedChanged(bool  value) const;\n    void CurrentFillModeChanged(const QString & value) const;\n    void CurrentModeChanged(Resolution  value) const;\n    void CurrentRotateModeChanged(uchar  value) const;\n    void EnabledChanged(bool  value) const;\n    void HeightChanged(ushort  value) const;\n    void ManufacturerChanged(const QString & value) const;\n    void MmHeightChanged(uint  value) const;\n    void MmWidthChanged(uint  value) const;\n    void ModelChanged(const QString & value) const;\n    void ModesChanged(ResolutionList  value) const;\n    void NameChanged(const QString & value) const;\n    void ReflectChanged(ushort  value) const;\n    void ReflectsChanged(ReflectList  value) const;\n    void RefreshRateChanged(double  value) const;\n    void RotationChanged(ushort  value) const;\n    void RotationsChanged(RotationList  value) const;\n    void WidthChanged(ushort  value) const;\n    void XChanged(short  value) const;\n    void YChanged(short  value) const;\n\nprivate:\n    Dtk::Core::DDBusInterface *m_dBusMonitorInter;\n    Dtk::Core::DDBusInterface *m_dBusMonitorPropertiesInter;\n    QString m_monitorUserPath;\n};\n\n#endif // MONITORDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/brightnessmap.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"brightnessmap.h\"\n\nvoid registerBrightnessMapMetaType()\n{\n    qRegisterMetaType<BrightnessMap>(\"BrightnessMap\");\n    qDBusRegisterMetaType<BrightnessMap>();\n}\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/brightnessmap.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef BRIGHTNESSMAP_H\n#define BRIGHTNESSMAP_H\n\n#include <QMap>\n#include <QDBusMetaType>\n\ntypedef QMap<QString, double> BrightnessMap;\n\nvoid registerBrightnessMapMetaType();\n\n#endif // BRIGHTNESSMAP_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/reflectlist.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"reflectlist.h\"\n\nvoid registerReflectListMetaType()\n{\n    qRegisterMetaType<ReflectList>(\"ReflectList\");\n    qDBusRegisterMetaType<ReflectList>();\n}\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/reflectlist.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef REFLECTLIST_H\n#define REFLECTLIST_H\n\n#include <QDBusMetaType>\n#include <QList>\n\ntypedef QList<quint16> ReflectList;\n\nvoid registerReflectListMetaType();\n\n#endif // REFLECTLIST_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/resolution.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"resolution.h\"\n\n#include <QDebug>\n\nvoid registerResolutionMetaType()\n{\n    qRegisterMetaType<Resolution>(\"Resolution\");\n    qDBusRegisterMetaType<Resolution>();\n}\n\nQDebug operator<<(QDebug debug, const Resolution &resolution)\n{\n    debug << QString(\"Resolution(%1, %2, %3, %4)\").arg(resolution.m_id)\n                                                    .arg(resolution.m_width)\n                                                    .arg(resolution.m_height)\n                                                    .arg(resolution.m_rate);\n\n    return debug;\n}\n\nResolution::Resolution()\n    : m_rate(0.0)\n{\n}\n\nbool Resolution::operator!=(const Resolution &other) const\n{\n    return m_width != other.m_width || m_height != other.m_height || m_rate != other.m_rate;\n}\n\nbool Resolution::operator==(const Resolution &other) const\n{\n    return !(other != *this);\n}\n\nQDBusArgument &operator<<(QDBusArgument &arg, const Resolution &value)\n{\n    arg.beginStructure();\n    arg << value.m_id << value.m_width << value.m_height << value.m_rate;\n    arg.endStructure();\n\n    return arg;\n}\n\nconst QDBusArgument &operator>>(const QDBusArgument &arg, Resolution &value)\n{\n    arg.beginStructure();\n    arg >> value.m_id >> value.m_width >> value.m_height >> value.m_rate;\n    arg.endStructure();\n    return arg;\n}\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/resolution.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef RESOLUTION_H\n#define RESOLUTION_H\n\n#include <QDBusMetaType>\n\nclass Resolution\n{\npublic:\n    friend QDebug operator<<(QDebug debug, const Resolution &resolution);\n    friend QDBusArgument &operator<<(QDBusArgument &arg, const Resolution &value);\n    friend const QDBusArgument &operator>>(const QDBusArgument &arg, Resolution &value);\n\n    explicit Resolution();\n\n    bool operator!=(const Resolution &other) const;\n    bool operator==(const Resolution &other) const;\n\n    quint32 id() const { return m_id; }\n    quint16 width() const { return m_width; }\n    quint16 height() const { return m_height; }\n    double rate() const { return m_rate; }\n\npublic:\n    quint32 m_id;\n    quint16 m_width;\n    quint16 m_height;\n    double m_rate;\n};\n\n\nQ_DECLARE_METATYPE(Resolution)\n\nvoid registerResolutionMetaType();\n\n#endif // RESOLUTION_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/resolutionlist.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"resolutionlist.h\"\n\nvoid registerResolutionListMetaType()\n{\n    registerResolutionMetaType();\n\n    qRegisterMetaType<ResolutionList>(\"ResolutionList\");\n    qDBusRegisterMetaType<ResolutionList>();\n}\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/resolutionlist.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef RESOLUTIONLIST_H\n#define RESOLUTIONLIST_H\n\n#include \"resolution.h\"\n\n#include <QList>\n\ntypedef QList<Resolution> ResolutionList;\n\nvoid registerResolutionListMetaType();\n\n#endif // RESOLUTIONLIST_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/rotationlist.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"rotationlist.h\"\n\nvoid registerRotationListMetaType()\n{\n    qRegisterMetaType<RotationList>(\"RotationList\");\n    qDBusRegisterMetaType<RotationList>();\n}\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/rotationlist.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef ROTATIONLIST_H\n#define ROTATIONLIST_H\n\n#include <QDBusMetaType>\n#include <QList>\n\ntypedef QList<quint16> RotationList;\n\nvoid registerRotationListMetaType();\n\n#endif // ROTATIONLIST_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/screenrect.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"screenrect.h\"\n\nScreenRect::ScreenRect()\n    : x(0),\n      y(0),\n      w(0),\n      h(0)\n{\n\n}\n\nQDebug operator<<(QDebug debug, const ScreenRect &rect)\n{\n    debug << QString(\"ScreenRect(%1, %2, %3, %4)\").arg(rect.x)\n                                                    .arg(rect.y)\n                                                    .arg(rect.w)\n                                                    .arg(rect.h);\n\n    return debug;\n}\n\nScreenRect::operator QRect() const\n{\n    return QRect(x, y, w, h);\n}\n\nQDBusArgument &operator<<(QDBusArgument &arg, const ScreenRect &rect)\n{\n    arg.beginStructure();\n    arg << rect.x << rect.y << rect.w << rect.h;\n    arg.endStructure();\n\n    return arg;\n}\n\nconst QDBusArgument &operator>>(const QDBusArgument &arg, ScreenRect &rect)\n{\n    arg.beginStructure();\n    arg >> rect.x >> rect.y >> rect.w >> rect.h;\n    arg.endStructure();\n\n    return arg;\n}\n\nvoid registerScreenRectMetaType()\n{\n    qRegisterMetaType<ScreenRect>(\"ScreenRect\");\n    qDBusRegisterMetaType<ScreenRect>();\n}\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/screenrect.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef SCREENRECT_H\n#define SCREENRECT_H\n\n#include <QRect>\n#include <QDBusArgument>\n#include <QDebug>\n#include <QDBusMetaType>\n\nstruct ScreenRect\n{\npublic:\n    ScreenRect();\n    operator QRect() const;\n\n    friend QDebug operator<<(QDebug debug, const ScreenRect &rect);\n    friend const QDBusArgument &operator>>(const QDBusArgument &arg, ScreenRect &rect);\n    friend QDBusArgument &operator<<(QDBusArgument &arg, const ScreenRect &rect);\n\nprivate:\n    qint16 x;\n    qint16 y;\n    quint16 w;\n    quint16 h;\n};\n\nQ_DECLARE_METATYPE(ScreenRect)\n\nvoid registerScreenRectMetaType();\n\n#endif // SCREENRECT_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/touchscreeninfolist.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"touchscreeninfolist.h\"\n\nQDBusArgument &operator<<(QDBusArgument &arg, const TouchscreenInfo &info)\n{\n    arg.beginStructure();\n    arg << info.id << info.name << info.deviceNode << info.serialNumber;\n    arg.endStructure();\n\n    return arg;\n}\n\nconst QDBusArgument &operator>>(const QDBusArgument &arg, TouchscreenInfo &info)\n{\n    arg.beginStructure();\n    arg >> info.id >> info.name >> info.deviceNode >> info.serialNumber;\n    arg.endStructure();\n\n    return arg;\n}\n\nbool TouchscreenInfo::operator==(const TouchscreenInfo &info)\n{\n    return id == info.id && name == info.name && deviceNode == info.deviceNode && serialNumber == info.serialNumber;\n}\n\nvoid registerTouchscreenInfoMetaType()\n{\n    qRegisterMetaType<TouchscreenInfo>(\"TouchscreenInfo\");\n    qDBusRegisterMetaType<TouchscreenInfo>();\n}\n\nvoid registerTouchscreenInfoListMetaType()\n{\n    registerTouchscreenInfoMetaType();\n\n    qRegisterMetaType<TouchscreenInfoList>(\"TouchscreenInfoList\");\n    qDBusRegisterMetaType<TouchscreenInfoList>();\n}\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/touchscreeninfolist.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef TOUCHSCREENINFOLIST_H\n#define TOUCHSCREENINFOLIST_H\n\n#include <QString>\n#include <QList>\n#include <QDBusMetaType>\n\nstruct TouchscreenInfo {\n    qint32 id;\n    QString name;\n    QString deviceNode;\n    QString serialNumber;\n\n    bool operator ==(const TouchscreenInfo& info);\n};\n\ntypedef QList<TouchscreenInfo> TouchscreenInfoList;\n\nQ_DECLARE_METATYPE(TouchscreenInfo)\nQ_DECLARE_METATYPE(TouchscreenInfoList)\n\nQDBusArgument &operator<<(QDBusArgument &arg, const TouchscreenInfo &info);\nconst QDBusArgument &operator>>(const QDBusArgument &arg, TouchscreenInfo &info);\n\nvoid registerTouchscreenInfoListMetaType();\n\n#endif // !TOUCHSCREENINFOLIST_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/touchscreeninfolist_v2.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"touchscreeninfolist_v2.h\"\n\nQDBusArgument &operator<<(QDBusArgument &arg, const TouchscreenInfo_V2 &info)\n{\n    arg.beginStructure();\n    arg << info.id << info.name << info.deviceNode << info.serialNumber << info.UUID;\n    arg.endStructure();\n\n    return arg;\n}\n\nconst QDBusArgument &operator>>(const QDBusArgument &arg, TouchscreenInfo_V2 &info)\n{\n    arg.beginStructure();\n    arg >> info.id >> info.name >> info.deviceNode >> info.serialNumber >> info.UUID;\n    arg.endStructure();\n\n    return arg;\n}\n\nbool operator==(const TouchscreenInfo_V2 &info1, const TouchscreenInfo_V2 &info2) {\n    return info1.id == info2.id && info1.name == info2.name && info1.deviceNode == info2.deviceNode && info1.serialNumber == info2.serialNumber && info1.UUID == info2.UUID;\n}\n\nvoid registerTouchscreenInfoV2MetaType()\n{\n    qRegisterMetaType<TouchscreenInfo_V2>(\"TouchscreenInfo_V2\");\n    qDBusRegisterMetaType<TouchscreenInfo_V2>();\n}\n\nvoid registerTouchscreenInfoList_V2MetaType()\n{\n    registerTouchscreenInfoV2MetaType();\n\n    qRegisterMetaType<TouchscreenInfoList_V2>(\"TouchscreenInfoList_V2\");\n    qDBusRegisterMetaType<TouchscreenInfoList_V2>();\n}\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/touchscreeninfolist_v2.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef TOUCHSCREENINFOLISTV2_H\n#define TOUCHSCREENINFOLISTV2_H\n\n#include <QString>\n#include <QList>\n#include <QDBusMetaType>\n\nstruct TouchscreenInfo_V2 {\n    qint32 id;\n    QString name;\n    QString deviceNode;\n    QString serialNumber;\n    QString UUID;\n};\n\nbool operator==(const TouchscreenInfo_V2 &info1, const TouchscreenInfo_V2 &info2);\n\ntypedef QList<TouchscreenInfo_V2> TouchscreenInfoList_V2;\n\nQ_DECLARE_METATYPE(TouchscreenInfo_V2)\nQ_DECLARE_METATYPE(TouchscreenInfoList_V2)\n\nQDBusArgument &operator<<(QDBusArgument &arg, const TouchscreenInfo_V2 &info);\nconst QDBusArgument &operator>>(const QDBusArgument &arg, TouchscreenInfo_V2 &info);\n\nvoid registerTouchscreenInfoList_V2MetaType();\n\n#endif // !TOUCHSCREENINFOLISTV2_H\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/touchscreenmap.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"touchscreenmap.h\"\n\nvoid registerTouchscreenMapMetaType()\n{\n    qRegisterMetaType<TouchscreenMap>(\"TouchscreenMap\");\n    qDBusRegisterMetaType<TouchscreenMap>();\n}\n"
  },
  {
    "path": "src/plugin-display/operation/private/types/touchscreenmap.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef TOUCHSCREENMAP_H\n#define TOUCHSCREENMAP_H\n\n#include <QMap>\n#include <QDBusMetaType>\n\ntypedef QMap<QString, QString> TouchscreenMap;\n\nvoid registerTouchscreenMapMetaType();\n\n#endif // TOUCHSCREENMAP_H\n"
  },
  {
    "path": "src/plugin-display/operation/qrc/display.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_display_42px.svg</file>\n        <file>icons/dcc_nav_display_84px.svg</file>\n        <file>actions/dcc_break_32px.svg</file>\n        <file>actions/dcc_brightnesslow_32px.svg</file>\n        <file>actions/dcc_brightnesshigh_32px.svg</file>\n    </qresource>\n    <qresource prefix=\"/display\">\n        <file>icons/dark/icons/dark/Center.svg</file>\n        <file>icons/dark/icons/dark/Fit.svg</file>\n        <file>icons/dark/icons/dark/Stretch.svg</file>\n        <file>icons/dark/icons/white/Center.svg</file>\n        <file>icons/dark/icons/white/Fit.svg</file>\n        <file>icons/dark/icons/white/Stretch.svg</file>\n        <file>icons/dark/icons/hover/Center.svg</file>\n        <file>icons/dark/icons/hover/Fit.svg</file>\n        <file>icons/dark/icons/hover/Stretch.svg</file>\n        <file>icons/light/icon/black/Center.svg</file>\n        <file>icons/light/icon/black/Fit.svg</file>\n        <file>icons/light/icon/black/Stretch.svg</file>\n        <file>icons/light/icon/light/Center.svg</file>\n        <file>icons/light/icon/light/Fit.svg</file>\n        <file>icons/light/icon/light/Stretch.svg</file>\n        <file>icons/light/icon/white/Center.svg</file>\n        <file>icons/light/icon/white/Fit.svg</file>\n        <file>icons/light/icon/white/Stretch.svg</file>\n        <file>icons/light/icon/hover/Center.svg</file>\n        <file>icons/light/icon/hover/Fit.svg</file>\n        <file>icons/light/icon/hover/Stretch.svg</file>\n        <file>icons/dark/icons/dark/Default.svg</file>\n        <file>icons/dark/icons/hover/Default.svg</file>\n        <file>icons/dark/icons/white/Default.svg</file>\n        <file>icons/light/icon/black/Default.svg</file>\n        <file>icons/light/icon/hover/Default.svg</file>\n        <file>icons/light/icon/light/Default.svg</file>\n        <file>icons/light/icon/white/Default.svg</file>\n    </qresource>\n    <qresource prefix=\"/dsg\">\n        <file>built-in-icons/dcc_display_bottom.dci</file>\n        <file>built-in-icons/dcc_display_left.dci</file>\n        <file>built-in-icons/dcc_display_right.dci</file>\n        <file>built-in-icons/dcc_display_top.dci</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-display/qml/Display.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport org.deepin.dcc 1.0\n\nDccObject {\n    name: \"display\"\n    parentName: \"system\"\n    displayName: qsTr(\"Display\")\n    description: qsTr(\"Brightness,resolution,scaling\")\n    icon: \"display\"\n    weight: 10\n}\n"
  },
  {
    "path": "src/plugin-display/qml/DisplayMain.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: root\n    property var screen: dccData.virtualScreens[0]\n    property var activeDialogs: []\n    property var scaleModelConst: [{\n            \"text\": qsTr(\"100%\"),\n            \"value\": 1.0\n        }, {\n            \"text\": qsTr(\"125%\"),\n            \"value\": 1.25\n        }, {\n            \"text\": qsTr(\"150%\"),\n            \"value\": 1.50\n        }, {\n            \"text\": qsTr(\"175%\"),\n            \"value\": 1.75\n        }, {\n            \"text\": qsTr(\"200%\"),\n            \"value\": 2.0\n        }, {\n            \"text\": qsTr(\"225%\"),\n            \"value\": 2.25\n        }, {\n            \"text\": qsTr(\"250%\"),\n            \"value\": 2.50\n        }, {\n            \"text\": qsTr(\"275%\"),\n            \"value\": 2.75\n        }, {\n            \"text\": qsTr(\"300%\"),\n            \"value\": 3.0\n        }]\n\n    function getResolutionModel(resolutionList, bestResolution) {\n        var resolutionModel = []\n        for (let resolution of resolutionList) {\n            if (resolution.width === bestResolution.width && resolution.height === bestResolution.height) {\n                resolutionModel.unshift({\n                                            \"text\": qsTr(\"%1x%2 (Recommended)\").arg(resolution.width).arg(resolution.height),\n                                            \"value\": resolution\n                                        })\n            } else {\n                resolutionModel.push({\n                                         \"text\": qsTr(\"%1x%2\").arg(resolution.width).arg(resolution.height),\n                                         \"value\": resolution\n                                     })\n            }\n        }\n        return resolutionModel\n    }\n    function getRateModel(rateList, bestRate) {\n        var rateModel = []\n        for (let rate of rateList) {\n            if (rate === bestRate) {\n                rateModel.push({\n                                   \"text\": qsTr(\"%1Hz (Recommended)\").arg((Math.round(rate * 100) / 100)),\n                                   \"value\": rate\n                               })\n            } else {\n                rateModel.push({\n                                   \"text\": qsTr(\"%1Hz\").arg((Math.round(rate * 100) / 100)),\n                                   \"value\": rate\n                               })\n            }\n        }\n        return rateModel\n    }\n    function getScaleModel(maxScale, scale) {\n        var scaleModel = []\n        for (let scaleItem of scaleModelConst) {\n            if (scaleItem.value <= maxScale) {\n                scaleModel.push(scaleItem)\n            }\n        }\n        return scaleModel\n    }\n    function indexOfScale(model, scale) {\n        for (var i = 0; i < model.length; i++) {\n            let v = model[i]\n            if (v.value === scale) {\n                return i\n            }\n        }\n        return model.length - 1\n    }\n    function getQtScreen(screen) {\n        for (var s of Qt.application.screens) {\n            if (s.virtualX === screen.x && s.virtualY === screen.y && (Math.abs(s.width * s.devicePixelRatio - screen.width) < 1) && (Math.abs(s.height * s.devicePixelRatio - screen.height) < 1)) {\n                return s\n            }\n        }\n        return null\n    }\n    function getControlCenterScreen() {\n        var mainWindow = DccApp.mainWindow()\n        if (mainWindow && mainWindow.screen) {\n            return mainWindow.screen\n        }\n        return getQtScreen(dccData.primaryScreen)\n    }\n    function closeInvalidDialogs() {\n        var validScreens = dccData.virtualScreens\n        var validDialogs = []\n        for (var i = 0; i < activeDialogs.length; i++) {\n            var dialog = activeDialogs[i]\n            var screenExists = false\n            for (var j = 0; j < validScreens.length; j++) {\n                if (dialog.screen === validScreens[j]) {\n                    screenExists = true\n                    break\n                }\n            }\n            if (screenExists) {\n                validDialogs.push(dialog)\n            } else {\n                // Ensure save is false so that onClosing will reset the settings\n                dialog.save = false\n                dialog.close()\n            }\n        }\n        activeDialogs = validDialogs\n    }\n    Connections {\n        target: dccData\n        function onVirtualScreensChanged() {\n            if (!dccData.virtualScreens.includes(screen)) {\n                screen = dccData.virtualScreens[0]\n            }\n            closeInvalidDialogs()\n        }\n    }\n    Component {\n        id: indicator\n        ScreenIndicator {}\n    }\n    Component {\n        id: recognize\n        ScreenRecognize {}\n    }\n    DccTitleObject {\n        name: \"multipleDisplays\"\n        parentName: \"display\"\n        displayName: qsTr(\"Multiple Displays Settings\")\n        weight: 10\n        visible: dccData.screens.length > 1\n    }\n    DccObject {\n        id: monitorControl\n        property bool effective: false\n\n        name: \"monitorControl\"\n        parentName: \"display\"\n        weight: 20\n        visible: dccData.screens.length > 1\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        onParentItemChanged: item => { if (item) item.topPadding = 5 }\n        page: DccGroupView {\n            isGroup: false\n        }\n        DccObject {\n            id: groundObj\n            function cacheImage() {\n                for (var i = 0; i < dccData.virtualScreens.length; i++) {\n                    var screen = dccData.virtualScreens[i]\n                    DccApp.cacheImage(screen.wallpaper)\n                }\n            }\n            Connections {\n                target: dccData\n                function onVirtualScreensChanged() {\n                    groundObj.cacheImage()\n                }\n                function onWallpaperChanged() {\n                    groundObj.cacheImage()\n                }\n            }\n            name: \"monitorsGround\"\n            parentName: \"monitorControl\"\n            weight: 10\n            enabled: dccData.virtualScreens.length > 1\n            Component.onCompleted: cacheImage()\n            pageType: DccObject.Item\n            onParentItemChanged: item => { if (item) { item.topInset = 0; item.bottomInset = 0 } }\n            page: Item {\n                id: monitorsGround\n                property real translationX: 100\n                property real translationY: 20\n                property real scale: 0.1\n\n                implicitHeight: 240\n                clip: true\n                onWidthChanged: monitorRepeater.adjustAll()\n                Timer {\n                    interval: 2000\n                    running: monitorControl.effective\n                    repeat: false\n                    onTriggered: {\n                        var listItems = []\n                        for (var i = 0; i < monitorRepeater.count; i++) {\n                            var otherItem = monitorRepeater.itemAt(i)\n                            listItems.push(otherItem)\n                        }\n                        dccData.applySettings(listItems, monitorsGround.scale)\n                        monitorControl.effective = false\n                    }\n                }\n                Repeater {\n                    id: monitorRepeater\n                    property bool hasMove: false\n                    model: dccData.virtualScreens\n                    delegate: ScreenItem {\n                        z: selected ? 2 : 1\n                        screen: model.modelData\n                        translationX: monitorsGround.translationX\n                        translationY: monitorsGround.translationY\n                        scale: monitorsGround.scale\n                        selected: root.screen === screen\n                        onPressed: monitorRepeater.pressedItem(this)\n                        onPositionChanged: monitorRepeater.positionChangedItem(this)\n                        onReleased: monitorRepeater.releasedItem(this)\n                        onUpdatePosition: {\n                            x = screen.x * scale + translationX\n                            y = screen.y * scale + translationY\n                            width = screen.width * scale\n                            height = screen.height * scale\n                            monitorRepeater.adjustAll()\n                        }\n                    }\n                    onCountChanged: adjustAll()\n                    Component.onCompleted: adjustAll()\n\n                    function pressedItem(item) {\n                        hasMove = false\n                        root.screen = item.screen\n                        if (dccData.isX11) {\n                            indicator.createObject(this, {\n                                                       \"screen\": getQtScreen(item.screen)\n                                                   }).show()\n                        }\n                    }\n                    function positionChangedItem(item) {\n                        monitorControl.effective = false\n                        hasMove = true\n                        var listItems = []\n                        // 吸附距离\n                        for (var i = 0; i < monitorRepeater.count; i++) {\n                            var otherItem = monitorRepeater.itemAt(i)\n                            listItems.push(otherItem)\n                        }\n                        dccData.adsorptionScreen(listItems, item, monitorsGround.scale)\n                    }\n                    function releasedItem(item) {\n                        if (!hasMove) {\n                            return\n                        }\n                        hasMove = false\n\n                        var listItems = []\n                        for (var i = 0; i < monitorRepeater.count; i++) {\n                            var otherItem = monitorRepeater.itemAt(i)\n                            listItems.push(otherItem)\n                        }\n                        dccData.executemultiScreenAlgo(listItems, item, monitorsGround.scale)\n                        adjustAll()\n                        monitorControl.effective = false // 重置下定时器\n                        monitorControl.effective = true\n                    }\n                    function adjustAll() {\n                        if (monitorRepeater.count === 0 || monitorsGround.scale === 0 || monitorsGround.width === 0 || monitorsGround.height === 0) {\n                            return\n                        }\n                        var firstItem = monitorRepeater.itemAt(0)\n\n                        var gx = (firstItem.x - monitorsGround.translationX) / monitorsGround.scale\n                        var gy = (firstItem.y - monitorsGround.translationY) / monitorsGround.scale\n                        var gx2 = firstItem.width / monitorsGround.scale + gx\n                        var gy2 = firstItem.height / monitorsGround.scale + gy\n                        var itemMaxH = gy2 - gy\n                        for (var i = 1; i < monitorRepeater.count; i++) {\n                            let otherItem = monitorRepeater.itemAt(i)\n                            if (!otherItem) {\n                                return\n                            }\n                            var ox = (otherItem.x - monitorsGround.translationX) / monitorsGround.scale\n                            var oy = (otherItem.y - monitorsGround.translationY) / monitorsGround.scale\n                            var ox2 = otherItem.width / monitorsGround.scale + ox\n                            var oy2 = otherItem.height / monitorsGround.scale + oy\n                            if (gx > ox) {\n                                gx = ox\n                            }\n                            if (gy > oy) {\n                                gy = oy\n                            }\n                            if (gx2 < ox2) {\n                                gx2 = ox2\n                            }\n                            if (gy2 < oy2) {\n                                gy2 = oy2\n                            }\n                            if (itemMaxH < oy2 - oy) {\n                                itemMaxH = oy2 - oy\n                            }\n                        }\n                        if (gx2 === gx || gy2 === gy) {\n                            return\n                        }\n                        var xScale = (monitorsGround.width) / ((gx2 - gx) * 1.2)\n                        var yScale = (monitorsGround.height) / ((gy2 - gy) * 1.2)\n                        var gScale = xScale < yScale ? xScale : yScale\n                        let tX = (monitorsGround.width - (gx2 - gx) * gScale) * 0.5\n                        let tY = (monitorsGround.height - (gy2 - gy) * gScale) * 0.5 // +((gy2-gy)*0.1)*gScale\n                        for (var j = 0; j < monitorRepeater.count; j++) {\n                            let item = monitorRepeater.itemAt(j)\n                            item.x = ((item.x - monitorsGround.translationX) / monitorsGround.scale - gx) * gScale + tX\n                            item.y = ((item.y - monitorsGround.translationY) / monitorsGround.scale - gy) * gScale + tY\n                            item.width = item.width / monitorsGround.scale * gScale\n                            item.height = item.height / monitorsGround.scale * gScale\n                        }\n                        monitorsGround.scale = gScale\n                        monitorsGround.translationX = tX\n                        monitorsGround.translationY = tY\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"identify\"\n            parentName: \"monitorControl\"\n            displayName: qsTr(\"Identify\")\n            weight: 20\n            visible: dccData.virtualScreens.length > 1 || (dccData.virtualScreens.length === 1 && dccData.virtualScreens[0].screenItems.length > 1)\n            pageType: DccObject.Item\n            onParentItemChanged: item => { if (item) item.topInset = 6 }\n            page: Item {\n                implicitHeight: identifyBut.implicitHeight + 4\n                DccLabel {\n                    anchors.fill: parent\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    anchors.rightMargin: identifyBut.width + 5\n                    anchors.leftMargin: identifyBut.width + 5\n                    visible: monitorControl.effective\n                    text: qsTr(\"Screen rearrangement will take effect in %1s after changes\").arg(2)\n                    clip: true\n                }\n                D.Button {\n                    id: identifyBut\n                    property var recognizes: []\n                    implicitHeight: 24\n                    implicitWidth: 72\n                    anchors.right: parent.right\n                    anchors.verticalCenter: parent.verticalCenter\n                    anchors.rightMargin: 7\n                    text: dccObj.displayName\n                    function closeWindow() {\n                        recognizeTimer.stop()\n                        for (var obj of identifyBut.recognizes) {\n                            obj.close()\n                        }\n                        identifyBut.recognizes = []\n                    }\n                    Timer {\n                        id: recognizeTimer\n                        repeat: false\n                        interval: 5000\n                        onTriggered: identifyBut.closeWindow()\n                    }\n                    onClicked: {\n                        // if (!dccData.isX11) {\n                        //     return\n                        // }\n                        identifyBut.closeWindow()\n                        for (var i = 0; i < dccData.virtualScreens.length; i++) {\n                            var item = dccData.virtualScreens[i]\n                            var obj = recognize.createObject(this, {\n                                                                 \"screen\": getQtScreen(item),\n                                                                 \"name\": item.name\n                                                             })\n                            obj.show()\n                            obj.escPressed.connect(identifyBut.closeWindow)\n                            recognizes.push(obj)\n                        }\n                        recognizeTimer.restart()\n                    }\n                }\n            }\n        }\n    }\n    DccObject {\n        name: \"displayMultipleDisplays\"\n        parentName: \"display\"\n        weight: 30\n        visible: dccData.screens.length > 1\n        pageType: DccObject.Item\n        onParentItemChanged: item => { if (item) item.topInset = 2 }\n        page: DccGroupView {}\n        DccObject {\n            name: \"mode\"\n            parentName: \"display/displayMultipleDisplays\"\n            displayName: qsTr(\"Mode\")\n            weight: 10\n            visible: dccData.screens.length > 1 && dccData.isX11\n            pageType: DccObject.Editor\n            page: D.ComboBox {\n                ListModel {\n                    id: modeModel\n                }\n                function getModeModel(screens) {\n                    modeModel.clear()\n                    modeModel.append({\n                                         \"text\": qsTr(\"Duplicate\"),\n                                         \"value\": \"MERGE\" // 1\n                                     })\n                    modeModel.append({\n                                         \"text\": qsTr(\"Extend\"),\n                                         \"value\": \"EXTEND\" // 2\n                                     })\n                    for (let screen of screens) {\n                        modeModel.append({\n                                             \"text\": qsTr(\"Only on %1\").arg(screen.name),\n                                             \"value\": screen.name\n                                         })\n                    }\n                    return modeModel\n                }\n                function indexOfMode(mode) {\n                    for (var i = 0; i < model.count; i++) {\n                        if (model.get(i).value === mode) {\n                            return i\n                        }\n                    }\n                    return -1\n                }\n                flat: true\n                textRole: \"text\"\n                valueRole: \"value\"\n                model: getModeModel(dccData.screens)\n                currentIndex: indexOfMode(dccData.displayMode)\n                onActivated: {\n                    if (dccData.displayMode !== currentValue) {\n                        dccData.displayMode = currentValue\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"mainScreen\"\n            parentName: \"display/displayMultipleDisplays\"\n            displayName: qsTr(\"Main Screen\")\n            weight: 20\n            pageType: DccObject.Editor\n            visible: dccData.virtualScreens.length > 1\n            page: ComboBox {\n                flat: true\n                textRole: \"name\"\n                model: dccData.virtualScreens\n                function indexOfScreen(primary) {\n                    for (var i = 0; i < model.length; i++) {\n                        if (model[i].name === primary.name) {\n                            return i\n                        }\n                    }\n                    return -1\n                }\n\n                currentIndex: dccData.primaryScreen ? indexOfScreen(dccData.primaryScreen) : -1\n                onActivated: {\n                    if (dccData.primaryScreen !== currentValue) {\n                        dccData.primaryScreen = currentValue\n                    }\n                }\n            }\n        }\n    }\n    DccTitleObject {\n        name: \"screenTitle\"\n        parentName: \"display\"\n        displayName: qsTr(\"Display And Layout\")\n        weight: 40\n        onParentItemChanged: item => { if (item) item.topInset = 12 }\n    }\n    DccObject {\n        name: \"screenTab\"\n        parentName: \"display\"\n        weight: 50\n        visible: dccData.virtualScreens.length > 1\n        pageType: DccObject.Item\n        Component {\n            id: timeoutDialog\n            TimeoutDialog {}\n        }\n\n        Timer {\n            id: dialogDelayTimer\n            interval: 300\n            repeat: false\n            property var targetScreen: null\n            property var parentItem: null\n\n            function showDelayed(parentItemArg, screenArg) {\n                targetScreen = screenArg\n                parentItem = parentItemArg\n                restart()\n            }\n\n            onTriggered: {\n                // Check if parentItem is still valid and visible before creating dialog\n                if (targetScreen && parentItem && parentItem.visible) {\n                    var dialog = timeoutDialog.createObject(parentItem, {\n                        \"screen\": targetScreen\n                    })\n                    dialog.show()\n                    root.activeDialogs.push(dialog)\n                }\n                // Clear references to avoid stale object reuse\n                targetScreen = null\n                parentItem = null\n            }\n        }\n\n        page: ScreenTab {\n            model: dccData.virtualScreens\n            screen: root.screen\n            onScreenClicked: function (screen) {\n                if (screen && screen !== root.screen) {\n                    root.screen = screen\n                    if (dccData.isX11) {\n                        indicator.createObject(this, {\n                                                   \"screen\": getQtScreen(root.screen)\n                                               }).show()\n                    }\n                }\n            }\n        }\n    }\n    component BrightnessComponent: RowLayout {\n        property var screenItem\n        Label {\n            Layout.alignment: Qt.AlignVCenter\n            text: Math.round(brightnessSlider.value * 100) + \"%\"\n            font: D.DTK.fontManager.t10\n            opacity: 0.5\n        }\n        D.DciIcon {\n            Layout.alignment: Qt.AlignVCenter\n            name: \"dcc_brightnesslow\"\n            palette: D.DTK.makeIconPalette(parent.palette)\n        }\n        Slider {\n            id: brightnessSlider\n            implicitHeight: 24\n            Layout.alignment: Qt.AlignVCenter\n            highlightedPassedGroove: true\n            from: 0.1\n            to: 1\n            stepSize: 0.01\n            value: screenItem.brightness\n            onMoved: {\n                screenItem.brightness = value\n            }\n        }\n        D.DciIcon {\n            Layout.alignment: Qt.AlignVCenter\n            name: \"dcc_brightnesshigh\"\n            palette: D.DTK.makeIconPalette(parent.palette)\n        }\n    }\n    DccObject {\n        name: \"brightnessGroup\"\n        parentName: \"display\"\n        displayName: qsTr(\"Brightness\")\n        weight: 60\n        visible: screen.screenItems.length > 1\n        pageType: DccObject.Item\n        page: DccGroupView {}\n        DccObject {\n            name: \"brightness\"\n            parentName: \"display/brightnessGroup\"\n            displayName: qsTr(\"Brightness\")\n            weight: 10\n            pageType: DccObject.Editor\n            onParentItemChanged: item => { if (item) item.implicitHeight = 36 }\n            page: Item {\n            }\n        }\n        DccRepeater {\n            model: screen.screenItems\n            delegate: DccObject {\n                name: \"brightness\" + index\n                parentName: \"display/brightnessGroup\"\n                weight: 20 + index\n                displayName: screen.screenItems[index].name\n                pageType: DccObject.Editor\n                page: BrightnessComponent {\n                    screenItem: screen.screenItems[index]\n                }\n            }\n        }\n    }\n    DccObject {\n        name: \"screenGroup\"\n        parentName: \"display\"\n        weight: 70\n        pageType: DccObject.Item\n        page: DccGroupView {}\n        onParentItemChanged: item => { if (item) item.topInset = 3 }\n        DccObject {\n            name: \"brightness\"\n            parentName: \"display/screenGroup\"\n            displayName: qsTr(\"Brightness\")\n            weight: 10\n            visible: screen.screenItems.length === 1\n            pageType: DccObject.Editor\n            page: BrightnessComponent {\n                screenItem: screen.screenItems[0]\n            }\n        }\n\n        DccObject {\n            name: \"displayResolution\"\n            parentName: \"display/screenGroup\"\n            displayName: qsTr(\"Resolution\") // 分辨率\n            weight: 20\n            pageType: DccObject.Editor\n            page: ComboBox {\n                id: resolutionComboBox\n                flat: true\n                model: root.getResolutionModel(screen.resolutionList, screen.bestResolution)\n                textRole: \"text\"\n                valueRole: \"value\"\n\n                property real popupContentWidth: 0\n\n                function indexOfSize(model, currentSize) {\n                    for (var i = 0; i < model.length; i++) {\n                        let v = model[i]\n                        if (v.value.width === currentSize.width && v.value.height === currentSize.height) {\n                            return i\n                        }\n                    }\n                    return -1\n                }\n\n                TextMetrics {\n                    id: resolutionTextMetrics\n                    font: resolutionComboBox.font\n                }\n\n                function updatePopupWidth() {\n                    var maxWidth = 0\n                    for (var i = 0; i < model.length; i++) {\n                        resolutionTextMetrics.text = model[i].text\n                        var itemWidth = resolutionTextMetrics.width + 80\n                        if (itemWidth > maxWidth) {\n                            maxWidth = itemWidth\n                        }\n                    }\n                    popupContentWidth = maxWidth\n                }\n\n                Component.onCompleted: updatePopupWidth()\n                onModelChanged: updatePopupWidth()\n\n                popup.width: Math.max(popupContentWidth, width)\n\n                currentIndex: indexOfSize(model, screen.currentResolution)\n                onActivated: {\n                    if (screen.currentResolution === currentValue) {\n                        return\n                    }\n                    screen.currentResolution = currentValue\n                    if (dccData.isX11) {\n                        dialogDelayTimer.showDelayed(this, getControlCenterScreen())\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"resizeDesktop\"\n            parentName: \"display/screenGroup\"\n            displayName: qsTr(\"Resize Desktop\") // 屏幕显示\n            weight: 30\n            visible: screen.availableFillModes.length > 0\n            pageType: DccObject.Editor\n            page: D.ComboBox {\n                id: control\n                ListModel {\n                    id: fillmodellist\n                    ListElement {\n                        text: qsTr(\"Default\")\n                        icon: \"DisplayDefault\"\n                        value: \"None\"\n                    }\n                    ListElement {\n                        text: qsTr(\"Stretch\")\n                        icon: \"DisplayStretch\"\n                        value: \"Full\"\n                    }\n                    ListElement {\n                        text: qsTr(\"Center\")\n                        icon: \"DisplayCenter\"\n                        value: \"Center\"\n                    }\n                    ListElement {\n                        text: qsTr(\"Fit\")\n                        icon: \"DisplayFit\"\n                        value: \"Full aspect\"\n                    }\n                }\n                ListModel {\n                    id: fillModel\n                }\n                function getFillModel(availableFillModes, currentFillMode) {\n                    fillModel.clear()\n                    for (var i = 0; i < fillmodellist.count; i++) {\n                        let fillmode = fillmodellist.get(i)\n                        let value = fillmode.value\n                        if (value === currentFillMode || availableFillModes.indexOf(value) >= 0) {\n                            fillModel.append(fillmode)\n                        }\n                    }\n                    return fillModel\n                }\n                function indexOfFill(model, currentFill) {\n                    for (var i = 0; i < model.count; i++) {\n                        let v = model.get(i)\n                        if (v.value === currentFill) {\n                            return i\n                        }\n                    }\n                    return -1\n                }\n                flat: true\n                textRole: \"text\"\n                valueRole: \"value\"\n                iconNameRole: \"icon\"\n                contentItem: D.IconLabel {\n                    rightPadding: DS.Style.comboBox.spacing\n                    alignment: control.horizontalAlignment\n                    icon {\n                        name: (control.currentIndex >= 0 && control.iconNameRole && model.get(control.currentIndex)[control.iconNameRole] !== undefined) ? model.get(control.currentIndex)[control.iconNameRole] : null\n                        height: DS.Style.comboBox.iconSize\n                        width: DS.Style.comboBox.iconSize\n                        palette: D.DTK.makeIconPalette(control.palette)\n                    }\n                    text: control.editable ? control.editText : control.displayText\n                    font: control.font\n                    color: control.palette.windowText\n                    spacing: DS.Style.comboBox.spacing\n                }\n                model: getFillModel(screen.availableFillModes, screen.currentFillMode)\n                currentIndex: indexOfFill(this.model, screen.currentFillMode)\n                onActivated: {\n                    if (screen.currentFillMode === currentValue) {\n                        return\n                    }\n                    screen.currentFillMode = currentValue\n                    if (dccData.isX11) {\n                        dialogDelayTimer.showDelayed(this, getControlCenterScreen())\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"displayRefreshRate\"\n            parentName: \"display/screenGroup\"\n            displayName: qsTr(\"Refresh Rate\") // 刷新率\n            weight: 40\n            pageType: DccObject.Editor\n            page: ComboBox {\n                flat: true\n                textRole: \"text\"\n                valueRole: \"value\"\n                model: root.getRateModel(screen.rateList, screen.bestRate)\n                function indexOfRate(model, currentRate) {\n                    for (var i = 0; i < model.length; i++) {\n                        let v = model[i]\n                        if (v.value === currentRate) {\n                            return i\n                        }\n                    }\n                    return -1\n                }\n                currentIndex: indexOfRate(model, screen.currentRate)\n                onActivated: {\n                    if (screen.currentRate === currentValue) {\n                        return\n                    }\n                    screen.currentRate = currentValue\n                    if (dccData.isX11) {\n                        dialogDelayTimer.showDelayed(this, getControlCenterScreen())\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"displayRotate\"\n            parentName: \"display/screenGroup\"\n            displayName: qsTr(\"Rotation\") // 方向\n            weight: 50\n            visible: dccData.isX11\n            pageType: DccObject.Editor\n            page: ComboBox {\n                flat: true\n                textRole: \"text\"\n                valueRole: \"value\"\n                model: [{\n                        \"text\": qsTr(\"Standard\"),\n                        \"value\": 1\n                    }, {\n                        \"text\": qsTr(\"90°\"),\n                        \"value\": 2\n                    }, {\n                        \"text\": qsTr(\"180°\"),\n                        \"value\": 4\n                    }, {\n                        \"text\": qsTr(\"270°\"),\n                        \"value\": 8\n                    }]\n                function indexOfRotate(rotate) {\n                    for (var i = 0; i < model.length; i++) {\n                        let v = model[i]\n                        if (v.value === rotate) {\n                            return i\n                        }\n                    }\n                    return -1\n                }\n\n                currentIndex: indexOfRotate(screen.rotate)\n                onActivated: {\n                    if (screen.rotate !== currentValue) {\n                        screen.rotate = currentValue\n                        if (dccData.isX11) {\n                            dialogDelayTimer.showDelayed(this, getControlCenterScreen())\n                        }\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"displayScaling\"\n            parentName: \"display/screenGroup\"\n            displayName: qsTr(\"Scaling\") //\"缩放\"\n            description: screen.maxScale >= 1.25 ? \"\" : qsTr(\"The monitor only supports 100% display scaling\")\n            weight: 60\n            visible: !dccData.isX11 || dccData.virtualScreens.length === 1\n            pageType: DccObject.Editor\n            page: ComboBox {\n                flat: true\n                textRole: \"text\"\n                valueRole: \"value\"\n                model: dccData.isX11 ? root.getScaleModel(dccData.maxGlobalScale, dccData.globalScale) : root.getScaleModel(screen.maxScale, screen.scale)\n                currentIndex: dccData.isX11 ? root.indexOfScale(model, dccData.globalScale) : root.indexOfScale(model, screen.scale)\n                onActivated: {\n                    if (dccData.isX11) {\n                        if (dccData.globalScale !== currentValue) {\n                            dccData.globalScale = currentValue\n                        }\n                    } else {\n                        if (screen.scale !== currentValue) {\n                            screen.scale = currentValue\n                        }\n                    }\n                }\n            }\n        }\n    }\n    DccObject {\n        name: \"displayScaling\"\n        parentName: \"display\"\n        displayName: qsTr(\"Scaling\") //\"缩放\"\n        description: dccData.maxGlobalScale >= 1.25 ? \"\" : qsTr(\"The monitor only supports 100% display scaling\")\n        weight: 80\n        visible: dccData.isX11 && dccData.virtualScreens.length > 1\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Editor\n        onParentItemChanged: item => { if (item) item.topInset = 6 }\n        page: ComboBox {\n            flat: true\n            textRole: \"text\"\n            valueRole: \"value\"\n            model: root.getScaleModel(dccData.maxGlobalScale, dccData.globalScale)\n            currentIndex: root.indexOfScale(model, dccData.globalScale)\n            onActivated: {\n                if (dccData.globalScale !== currentValue) {\n                    dccData.globalScale = currentValue\n                }\n            }\n        }\n    }\n\n    DccTitleObject {\n        name: \"displayColorTemperature\"\n        parentName: \"display\"\n        displayName: qsTr(\"Eye Comfort\")\n        onParentItemChanged: item => { if (item) { item.topInset = 12; item.leftPadding = 14 } }\n        weight: 90\n    }\n    DccObject {\n        name: \"eyeComfort\"\n        parentName: \"display\"\n        displayName: qsTr(\"Enable eye comfort\")\n        description: qsTr(\"Adjust screen display to warmer colors, reducing screen blue light\")\n        weight: 100\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Editor\n        onParentItemChanged: item => { if (item) { item.rightItemTopMargin = 6; item.rightItemBottomMargin = 6 } }\n        page: Switch {\n            checked: dccData.colorTemperatureEnabled\n            onClicked: dccData.colorTemperatureEnabled = checked\n        }\n    }\n    DccObject {\n        name: \"eyeComfortGroup\"\n        parentName: \"display\"\n        weight: 110\n        visible: dccData.colorTemperatureEnabled\n        pageType: DccObject.Item\n        onParentItemChanged: item => { if (item) { item.rightItemTopMargin = 6; item.rightItemBottomMargin = 6 } }\n        page: DccGroupView {}\n        DccObject {\n            name: \"time\"\n            parentName: \"display/eyeComfortGroup\"\n            displayName: qsTr(\"Time\")\n            weight: 10\n            pageType: DccObject.Editor\n            page: ComboBox {\n                flat: true\n                model: [qsTr(\"All day\"), qsTr(\"Sunset to Sunrise\"), qsTr(\"Custom Time\")]\n                currentIndex: dccData.colorTemperatureMode\n                onActivated: dccData.colorTemperatureMode = currentIndex\n            }\n        }\n        DccObject {\n            name: \"timeFrame\"\n            parentName: \"display/eyeComfortGroup\"\n            weight: 20\n            visible: dccData.colorTemperatureMode === 2\n            pageType: DccObject.Editor\n            page: RowLayout {\n                Label {\n                    text: qsTr(\"from\")\n                }\n                DccTimeRange {\n                    id: startTimeRange\n                    hour: dccData.customColorTempTimePeriod.split(\"-\")[0].split(\":\")[0]\n                    minute: dccData.customColorTempTimePeriod.split(\"-\")[0].split(\":\")[1]\n                    onTimeChanged: dccData.customColorTempTimePeriod = startTimeRange.timeString + \"-\" + endTimeRange.timeString\n                }\n                Label {\n                    text: qsTr(\"to\")\n                }\n                DccTimeRange {\n                    id: endTimeRange\n                    hour: dccData.customColorTempTimePeriod.split(\"-\")[1].split(\":\")[0]\n                    minute: dccData.customColorTempTimePeriod.split(\"-\")[1].split(\":\")[1]\n                    onTimeChanged: dccData.customColorTempTimePeriod = startTimeRange.timeString + \"-\" + endTimeRange.timeString\n                }\n                Connections {\n                    target: dccData\n                    function onCustomColorTempTimePeriodChanged() {\n                        var period = dccData.customColorTempTimePeriod.split(\"-\")\n                        startTimeRange.hour = period[0].split(\":\")[0]\n                        startTimeRange.minute = period[0].split(\":\")[1]\n                        endTimeRange.hour = period[1].split(\":\")[0]\n                        endTimeRange.minute = period[1].split(\":\")[1]\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"colorTemperature\"\n            parentName: \"display/eyeComfortGroup\"\n            displayName: qsTr(\"Color Temperature\")\n            weight: 30\n            pageType: DccObject.Editor\n            page: RowLayout {\n                property var screenItem\n                Label {\n                    Layout.alignment: Qt.AlignVCenter\n                    text: Math.round(colorTemperatureSlider.value) + \"%\"\n                    font: D.DTK.fontManager.t10\n                    opacity: 0.5\n                }\n                D.DciIcon {\n                    Layout.alignment: Qt.AlignVCenter\n                    name: \"cool_colour\"\n                }\n                Slider {\n                    id: colorTemperatureSlider\n                    implicitHeight: 24\n                    Layout.alignment: Qt.AlignVCenter\n                    from: 0\n                    to: 100\n                    stepSize: 1\n                    value: dccData.colorTemperature\n                    onValueChanged: {\n                        if (dccData.colorTemperature !== value)\n                            dccData.colorTemperature = value\n                    }\n                }\n                D.DciIcon {\n                    Layout.alignment: Qt.AlignVCenter\n                    name: \"warm_colour\"\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-display/qml/ScreenIndicator.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\n\nimport org.deepin.dcc 1.0\n\nWindow {\n    id: root\n    flags: Qt.CoverWindow | Qt.WindowStaysOnTopHint | Qt.SplashScreen | Qt.FramelessWindowHint | Qt.X11BypassWindowManagerHint\n    color: \"#2ca7f8\"\n    x: screen.virtualX\n    y: screen.virtualY\n    width: screen.width\n    height: 10\n    onClosing: destroy(10)\n    Timer {\n        interval: 1000\n        running: root.visible\n        onTriggered: root.close()\n    }\n    Window {\n        flags: Qt.CoverWindow | Qt.WindowStaysOnTopHint | Qt.SplashScreen | Qt.FramelessWindowHint | Qt.X11BypassWindowManagerHint\n        visible: root.visible\n        color: root.color\n        screen: root.screen\n        x: screen.virtualX\n        y: screen.virtualY + screen.height - 10\n        width: screen.width\n        height: 10\n    }\n    Window {\n        flags: Qt.CoverWindow | Qt.WindowStaysOnTopHint | Qt.SplashScreen | Qt.FramelessWindowHint | Qt.X11BypassWindowManagerHint\n        visible: root.visible\n        color: root.color\n        screen: root.screen\n        x: screen.virtualX\n        y: screen.virtualY\n        width: 10\n        height: screen.height\n    }\n    Window {\n        flags: Qt.CoverWindow | Qt.WindowStaysOnTopHint | Qt.SplashScreen | Qt.FramelessWindowHint | Qt.X11BypassWindowManagerHint\n        visible: root.visible\n        color: root.color\n        screen: root.screen\n        x: screen.virtualX + screen.width - 10\n        y: screen.virtualY\n        width: 10\n        height: screen.height\n    }\n}\n"
  },
  {
    "path": "src/plugin-display/qml/ScreenItem.qml",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Effects\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc 1.0\n\nItem {\n    id: root\n    property var screen\n    property real translationX: 100\n    property real translationY: 100\n    property real scale: 0.1\n    property real radius: 8\n    property bool selected: false\n    property real offset: (imgRepeater.count - 1) * 6\n    signal pressed\n    signal positionChanged\n    signal released\n    signal updatePosition\n\n    // Home screen icon responsive sizing constants\n    readonly property int homeIconMaxSize: 24\n    readonly property real homeIconSizeRatio: 0.25\n    readonly property int homeIconMinMargin: 4\n    readonly property real homeIconMarginRatio: 0.04\n\n    // Home screen icon responsive sizing\n    readonly property int homeIconSize: Math.min(homeIconMaxSize, Math.round(root.width * homeIconSizeRatio))\n    readonly property int homeIconMargin: Math.max(homeIconMinMargin, Math.round(root.width * homeIconMarginRatio))\n\n    focus: true\n    Repeater {\n        id: imgRepeater\n        model: screen.screenItems.length\n        delegate: Image {\n            id: image\n            x: offset - index * 6\n            y: offset - index * 6\n            z: 1 - (0.01 * index)\n            width: root.width - offset\n            height: root.height - offset\n            opacity: index != 0 ? 0.8 : 1\n            source: \"image://DccImage/\" + screen.wallpaper\n            mipmap: true\n            fillMode: Image.PreserveAspectCrop\n            asynchronous: true\n            layer.enabled: true\n            layer.effect: MultiEffect {\n                maskEnabled: true\n                maskSource: imageMask\n                antialiasing: true\n                maskThresholdMin: 0.5\n                maskSpreadAtMin: 1.0\n            }\n            Item {\n                id: imageMask\n                anchors.fill: parent\n                layer.enabled: true\n                visible: false\n                Rectangle {\n                    anchors.fill: parent\n                    anchors.margins: 0.5\n                    radius: root.radius\n                }\n            }\n            Rectangle {\n                anchors.fill: parent\n                radius: root.radius\n                color: \"transparent\"\n                opacity: (index === 0 && root.selected) ? 0.7 : 0.2\n                border.color: (index === 0 && root.selected) ? this.palette.window : \"#000000\"\n                border.width: 2\n                smooth: true\n            }\n        }\n    }\n    DccLabel {\n        x: offset\n        y: offset\n        z: 2\n        width: root.width - offset\n        height: root.height - offset\n        padding: root.radius + 5\n        text: screen.name\n        elide: Text.ElideMiddle\n        color: \"white\"\n        layer.enabled: true\n        layer.effect: MultiEffect {\n            shadowEnabled: true\n            shadowBlur: 0.01\n            shadowColor: Qt.rgba(0.0, 0.0, 0.0, 0.7)\n            shadowVerticalOffset: 1\n        }\n    }\n    D.DciIcon {\n        z: 2\n        visible: screen && dccData.primaryScreen && (screen.name === dccData.primaryScreen.name)\n        name: \"home_screen\"\n        anchors.bottom: parent.bottom\n        anchors.right: parent.right\n        anchors.bottomMargin: root.homeIconMargin\n        anchors.rightMargin: root.homeIconMargin\n        sourceSize: Qt.size(root.homeIconSize, root.homeIconSize)\n    }\n    Loader {\n        x: offset\n        y: offset\n        z: 2\n        width: root.width - offset\n        height: root.height - offset\n        active: root.selected\n        sourceComponent: Rectangle {\n            anchors.fill: parent\n            radius: root.radius + 1\n            color: \"transparent\"\n            border.color: this.palette.highlight\n            border.width: 2\n            smooth: true\n        }\n    }\n    MouseArea {\n        z: 2\n        anchors.fill: parent\n        drag.target: parent\n        onPressed: root.pressed()\n        onPositionChanged: root.positionChanged()\n        onReleased: root.released()\n    }\n    Component.onCompleted: updatePosition()\n\n    Connections {\n        target: screen\n        function onXChanged() {\n            updatePosition()\n        }\n        function onYChanged() {\n            updatePosition()\n        }\n        function onWidthChanged() {\n            updatePosition()\n        }\n        function onHeightChanged() {\n            updatePosition()\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-display/qml/ScreenRecognize.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc 1.0\n\nWindow {\n    id: root\n    property string name: \"screen\"\n    signal escPressed\n\n    flags: Qt.CoverWindow | Qt.WindowStaysOnTopHint | Qt.SplashScreen | Qt.FramelessWindowHint | Qt.X11BypassWindowManagerHint\n    D.DWindow.enabled: true\n    x: screen.virtualX + (screen.width - width) * 0.5\n    y: screen.virtualY + screen.height - height - 220\n    width: control.implicitWidth + 44\n    height: control.implicitHeight + 24\n    minimumWidth: 200\n    onClosing: destroy(10)\n    Text {\n        id: control\n        anchors.centerIn: parent\n        text: root.name\n        font: D.DTK.fontManager.t4\n        color: control.palette.brightText\n    }\n    Shortcut {\n        sequence: \"Esc\"\n        onActivated: escPressed()\n        onActivatedAmbiguously: escPressed()\n    }\n}\n"
  },
  {
    "path": "src/plugin-display/qml/ScreenTab.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc 1.0\n\nItem {\n    id: root\n    property var screen\n    property alias model: repeater.model\n    signal screenClicked(var screen)\n\n    implicitHeight: 30\n    RowLayout {\n        Repeater {\n            id: repeater\n            delegate: Rectangle {\n                property bool isSelect: model.modelData === screen\n                property alias hovered: mouseArea.containsMouse\n                implicitWidth: nameLabel.implicitWidth + 20\n                implicitHeight: 30\n                radius: 8\n                color: isSelect ? (D.DTK.themeType == D.ApplicationHelper.LightType ? Qt.rgba(0, 0, 0, 0.1) : Qt.rgba(1, 1, 1, 0.1)) : \"transparent\"\n                Label {\n                    id: nameLabel\n                    anchors.centerIn: parent\n                    text: model.modelData.name\n                    color: hovered ? this.palette.link : (isSelect ? this.palette.highlight : this.palette.text)\n                }\n                MouseArea {\n                    id: mouseArea\n                    anchors.fill: parent\n                    hoverEnabled: true\n                    onClicked: {\n                        if (!isSelect) {\n                            screenClicked(model.modelData)\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-display/qml/TimeoutDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Layouts 1.15\nimport QtQuick.Controls 2.5\n\nimport org.deepin.dtk 1.0 as D\n\nD.DialogWindow {\n    id: root\n\n    property string message: qsTr(\"Settings will be reverted in %1s.\")\n    property real timeout: 15\n    property bool save: false\n    modality: Qt.ApplicationModal\n    width: 380\n    x: screen.virtualX + ((screen.width - width) / 2)\n    y: screen.virtualY + ((screen.height - height) / 2)\n    icon: \"preferences-system\"\n    title: qsTr(\"Save the display settings?\")\n    onClosing: {\n        destroy(10)\n        if (save) {\n            dccData.saveChanges()\n        } else {\n            dccData.resetBackup()\n        }\n    }\n    ColumnLayout {\n        Timer {\n            interval: 1000\n            running: root.visible\n            repeat: true\n            onTriggered: {\n                root.timeout--\n                if (root.timeout < 1) {\n                    close()\n                }\n                // 定时更新下坐标\n                if (timeout > 10) {\n                    root.x = root.screen.virtualX + ((root.screen.width - root.width) / 2)\n                    root.y = root.screen.virtualY + ((root.screen.height - root.height) / 2)\n                }\n            }\n        }\n        width: parent.width\n        Label {\n            Layout.fillWidth: true\n            Layout.leftMargin: 50\n            Layout.rightMargin: 50\n            text: title\n            font.bold: true\n            wrapMode: Text.WordWrap\n            horizontalAlignment: Text.AlignHCenter\n        }\n        Label {\n            Layout.fillWidth: true\n            Layout.leftMargin: 50\n            Layout.rightMargin: 50\n            text: message.arg(timeout)\n            wrapMode: Text.WordWrap\n            horizontalAlignment: Text.AlignHCenter\n        }\n        RowLayout {\n            Layout.topMargin: 10\n            Layout.bottomMargin: 10\n            D.RecommandButton {\n                Layout.fillWidth: true\n                text: qsTr(\"Revert\")\n                onClicked: close()\n            }\n            Rectangle {\n                implicitWidth: 2\n                Layout.fillHeight: true\n                color: this.palette.button\n            }\n\n            D.Button {\n                Layout.fillWidth: true\n                text: qsTr(\"Save\")\n                onClicked: {\n                    save = true\n                    close()\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-display/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-display/wayland/libwayqt/Output.cpp",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"wayland-client-protocol.h\"\n\n#include \"Output.h\"\n#include <wayland-client.h>\n\n#include <QCoreApplication>\n#include <QDebug>\n#include <QImage>\n#include <QObject>\n#include <QThread>\n\nWQt::Output::Output(wl_output *op)\n{\n    mObj = op;\n\n    wl_output_add_listener(mObj, &mListener, this);\n}\n\nWQt::Output::~Output()\n{\n    wl_output_destroy(mObj);\n}\n\nQString WQt::Output::name()\n{\n    return mName;\n}\n\nQString WQt::Output::description()\n{\n    return mDescr;\n}\n\nQString WQt::Output::make()\n{\n    return mMake;\n}\n\nQString WQt::Output::model()\n{\n    return mModel;\n}\n\nQPoint WQt::Output::position()\n{\n    return mPos;\n}\n\nQSize WQt::Output::physicalSize()\n{\n    return mPhysicalSize;\n}\n\nWQt::Output::OutputMode WQt::Output::mode()\n{\n    return mMode;\n}\n\nWQt::Output::SubpixelGeometry WQt::Output::subpixelGeometry()\n{\n    return (WQt::Output::SubpixelGeometry)mSubPixel;\n}\n\nWQt::Output::Rotation WQt::Output::transform()\n{\n    return (WQt::Output::Rotation)mTransform;\n}\n\nint32_t WQt::Output::scale()\n{\n    return mScale;\n}\n\nbool WQt::Output::isReady() const\n{\n    return mDone;\n}\n\nwl_output *WQt::Output::get()\n{\n    return mObj;\n}\n\nvoid WQt::Output::handleGeometryEvent(void *data,\n                                      struct wl_output *,\n                                      int32_t x,\n                                      int32_t y,\n                                      int32_t w,\n                                      int32_t h,\n                                      int32_t e,\n                                      const char *f,\n                                      const char *g,\n                                      int32_t t)\n{\n    Output *output = reinterpret_cast<WQt::Output *>(data);\n\n    output->mPos = QPoint(x, y);\n    output->mPhysicalSize = QSize(w, h);\n    output->mSubPixel = e;\n    output->mMake = QString(f);\n    output->mModel = QString(g);\n    output->mTransform = t;\n}\n\nvoid WQt::Output::handleModeEvent(void *data,\n                                  struct wl_output *,\n                                  uint32_t current,\n                                  int32_t xres,\n                                  int32_t yres,\n                                  int32_t refresh)\n{\n    Output *output = reinterpret_cast<WQt::Output *>(data);\n\n    if (current) {\n        output->mMode = { QSize(xres, yres), refresh, true };\n    }\n}\n\nvoid WQt::Output::handleDone(void *data, struct wl_output *)\n{\n    Output *output = reinterpret_cast<WQt::Output *>(data);\n\n    output->mDone = true;\n    Q_EMIT output->done();\n}\n\nvoid WQt::Output::handleScale(void *data, struct wl_output *, int32_t scale)\n{\n    Output *output = reinterpret_cast<WQt::Output *>(data);\n\n    output->mScale = scale;\n}\n\nvoid WQt::Output::handleNameEvent(void *data, struct wl_output *, const char *name)\n{\n    Output *output = reinterpret_cast<WQt::Output *>(data);\n\n    output->mName = QString(name);\n}\n\nvoid WQt::Output::handleDescriptionEvent(void *data, struct wl_output *, const char *descr)\n{\n    Output *output = reinterpret_cast<WQt::Output *>(data);\n\n    output->mDescr = descr;\n}\n\nconst wl_output_listener WQt::Output::mListener = {\n    handleGeometryEvent, handleModeEvent, handleDone,\n    handleScale,         handleNameEvent, handleDescriptionEvent,\n};\n"
  },
  {
    "path": "src/plugin-display/wayland/libwayqt/Output.h",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <wayland-client-protocol.h>\n\n#include <QMap>\n#include <QObject>\n#include <QRect>\n#include <QString>\n\nstruct wl_output;\nstruct wl_output_listener;\n\nnamespace WQt {\nclass Output;\n}\n\nclass WQt::Output : public QObject\n{\n    Q_OBJECT;\n\npublic:\n    enum SubpixelGeometry {\n        Unknown = 0x634429,\n        None,\n        HorizontalRGB,\n        HorizontalBGR,\n        VerticalRGB,\n        VerticalBGR,\n    };\n\n    enum Rotation {\n        Normal = 0x951893,\n        Rotate90,\n        Rotate180,\n        Rotate270,\n        Flipped,\n        Flipped90,\n        Flipped180,\n        Flipped270,\n    };\n\n    typedef struct output_mode_t\n    {\n        QSize resolution;\n        int32_t refreshRate;\n        bool current = false;\n    } OutputMode;\n\n    Output(wl_output *);\n    ~Output();\n\n    QString name();\n    QString description();\n    QString make();\n    QString model();\n\n    QPoint position();\n    QSize physicalSize();\n    WQt::Output::OutputMode mode();\n    SubpixelGeometry subpixelGeometry();\n    Rotation transform();\n\n    int32_t scale();\n    bool isReady() const;\n\n    wl_output *get();\n\nQ_SIGNALS:\n    void done();\n\nprivate:\n    static void handleGeometryEvent(void *,\n                                    struct wl_output *,\n                                    int32_t,\n                                    int32_t,\n                                    int32_t,\n                                    int32_t,\n                                    int32_t,\n                                    const char *,\n                                    const char *,\n                                    int32_t);\n    static void handleModeEvent(void *, struct wl_output *, uint32_t, int32_t, int32_t, int32_t);\n    static void handleDone(void *, struct wl_output *);\n    static void handleScale(void *, struct wl_output *, int32_t);\n    static void handleNameEvent(void *, struct wl_output *, const char *);\n    static void handleDescriptionEvent(void *, struct wl_output *, const char *);\n\n    wl_output *mObj;\n    static const wl_output_listener mListener;\n\n    QPoint mPos;\n    QSize mPhysicalSize;\n    int32_t mSubPixel;\n    QString mMake;\n    QString mModel;\n    int32_t mTransform;\n\n    WQt::Output::OutputMode mMode;\n    int32_t mScale;\n\n    QString mName;\n    QString mDescr;\n\n    bool mDone = false;\n};\n"
  },
  {
    "path": "src/plugin-display/wayland/libwayqt/OutputManager.cpp",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"OutputManager.h\"\n\n#include \"wlr-output-management-unstable-v1-client-protocol.h\"\n\n#include <wayland-client.h>\n\n#include <QCoreApplication>\n#include <QDebug>\n#include <QImage>\n#include <QObject>\n#include <QThread>\n#include <QVariant>\n\n/**\n * Output Manager\n * This is the beginning of all our operations.\n * Obtain a pointer to this object from Wayland Registry\n */\n\nWQt::OutputManager::OutputManager(zwlr_output_manager_v1 *opMgr)\n{\n    mObj = opMgr;\n    zwlr_output_manager_v1_add_listener(mObj, &mListener, this);\n}\n\nWQt::OutputManager::~OutputManager()\n{\n    zwlr_output_manager_v1_destroy(mObj);\n}\n\nQList<WQt::OutputHead *> WQt::OutputManager::heads()\n{\n    return mHeads;\n}\n\nWQt::OutputConfiguration *WQt::OutputManager::createConfiguration()\n{\n    return new WQt::OutputConfiguration(zwlr_output_manager_v1_create_configuration(mObj, mSerial));\n}\n\nvoid WQt::OutputManager::stop()\n{\n    zwlr_output_manager_v1_stop(mObj);\n}\n\nzwlr_output_manager_v1 *WQt::OutputManager::get()\n{\n    return mObj;\n}\n\nvoid WQt::OutputManager::handleHead(void *data, zwlr_output_manager_v1 *, zwlr_output_head_v1 *head)\n{\n    WQt::OutputManager *mgr = reinterpret_cast<WQt::OutputManager *>(data);\n\n    WQt::OutputHead *opHead = new WQt::OutputHead(head);\n\n    mgr->mHeads << opHead;\n\n    connect(opHead, &WQt::OutputHead::finished, [=]() {\n        mgr->mHeads.removeAll(opHead);\n    });\n\n    emit mgr->headAttached(opHead);\n}\n\nvoid WQt::OutputManager::handleDone(void *data, zwlr_output_manager_v1 *, uint32_t serial)\n{\n    WQt::OutputManager *mgr = reinterpret_cast<WQt::OutputManager *>(data);\n\n    mgr->mSerial = serial;\n    mgr->mIsDone = true;\n\n    emit mgr->done();\n}\n\nvoid WQt::OutputManager::handleFinished(void *data, zwlr_output_manager_v1 *)\n{\n    WQt::OutputManager *mgr = reinterpret_cast<WQt::OutputManager *>(data);\n\n    zwlr_output_manager_v1_destroy(mgr->mObj);\n    mgr->mObj = nullptr;\n}\n\nconst struct zwlr_output_manager_v1_listener WQt::OutputManager::mListener = {\n    handleHead,\n    handleDone,\n    handleFinished,\n};\n\n/**\n * Output Head\n * Heads are obtained from OutputManager class, via signals,\n * or via OutputManager::heads() function;\n */\n\nWQt::OutputHead::OutputHead() { }\n\nWQt::OutputHead::OutputHead(zwlr_output_head_v1 *head)\n{\n    mObj = head;\n    zwlr_output_head_v1_add_listener(mObj, &mListener, this);\n}\n\nWQt::OutputHead::OutputHead(const WQt::OutputHead &otherHead)\n    : QObject()\n{\n    mObj = otherHead.mObj;\n\n    mPropsMap = otherHead.mPropsMap;\n    mModes = otherHead.mModes;\n    mCurrentMode = otherHead.mCurrentMode;\n}\n\nWQt::OutputHead::~OutputHead()\n{\n    zwlr_output_head_v1_destroy(mObj);\n}\n\nQVariant WQt::OutputHead::property(WQt::OutputHead::Property prop)\n{\n    if (prop == WQt::OutputHead::Modes) {\n        return QVariant::fromValue<QList<WQt::OutputMode *>>(mModes);\n    }\n\n    else if (prop == WQt::OutputHead::CurrentMode) {\n        return QVariant::fromValue<WQt::OutputMode *>(mCurrentMode);\n    }\n\n    else {\n        return mPropsMap.value((int)prop);\n    }\n}\n\nzwlr_output_head_v1 *WQt::OutputHead::get()\n{\n    return mObj;\n}\n\nvoid WQt::OutputHead::handleName(void *data, zwlr_output_head_v1 *, const char *name)\n{\n    WQt::OutputHead *opHead = reinterpret_cast<WQt::OutputHead *>(data);\n\n    opHead->mPropsMap[WQt::OutputHead::Name] = name;\n\n    emit opHead->changed(WQt::OutputHead::Name);\n}\n\nvoid WQt::OutputHead::handleDescription(void *data, zwlr_output_head_v1 *, const char *descr)\n{\n    WQt::OutputHead *opHead = reinterpret_cast<WQt::OutputHead *>(data);\n\n    opHead->mPropsMap[WQt::OutputHead::Description] = descr;\n\n    emit opHead->changed(WQt::OutputHead::Description);\n}\n\nvoid WQt::OutputHead::handlePhysicalSize(void *data,\n                                         zwlr_output_head_v1 *,\n                                         int32_t width,\n                                         int32_t height)\n{\n    WQt::OutputHead *opHead = reinterpret_cast<WQt::OutputHead *>(data);\n\n    opHead->mPropsMap[WQt::OutputHead::PhysicalSize] = QSize(width, height);\n\n    emit opHead->changed(WQt::OutputHead::PhysicalSize);\n}\n\nvoid WQt::OutputHead::handleMode(void *data, zwlr_output_head_v1 *, zwlr_output_mode_v1 *mode)\n{\n    WQt::OutputHead *opHead = reinterpret_cast<WQt::OutputHead *>(data);\n\n    if (opHead->mPropsMap.contains(WQt::OutputHead::Modes)) {\n        opHead->mPropsMap[WQt::OutputHead::Modes] =\n                QVariant::fromValue<QList<WQt::OutputMode *>>(QList<WQt::OutputMode *>());\n    }\n\n    WQt::OutputMode *opMode = new WQt::OutputMode(mode);\n\n    connect(opMode, &WQt::OutputMode::finished, [=]() {\n        opHead->mModes.removeAll(opMode);\n    });\n    opHead->mModes << opMode;\n\n    emit opHead->changed(WQt::OutputHead::Modes);\n}\n\nvoid WQt::OutputHead::handleEnabled(void *data, zwlr_output_head_v1 *, int32_t yes)\n{\n    WQt::OutputHead *opHead = reinterpret_cast<WQt::OutputHead *>(data);\n\n    opHead->mPropsMap[WQt::OutputHead::Enabled] = (bool)yes;\n\n    emit opHead->changed(WQt::OutputHead::Enabled);\n}\n\nvoid WQt::OutputHead::handleCurrentMode(void *data,\n                                        zwlr_output_head_v1 *,\n                                        zwlr_output_mode_v1 *curMode)\n{\n    WQt::OutputHead *opHead = reinterpret_cast<WQt::OutputHead *>(data);\n\n    for (auto *mode : opHead->property(WQt::OutputHead::Modes).value<QList<WQt::OutputMode *>>()) {\n        if (mode->get() == curMode)\n            opHead->mCurrentMode = mode;\n    }\n\n    emit opHead->changed(WQt::OutputHead::CurrentMode);\n}\n\nvoid WQt::OutputHead::handlePosition(void *data, zwlr_output_head_v1 *, int32_t x, int32_t y)\n{\n    WQt::OutputHead *opHead = reinterpret_cast<WQt::OutputHead *>(data);\n\n    opHead->mPropsMap[WQt::OutputHead::Position] = QPoint(x, y);\n\n    emit opHead->changed(WQt::OutputHead::Position);\n}\n\nvoid WQt::OutputHead::handleTransform(void *data, zwlr_output_head_v1 *, int32_t transform)\n{\n    WQt::OutputHead *opHead = reinterpret_cast<WQt::OutputHead *>(data);\n\n    opHead->mPropsMap[WQt::OutputHead::Transform] = transform;\n\n    emit opHead->changed(WQt::OutputHead::Transform);\n}\n\nvoid WQt::OutputHead::handleScale(void *data, zwlr_output_head_v1 *, wl_fixed_t scale)\n{\n    WQt::OutputHead *opHead = reinterpret_cast<WQt::OutputHead *>(data);\n\n    opHead->mPropsMap[WQt::OutputHead::Scale] = wl_fixed_to_double(scale);\n\n    emit opHead->changed(WQt::OutputHead::Scale);\n}\n\nvoid WQt::OutputHead::handleFinished(void *data, zwlr_output_head_v1 *)\n{\n    WQt::OutputHead *opHead = reinterpret_cast<WQt::OutputHead *>(data);\n\n    emit opHead->finished();\n}\n\nvoid WQt::OutputHead::handleMake(void *data, zwlr_output_head_v1 *, const char *make)\n{\n    WQt::OutputHead *opHead = reinterpret_cast<WQt::OutputHead *>(data);\n\n    opHead->mPropsMap[WQt::OutputHead::Make] = make;\n\n    emit opHead->changed(WQt::OutputHead::Make);\n}\n\nvoid WQt::OutputHead::handleModel(void *data, zwlr_output_head_v1 *, const char *model)\n{\n    WQt::OutputHead *opHead = reinterpret_cast<WQt::OutputHead *>(data);\n\n    opHead->mPropsMap[WQt::OutputHead::Model] = model;\n\n    emit opHead->changed(WQt::OutputHead::Model);\n}\n\nvoid WQt::OutputHead::handleSerialNumber(void *data, zwlr_output_head_v1 *, const char *serialNo)\n{\n    WQt::OutputHead *opHead = reinterpret_cast<WQt::OutputHead *>(data);\n\n    opHead->mPropsMap[WQt::OutputHead::SerialNumber] = serialNo;\n\n    emit opHead->changed(WQt::OutputHead::SerialNumber);\n}\n\nconst struct zwlr_output_head_v1_listener WQt::OutputHead::mListener = {\n    handleName,        handleDescription, handlePhysicalSize, handleMode,  handleEnabled,\n    handleCurrentMode, handlePosition,    handleTransform,    handleScale, handleFinished,\n    handleMake,        handleModel,       handleSerialNumber,\n};\n\n/**\n * Output Mode\n * This describes a mode of an output head.\n * Obtained from OutputHead::property( Modes )\n * or from OutputHead::property( CurrentMode )\n */\n\nWQt::OutputMode::OutputMode() { }\n\nWQt::OutputMode::OutputMode(zwlr_output_mode_v1 *mode)\n{\n    mObj = mode;\n    zwlr_output_mode_v1_add_listener(mObj, &mListener, this);\n}\n\nWQt::OutputMode::OutputMode(const WQt::OutputMode &otherMode)\n    : QObject()\n{\n    mObj = otherMode.mObj;\n\n    mSize = otherMode.mSize;\n    mRefreshRate = otherMode.mRefreshRate;\n    mIsPreferred = otherMode.mIsPreferred;\n}\n\nWQt::OutputMode::~OutputMode()\n{\n    zwlr_output_mode_v1_destroy(mObj);\n}\n\nQSize WQt::OutputMode::size()\n{\n    return mSize;\n}\n\nint32_t WQt::OutputMode::refreshRate()\n{\n    return mRefreshRate;\n}\n\nbool WQt::OutputMode::isPreferred()\n{\n    return mIsPreferred;\n}\n\nzwlr_output_mode_v1 *WQt::OutputMode::get()\n{\n    return mObj;\n}\n\nvoid WQt::OutputMode::handleSize(void *data, zwlr_output_mode_v1 *, int32_t width, int32_t height)\n{\n    WQt::OutputMode *opMode = reinterpret_cast<WQt::OutputMode *>(data);\n\n    opMode->mSize = QSize(width, height);\n\n    emit opMode->sizeChanged(opMode->mSize);\n}\n\nvoid WQt::OutputMode::handleRefreshRate(void *data, zwlr_output_mode_v1 *, int32_t refreshRate)\n{\n    WQt::OutputMode *opMode = reinterpret_cast<WQt::OutputMode *>(data);\n\n    opMode->mRefreshRate = refreshRate;\n\n    emit opMode->refreshRateChanged(refreshRate);\n}\n\nvoid WQt::OutputMode::handlePreferred(void *data, zwlr_output_mode_v1 *)\n{\n    WQt::OutputMode *opMode = reinterpret_cast<WQt::OutputMode *>(data);\n\n    opMode->mIsPreferred = true;\n\n    emit opMode->setAsPreferred();\n}\n\nvoid WQt::OutputMode::handleFinished(void *data, zwlr_output_mode_v1 *)\n{\n    WQt::OutputMode *opMode = reinterpret_cast<WQt::OutputMode *>(data);\n\n    emit opMode->finished();\n}\n\nconst struct zwlr_output_mode_v1_listener WQt::OutputMode::mListener = {\n    handleSize,\n    handleRefreshRate,\n    handlePreferred,\n    handleFinished,\n};\n\n/**\n * Output Configuration\n * We can configure all the outputs using this object\n * Obtained from OutputManager::createConfiguration()\n */\n\nWQt::OutputConfiguration::OutputConfiguration(zwlr_output_configuration_v1 *config)\n{\n    mObj = config;\n    zwlr_output_configuration_v1_add_listener(mObj, &mListener, this);\n}\n\nWQt::OutputConfiguration::~OutputConfiguration()\n{\n    zwlr_output_configuration_v1_destroy(mObj);\n}\n\nWQt::OutputConfigurationHead *WQt::OutputConfiguration::enableHead(WQt::OutputHead *head)\n{\n    return new WQt::OutputConfigurationHead(\n            zwlr_output_configuration_v1_enable_head(mObj, head->get()));\n}\n\nvoid WQt::OutputConfiguration::disableHead(WQt::OutputHead *head)\n{\n    zwlr_output_configuration_v1_disable_head(mObj, head->get());\n}\n\nvoid WQt::OutputConfiguration::apply()\n{\n    zwlr_output_configuration_v1_apply(mObj);\n}\n\nvoid WQt::OutputConfiguration::test()\n{\n    zwlr_output_configuration_v1_test(mObj);\n}\n\nvoid WQt::OutputConfiguration::handleSucceeded(void *data, zwlr_output_configuration_v1 *)\n{\n    WQt::OutputConfiguration *config = reinterpret_cast<WQt::OutputConfiguration *>(data);\n\n    emit config->succeeded();\n\n    zwlr_output_configuration_v1_destroy(config->mObj);\n}\n\nvoid WQt::OutputConfiguration::handleFailed(void *data, zwlr_output_configuration_v1 *)\n{\n    WQt::OutputConfiguration *config = reinterpret_cast<WQt::OutputConfiguration *>(data);\n\n    emit config->failed();\n\n    zwlr_output_configuration_v1_destroy(config->mObj);\n}\n\nvoid WQt::OutputConfiguration::handleCanceled(void *data, zwlr_output_configuration_v1 *)\n{\n    WQt::OutputConfiguration *config = reinterpret_cast<WQt::OutputConfiguration *>(data);\n\n    emit config->canceled();\n\n    zwlr_output_configuration_v1_destroy(config->mObj); // need?\n}\n\nconst struct zwlr_output_configuration_v1_listener WQt::OutputConfiguration::mListener = {\n    handleSucceeded,\n    handleFailed,\n    handleCanceled,\n};\n\n/**\n * Output Configuration Head\n * We can set the resolution and refresh rate for a given head\n * Obtained from OutputConfiguration::enableHead()\n */\n\nWQt::OutputConfigurationHead::OutputConfigurationHead(zwlr_output_configuration_head_v1 *configHead)\n{\n    mObj = configHead;\n}\n\nWQt::OutputConfigurationHead::~OutputConfigurationHead()\n{\n    zwlr_output_configuration_head_v1_destroy(mObj);\n}\n\nvoid WQt::OutputConfigurationHead::setMode(WQt::OutputMode *mode)\n{\n    zwlr_output_configuration_head_v1_set_mode(mObj, mode->get());\n}\n\nvoid WQt::OutputConfigurationHead::setCustomMode(QSize size, int32_t refresh)\n{\n    zwlr_output_configuration_head_v1_set_custom_mode(mObj, size.width(), size.height(), refresh);\n}\n\nvoid WQt::OutputConfigurationHead::setPosition(QPoint pos)\n{\n    zwlr_output_configuration_head_v1_set_position(mObj, pos.x(), pos.y());\n}\n\nvoid WQt::OutputConfigurationHead::setTransform(int32_t transform)\n{\n    zwlr_output_configuration_head_v1_set_transform(mObj, transform);\n}\n\nvoid WQt::OutputConfigurationHead::setScale(qreal scale)\n{\n    zwlr_output_configuration_head_v1_set_scale(mObj, wl_fixed_from_double(scale));\n}\n"
  },
  {
    "path": "src/plugin-display/wayland/libwayqt/OutputManager.h",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <wayland-client-protocol.h>\n\n#include <QMap>\n#include <QObject>\n#include <QRect>\n#include <QString>\n\nstruct wl_buffer;\nstruct wl_output;\n\nstruct zwlr_output_manager_v1;\nstruct zwlr_output_head_v1;\nstruct zwlr_output_mode_v1;\nstruct zwlr_output_configuration_v1;\nstruct zwlr_output_configuration_head_v1;\n\nstruct zwlr_output_manager_v1_listener;\nstruct zwlr_output_head_v1_listener;\nstruct zwlr_output_mode_v1_listener;\nstruct zwlr_output_configuration_v1_listener;\n\nnamespace WQt {\nclass OutputManager;\nclass OutputHead;\nclass OutputMode;\nclass OutputConfiguration;\nclass OutputConfigurationHead;\n} // namespace WQt\n\nclass WQt::OutputManager : public QObject\n{\n    Q_OBJECT;\n\npublic:\n    OutputManager(zwlr_output_manager_v1 *);\n    ~OutputManager();\n\n    /** Create a configuration object */\n    WQt::OutputConfiguration *createConfiguration();\n\n    QList<WQt::OutputHead *> heads();\n\n    /** Stop monitoring the outupts */\n    void stop();\n\n    zwlr_output_manager_v1 *get();\n\nprivate:\n    static void handleHead(void *, zwlr_output_manager_v1 *, zwlr_output_head_v1 *);\n    static void handleDone(void *, zwlr_output_manager_v1 *, uint32_t);\n    static void handleFinished(void *, zwlr_output_manager_v1 *);\n\n    zwlr_output_manager_v1 *mObj;\n    uint32_t mSerial;\n\n    static const zwlr_output_manager_v1_listener mListener;\n\n    QList<WQt::OutputHead *> mHeads;\n    bool mIsDone = false;\n\nQ_SIGNALS:\n    void headAttached(WQt::OutputHead *);\n    void done();\n};\n\nclass WQt::OutputHead : public QObject\n{\n    Q_OBJECT;\n\npublic:\n    enum Property {\n        Name = 0xbf278e,\n        Description,\n        PhysicalSize,\n        Modes,\n        Enabled,\n        CurrentMode,\n        Position,\n        Transform,\n        Scale,\n        Make,\n        Model,\n        SerialNumber,\n    };\n\n    OutputHead();\n    OutputHead(zwlr_output_head_v1 *);\n    OutputHead(const WQt::OutputHead &);\n    ~OutputHead();\n\n    /** Get the suitable property of this head */\n    QVariant property(WQt::OutputHead::Property);\n\n    zwlr_output_head_v1 *get();\n\nprivate:\n    static void handleName(void *, zwlr_output_head_v1 *, const char *);\n    static void handleDescription(void *, zwlr_output_head_v1 *, const char *);\n    static void handlePhysicalSize(void *, zwlr_output_head_v1 *, int32_t, int32_t);\n    static void handleMode(void *, zwlr_output_head_v1 *, zwlr_output_mode_v1 *);\n    static void handleEnabled(void *, zwlr_output_head_v1 *, int32_t);\n    static void handleCurrentMode(void *, zwlr_output_head_v1 *, zwlr_output_mode_v1 *);\n    static void handlePosition(void *, zwlr_output_head_v1 *, int32_t, int32_t);\n    static void handleTransform(void *, zwlr_output_head_v1 *, int32_t);\n    static void handleScale(void *, zwlr_output_head_v1 *, wl_fixed_t);\n    static void handleFinished(void *, zwlr_output_head_v1 *);\n    static void handleMake(void *, zwlr_output_head_v1 *, const char *);\n    static void handleModel(void *, zwlr_output_head_v1 *, const char *);\n    static void handleSerialNumber(void *, zwlr_output_head_v1 *, const char *);\n\n    static const zwlr_output_head_v1_listener mListener;\n\n    zwlr_output_head_v1 *mObj;\n\n    /** Properties map */\n    QMap<int, QVariant> mPropsMap;\n    QList<WQt::OutputMode *> mModes;\n    WQt::OutputMode *mCurrentMode;\n\nQ_SIGNALS:\n    void changed(WQt::OutputHead::Property);\n\n    void finished();\n};\n\nclass WQt::OutputMode : public QObject\n{\n    Q_OBJECT;\n\npublic:\n    OutputMode();\n    OutputMode(zwlr_output_mode_v1 *);\n    OutputMode(const WQt::OutputMode &);\n    ~OutputMode();\n\n    QSize size();\n    int32_t refreshRate();\n    bool isPreferred();\n\n    zwlr_output_mode_v1 *get();\n\nprivate:\n    static void handleSize(void *, zwlr_output_mode_v1 *, int32_t, int32_t);\n    static void handleRefreshRate(void *, zwlr_output_mode_v1 *, int32_t);\n    static void handlePreferred(void *, zwlr_output_mode_v1 *);\n    static void handleFinished(void *, zwlr_output_mode_v1 *);\n\n    static const zwlr_output_mode_v1_listener mListener;\n\n    zwlr_output_mode_v1 *mObj{ nullptr };\n\n    /** Resolution */\n    QSize mSize{ 0, 0 };\n\n    /** Refresh rate */\n    int32_t mRefreshRate{ 0 };\n\n    /** By default this is false */\n    bool mIsPreferred{ false };\n\nQ_SIGNALS:\n    void sizeChanged(QSize);\n    void refreshRateChanged(int32_t);\n    void setAsPreferred();\n\n    void finished();\n};\n\nclass WQt::OutputConfiguration : public QObject\n{\n    Q_OBJECT;\n\npublic:\n    enum Error {\n        AlreadyConfiguredHead = 1,\n        UnconfiguredHead = 2,\n        AlreadyUsed = 3,\n    };\n\n    OutputConfiguration(zwlr_output_configuration_v1 *);\n    ~OutputConfiguration();\n\n    /** Get the outupt configuration head object for the enabled output head */\n    WQt::OutputConfigurationHead *enableHead(WQt::OutputHead *);\n\n    /** Disabled the given head */\n    void disableHead(WQt::OutputHead *);\n\n    /** This object is destroyed after calling this function */\n    void apply();\n\n    /** This object is destroyed after calling this function */\n    void test();\n\nprivate:\n    static void handleSucceeded(void *, zwlr_output_configuration_v1 *);\n    static void handleFailed(void *, zwlr_output_configuration_v1 *);\n    static void handleCanceled(void *, zwlr_output_configuration_v1 *);\n\n    static const zwlr_output_configuration_v1_listener mListener;\n\n    zwlr_output_configuration_v1 *mObj;\n\nQ_SIGNALS:\n    void succeeded();\n    void failed();\n    void canceled();\n};\n\nclass WQt::OutputConfigurationHead : public QObject\n{\n    Q_OBJECT;\n\npublic:\n    enum Error {\n        AlreadySet = 1,\n        InvalidMode = 2,\n        InvalidCustomMode = 3,\n        InvalidTransform = 4,\n        InvalidScale = 5,\n    };\n\n    OutputConfigurationHead(zwlr_output_configuration_head_v1 *);\n    ~OutputConfigurationHead();\n\n    void setMode(WQt::OutputMode *);\n    void setCustomMode(QSize, int32_t);\n    void setPosition(QPoint);\n    void setTransform(int32_t);\n    void setScale(qreal);\n\nprivate:\n    zwlr_output_configuration_head_v1 *mObj;\n};\n\nQ_DECLARE_METATYPE(WQt::OutputHead);\nQ_DECLARE_METATYPE(WQt::OutputMode);\nQ_DECLARE_METATYPE(QList<WQt::OutputMode *>);\nQ_DECLARE_METATYPE(QList<WQt::OutputHead *>);\n"
  },
  {
    "path": "src/plugin-display/wayland/libwayqt/Registry.cpp",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"treeland-output-management-client-protocol.h\"\n#include \"wayland-client-protocol.h\"\n#include \"wlr-output-management-unstable-v1-client-protocol.h\"\n\n#include \"Output.h\"\n#include \"OutputManager.h\"\n#include \"Registry.h\"\n#include \"TreeLandOutputManager.h\"\n\n#include <QCoreApplication>\n#include <QDebug>\n#include <QThread>\n\n/* Convenience functions */\nvoid WQt::Registry::globalAnnounce(\n        void *data, struct wl_registry *, uint32_t name, const char *interface, uint32_t version)\n{\n    auto r = reinterpret_cast<WQt::Registry *>(data);\n    r->handleAnnounce(name, interface, version);\n}\n\nvoid WQt::Registry::globalRemove(void *data, struct wl_registry *, uint32_t name)\n{\n    // who cares :D\n    // but we will call WQt::Registry::handleRemove just for the heck of it\n\n    auto r = reinterpret_cast<WQt::Registry *>(data);\n\n    r->handleRemove(name);\n}\n\nconst struct wl_registry_listener WQt::Registry::mRegListener = {\n    globalAnnounce,\n    globalRemove,\n};\n\nWQt::Registry::Registry(wl_display *wlDisplay, QObject *parent)\n    : QObject(parent)\n{\n    mWlDisplay = wlDisplay;\n    mObj = wl_display_get_registry(mWlDisplay);\n\n    if (wl_proxy_get_listener((wl_proxy *)mObj) != &mRegListener) {\n        wl_registry_add_listener(mObj, &mRegListener, this);\n    }\n\n    wl_display_roundtrip(mWlDisplay);\n}\n\nWQt::Registry::~Registry()\n{\n    wl_registry_destroy(mObj);\n\n    wl_seat_destroy(mWlSeat);\n    wl_shm_destroy(mWlShm);\n\n    for (WQt::Output *op : mOutputs) {\n        delete op;\n    }\n\n    if (mOutputMgr != nullptr) {\n        delete mOutputMgr;\n    }\n\n    if (mTreeLandOutputMgr != nullptr) {\n        delete mTreeLandOutputMgr;\n    }\n}\n\nvoid WQt::Registry::setup()\n{\n    if (!mIsSetup) {\n        mIsSetup = true;\n\n        for (WQt::Registry::ErrorType et : pendingErrors) {\n            emit errorOccured(et);\n        }\n\n        for (WQt::Registry::Interface iface : pendingInterfaces) {\n            emit interfaceRegistered(iface);\n        }\n\n        for (WQt::Output *op : pendingOutputs) {\n            emit outputAdded(op);\n        }\n    }\n}\n\nwl_registry *WQt::Registry::get()\n{\n    return mObj;\n}\n\nwl_display *WQt::Registry::waylandDisplay()\n{\n    return mWlDisplay;\n}\n\nwl_seat *WQt::Registry::waylandSeat()\n{\n    return mWlSeat;\n}\n\nwl_shm *WQt::Registry::waylandShm()\n{\n    return mWlShm;\n}\n\nQList<WQt::Output *> WQt::Registry::waylandOutputs()\n{\n    return mOutputs.values();\n}\n\nQList<uint32_t> WQt::Registry::registeredInterfaces()\n{\n    return mRegisteredInterfaces;\n}\n\nWQt::OutputManager *WQt::Registry::outputManager()\n{\n    return mOutputMgr;\n}\n\nWQt::TreeLandOutputManager *WQt::Registry::treeLandOutputManager()\n{\n    return mTreeLandOutputMgr;\n}\n\nvoid WQt::Registry::handleAnnounce(uint32_t name, const char *interface, uint32_t version)\n{\n    /**\n     * We really don't care about wl_seat version right now.\n     */\n    if (strcmp(interface, wl_seat_interface.name) == 0) {\n        mWlSeat = (wl_seat *)wl_registry_bind(mObj, name, &wl_seat_interface, version);\n\n        if (!mWlSeat) {\n            emitError(WQt::Registry::EmptySeat);\n        }\n    }\n\n    /**\n     * We really don't care about wl_shm version right now.\n     */\n    if (strcmp(interface, wl_shm_interface.name) == 0) {\n        mWlShm = (wl_shm *)wl_registry_bind(mObj, name, &wl_shm_interface, version);\n\n        if (!mWlShm) {\n            emitError(WQt::Registry::EmptyShm);\n        }\n\n        else {\n            mRegisteredInterfaces << ShmInterface;\n            emitInterface(ShmInterface, true);\n        }\n    }\n\n    /**\n     * We really don't care about wl_output version right now.\n     */\n    if (strcmp(interface, wl_output_interface.name) == 0) {\n        wl_output *op = (wl_output *)wl_registry_bind(mObj, name, &wl_output_interface, version);\n\n        if (op) {\n            auto outputObj = new WQt::Output(op);\n            mOutputs[name] = outputObj;\n            emitOutput(outputObj, true);\n        }\n    }\n\n    /**\n     * We've implemented version 2.\n     * And wlroots 0.15.0 has version 2 available.\n     */\n    else if (strcmp(interface, zwlr_output_manager_v1_interface.name) == 0) {\n        mWlrOutputMgr = (zwlr_output_manager_v1 *)\n                wl_registry_bind(mObj, name, &zwlr_output_manager_v1_interface, 2);\n\n        if (!mWlrOutputMgr) {\n            emitError(WQt::Registry::EmptyOutputManager);\n        }\n\n        else {\n            mOutputMgr = new WQt::OutputManager(mWlrOutputMgr);\n\n            mRegisteredInterfaces << OutputManagerInterface;\n            emitInterface(OutputManagerInterface, true);\n        }\n    }\n\n    else if (strcmp(interface, treeland_output_manager_v1_interface.name) == 0) {\n        m_treeland_output_mgr = (treeland_output_manager_v1 *)\n                wl_registry_bind(mObj, name, &treeland_output_manager_v1_interface, 2);\n        if (!m_treeland_output_mgr) {\n            emitError(WQt::Registry::EmptyTreeLandOuputManager);\n        } else {\n            mTreeLandOutputMgr = new WQt::TreeLandOutputManager(m_treeland_output_mgr);\n\n            mRegisteredInterfaces << TreeLandOutputManagerInterface;\n            emitInterface(TreeLandOutputManagerInterface, true);\n        }\n    }\n}\n\nvoid WQt::Registry::handleRemove(uint32_t name)\n{\n    /**\n     * While we do not care about most of the handleRemove,\n     * we need to worry about the wl_output * objects.\n     */\n    if (mOutputs.keys().contains(name)) {\n        WQt::Output *output = mOutputs.take(name);\n        emitOutput(output, false);\n    }\n}\n\nvoid WQt::Registry::emitError(ErrorType et)\n{\n    if (mIsSetup) {\n        emit errorOccured(et);\n    }\n\n    else {\n        pendingErrors << et;\n    }\n}\n\nvoid WQt::Registry::emitOutput(WQt::Output *op, bool added)\n{\n    if (mIsSetup) {\n        if (added) {\n            emit outputAdded(op);\n        }\n\n        else {\n            emit outputRemoved(op);\n        }\n    }\n\n    else {\n        if (added) {\n            pendingOutputs << op;\n        }\n\n        else {\n            pendingOutputs.removeAll(op);\n        }\n    }\n}\n\nvoid WQt::Registry::emitInterface(WQt::Registry::Interface iface, bool added)\n{\n    if (mIsSetup) {\n        if (added) {\n            emit interfaceRegistered(iface);\n        }\n\n        else {\n            emit interfaceDeregistered(iface);\n        }\n    }\n\n    else {\n        if (added) {\n            pendingInterfaces << iface;\n        }\n\n        else {\n            pendingInterfaces.removeAll(iface);\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-display/wayland/libwayqt/Registry.h",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QHash>\n#include <QObject>\n\nstruct wl_registry;\nstruct wl_display;\nstruct wl_seat;\nstruct wl_shm;\nstruct wl_output;\n// struct wl_compositor;\n\nstruct wl_registry_listener;\n\nstruct xdg_wm_base;\nstruct zwlr_output_manager_v1;\nstruct zwlr_gamma_control_manager_v1;\nstruct treeland_output_manager_v1;\n\nnamespace WQt {\nclass Registry;\nclass XdgShell;\n\nclass Output;\nclass OutputManager;\nclass TreeLandOutputManager;\n} // namespace WQt\n\nclass WQt::Registry : public QObject\n{\n    Q_OBJECT;\n\npublic:\n    enum ErrorType {\n        EmptyShm,\n        EmptyIdle,\n        EmptySeat,\n        EmptyXdgWmBase,\n        EmptyCompositor,\n        EmptyOutputManager,\n        EmptyTreeLandOuputManager\n    };\n\n    Q_ENUM(ErrorType);\n\n    enum Interface {\n        ShmInterface,\n        IdleInterface,\n        SeatInterface,\n        WlrIdleInterface,\n        XdgWmBaseInterface,\n        CompositorInterface,\n        OutputManagerInterface,\n        TreeLandOutputManagerInterface\n    };\n\n    Q_ENUM(Interface);\n\n    Registry(wl_display *wlDisplay, QObject *parent = nullptr);\n    ~Registry();\n\n    void setup();\n\n    wl_registry *get();\n\n    wl_display *waylandDisplay();\n    wl_seat *waylandSeat();\n    wl_shm *waylandShm();\n\n    QList<WQt::Output *> waylandOutputs();\n\n    /** List the already registered interfaces */\n    QList<uint32_t> registeredInterfaces();\n\n    /* Ready to use Wayland Classes */\n\n    /**\n     * XdgShell - Xdg Shell protocol implementation\n     */\n    WQt::XdgShell *xdgShell();\n\n    /**\n     * OutputManager - Output Management protocol implementation\n     */\n    WQt::OutputManager *outputManager();\n\n    /**\n     * TreeLandOutputManager - Primary Output Manager\n     */\n    WQt::TreeLandOutputManager *treeLandOutputManager();\n\nprivate:\n    /** Raw C pointer to this class */\n    wl_registry *mObj = nullptr;\n\n    /** wl_display object */\n    wl_display *mWlDisplay = nullptr;\n\n    /** wl_seat object */\n    wl_seat *mWlSeat = nullptr;\n\n    /** wl_shm object */\n    wl_shm *mWlShm = nullptr;\n\n    /** Connected outputs */\n    QHash<uint32_t, WQt::Output *> mOutputs;\n\n    /** List of registered interfaces */\n    QList<uint32_t> mRegisteredInterfaces;\n\n    /**\n     * Output Manager Objects\n     */\n    zwlr_output_manager_v1 *mWlrOutputMgr = nullptr;\n    WQt::OutputManager *mOutputMgr = nullptr;\n\n    /**\n     * Gamma Control Objects\n     */\n    zwlr_gamma_control_manager_v1 *mWlrGammaCtrl = nullptr;\n\n    treeland_output_manager_v1 *m_treeland_output_mgr = nullptr;\n    WQt::TreeLandOutputManager *mTreeLandOutputMgr = nullptr;\n\n    static const wl_registry_listener mRegListener;\n    static void globalAnnounce(void *data,\n                               wl_registry *registry,\n                               uint32_t name,\n                               const char *interface,\n                               uint32_t version);\n    static void globalRemove(void *data, wl_registry *registry, uint32_t name);\n\n    void handleAnnounce(uint32_t name, const char *interface, uint32_t version);\n    void handleRemove(uint32_t name);\n\n    QList<WQt::Registry::ErrorType> pendingErrors;\n    QList<WQt::Output *> pendingOutputs;\n    QList<WQt::Registry::Interface> pendingInterfaces;\n\n    /** Flag to ensure setup() is called only once. */\n    bool mIsSetup = false;\n\n    /** emit errorOccured or store it in pending */\n    void emitError(ErrorType);\n\n    /**\n     * emit output added/removed or store in pending.\n     * bool indicates the state: true => added, false => removed.\n     */\n    void emitOutput(WQt::Output *, bool);\n\n    /**\n     * emit iInterface registered/deregistered, or store in pending.\n     * bool indicates the state: true => registered, false => deregistered.\n     */\n    void emitInterface(WQt::Registry::Interface, bool);\n\nsignals:\n    void errorOccured(ErrorType et);\n\n    void outputAdded(WQt::Output *);\n    void outputRemoved(WQt::Output *);\n\n    void interfaceRegistered(WQt::Registry::Interface);\n    void interfaceDeregistered(WQt::Registry::Interface);\n};\n"
  },
  {
    "path": "src/plugin-display/wayland/libwayqt/TreeLandOutputManager.cpp",
    "content": "// SPDX-FileCopyrightText: 2018 - 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"TreeLandOutputManager.h\"\n\n#include \"treeland-output-management-client-protocol.h\"\n\n#include <wayland-client.h>\n\n#include <QCoreApplication>\n#include <QDebug>\n#include <QObject>\n#include <QThread>\n\nWQt::TreeLandOutputManager::TreeLandOutputManager(treeland_output_manager_v1 *opMgr)\n{\n    mObj = opMgr;\n    treeland_output_manager_v1_add_listener(mObj, &mListener, this);\n}\n\nWQt::TreeLandOutputManager::~TreeLandOutputManager()\n{\n    treeland_output_manager_v1_destroy(mObj);\n}\n\nvoid WQt::TreeLandOutputManager::setPrimaryOutput(const char *name)\n{\n    treeland_output_manager_v1_set_primary_output(mObj, name);\n}\n\ntreeland_output_color_control_v1 *WQt::TreeLandOutputManager::getColorControl(struct wl_output *output)\n{\n    auto colorControl = treeland_output_manager_v1_get_color_control(mObj, output);\n    if (colorControl) {\n        treeland_output_color_control_v1_add_listener(colorControl, &mColorControlListener, this);\n    }\n    return colorControl;\n}\n\nvoid WQt::TreeLandOutputManager::setBrightness(treeland_output_color_control_v1 *control, const double brightness)\n{\n    if (control) {\n        treeland_output_color_control_v1_set_brightness(control, wl_fixed_from_double(brightness));\n        treeland_output_color_control_v1_commit(control);\n    }\n}\n\nvoid WQt::TreeLandOutputManager::destroyColorControl(treeland_output_color_control_v1 *treeland_output_color_control_v1)\n{\n    treeland_output_color_control_v1_destroy(treeland_output_color_control_v1);\n}\n\nvoid WQt::TreeLandOutputManager::handlePrimaryOutput(void *data, struct treeland_output_manager_v1 *treeland_output_manager_v1, const char *output_name)\n{\n    Q_UNUSED(treeland_output_manager_v1)\n    WQt::TreeLandOutputManager *manager = reinterpret_cast<WQt::TreeLandOutputManager *>(data);\n    manager->mPrimaryOutput = QString::fromLocal8Bit(output_name);\n    emit manager->primaryOutputChanged(output_name);\n}\n\nvoid WQt::TreeLandOutputManager::handleResult(void *data, treeland_output_color_control_v1 *treeland_output_color_control_v1, uint32_t success)\n{\n    // TODO: handleResult\n}\n\nvoid WQt::TreeLandOutputManager::handleColorTemperature(void *data, treeland_output_color_control_v1 *treeland_output_color_control_v1, uint32_t temperature)\n{\n    WQt::TreeLandOutputManager *manager = reinterpret_cast<WQt::TreeLandOutputManager *>(data);\n    emit manager->colorTemperatureChanged(treeland_output_color_control_v1, temperature);\n}\n\nvoid WQt::TreeLandOutputManager::handleBrightness(void *data, struct treeland_output_color_control_v1 *treeland_output_color_control_v1, wl_fixed_t brightness)\n{\n    WQt::TreeLandOutputManager *manager = reinterpret_cast<WQt::TreeLandOutputManager *>(data);\n    double brightnessValue = wl_fixed_to_double(brightness);\n    emit manager->brightnessChanged(treeland_output_color_control_v1, brightnessValue);\n}\n\nconst treeland_output_manager_v1_listener WQt::TreeLandOutputManager::mListener = { handlePrimaryOutput };\n\nconst treeland_output_color_control_v1_listener WQt::TreeLandOutputManager::mColorControlListener = {\n    handleResult,  // result\n    handleColorTemperature,  // color_temperature\n    handleBrightness\n};\n"
  },
  {
    "path": "src/plugin-display/wayland/libwayqt/TreeLandOutputManager.h",
    "content": "// SPDX-FileCopyrightText: 2018 - 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <wayland-client-protocol.h>\n\n#include <QMap>\n#include <QObject>\n#include <QRect>\n#include <QString>\n\nstruct wl_buffer;\nstruct wl_output;\nstruct treeland_output_manager_v1;\nstruct treeland_output_manager_v1_listener;\nstruct treeland_output_color_control_v1;\nstruct treeland_output_color_control_v1_listener;\n\nnamespace WQt {\nclass TreeLandOutputManager;\n}\n\nclass WQt::TreeLandOutputManager : public QObject\n{\n    Q_OBJECT;\n\npublic:\n    TreeLandOutputManager(treeland_output_manager_v1 *);\n    ~TreeLandOutputManager();\n\n    /** Set the primary output */\n    void setPrimaryOutput(const char *);\n\n    QString mPrimaryOutput;\n\n    treeland_output_color_control_v1 * getColorControl(struct wl_output *output);\n    void setBrightness(treeland_output_color_control_v1 * treeland_output_color_control_v1,const double brightness);\n    void destroyColorControl(treeland_output_color_control_v1 *treeland_output_color_control_v1);\nprivate:\n    static void handlePrimaryOutput(void *data,\n                                    struct treeland_output_manager_v1 *treeland_output_manager_v1,\n                                    const char *output_name);\n    static void handleResult(void *data,\n                             struct treeland_output_color_control_v1 *treeland_output_color_control_v1,\n                             uint32_t success);\n    static void handleColorTemperature(void *data,\n                                       struct treeland_output_color_control_v1 *treeland_output_color_control_v1,\n                                       uint32_t temperature);\n    static void handleBrightness(void *data,\n                                 struct treeland_output_color_control_v1 *treeland_output_color_control_v1,\n                                 wl_fixed_t brightness);\n\n    static const treeland_output_manager_v1_listener mListener;\n    static const treeland_output_color_control_v1_listener mColorControlListener;\n\n    treeland_output_manager_v1 *mObj;\n\nQ_SIGNALS:\n    void primaryOutputChanged(const char *);\n    void brightnessChanged(const treeland_output_color_control_v1 *,double brightness);\n    void colorTemperatureChanged(const treeland_output_color_control_v1 *,uint temperature);\n};\n"
  },
  {
    "path": "src/plugin-display/wayland/libwayqt/WayQtUtils.cpp",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"WayQtUtils.h\"\n\n#include <qpa/qplatformnativeinterface.h>\n#include <wayland-client.h>\n\n#include <QGuiApplication>\n#include <QScreen>\n#include <QWindow>\n\nwl_display *WQt::Wayland::display()\n{\n    QPlatformNativeInterface *native = QGuiApplication::platformNativeInterface();\n\n    if (!native) {\n        return nullptr;\n    }\n\n    struct wl_display *display =\n            reinterpret_cast<wl_display *>(native->nativeResourceForIntegration(\"display\"));\n\n    return display;\n}\n\nwl_compositor *WQt::Wayland::compositor()\n{\n    QPlatformNativeInterface *native = QGuiApplication::platformNativeInterface();\n\n    if (!native) {\n        return nullptr;\n    }\n\n    struct wl_compositor *display =\n            reinterpret_cast<wl_compositor *>(native->nativeResourceForIntegration(\"compositor\"));\n\n    return display;\n}\n\nwl_seat *WQt::Wayland::seat()\n{\n    QPlatformNativeInterface *native = QGuiApplication::platformNativeInterface();\n\n    if (!native) {\n        return nullptr;\n    }\n\n    struct wl_seat *display =\n            reinterpret_cast<wl_seat *>(native->nativeResourceForIntegration(\"wl_seat\"));\n\n    return display;\n}\n\nwl_pointer *WQt::Wayland::pointer()\n{\n    QPlatformNativeInterface *native = QGuiApplication::platformNativeInterface();\n\n    if (!native) {\n        return nullptr;\n    }\n\n    struct wl_pointer *display =\n            reinterpret_cast<wl_pointer *>(native->nativeResourceForIntegration(\"wl_pointer\"));\n\n    return display;\n}\n\nwl_keyboard *WQt::Wayland::keyboard()\n{\n    QPlatformNativeInterface *native = QGuiApplication::platformNativeInterface();\n\n    if (!native) {\n        return nullptr;\n    }\n\n    struct wl_keyboard *display =\n            reinterpret_cast<wl_keyboard *>(native->nativeResourceForIntegration(\"wl_keyboard\"));\n\n    return display;\n}\n\nwl_touch *WQt::Wayland::touch()\n{\n    QPlatformNativeInterface *native = QGuiApplication::platformNativeInterface();\n\n    if (!native) {\n        return nullptr;\n    }\n\n    struct wl_touch *display =\n            reinterpret_cast<wl_touch *>(native->nativeResourceForIntegration(\"wl_touch\"));\n\n    return display;\n}\n\nvoid WQt::Utils::flushDisplay()\n{\n    wl_display_flush(WQt::Wayland::display());\n}\n\nvoid WQt::Utils::displayRoundtrip()\n{\n    wl_display_roundtrip(WQt::Wayland::display());\n}\n\nwl_output *WQt::Utils::wlOutputFromQScreen(QScreen *screen)\n{\n    QPlatformNativeInterface *native = QGuiApplication::platformNativeInterface();\n\n    if (!native) {\n        return nullptr;\n    }\n\n    struct wl_output *output =\n            reinterpret_cast<wl_output *>(native->nativeResourceForScreen(\"output\", screen));\n\n    return output;\n}\n\nwl_surface *WQt::Utils::wlSurfaceFromQWindow(QWindow *window)\n{\n    window->create();\n    QPlatformNativeInterface *native = QGuiApplication::platformNativeInterface();\n\n    if (!native) {\n        return nullptr;\n    }\n\n    struct wl_surface *surface =\n            reinterpret_cast<wl_surface *>(native->nativeResourceForWindow(\"surface\", window));\n\n    return surface;\n}\n\nbool WQt::Utils::isWayland()\n{\n    /* Check if XDG_SESSION_TYPE is set */\n    QString session = qgetenv(\"XDG_SESSION_TYPE\");\n\n    if (session.toLower() == QStringLiteral(\"wayland\")) {\n        return true;\n    }\n\n    /*\n     * May be XDG_SESSION_TYPE is not set. Try Harder.\n     * We check if WAYLAND_DISPLAY is set.\n     */\n    QString wlID = qgetenv(\"WAYLAND_DISPLAY\");\n\n    if (!wlID.isEmpty()) {\n        return true;\n    }\n\n    /* It's probably not a wayland session. */\n    return false;\n}\n\nbool WQt::Utils::isTreeland()\n{\n    /** Checking the WAYFIRE_CONFIG_FILE variable is sufficient for our cause */\n    static auto diff = qgetenv(\"DDE_CURRENT_COMPOSITOR\").compare(\"TreeLand\", Qt::CaseInsensitive);\n\n    return diff == 0;\n}\n"
  },
  {
    "path": "src/plugin-display/wayland/libwayqt/WayQtUtils.h",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\nclass QWindow;\nclass QScreen;\n\nstruct wl_display;\nstruct wl_compositor;\nstruct wl_touch;\nstruct wl_keyboard;\nstruct wl_seat;\nstruct wl_pointer;\n\nstruct wl_output;\nstruct wl_surface;\n\nnamespace WQt {\nnamespace Wayland {\nstruct wl_display *display();\nstruct wl_compositor *compositor();\nstruct wl_seat *seat();\nstruct wl_pointer *pointer();\nstruct wl_keyboard *keyboard();\nstruct wl_touch *touch();\n} // namespace Wayland\n\nnamespace Utils {\nstruct wl_output *wlOutputFromQScreen(QScreen *screen);\nstruct wl_surface *wlSurfaceFromQWindow(QWindow *window);\n\nvoid flushDisplay();\nvoid displayRoundtrip();\n\nbool isWayland();\nbool isTreeland();\n} // namespace Utils\n} // namespace WQt\n"
  },
  {
    "path": "src/plugin-dock/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\n\nset(PLUGIN_NAME dock)\n\nfile(GLOB_RECURSE Dock_Plugin_SRCS\n    \"operation/*.cpp\"\n    \"operation/*.hpp\"\n    \"operation/*.h\"\n    \"res/dcc-dock-plugin.qrc\" \n)\n\nadd_library(${PLUGIN_NAME} MODULE\n    ${Dock_Plugin_SRCS}\n)\n\ntarget_link_libraries(${PLUGIN_NAME} PRIVATE\n    ${DCC_FRAME_Library}\n    ${DTK_NS}::Gui\n)\n\ndcc_install_plugin(NAME ${PLUGIN_NAME} TARGET ${PLUGIN_NAME})\n"
  },
  {
    "path": "src/plugin-dock/operation/dccdockexport.cpp",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"dccfactory.h\"\n#include \"operation/dockpluginmodel.h\"\n#include \"operation/dockpluginsortproxymodel.h\"\n#include <qtypes.h>\n\n#include \"dccdockexport.h\"\n\n#include <QFile>\n#include <QIcon>\n#include <QDir>\n#include <QDBusInterface>\n#include <QDBusConnection>\n#include <QDBusObjectPath>\n#include <QDebug>\n#include <QDBusArgument>\n#include <QDBusMetaType>\n\n#include <DConfig>\n#include <DIconTheme>\n#include <DWindowManagerHelper>\n\n// 显示模式定义\n#define CUSTOM_MODE 0\n#define MERGE_MODE 1\n#define EXTEND_MODE 2\n#define SINGLE_MODE 3\n\nconstexpr auto PLUGIN_ICON_DIR = \"/usr/share/dde-dock/icons/dcc-setting\";\nconstexpr auto PLUGIN_ICON_PREFIX = \"dcc-\";\nconstexpr auto PLUGIN_ICON_DEFAULT = \"dcc_dock_plug_in\";\n\nstatic const QMap<QString, QString> pluginIconMap = {\n    {\"AiAssistant\",    \"dcc_dock_assistant\"}\n    , {\"show-desktop\",   \"dcc_dock_desktop\"}\n    , {\"onboard\",        \"dcc_dock_keyboard\"}\n    , {\"notifications\",  \"dcc_dock_notify\"}\n    , {\"shutdown\",       \"dcc_dock_power\"}\n    , {\"multitasking\",   \"dcc_dock_task\"}\n    , {\"datetime\",       \"dcc_dock_time\"}\n    , {\"system-monitor\", \"dcc_dock_systemmonitor\"}\n    , {\"grand-search\",   \"dcc_dock_grandsearch\"}\n    , {\"trash\",          \"dcc_dock_trash\"}\n    , {\"shot-start-plugin\",  \"dcc_dock_shot_start_plugin\"}\n};\n\nDGUI_USE_NAMESPACE;\n\nDccDockExport::DccDockExport(QObject *parent)\n: QObject(parent)\n, m_dockDbusProxy(new DockDBusProxy(this))\n, m_pluginModel(new DockPluginModel(this))\n, m_sortProxyModel(new DockPluginSortProxyModel(this))\n, m_dconfig(Dtk::Core::DConfig::create(\"org.deepin.dde.shell\", \"org.deepin.ds.dock.taskmanager\", QString(), this))\n, m_displayInter(nullptr)\n, m_displayMode(EXTEND_MODE)\n, m_monitorCount(0)\n, m_combineApp(true)\n{\n    if (m_dconfig && m_dconfig->isValid()) {\n        const bool noTaskGrouping = m_dconfig->value(\"noTaskGrouping\", false).toBool();\n        m_combineApp = !noTaskGrouping;\n\n        connect(m_dconfig, &Dtk::Core::DConfig::valueChanged, this, [this](const QString &key) {\n            if (key == QLatin1String(\"noTaskGrouping\")) {\n                const bool noTaskGrouping = m_dconfig->value(\"noTaskGrouping\", false).toBool();\n                bool combine = !noTaskGrouping;\n                if (m_combineApp != combine) {\n                    m_combineApp = combine;\n                    Q_EMIT combineAppChanged(m_combineApp);\n                }\n            }\n        });\n    }\n\n    initData();\n    initDisplayModeConnection();\n\n    // 设置排序代理模型的源模型\n    m_sortProxyModel->setSourceModel(m_pluginModel);\n\n    connect(m_dockDbusProxy, &DockDBusProxy::pluginVisibleChanged, m_pluginModel, &DockPluginModel::setPluginVisible);\n    connect(m_dockDbusProxy, &DockDBusProxy::pluginsChanged, this, &DccDockExport::loadPluginData);\n    // if it has no blur effect, dcc do not need to show multitask-view plugin\n    connect(DWindowManagerHelper::instance(), &DWindowManagerHelper::hasBlurWindowChanged, this, &DccDockExport::initData);\n}\n\nDccDockExport::~DccDockExport()\n{\n    if (m_displayInter) {\n        delete m_displayInter;\n        m_displayInter = nullptr;\n    }\n}\n\nvoid DccDockExport::initData()\n{\n    auto dciPaths = DIconTheme::dciThemeSearchPaths();\n    dciPaths.push_back(PLUGIN_ICON_DIR);\n    DIconTheme::setDciThemeSearchPaths(dciPaths);\n    loadPluginData();\n}\n\nvoid DccDockExport::loadPluginData()\n{\n    QDBusPendingReply<DockItemInfos> pluginInfos = m_dockDbusProxy->plugins();\n    auto infos = pluginInfos.value();\n    for (auto &info : infos) {\n        QString pluginIconStr{};\n        if (QFile::exists(QString(PLUGIN_ICON_DIR) + QDir::separator() + PLUGIN_ICON_PREFIX + info.name + \".dci\")) {\n            pluginIconStr = PLUGIN_ICON_PREFIX + info.name;\n        } else if (QFile::exists(QString(PLUGIN_ICON_DIR) + QDir::separator() + info.name + \".dci\")) {\n            pluginIconStr =  info.name;\n        } else if (QFile::exists(info.dcc_icon)) {\n            pluginIconStr = info.dcc_icon;\n        } else if (pluginIconMap.contains(info.itemKey)) {\n            pluginIconStr = pluginIconMap.value(info.itemKey);\n        }\n\n        QIcon tmpIcon = QIcon::fromTheme(pluginIconStr);\n        if (tmpIcon.isNull()) {\n            pluginIconStr = PLUGIN_ICON_DEFAULT;\n        }\n\n        info.dcc_icon = pluginIconStr;\n    }\n    m_pluginModel->resetData(infos);\n}\n\nbool DccDockExport::combineApp() const\n{\n    return m_combineApp;\n}\n\nvoid DccDockExport::initDisplayModeConnection()\n{\n    // 创建DBus接口连接\n    m_displayInter = new QDBusInterface(\"org.deepin.dde.Display1\",\n                                       \"/org/deepin/dde/Display1\",\n                                       \"org.deepin.dde.Display1\",\n                                       QDBusConnection::sessionBus(),\n                                       this);\n    \n    if (!m_displayInter->isValid()) {\n        qWarning() << \"Display DBus interface is not valid!\";\n        return;\n    }\n\n    // 获取当前显示模式\n    QVariant displayModeVar = m_displayInter->property(\"DisplayMode\");\n    if (displayModeVar.isValid()) {\n        uchar mode = displayModeVar.toUInt();\n        if (m_displayMode != mode) {\n            m_displayMode = mode;\n            Q_EMIT displayModeChanged();\n        }\n    }\n\n    QVariant monitorsVar = m_displayInter->property(\"Monitors\");\n    if (monitorsVar.isValid()) {\n        QList<QDBusObjectPath> monitors;\n        if (monitorsVar.userType() == qMetaTypeId<QDBusArgument>()) {\n             const QDBusArgument &arg = monitorsVar.value<QDBusArgument>();\n             arg >> monitors;\n        } else {\n             monitors = qvariant_cast<QList<QDBusObjectPath>>(monitorsVar);\n        }\n        int count = monitors.count();\n\n        if (m_monitorCount != count) {\n            m_monitorCount = count;\n            Q_EMIT monitorCountChanged();\n        }\n    }\n\n    QDBusConnection::sessionBus().connect(\"org.deepin.dde.Display1\",\n                                       \"/org/deepin/dde/Display1\",\n                                       \"org.freedesktop.DBus.Properties\",\n                                       \"PropertiesChanged\",\n                                       this,\n                                       SLOT(onPropertiesChanged(QString,QMap<QString,QVariant>,QStringList)));\n}\n\nint DccDockExport::displayMode() const\n{\n    return m_displayMode;\n}\n\nint DccDockExport::monitorCount() const\n{\n    return m_monitorCount;\n}\n\nvoid DccDockExport::setCombineApp(bool value)\n{\n    if (m_combineApp == value)\n        return;\n\n    m_combineApp = value;\n\n    if (!m_dconfig || !m_dconfig->isValid())\n        return;\n\n    const bool noTaskGrouping = !value;\n    m_dconfig->setValue(\"noTaskGrouping\", noTaskGrouping);\n    Q_EMIT combineAppChanged(m_combineApp);\n}\n\nvoid DccDockExport::onDisplayModeChanged(uint mode)\n{\n    int newMode = static_cast<int>(mode);\n    if (m_displayMode != newMode) {\n        m_displayMode = newMode;\n        Q_EMIT displayModeChanged();\n    }\n}\n\nvoid DccDockExport::onPropertiesChanged(const QString &/*interfaceName*/, const QMap<QString, QVariant> &changedProperties, const QStringList &/*invalidatedProperties*/)\n{\n    if (changedProperties.contains(\"DisplayMode\")) {\n        uint newMode = changedProperties[\"DisplayMode\"].toUInt();\n        onDisplayModeChanged(newMode);\n    }\n    \n    if (changedProperties.contains(\"Monitors\")) {\n        QVariant monitorsVar = changedProperties[\"Monitors\"];\n        QList<QDBusObjectPath> monitors;\n        if (monitorsVar.userType() == qMetaTypeId<QDBusArgument>()) {\n             const QDBusArgument &arg = monitorsVar.value<QDBusArgument>();\n             arg >> monitors;\n        } else {\n             monitors = qvariant_cast<QList<QDBusObjectPath>>(monitorsVar);\n        }\n        int count = monitors.count();\n\n        if (m_monitorCount != count) {\n            m_monitorCount = count;\n            Q_EMIT monitorCountChanged();\n        }\n    }\n}\n\nDCC_FACTORY_CLASS(DccDockExport)\n\n#include \"dccdockexport.moc\"\n"
  },
  {
    "path": "src/plugin-dock/operation/dccdockexport.h",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include \"operation/dockdbusproxy.h\"\n#include \"operation/dockpluginsortproxymodel.h\"\n#include <qtypes.h>\n\n#include <QDBusInterface>\n\nnamespace Dtk {\nnamespace Core {\nclass DConfig;\n}\n}\n\nclass DccDockExport : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(DockDBusProxy *dockInter MEMBER m_dockDbusProxy CONSTANT)\n    Q_PROPERTY(DockPluginSortProxyModel *pluginModel MEMBER m_sortProxyModel CONSTANT)\n    Q_PROPERTY(int displayMode READ displayMode NOTIFY displayModeChanged)\n    Q_PROPERTY(int monitorCount READ monitorCount NOTIFY monitorCountChanged)\n    Q_PROPERTY(bool combineApp READ combineApp WRITE setCombineApp NOTIFY combineAppChanged)\n\npublic:\n    explicit DccDockExport(QObject *parent = nullptr);\n    ~DccDockExport() override;\n\n    int displayMode() const;\n    int monitorCount() const;\n    bool combineApp() const;\n\nprivate:\n    void initData();\n    void initDisplayModeConnection();\n\npublic Q_SLOTS:\n    void loadPluginData();\n    void setCombineApp(bool value);\n\nQ_SIGNALS:\n    void displayModeChanged();\n    void monitorCountChanged();\n    void combineAppChanged(bool combineApp);\n\nprivate:\n    DockDBusProxy *m_dockDbusProxy;\n    DockPluginModel *m_pluginModel;\n    DockPluginSortProxyModel *m_sortProxyModel;\n    Dtk::Core::DConfig *m_dconfig;\n    QDBusInterface *m_displayInter;\n    int m_displayMode;\n    int m_monitorCount;\n    bool m_combineApp;\n    \nprivate Q_SLOTS:\n    void onDisplayModeChanged(uint mode);\n    void onPropertiesChanged(const QString &interfaceName, const QMap<QString, QVariant> &changedProperties, const QStringList &invalidatedProperties);\n};\n"
  },
  {
    "path": "src/plugin-dock/operation/dockdbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"dockdbusproxy.h\"\n\n#include <QMetaObject>\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusMetaType>\n\nconst static QString DaemonDockService = \"org.deepin.dde.daemon.Dock1\";\nconst static QString DaemonDockPath = \"/org/deepin/dde/daemon/Dock1\";\nconst static QString DaemonDockInterface = \"org.deepin.dde.daemon.Dock1\";\nconst static QString DockService = \"org.deepin.dde.Dock1\";\nconst static QString DockPath = \"/org/deepin/dde/Dock1\";\nconst static QString DockInterface = \"org.deepin.dde.Dock1\";\n\nconst static QString PropertiesInterface = \"org.freedesktop.DBus.Properties\";\nconst static QString PropertiesChanged = \"PropertiesChanged\";\n\nQDBusArgument &operator<<(QDBusArgument &arg, const DockItemInfo &info)\n{\n    arg.beginStructure();\n    arg << info.name << info.displayName << info.itemKey << info.settingKey << info.dcc_icon << info.visible;\n    arg.endStructure();\n    return arg;\n}\n\nconst QDBusArgument &operator>>(const QDBusArgument &arg, DockItemInfo &info)\n{\n    arg.beginStructure();\n    arg >> info.name >> info.displayName >> info.itemKey >> info.settingKey >> info.dcc_icon >> info.visible;\n    arg.endStructure();\n    return arg;\n}\n\nstatic void registDockItemType()\n{\n    static bool isRegister = false;\n    if (isRegister)\n        return;\n\n    qRegisterMetaType<DockItemInfo>(\"DockItemInfo\");\n    qDBusRegisterMetaType<DockItemInfo>();\n    qRegisterMetaType<DockItemInfos>(\"DockItemInfos\");\n    qDBusRegisterMetaType<DockItemInfos>();\n    isRegister = true;\n}\n\nDockDBusProxy::DockDBusProxy(QObject *parent)\n    : QObject(parent)\n    , m_daemonDockInter(new QDBusInterface(DaemonDockService, DaemonDockPath, DaemonDockInterface, QDBusConnection::sessionBus(), this))\n    , m_dockInter(new QDBusInterface(DockService, DockPath, DockInterface, QDBusConnection::sessionBus(), this))\n{\n    QDBusConnection::sessionBus().connect(DaemonDockService, DaemonDockPath, DaemonDockInterface, \"DisplayModeChanged\", this, SIGNAL(DisplayModeChanged(int)));\n    QDBusConnection::sessionBus().connect(DaemonDockService, DaemonDockPath, DaemonDockInterface, \"PositionChanged\", this, SIGNAL(PositionChanged(int)));\n    QDBusConnection::sessionBus().connect(DaemonDockService, DaemonDockPath, DaemonDockInterface, \"HideModeChanged\", this, SIGNAL(HideModeChanged(int)));\n    QDBusConnection::sessionBus().connect(DaemonDockService, DaemonDockPath, DaemonDockInterface, \"WindowSizeEfficientChanged\", this, SIGNAL(WindowSizeEfficientChanged(uint)));\n    QDBusConnection::sessionBus().connect(DaemonDockService, DaemonDockPath, DaemonDockInterface, \"WindowSizeFashionChanged\", this, SIGNAL(WindowSizeFashionChanged(uint)));\n    QDBusConnection::sessionBus().connect(DaemonDockService, DaemonDockPath, DaemonDockInterface, \"showRecentChanged\", this, SIGNAL(showRecentChanged(bool)));\n    QDBusConnection::sessionBus().connect(DaemonDockService, DaemonDockPath, DaemonDockInterface, \"LockedChanged\", this, SIGNAL(LockedChanged(bool)));\n    \n    QDBusConnection::sessionBus().connect(DockService, DockPath, DockInterface, \"showInPrimaryChanged\", this, SIGNAL(ShowInPrimaryChanged(bool)));\n    QDBusConnection::sessionBus().connect(DockService, DockPath, DockInterface, \"pluginVisibleChanged\", this, SIGNAL(pluginVisibleChanged(const QString &, bool)));\n    QDBusConnection::sessionBus().connect(DockService, DockPath, DockInterface, \"pluginsChanged\", this, SIGNAL(pluginsChanged()));\n\n    registDockItemType();\n}\n\nint DockDBusProxy::displayMode()\n{\n    return qvariant_cast<int>(m_daemonDockInter->property(\"DisplayMode\"));\n}\n\nvoid DockDBusProxy::setDisplayMode(int mode)\n{\n    m_daemonDockInter->setProperty(\"DisplayMode\", QVariant::fromValue(mode));\n}\n\nint DockDBusProxy::position()\n{\n    return qvariant_cast<int>(m_daemonDockInter->property(\"Position\"));\n}\n\nvoid DockDBusProxy::setPosition(int value)\n{\n    m_daemonDockInter->setProperty(\"Position\", QVariant::fromValue(value));\n}\n\nint DockDBusProxy::hideMode()\n{\n    return qvariant_cast<int>(m_daemonDockInter->property(\"HideMode\"));\n}\n\nvoid DockDBusProxy::setHideMode(int value)\n{\n    m_daemonDockInter->setProperty(\"HideMode\", QVariant::fromValue(value));\n}\n\nuint DockDBusProxy::windowSizeEfficient()\n{\n    return qvariant_cast<uint>(m_daemonDockInter->property(\"WindowSizeEfficient\"));\n}\n\nvoid DockDBusProxy::setWindowSizeEfficient(uint value)\n{\n    m_daemonDockInter->setProperty(\"WindowSizeEfficient\", QVariant::fromValue(value));\n}\n\nuint DockDBusProxy::windowSizeFashion()\n{\n    return qvariant_cast<uint>(m_daemonDockInter->property(\"WindowSizeFashion\"));\n}\n\nvoid DockDBusProxy::setWindowSizeFashion(uint value)\n{\n    m_daemonDockInter->setProperty(\"WindowSizeFashion\", QVariant::fromValue(value));\n}\n\nbool DockDBusProxy::showInPrimary()\n{\n    return qvariant_cast<bool>(m_dockInter->property(\"showInPrimary\"));\n}\n\nvoid DockDBusProxy::setShowInPrimary(bool value)\n{\n    m_dockInter->setProperty(\"showInPrimary\", QVariant::fromValue(value));\n}\n\nbool DockDBusProxy::locked()\n{\n    return qvariant_cast<bool>(m_daemonDockInter->property(\"Locked\"));\n}\n\nvoid DockDBusProxy::setLocked(bool value)\n{\n    m_daemonDockInter->setProperty(\"Locked\", QVariant::fromValue(value));\n}\n\nbool DockDBusProxy::showRecent()\n{\n    return qvariant_cast<bool>(m_daemonDockInter->property(\"ShowRecent\"));\n}\n\nvoid DockDBusProxy::resizeDock(int offset, bool dragging)\n{\n    m_dockInter->call(QDBus::CallMode::Block, QStringLiteral(\"resizeDock\"), QVariant::fromValue(offset), QVariant::fromValue(dragging));\n}\n\nQDBusPendingReply<QStringList> DockDBusProxy::GetLoadedPlugins()\n{\n    QDBusPendingReply<QStringList> reply = m_dockInter->asyncCall(QStringLiteral(\"GetLoadedPlugins\"));\n    reply.waitForFinished();\n    return reply;\n}\n\nQDBusPendingReply<QString> DockDBusProxy::getPluginKey(const QString &pluginName)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(pluginName);\n    return m_dockInter->asyncCallWithArgumentList(QStringLiteral(\"getPluginKey\"), argumentList);\n}\n\nQDBusPendingReply<bool> DockDBusProxy::getPluginVisible(const QString &pluginName)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(pluginName);\n    return m_dockInter->asyncCallWithArgumentList(QStringLiteral(\"getPluginVisible\"), argumentList);\n}\n\nQDBusPendingReply<> DockDBusProxy::setPluginVisible(const QString &pluginName, bool visible)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(pluginName) << QVariant::fromValue(visible);\n    return m_dockInter->asyncCallWithArgumentList(QStringLiteral(\"setPluginVisible\"), argumentList);\n}\n\nQDBusPendingReply<> DockDBusProxy::SetShowRecent(bool visible)\n{\n    QList<QVariant> argumengList;\n    argumengList << QVariant::fromValue(visible);\n    return m_daemonDockInter->asyncCallWithArgumentList(QStringLiteral(\"SetShowRecent\"), argumengList);\n}\n\nQDBusPendingReply<DockItemInfos> DockDBusProxy::plugins()\n{\n    QDBusPendingReply<DockItemInfos> reply = m_dockInter->asyncCall(QStringLiteral(\"plugins\"));\n    reply.waitForFinished();\n    return reply;\n}\n\nQDBusPendingReply<> DockDBusProxy::setItemOnDock(const QString settingKey, const QString &itemKey, bool visible)\n{\n    QList<QVariant> argumengList;\n    argumengList << settingKey << itemKey << QVariant::fromValue(visible);\n    return m_dockInter->asyncCallWithArgumentList(\"setItemOnDock\", argumengList);\n}\n"
  },
  {
    "path": "src/plugin-dock/operation/dockdbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef DOCKDBUSPROXY_H\n#define DOCKDBUSPROXY_H\n\n#include <QObject>\n#include <QDBusPendingReply>\n\n#include \"dockpluginmodel.h\"\n\nclass QDBusInterface;\nclass QDBusMessage;\n\nQDBusArgument &operator<<(QDBusArgument &arg, const DockItemInfo &info);\nconst QDBusArgument &operator>>(const QDBusArgument &arg, DockItemInfo &info);\n\nQ_DECLARE_METATYPE(DockItemInfo)\nQ_DECLARE_METATYPE(DockItemInfos)\n\nclass DockDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit DockDBusProxy(QObject *parent = nullptr);\n\n    Q_PROPERTY(int DisplayMode READ displayMode WRITE setDisplayMode NOTIFY DisplayModeChanged)\n    int displayMode();\n    Q_INVOKABLE void setDisplayMode(int mode);\n\n    Q_PROPERTY(int Position READ position WRITE setPosition NOTIFY PositionChanged)\n    int position();\n    Q_INVOKABLE void setPosition(int value);\n\n    Q_PROPERTY(int HideMode READ hideMode WRITE setHideMode NOTIFY HideModeChanged)\n    int hideMode();\n    Q_INVOKABLE void setHideMode(int value);\n\n    Q_PROPERTY(uint WindowSizeEfficient READ windowSizeEfficient WRITE setWindowSizeEfficient NOTIFY WindowSizeEfficientChanged)\n    uint windowSizeEfficient();\n    void setWindowSizeEfficient(uint value);\n\n    Q_PROPERTY(uint WindowSizeFashion READ windowSizeFashion WRITE setWindowSizeFashion NOTIFY WindowSizeFashionChanged)\n    uint windowSizeFashion();\n    void setWindowSizeFashion(uint value);\n\n    Q_PROPERTY(bool showInPrimary READ showInPrimary WRITE setShowInPrimary NOTIFY ShowInPrimaryChanged)\n    bool showInPrimary();\n    Q_INVOKABLE void setShowInPrimary(bool value);\n\n    Q_PROPERTY(bool locked READ locked WRITE setLocked NOTIFY LockedChanged)\n    bool locked();\n    Q_INVOKABLE void setLocked(bool value);\n\n    Q_PROPERTY(bool ShowRecent READ showRecent NOTIFY showRecentChanged)\n    bool showRecent();\n\npublic Q_SLOTS:\n    void resizeDock(int offset, bool dragging);\n    QDBusPendingReply<QStringList> GetLoadedPlugins();\n    QDBusPendingReply<QString> getPluginKey(const QString &pluginName);\n    QDBusPendingReply<bool> getPluginVisible(const QString &pluginName);\n    QDBusPendingReply<> setPluginVisible(const QString &pluginName, bool visible);\n    QDBusPendingReply<> SetShowRecent(bool visible);\n    QDBusPendingReply<DockItemInfos> plugins();\n    QDBusPendingReply<> setItemOnDock(const QString settingKey, const QString &itemKey, bool visible);\n\nQ_SIGNALS:\n    // property changed signals\n    void DisplayModeChanged(int displayMode) const;\n    void PositionChanged(int position) const;\n    void HideModeChanged(int hideMode) const;\n    void WindowSizeEfficientChanged(uint windowSizeEfficient) const;\n    void WindowSizeFashionChanged(uint windowSizeFashion) const;\n    void ShowInPrimaryChanged(bool showInPrimary) const;\n    void LockedChanged(bool locked) const;\n\n    // real singals\n    void pluginVisibleChanged(const QString &pluginName, bool visible) const;\n    void showRecentChanged(bool) const;\n    void pluginsChanged() const;\n\nprivate:\n    QDBusInterface *m_daemonDockInter;\n    QDBusInterface *m_dockInter;\n};\n\n#endif // DOCKDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-dock/operation/dockpluginmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"dockpluginmodel.h\"\n\nDockPluginModel::DockPluginModel(QObject *parent)\n: QAbstractItemModel(parent)\n{\n\n}\n\nQModelIndex DockPluginModel::index(int row, int column, const QModelIndex &parent) const\n{\n    if (row < 0 || row >= rowCount() || parent.isValid() || column != 0)\n        return QModelIndex();\n\n    return createIndex(row, 0);\n}\n\nQModelIndex DockPluginModel::parent(const QModelIndex &child) const\n{\n    Q_UNUSED(child)\n    return QModelIndex();\n}\n\nint DockPluginModel::rowCount(const QModelIndex &parent) const\n{\n    if (parent.isValid())\n        return 0;\n\n    return m_dockItemInfos.size();\n}\n\nint DockPluginModel::columnCount(const QModelIndex &parent) const\n{\n    Q_UNUSED(parent)\n    return 1;\n}\n\nQVariant DockPluginModel::data(const QModelIndex &index, int role) const\n{\n    int row = index.row();\n    \n    if (row < 0 || row >= m_dockItemInfos.size()) {\n        return {};\n    }\n\n    switch (role) {\n    case Qt::DisplayRole:\n        return m_dockItemInfos[row].displayName;\n    case PluginNameRole:\n        return m_dockItemInfos[row].name;\n    case PlugindisplayNameRole:\n        return m_dockItemInfos[row].displayName;\n    case PluginItemKeyRole:\n        return m_dockItemInfos[row].itemKey;\n    case PluginSettingKeyRole:\n        return m_dockItemInfos[row].settingKey;\n    case PluginIconKeyRole:\n        return m_dockItemInfos[row].dcc_icon;\n    case PluginVisibleRole:\n        return m_dockItemInfos[row].visible;\n    }\n    return {};\n}\n\nQHash<int, QByteArray> DockPluginModel::roleNames() const\n{\n    QHash<int, QByteArray> roles = QAbstractItemModel::roleNames();;\n    roles[PluginNameRole] = \"name\";\n    roles[PlugindisplayNameRole] = \"displayName\";\n    roles[PluginItemKeyRole] = \"key\";\n    roles[PluginSettingKeyRole] = \"settingKey\";\n    roles[PluginIconKeyRole] = \"icon\";\n    roles[PluginVisibleRole] = \"visible\";\n    return roles;\n}\n\nvoid DockPluginModel::setPluginVisible(const QString &pluginName, bool visible)\n{\n    for (int i = 0; i < m_dockItemInfos.size(); ++i) {\n        if (pluginName == m_dockItemInfos[i].itemKey) {\n            m_dockItemInfos[i].visible = visible;\n            emit dataChanged(index(i, 0), index(i, 0));\n            return;\n        }\n    }\n}\n\nvoid DockPluginModel::resetData(const DockItemInfos &pluginInfos)\n{\n    beginResetModel();\n    m_dockItemInfos = pluginInfos;\n    endResetModel();\n}\n"
  },
  {
    "path": "src/plugin-dock/operation/dockpluginmodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QAbstractItemModel>\n#include <QHash>\n#include <QList>\n\nstruct DockItemInfo\n{\n    QString name;\n    QString displayName;\n    QString itemKey;\n    QString settingKey;\n    QString dcc_icon;\n    bool visible;\n};\n\ntypedef QList<DockItemInfo> DockItemInfos;\n\nclass DockPluginModel : public QAbstractItemModel\n{\n    Q_OBJECT\n    enum DockPluginTypeRole {\n        PluginNameRole = Qt::UserRole + 1,\n        PlugindisplayNameRole,\n        PluginItemKeyRole,\n        PluginSettingKeyRole,\n        PluginIconKeyRole,\n        PluginVisibleRole\n    };\n\npublic:\n    explicit DockPluginModel(QObject *parent = nullptr);\n    QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;\n    QModelIndex parent(const QModelIndex &child) const override;\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n    int columnCount(const QModelIndex &parent = QModelIndex()) const override;\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n\n    void setPluginVisible(const QString &pluginName, bool visible);\n    void resetData(const DockItemInfos &pluginInfos);\n\nprotected:\n    QHash<int, QByteArray> roleNames() const override;\n\nprivate:\n    DockItemInfos m_dockItemInfos;\n};\n"
  },
  {
    "path": "src/plugin-dock/operation/dockpluginsortproxymodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"dockpluginsortproxymodel.h\"\n\n#include <QCollator>\n#include <QLocale>\n\nDockPluginSortProxyModel::DockPluginSortProxyModel(QObject *parent)\n    : QSortFilterProxyModel(parent)\n{\n    setDynamicSortFilter(true); // 启用动态排序，当源模型数据变化时自动重新排序\n    setSortRole(Qt::DisplayRole); // 默认按 displayName 排序\n    sort(0, Qt::AscendingOrder);\n}\n\nDockPluginSortProxyModel::StringGroup DockPluginSortProxyModel::classifyString(const QString &s) const\n{\n    for (QChar c : s) {\n        if (c.isSpace())\n            continue;\n\n        if (c.isDigit())\n            return StringGroup::Digit;\n\n        ushort u = c.unicode();\n        if ((u >= 'A' && u <= 'Z') || (u >= 'a' && u <= 'z'))\n            return StringGroup::Latin;\n\n        return StringGroup::CJK;\n    }\n    return StringGroup::CJK;\n}\n\n// 按显示名，支持“数字 -> 英文 -> 中文”三段排序\nbool DockPluginSortProxyModel::lessThan(const QModelIndex &leftIndex, const QModelIndex &rightIndex) const\n{\n    const QString left = sourceModel()->data(leftIndex, Qt::DisplayRole).toString();\n    const QString right = sourceModel()->data(rightIndex, Qt::DisplayRole).toString();\n\n    const StringGroup leftGroup  = classifyString(left);\n    const StringGroup rightGroup = classifyString(right);\n\n    // 不同组：直接比优先级\n    if (leftGroup != rightGroup)\n        return static_cast<int>(leftGroup) < static_cast<int>(rightGroup);\n\n    // 数字：自然数字排序\n    if (leftGroup == StringGroup::Digit) {\n        QCollator digitCollator(QLocale::c());\n        digitCollator.setNumericMode(true);\n        digitCollator.setCaseSensitivity(Qt::CaseInsensitive);\n        return digitCollator.compare(left, right) < 0;\n    }\n\n    // 英文：字母序\n    if (leftGroup == StringGroup::Latin) {\n        return QString::compare(left, right, Qt::CaseInsensitive) < 0;\n    }\n\n    // 中文：拼音序（强制中文 locale）\n    QCollator zhCollator(QLocale(QLocale::Chinese, QLocale::China));\n    zhCollator.setNumericMode(true);\n    zhCollator.setCaseSensitivity(Qt::CaseInsensitive);\n\n    return zhCollator.compare(left, right) < 0;\n}\n"
  },
  {
    "path": "src/plugin-dock/operation/dockpluginsortproxymodel.h",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QSortFilterProxyModel>\n\nclass DockPluginSortProxyModel : public QSortFilterProxyModel\n{\n    Q_OBJECT\n\n    enum StringGroup {\n        Digit = 0,\n        Latin = 1,\n        CJK   = 2\n    };\n\npublic:\n    explicit DockPluginSortProxyModel(QObject *parent = nullptr);\n\n    DockPluginSortProxyModel::StringGroup classifyString(const QString &s) const;\n\nprotected:\n    bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const override;\n};\n"
  },
  {
    "path": "src/plugin-dock/qml/CustomComBobox.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nD.ComboBox {\n    id: control\n    flat: true\n    textRole: \"text\"\n    valueRole: \"value\"\n\n    delegate: D.MenuItem {\n        id: menuItem\n        useIndicatorPadding: true\n        width: control.width\n        text: control.textRole ? (Array.isArray(control.model) ? modelData[control.textRole] : model[control.textRole]) : modelData\n        highlighted: control.isInteractingWithContent ? control.highlightedIndex === index : false\n        hoverEnabled: control.hoverEnabled\n        autoExclusive: true\n        checked: control.currentIndex === index\n        implicitHeight: DS.Style.control.implicitHeight(menuItem)\n\n        readonly property real availableTextWidth: contentItem ? contentItem.width : (width - leftPadding - rightPadding)\n\n        FontMetrics {\n            id: fontMetrics\n            font: menuItem.font\n        }\n\n        D.ToolTip {\n            visible: menuItem.hovered && fontMetrics.advanceWidth(menuItem.text) > menuItem.availableTextWidth\n            text: menuItem.text\n            delay: 500\n        }\n    }\n\n    // To replace function: indexOfValue\n    function indexByValue(value) {\n        for (var i = 0; i < model.count; i++) {\n            if (model.get(i).value === value) {\n                return i;\n            }\n        }\n        return -1;\n    }\n}\n"
  },
  {
    "path": "src/plugin-dock/qml/Dock.qml",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    name: \"dock\"\n    parentName: \"personalization\"\n    displayName: qsTr(\"Desktop and taskbar\")\n    description: qsTr(\"Desktop organization, taskbar mode, plugin area settings\")\n    icon: \"dock\"\n    weight: 100\n}\n"
  },
  {
    "path": "src/plugin-dock/qml/DockMain.qml",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    readonly property int modeDelegateWidth: 144\n    readonly property int modeDelegateHeight: 72\n    readonly property int modeDelegatePadding: 4\n    readonly property int modeDelegateRadius: 9\n    \n    DccTitleObject {\n        name: \"taskBarTitle\"\n        weight: 500\n        parentName: \"personalization/dock\"\n        displayName: qsTr(\"Dock\")\n    }\n\n    DccObject {\n        name: \"taskBarModeGroup\"\n        parentName: \"personalization/dock\"\n        weight: 600\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"dockmode\"\n            parentName: \"personalization/dock/taskBarModeGroup\"\n            displayName: qsTr(\"Mode\")\n            weight: 10\n            pageType: DccObject.Item\n            page: ColumnLayout {\n                Label {\n                    Layout.topMargin: 10\n                    font: D.DTK.fontManager.t7\n                    text: dccObj.displayName\n                    Layout.leftMargin: 10\n                }\n                Flow {\n                    id: modeLayout\n                    spacing: 10\n                    Layout.fillWidth: true\n                    Layout.bottomMargin: 10\n                    Layout.leftMargin: 10\n\n                    ListModel {\n                        id: modeData\n                        ListElement { text: qsTr(\"Classic Mode\"); icon: \"effcient_left\"; value: 1 }\n                        ListElement { text: qsTr(\"Centered Mode\"); icon: \"effcient_center\"; value: 0 }\n                        // ListElement { text: qsTr(\"Fashion Mode\"); icon: \"fashion\"; value: 2 }\n                    }\n\n                    Repeater {\n                        id: modeRepeater\n                        model: modeData\n                        ColumnLayout {\n                            D.ItemDelegate {\n                                id: modeDelegate\n                                Layout.preferredWidth: modeDelegateWidth\n                                Layout.preferredHeight: modeDelegateHeight\n                                Layout.alignment: Qt.AlignHCenter\n                                Layout.margins: 0\n                                checkable: false\n                                backgroundVisible: false\n                                focusPolicy: Qt.TabFocus\n                                activeFocusOnTab: index === 0\n                                padding: modeDelegatePadding\n\n                                function activate() {\n                                    dccData.dockInter.setDisplayMode(model.value)\n                                }\n\n                                background: Rectangle {\n                                    radius: modeDelegateRadius\n                                    color: \"transparent\"\n                                    border.width: dccData.dockInter.DisplayMode === model.value || modeDelegate.activeFocus ? 2 : 0\n                                    border.color: D.DTK.platformTheme.activeColor\n                                }\n\n                                contentItem: Control {\n                                    id: iconControl\n\n                                    contentItem: D.DciIcon {\n                                        palette: D.DTK.makeIconPalette(iconControl.palette)\n                                        theme: iconControl.D.ColorSelector.controlTheme\n                                        sourceSize: Qt.size(iconControl.width, iconControl.height)\n                                        name: model.icon\n                                    }\n                                }\n\n                                onClicked: activate()\n                                Keys.onSpacePressed: activate()\n                                Keys.onReturnPressed: activate()\n\n                                Keys.onLeftPressed: {\n                                    if (index > 0) {\n                                        modeRepeater.itemAt(index - 1).children[0].forceActiveFocus()\n                                    }\n                                }\n\n                                Keys.onRightPressed: {\n                                    if (index < modeRepeater.count - 1) {\n                                        modeRepeater.itemAt(index + 1).children[0].forceActiveFocus()\n                                    }\n                                }\n                            }\n\n                            Text {\n                                text: model.text\n                                Layout.fillWidth: true\n                                horizontalAlignment: Text.AlignHCenter\n                                verticalAlignment: Text.AlignVCenter\n                                font: D.DTK.fontManager.t9\n                                color: dccData.dockInter.DisplayMode === model.value ? \n                                    D.DTK.platformTheme.activeColor : this.palette.windowText\n                            }\n                        }\n                    }\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"dockSettingsGroup\"\n        parentName: \"personalization/dock\"\n        weight: 700\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"docksize\"\n            parentName: \"personalization/dock/dockSettingsGroup\"\n            displayName: qsTr(\"Dock size\")\n            weight: 10\n            pageType: DccObject.Editor\n            page: RowLayout {\n                spacing: 10\n                Label {\n                    Layout.alignment: Qt.AlignVCenter\n                    font: D.DTK.fontManager.t7\n                    text: qsTr(\"Small\")\n                }\n                D.Slider {\n                    Layout.alignment: Qt.AlignVCenter\n                    id: balanceSlider\n                    handleType: Slider.HandleType.ArrowBottom\n                    implicitHeight: 24\n                    highlightedPassedGroove: true\n                    stepSize: 1\n                    value: dccData.dockInter.DisplayMode === 2 ? dccData.dockInter.WindowSizeFashion : dccData.dockInter.WindowSizeEfficient \n                    from: 37\n                    to: 100\n\n                    onValueChanged: {\n                        dccData.dockInter.resizeDock(value, true)\n                    }\n\n                    onPressedChanged: {\n                        dccData.dockInter.resizeDock(value, pressed)\n                    }\n                }\n                D.Label {\n                    Layout.alignment: Qt.AlignVCenter\n                    font: D.DTK.fontManager.t7\n                    text: qsTr(\"Large\")\n                }\n            }\n        }\n        DccObject {\n            name: \"lockedDock\"\n            parentName: \"personalization/dock/dockSettingsGroup\"\n            displayName: qsTr(\"Lock the Dock\")\n            weight: 20\n            pageType: DccObject.Editor\n            page: Switch {\n                checked: dccData.dockInter.locked \n                onCheckedChanged: {\n                    if (dccData.dockInter.locked != checked)\n                        dccData.dockInter.setLocked(checked)\n                }\n            }\n        }\n        DccObject {\n            name: \"positionInScreen\"\n            parentName: \"personalization/dock/dockSettingsGroup\"\n            displayName: qsTr(\"Position on the screen\")\n            weight: 100\n            pageType: DccObject.Editor\n            page: CustomComBobox {\n                flat: true\n                model: alignModel\n                currentIndex: indexByValue(dccData.dockInter.Position)\n\n                ListModel {\n                    id: alignModel\n                    ListElement { text: qsTr(\"Top\"); value: 0 }\n                    ListElement { text: qsTr(\"Bottom\"); value: 2 }\n                    ListElement { text: qsTr(\"Left\"); value: 3 }\n                    ListElement { text: qsTr(\"Right\"); value: 1 }\n                }\n\n                onCurrentIndexChanged: {\n                    var selectedValue = model.get(currentIndex).value;\n                    dccData.dockInter.setPosition(selectedValue)\n                }\n            }\n        }\n\n        DccObject {\n            name: \"positionInScreen\"\n            parentName: \"personalization/dock/dockSettingsGroup\"\n            displayName: qsTr(\"Status\")\n            weight: 200\n            pageType: DccObject.Editor\n            page: CustomComBobox {\n                flat: true\n                model: hideModel\n                currentIndex: indexByValue(dccData.dockInter.HideMode)\n\n                ListModel {\n                    id: hideModel\n                    ListElement { text: qsTr(\"Keep shown\"); value: 0 }\n                    ListElement { text: qsTr(\"Keep hidden\"); value: 1 }\n                    ListElement { text: qsTr(\"Smart hide\"); value: 2 }\n                }\n\n                onCurrentIndexChanged: {\n                    var selectedValue = model.get(currentIndex).value;\n                    dccData.dockInter.setHideMode(selectedValue)\n                }\n            }\n        }\n        DccObject {\n            name: \"combineApp\"\n            parentName: \"personalization/dock/dockSettingsGroup\"\n            displayName: qsTr(\"Combine application icons\")\n            weight: 200\n            pageType: DccObject.Editor\n            page: Switch {\n                checked: dccData.combineApp\n                onCheckedChanged: {\n                    if (dccData.combineApp !== checked)\n                        dccData.setCombineApp(checked)\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"multiscreenGroup\"\n        parentName: \"personalization/dock\"\n        weight: 800\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"multiscreenItem\"\n            parentName: \"personalization/dock/multiscreenGroup\"\n            displayName: qsTr(\"Multiple Displays\")\n            description: qsTr(\"Set the position of the taskbar on the screen\")\n            visible: dccData.displayMode === 2 && dccData.monitorCount > 1\n            weight: 10\n            pageType: DccObject.Editor\n            page: CustomComBobox {\n                flat: true\n                model: showModeModel\n                currentIndex: indexByValue(dccData.dockInter.showInPrimary)\n                implicitWidth: 260\n\n                ListModel {\n                    id: showModeModel\n                    ListElement { text: qsTr(\"Only on main\"); value: true }\n                    ListElement { text: qsTr(\"On screen where the cursor is\"); value: false }\n                }\n\n                onCurrentIndexChanged: {\n                    var selectedValue = model.get(currentIndex).value;\n                    dccData.dockInter.setShowInPrimary(selectedValue)\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"pluginArea\"\n        weight:900\n        icon: \"plugin\"\n        parentName: \"personalization/dock\"\n        displayName: qsTr(\"Plugin Area\")\n        description: qsTr(\"Select which icons appear in the Dock\")\n\n        PluginArea {}\n    }\n}\n"
  },
  {
    "path": "src/plugin-dock/qml/PluginArea.qml",
    "content": "//SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    Connections {\n        target: DccApp\n        function onActiveObjectChanged(activeObject) {\n            if (activeObject.name === \"pluginArea\") {\n                console.log(\"pluginArea object activated, refreshing plugin data...\")\n                dccData.loadPluginData()\n            }\n        }\n    }\n\n    DccObject {\n        name: \"pluginAreaTitle\"\n        weight: 10\n        parentName: \"personalization/dock/pluginArea\"\n        pageType: DccObject.Item\n        displayName: qsTr(\"Plugin Area\")\n        description: qsTr(\"Select which icons appear in the Dock\")\n        onParentItemChanged: item => { if (item) item.activeFocusOnTab = false }\n        page: ColumnLayout {\n            Label {\n                property D.Palette textColor: D.Palette {\n                    normal: Qt.rgba(0, 0, 0, 0.9)\n                    normalDark: Qt.rgba(1, 1, 1, 0.9)\n                }\n                font.family: D.DTK.fontManager.t5.family\n                font.pixelSize: D.DTK.fontManager.t5.pixelSize\n                font.weight: 500\n                Layout.leftMargin: 14\n                text: dccObj.displayName\n                color: D.ColorSelector.textColor\n            }\n            Label {\n                Layout.leftMargin: 14\n                text: dccObj.description\n            }\n        }\n    }\n\n    DccObject {\n        name: \"pluginAreaView\"\n        parentName: \"personalization/dock/pluginArea\"\n        weight: 100\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        DccRepeater {\n            model: dccData.pluginModel\n            delegate: DccObject {\n                name: \"plugin\" + model.key\n                property real iconSize: 16\n                parentName: \"personalization/dock/pluginArea/pluginAreaView\"\n                weight: 10 + index * 10\n                backgroundType: DccObject.Normal\n                icon: model.icon\n                displayName: model.displayName\n                pageType: DccObject.Editor\n                page: DccCheckIcon {\n                    checked: model.visible\n                    onClicked: {\n                        dccData.dockInter.setItemOnDock(model.settingKey, model.key, !checked)\n                    }\n                }\n                onParentItemChanged: function(item) {\n                    if (!item) return\n                    \n                    item.activeFocusOnTab = true\n                    function isSameGroup(obj) {\n                        return obj && obj.toString().indexOf(\"DccEditorItem\") >= 0\n                    }\n                    \n                    function findContainer() {\n                        var container = item.parent\n                        while (container && container.children.length <= 1) {\n                            container = container.parent\n                        }\n                        return container\n                    }\n                    \n                    function findEdgeItem(forward) {\n                        var container = findContainer()\n                        if (!container) return null\n                        \n                        var siblings = container.children\n                        if (forward) {\n                            for (var i = siblings.length - 1; i >= 0; i--) {\n                                if (isSameGroup(siblings[i])) return siblings[i]\n                            }\n                        } else {\n                            for (var i = 0; i < siblings.length; i++) {\n                                if (isSameGroup(siblings[i])) return siblings[i]\n                            }\n                        }\n                        return null\n                    }\n                    \n                    item.Keys.onUpPressed.connect(function() {\n                        var next = item.nextItemInFocusChain(false)\n                        if (isSameGroup(next)) {\n                            next.forceActiveFocus(Qt.BacktabFocusReason)\n                        } else {\n                            var lastItem = findEdgeItem(true)\n                            if (lastItem) lastItem.forceActiveFocus(Qt.BacktabFocusReason)\n                        }\n                    })\n                    \n                    item.Keys.onDownPressed.connect(function() {\n                        var next = item.nextItemInFocusChain(true)\n                        if (isSameGroup(next)) {\n                            next.forceActiveFocus(Qt.TabFocusReason)\n                        } else {\n                            var firstItem = findEdgeItem(false)\n                            if (firstItem) firstItem.forceActiveFocus(Qt.TabFocusReason)\n                        }\n                    })\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-dock/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-dock/res/dcc-dock-plugin.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>dark/icons/effcient_center_70px.svg</file>\n        <file>dark/icons/effcient_left_70px.svg</file>\n        <file>dark/icons/fashion_70px.svg</file>\n        <file>light/icons/effcient_center_70px.svg</file>\n        <file>light/icons/effcient_left_70px.svg</file>\n        <file>light/icons/fashion_70px.svg</file>\n    </qresource>\n\n    <qresource prefix=\"/dsg\">\n        <file>icons/plugin.dci</file>\n        <file>icons/dock.dci</file>\n    </qresource>\n\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>texts/dcc_dock_time_16px.svg</file>\n        <file>texts/dcc_dock_assistant_16px.svg</file>\n        <file>texts/dcc_dock_desktop_16px.svg</file>\n        <file>texts/dcc_dock_keyboard_16px.svg</file>\n        <file>texts/dcc_dock_notify_16px.svg</file>\n        <file>texts/dcc_dock_plug_in_16px.svg</file>\n        <file>texts/dcc_dock_power_16px.svg</file>\n        <file>texts/dcc_dock_task_16px.svg</file>\n        <file>texts/dcc_dock_trash_16px.svg</file>\n        <file>texts/dcc_dock_grandsearch_16px.svg</file>\n        <file>texts/dcc_dock_systemmonitor_16px.svg</file>\n        <file>texts/dcc_dock_shot_start_plugin_16px.svg</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-keyboard/CMakeLists.txt",
    "content": "if (BUILD_PLUGIN)\n    set(Plugin_Name keyboard)\n    file(GLOB_RECURSE keyboard_SRCS\n        \"operation/*.h\"\n        \"operation/*.cpp\"\n        \"operation/qrc/keyboard.qrc\"\n    )\n    file(GLOB_RECURSE keyboard_qml_SRCS\n        \"qml/*.qml\"\n    )\n    # pkg_check_modules(QGSettings REQUIRED IMPORTED_TARGET gsettings-qt)\n    add_library(${Plugin_Name} MODULE\n        ${keyboard_SRCS}\n    )\n\n    set(keyboard_Includes\n        src/plugin-keyboard/operation\n    )\n    find_package(PolkitQt6-1 REQUIRED)\n    set(keyboard_Libraries\n        ${DCC_FRAME_Library}\n        ${DTK_NS}::Gui\n        ${QT_NS}::DBus\n        ${QT_NS}::Gui\n        ${QT_NS}::Qml\n        PolkitQt6-1::Agent\n    )\n    target_include_directories(${Plugin_Name} PUBLIC\n        ${keyboard_Includes}\n    )\n    target_link_libraries(${Plugin_Name} PRIVATE\n        ${keyboard_Libraries}\n        dcc-shared-utils\n    )\n    dcc_install_plugin(NAME ${Plugin_Name} TARGET ${Plugin_Name})\n    # dcc_handle_plugin_translation(NAME ${Plugin_Name}  QML_FILES ${keyboard_qml_SRCS} SOURCE_FILES ${keyboard_SRCS})\nendif()\n"
  },
  {
    "path": "src/plugin-keyboard/operation/keyboardcontroller.cpp",
    "content": "//SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"keyboardcontroller.h\"\n#include \"dccfactory.h\"\n#include \"layoutsmodel.h\"\n\n#include <PolkitQt1/Authority>\n#include <QFileInfo>\n\nnamespace dccV25 {\nDCC_FACTORY_CLASS(KeyboardController)\n\nKeyboardController::KeyboardController(QObject *parent)\n    : QObject(parent)\n{\n    m_model = new KeyboardModel(this);\n    m_worker = new KeyboardWorker(m_model, this);\n    m_shortcutModel = new ShortcutModel(this);\n    m_worker->setShortcutModel(m_shortcutModel);\n\n    connect(m_model, &KeyboardModel::repeatIntervalChanged, this, &KeyboardController::repeatIntervalChanged);\n    connect(m_model, &KeyboardModel::repeatDelayChanged, this, &KeyboardController::repeatDelayChanged);\n    connect(m_model, &KeyboardModel::numLockChanged, this, &KeyboardController::numLockChanged);\n    connect(m_model, &KeyboardModel::capsLockChanged, this, &KeyboardController::capsLockChanged);\n    connect(m_model, &KeyboardModel::userLayoutChanged, this, &KeyboardController::layoutCountChanged);\n    connect(m_model, &KeyboardModel::curLayoutChanged, this, &KeyboardController::currentLayoutChanged);\n    connect(m_model, &KeyboardModel::keyboardEnabledChanged, this, &KeyboardController::keyboardEnabledChanged);\n\n    connect(m_shortcutModel, &ShortcutModel::keyEvent, this, [this](bool press, const QString &shortcut){\n        ShortcutInfo *current = m_shortcutModel->currentInfo();\n\n        ShortcutInfo *conflict = m_shortcutModel->getInfo(shortcut);\n\n        if (!press) {\n            if (shortcut.isEmpty()) {\n                Q_EMIT requestRestore();\n                return;\n            }\n\n            if (shortcut == \"BackSpace\" || shortcut == \"Delete\") {\n                Q_EMIT requestClear();\n                return;\n            }\n\n            // have conflict\n            if (conflict) {\n                // self conflict\n                if (conflict == current && conflict->accels == current->accels) {\n                    Q_EMIT requestRestore();\n                    return;\n                }\n\n                auto conflictName = QString(\"<font color=\\\"red\\\">%1</font>\").arg(conflict->name.toHtmlEscaped());\n                QString text = KeyboardController::tr(\"This shortcut conflicts with [%1]\").arg(conflictName);\n                setConflictText(text);\n                Q_EMIT keyConflicted(current ? current->accels : \"\", conflict->accels);\n            } else {\n                // save\n                if (current) {\n                    current->accels = shortcut;\n                }\n\n                Q_EMIT keyDone(shortcut);\n            }\n        }\n\n        Q_EMIT keyEvent(shortcut);\n    });\n\n    QMetaObject::invokeMethod(m_worker, \"active\", Qt::QueuedConnection);\n}\n\nuint KeyboardController::repeatInterval() const\n{\n    return m_model->repeatInterval();\n}\n\nvoid KeyboardController::setRepeatInterval(uint newRepeatInterval)\n{\n    if (repeatInterval() == newRepeatInterval)\n        return;\n\n    m_worker->setRepeatInterval(newRepeatInterval);\n}\n\nuint KeyboardController::repeatDelay() const\n{\n    return m_model->repeatDelay();\n}\n\nvoid KeyboardController::setRepeatDelay(uint newRepeatDelay)\n{\n    if (repeatDelay() == newRepeatDelay)\n        return;\n\n    m_worker->setRepeatDelay(newRepeatDelay);\n}\n\nbool KeyboardController::keyboardEnabled() const\n{\n    return m_model->keyboardEnabled();\n}\n\nvoid KeyboardController::setKeyboardEnabled(bool enabled)\n{\n    if (keyboardEnabled() == enabled)\n        return;\n\n    connect(PolkitQt1::Authority::instance(), &PolkitQt1::Authority::checkAuthorizationFinished, this, [this, enabled](PolkitQt1::Authority::Result authenticationResult) {\n        disconnect(PolkitQt1::Authority::instance(), nullptr, this, nullptr);\n        if (PolkitQt1::Authority::Result::Yes == authenticationResult) {\n            m_worker->setKeyboardEnabled(enabled);\n        } else {\n            Q_EMIT keyboardEnabledChanged();\n        }\n    });\n    PolkitQt1::Authority::instance()->checkAuthorization(\"org.deepin.dde.accounts.user-administration\", PolkitQt1::UnixProcessSubject(getpid()), PolkitQt1::Authority::AllowUserInteraction);\n}\n\nbool KeyboardController::numLock() const\n{\n    return m_model->numLock();\n}\n\nvoid KeyboardController::setNumLock(bool newNumLock)\n{\n    m_worker->setNumLock(newNumLock);\n}\n\nbool KeyboardController::capsLock() const\n{\n    return m_model->capsLock();\n}\n\nvoid KeyboardController::setCapsLock(bool newCapsLock)\n{\n    if (capsLock() == newCapsLock)\n        return;\n\n    m_worker->setCapsLock(newCapsLock);\n}\n\nQMap<QString, QString> KeyboardController::userLayouts() const\n{\n    return m_model->userLayout();\n}\n\nQString KeyboardController::userLayoutAt(int index, bool isValue/* = true*/) const\n{\n    const QStringList &list = m_model->getUserLayoutList();\n    const QString &key = list.value(index);\n    if (!isValue)\n        return key;\n\n    return userLayouts().value(key);\n}\n\nbool KeyboardController::userLayoutsContains(const QString &key)\n{\n    return userLayouts().contains(key);\n}\n\nQSortFilterProxyModel *KeyboardController::layoutSearchModel()\n{\n    if (m_layoutSearchModel)\n        return m_layoutSearchModel;\n\n    m_layoutSearchModel = new LayoutFilterModel(this);\n\n    m_worker->onPinyin();\n\n    connect(m_model, &KeyboardModel::userLayoutChanged, m_layoutSearchModel,\n            [this](const QString &, const QString &){\n        m_layoutSearchModel->invalidate();\n    });\n\n    auto sourceModel = new LayoutsModel(m_worker);\n\n    m_layoutSearchModel->setSourceModel(sourceModel);\n    m_layoutSearchModel->setFilterRole(LayoutsModel::SearchedTextRole);\n    m_layoutSearchModel->setSortRole(LayoutsModel::SectionRole);\n    m_layoutSearchModel->setFilterCaseSensitivity(Qt::CaseInsensitive);\n\n    return m_layoutSearchModel;\n}\n\nQSortFilterProxyModel *KeyboardController::shortcutSearchModel()\n{\n    if (m_shortcutSearchModel)\n        return m_shortcutSearchModel;\n\n    m_shortcutSearchModel = new QSortFilterProxyModel(this);\n\n    auto sourceModel = new ShortcutListModel(this);\n    sourceModel->setSouceModel(m_shortcutModel);\n\n    connect(m_shortcutModel, &ShortcutModel::delCustomInfo, sourceModel, &ShortcutListModel::reset);\n    connect(m_shortcutModel, &ShortcutModel::addCustomInfo, sourceModel, &ShortcutListModel::reset);\n    connect(m_shortcutModel, &ShortcutModel::shortcutChanged, sourceModel, &ShortcutListModel::onUpdateShortcut);\n    connect(m_shortcutModel, &ShortcutModel::windowSwitchChanged, sourceModel, &ShortcutListModel::reset);\n\n    m_shortcutSearchModel->setSourceModel(sourceModel);\n    m_shortcutSearchModel->setFilterRole(ShortcutListModel::SearchedTextRole);\n    m_shortcutSearchModel->setFilterCaseSensitivity(Qt::CaseInsensitive);\n\n    return m_shortcutSearchModel;\n}\n\nvoid KeyboardController::updateKey(const QString &id, const int &type)\n{\n    ShortcutInfo *shortcut = nullptr;\n    if (!id.isEmpty()) { // new shortcuts\n        shortcut = m_shortcutModel->findInfoIf([id, type](ShortcutInfo *info){\n            return id == info->id && type == info->type;\n        });\n        if (!shortcut) {\n            qWarning() << \"shortcut not found...\" << id << type;\n            return;\n        }\n    }\n\n    m_worker->updateKey(shortcut);\n}\n\nQStringList KeyboardController::formatKeys(const QString &shortcuts)\n{\n    return ShortcutModel::formatKeys(shortcuts);\n}\n\nQString KeyboardController::checkDesktopCmd(const QString &cmd)\n{\n    // Check and process desktop commands, add dde-am prefix if desktop file exists\n    if (!cmd.isEmpty() && cmd.startsWith(\"/\") && cmd.endsWith(\".desktop\")) {\n        QFileInfo fileInfo(cmd);\n        if (fileInfo.exists() && fileInfo.isFile()) {\n            return \"dde-am \" + cmd;\n        }\n    }\n    return cmd;\n}\n\nvoid KeyboardController::addCustomShortcut(const QString &name, const QString &cmd, const QString &accels)\n{\n    // Clear conflicting shortcuts when adding\n    if (auto conflict = m_shortcutModel->getInfo(accels)) {\n        m_worker->onDisableShortcut(conflict);\n    }\n\n    // Check and process desktop commands, add dde-am prefix if needed\n    QString newCmd = checkDesktopCmd(cmd);\n    m_worker->addCustomShortcut(name, newCmd, accels);\n}\n\nvoid KeyboardController::modifyCustomShortcut(const QString &id, const QString &name, const QString &cmd, const QString &accels)\n{\n    ShortcutInfo *shortcut = m_shortcutModel->findInfoIf([id](ShortcutInfo *info){ return id == info->id; });\n    if (!shortcut) {\n        qWarning() << \"shortcut not found...\" << id << name;\n        return;\n    }\n\n    // Clear conflicting shortcuts when modifying\n    if (auto conflict = m_shortcutModel->getInfo(accels)) {\n        m_worker->onDisableShortcut(conflict);\n    }\n\n    shortcut->name = name;\n    shortcut->command = checkDesktopCmd(cmd);\n    shortcut->accels = accels;\n\n    m_worker->modifyCustomShortcut(shortcut);\n}\n\nvoid KeyboardController::deleteCustomShortcut(const QString &id)\n{\n    ShortcutInfo *shortcut = m_shortcutModel->findInfoIf([id](ShortcutInfo *info){ return id == info->id; });\n    if (!shortcut) {\n        qWarning() << \"shortcut not found...\" << id;\n        return;\n    }\n\n    m_worker->delShortcut(shortcut);\n}\n\nvoid KeyboardController::modifyShortcut(const QString &id, const QString &accels, const int &type)\n{\n    ShortcutInfo *shortcut = m_shortcutModel->findInfoIf([id, type](ShortcutInfo *info){ return id == info->id && type == info->type; });\n    if (!shortcut) {\n        qWarning() << \"shortcut not found...\" << id << type;\n        return;\n    }\n\n    if (shortcut->accels != accels) {\n        // Clear conflicting shortcuts when modifying\n        if (auto conflict = m_shortcutModel->getInfo(accels)) {\n            m_worker->onDisableShortcut(conflict);\n            shortcut->accels = accels;\n        }\n    }\n\n    m_worker->modifyShortcutEdit(shortcut);\n}\n\nvoid KeyboardController::clearShortcut(const QString &id, const int &type)\n{\n    ShortcutInfo *shortcut = m_shortcutModel->findInfoIf([id, type](ShortcutInfo *info){ return id == info->id && type == info->type; });\n    if (!shortcut) {\n        qWarning() << \"shortcut not found...\" << id << type;\n        return;\n    }\n\n    m_worker->onDisableShortcut(shortcut);\n}\n\nvoid KeyboardController::resetAllShortcuts()\n{\n    m_worker->resetAll();\n}\n\nvoid KeyboardController::addUserLayout(const QString &layout)\n{\n    m_worker->addUserLayout(layout);\n}\n\nvoid KeyboardController::deleteUserLayout(const QString &layout)\n{\n    m_worker->delUserLayout(layout);\n}\n\nint KeyboardController::layoutCount() const\n{\n    return  userLayouts().count();\n}\n\nQString KeyboardController::currentLayout() const\n{\n    return m_model->curLayout();\n}\n\nvoid KeyboardController::setCurrentLayout(const QString &key)\n{\n    if (currentLayout() == key)\n        return;\n\n    m_worker->setLayout(key);\n}\n\nQString KeyboardController::conflictText() const\n{\n    return m_conflictText;\n}\n\nvoid KeyboardController::setConflictText(const QString &newConflictText)\n{\n    if (m_conflictText == newConflictText)\n        return;\n\n    m_conflictText = newConflictText;\n    emit conflictTextChanged();\n}\n\nbool KeyboardController::isCustomShortcutNameExists(const QString &name, const QString &excludeId)\n{\n    if (name.trimmed().isEmpty())\n        return false;\n        \n    const auto customInfos = m_shortcutModel->customInfo();\n    for (const auto *info : customInfos) {\n        // Exclude the current editing shortcut (if in edit mode)\n        if (!excludeId.isEmpty() && info->id == excludeId)\n            continue;\n            \n        if (info->name.trimmed() == name.trimmed()) {\n            return true;\n        }\n    }\n    return false;\n}\n\nbool KeyboardController::isSystemShortcutNameExists(const QString &name)\n{\n    if (!m_shortcutModel) {\n        return false;\n    }\n    \n    return m_shortcutModel->containsSystemShortcutName(name);\n}\n\nbool KeyboardController::isShortcutNameExists(const QString &name, const QString &excludeId)\n{\n    if (name.trimmed().isEmpty()) {\n        return false;\n    }\n    \n    // Check system shortcut conflicts first\n    if (isSystemShortcutNameExists(name)) {\n        return true;\n    }\n    \n    // Then check custom shortcut conflicts\n    return isCustomShortcutNameExists(name, excludeId);\n}\n\n}\n\n#include \"keyboardcontroller.moc\"\n"
  },
  {
    "path": "src/plugin-keyboard/operation/keyboardcontroller.h",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef KEYBOARDCONTROLLER_H\n#define KEYBOARDCONTROLLER_H\n\n#include \"keyboardmodel.h\"\n#include \"keyboardwork.h\"\n\n#include <QObject>\n#include <QSortFilterProxyModel>\n\nnamespace dccV25 {\n\nclass KeyboardController : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(uint repeatInterval READ repeatInterval WRITE setRepeatInterval NOTIFY repeatIntervalChanged FINAL)\n    Q_PROPERTY(uint repeatDelay READ repeatDelay WRITE setRepeatDelay NOTIFY repeatDelayChanged FINAL)\n    Q_PROPERTY(bool keyboardEnabled READ keyboardEnabled WRITE setKeyboardEnabled NOTIFY keyboardEnabledChanged FINAL)\n    Q_PROPERTY(bool numLock READ numLock WRITE setNumLock NOTIFY numLockChanged FINAL)\n    Q_PROPERTY(bool capsLock READ capsLock WRITE setCapsLock NOTIFY capsLockChanged FINAL)\n    Q_PROPERTY(int layoutCount READ layoutCount NOTIFY layoutCountChanged FINAL)\n    Q_PROPERTY(QString currentLayout READ currentLayout WRITE setCurrentLayout NOTIFY currentLayoutChanged FINAL)\n    Q_PROPERTY(QString conflictText READ conflictText WRITE setConflictText NOTIFY conflictTextChanged FINAL)\n\npublic:\n    explicit KeyboardController(QObject *parent = nullptr);\n\n    uint repeatInterval() const;\n    void setRepeatInterval(uint newRepeatInterval);\n\n    uint repeatDelay() const;\n    void setRepeatDelay(uint newRepeatDelay);\n\n    bool keyboardEnabled() const;\n    void setKeyboardEnabled(bool enabled);\n\n    bool numLock() const;\n    void setNumLock(bool newNumLock);\n\n    bool capsLock() const;\n    void setCapsLock(bool newCapsLock);\n\n    int layoutCount() const;\n\n    QString currentLayout() const;\n    void setCurrentLayout(const QString &key);\n\n    QString conflictText() const;\n    void setConflictText(const QString &newConflictText);\n\npublic Q_SLOTS:\n    void addUserLayout(const QString &layout);\n    void deleteUserLayout(const QString &layout);\n\n    QMap<QString, QString> userLayouts() const;\n    QString userLayoutAt(int index, bool isValue = true) const;\n    bool userLayoutsContains(const QString &key);\n    QSortFilterProxyModel *layoutSearchModel();\n    QSortFilterProxyModel *shortcutSearchModel();\n\n    void updateKey(const QString &id, const int &type);\n    QStringList formatKeys(const QString &shortcuts);\n\n    void addCustomShortcut(const QString &name, const QString &cmd, const QString &accels);\n    void modifyCustomShortcut(const QString &id, const QString &name, const QString &cmd, const QString &accels);\n    void modifyShortcut(const QString &id, const QString &accels, const int &type);\n    void deleteCustomShortcut(const QString &id);\n    void clearShortcut(const QString &id, const int &type);\n\n    void resetAllShortcuts();\n    \n    // 检查自定义快捷键名称是否已存在（排除指定ID）\n    bool isCustomShortcutNameExists(const QString &name, const QString &excludeId = QString());\n    \n    // 检查系统快捷键名称是否已存在\n    bool isSystemShortcutNameExists(const QString &name);\n    \n    // 统一检查快捷键名称是否已存在（包含系统和自定义快捷键）\n    bool isShortcutNameExists(const QString &name, const QString &excludeId = QString());\n\nsignals:\n    void repeatIntervalChanged();\n    void repeatDelayChanged();\n    void numLockChanged();\n    void capsLockChanged();\n    void layoutCountChanged();\n    void currentLayoutChanged();\n\n    void requestRestore();\n    void requestClear();\n    void keyConflicted(const QString &oldAccels, const QString &newAccels);\n    void keyDone(const QString &accels);\n    void keyEvent(const QString &accels);\n\n    void conflictTextChanged();\n    void keyboardEnabledChanged();\n\nprivate:\n    // 检查并处理desktop命令，如果desktop文件存在则添加dde-am前缀\n    QString checkDesktopCmd(const QString &cmd);\n    \n    uint m_repeatInterval;\n    uint m_repeatDelay;\n    bool m_numLock;\n    bool m_capsLock;\n    KeyboardWorker *m_worker = nullptr;\n    KeyboardModel *m_model = nullptr;\n    ShortcutModel *m_shortcutModel = nullptr;\n    QSortFilterProxyModel *m_layoutSearchModel = nullptr;\n    QSortFilterProxyModel *m_shortcutSearchModel = nullptr;\n    QString m_conflictText;\n};\n\n}\n#endif // KEYBOARDCONTROLLER_H\n"
  },
  {
    "path": "src/plugin-keyboard/operation/keyboarddbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"keyboarddbusproxy.h\"\n\n#include <QMetaObject>\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusPendingReply>\n#include <QDBusMetaType>\n#include <QDebug>\n\nconst static QString LangSelectorService = \"org.deepin.dde.LangSelector1\";\nconst static QString LangSelectorPath = \"/org/deepin/dde/LangSelector1\";\nconst static QString LangSelectorInterface = \"org.deepin.dde.LangSelector1\";\n\nconst static QString KeyboardService = \"org.deepin.dde.InputDevices1\";\nconst static QString KeyboardPath = \"/org/deepin/dde/InputDevice1/Keyboard\";\nconst static QString KeyboardInterface = \"org.deepin.dde.InputDevice1.Keyboard\";\n\nconst static QString KeybingdingService = \"org.deepin.dde.Keybinding1\";\nconst static QString KeybingdingPath = \"/org/deepin/dde/Keybinding1\";\nconst static QString KeybingdingInterface = \"org.deepin.dde.Keybinding1\";\n\nconst static QString WMService = \"com.deepin.wm\";\nconst static QString WMPath = \"/com/deepin/wm\";\nconst static QString WMInterface = \"com.deepin.wm\";\n\nKeyboardDBusProxy::KeyboardDBusProxy(QObject *parent)\n    : QObject(parent)\n{\n    qRegisterMetaType<KeyboardLayoutList>(\"KeyboardLayoutList\");\n    qDBusRegisterMetaType<KeyboardLayoutList>();\n\n    qRegisterMetaType<LocaleInfo>(\"LocaleInfo\");\n    qDBusRegisterMetaType<LocaleInfo>();\n\n    qRegisterMetaType<LocaleList>(\"LocaleList\");\n    qDBusRegisterMetaType<LocaleList>();\n\n    init();\n}\n\nvoid KeyboardDBusProxy::init()\n{\n    m_dBusLangSelectorInter = new DDBusInterface(LangSelectorService, LangSelectorPath, LangSelectorInterface, QDBusConnection::sessionBus(), this);\n    m_dBusKeyboardInter = new DDBusInterface(KeyboardService, KeyboardPath, KeyboardInterface, QDBusConnection::sessionBus(), this);\n    m_dBusKeybingdingInter = new DDBusInterface(KeybingdingService, KeybingdingPath, KeybingdingInterface, QDBusConnection::sessionBus(), this);\n    m_dBusWMInter = new DDBusInterface(WMService, WMPath, WMInterface, QDBusConnection::sessionBus(), this);\n\n    QDBusConnection::sessionBus().connect(WMService, WMPath, WMInterface, \"wmCompositingEnabledChanged\", this, SIGNAL(compositingEnabledChanged(bool)));\n}\n\nvoid KeyboardDBusProxy::langSelectorStartServiceProcess()\n{\n    if (m_dBusLangSelectorInter->isValid())\n    {\n        qWarning() << \"Service\" << LangSelectorService << \"is already started.\";\n        return;\n    }\n\n    QDBusInterface freedesktopInter = QDBusInterface(\"org.freedesktop.DBus\", \"/\", \"org.freedesktop.DBus\", QDBusConnection::systemBus(), this);\n    QDBusMessage msg = QDBusMessage::createMethodCall(\"org.freedesktop.DBus\", \"/\", \"org.freedesktop.DBus\", QStringLiteral(\"StartServiceByName\"));\n    msg << LangSelectorService << quint32(0);\n    QDBusPendingReply<quint32> async = freedesktopInter.connection().asyncCall(msg);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(async, this);\n\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, &KeyboardDBusProxy::onLangSelectorStartServiceProcessFinished);\n}\n\nvoid KeyboardDBusProxy::onLangSelectorStartServiceProcessFinished(QDBusPendingCallWatcher *w)\n{\n\n    QDBusPendingReply<quint32> reply = *w;\n    Q_EMIT langSelectorServiceStartFinished(reply.value());\n    w->deleteLater();\n}\n\n//Keyboard\nbool KeyboardDBusProxy::capslockToggle()\n{\n    return qvariant_cast<bool>(m_dBusKeyboardInter->property(\"CapslockToggle\"));\n}\n\nvoid KeyboardDBusProxy::setCapslockToggle(bool value)\n{\n    m_dBusKeyboardInter->setProperty(\"CapslockToggle\", QVariant::fromValue(value));\n}\n\nQString KeyboardDBusProxy::currentLayout()\n{\n    return qvariant_cast<QString>(m_dBusKeyboardInter->property(\"CurrentLayout\"));\n}\n\nvoid KeyboardDBusProxy::setCurrentLayout(const QString &value)\n{\n    m_dBusKeyboardInter->setProperty(\"CurrentLayout\", QVariant::fromValue(value));\n}\n\nint KeyboardDBusProxy::cursorBlink()\n{\n    return qvariant_cast<int>(m_dBusKeyboardInter->property(\"CursorBlink\"));\n}\n\nvoid KeyboardDBusProxy::setCursorBlink(int value)\n{\n   m_dBusKeyboardInter->setProperty(\"CursorBlink\", QVariant::fromValue(value));\n}\n\nint KeyboardDBusProxy::layoutScope()\n{\n    return qvariant_cast<int>(m_dBusKeyboardInter->property(\"LayoutScope\"));\n}\n\nvoid KeyboardDBusProxy::setLayoutScope(int value)\n{\n    m_dBusKeyboardInter->setProperty(\"LayoutScope\", QVariant::fromValue(value));\n}\n\n\nuint KeyboardDBusProxy::repeatDelay()\n{\n    return qvariant_cast<uint>(m_dBusKeyboardInter->property(\"RepeatDelay\"));\n}\n\nvoid KeyboardDBusProxy::setRepeatDelay(uint value)\n{\n    m_dBusKeyboardInter->setProperty(\"RepeatDelay\", QVariant::fromValue(value));\n}\n\n\nbool KeyboardDBusProxy::repeatEnabled()\n{\n    return qvariant_cast<bool>(m_dBusKeyboardInter->property(\"RepeatEnabled\"));\n}\n\nvoid KeyboardDBusProxy::setRepeatEnabled(bool value)\n{\n    m_dBusKeyboardInter->setProperty(\"RepeatEnabled\", QVariant::fromValue(value));\n}\n\n\nuint KeyboardDBusProxy::repeatInterval()\n{\n    return qvariant_cast<uint>(m_dBusKeyboardInter->property(\"RepeatInterval\"));\n}\n\nvoid KeyboardDBusProxy::setRepeatInterval(uint value)\n{\n    m_dBusKeyboardInter->setProperty(\"RepeatInterval\", QVariant::fromValue(value));\n}\n\n\nQStringList KeyboardDBusProxy::userLayoutList()\n{\n    return qvariant_cast<QStringList>(m_dBusKeyboardInter->property(\"UserLayoutList\"));\n}\n\n\nQStringList KeyboardDBusProxy::userOptionList()\n{\n    return qvariant_cast<QStringList>(m_dBusKeyboardInter->property(\"UserOptionList\"));\n}\n\n//LangSelector\nQString KeyboardDBusProxy::currentLocale()\n{\n    return qvariant_cast<QString>(m_dBusLangSelectorInter->property(\"CurrentLocale\"));\n}\n\nint KeyboardDBusProxy::localeState()\n{\n    return qvariant_cast<int>(m_dBusLangSelectorInter->property(\"LocaleState\"));\n}\n\nQStringList KeyboardDBusProxy::locales()\n{\n    return qvariant_cast<QStringList>(m_dBusLangSelectorInter->property(\"Locales\"));\n}\n\n//Keybinding\nint KeyboardDBusProxy::numLockState()\n{\n    return qvariant_cast<int>(m_dBusKeybingdingInter->property(\"NumLockState\"));\n}\n\nuint KeyboardDBusProxy::shortcutSwitchLayout()\n{\n    return qvariant_cast<uint>(m_dBusKeybingdingInter->property(\"ShortcutSwitchLayout\"));\n}\n\nvoid KeyboardDBusProxy::setShortcutSwitchLayout(uint value)\n{\n    m_dBusKeybingdingInter->setProperty(\"ShortcutSwitchLayout\", QVariant::fromValue(value));\n}\n\nbool KeyboardDBusProxy::langSelectorIsValid()\n{\n    return m_dBusLangSelectorInter->isValid();\n}\n\nQDBusPendingReply<> KeyboardDBusProxy::KeybindingReset()\n{\n    QList<QVariant> argumentList;\n    return m_dBusKeybingdingInter->asyncCallWithArgumentList(QStringLiteral(\"Reset\"), argumentList);\n}\n\nQDBusPendingReply<QString> KeyboardDBusProxy::ListAllShortcuts()\n{\n    QList<QVariant> argumentList;\n    return m_dBusKeybingdingInter->asyncCallWithArgumentList(QStringLiteral(\"ListAllShortcuts\"), argumentList);\n}\n\nQString KeyboardDBusProxy::LookupConflictingShortcut(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return QDBusPendingReply<QString>(m_dBusKeybingdingInter->asyncCallWithArgumentList(QStringLiteral(\"LookupConflictingShortcut\"), argumentList));\n}\n\nQDBusPendingReply<> KeyboardDBusProxy::ClearShortcutKeystrokes(const QString &in0, int in1)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n    return m_dBusKeybingdingInter->asyncCallWithArgumentList(QStringLiteral(\"ClearShortcutKeystrokes\"), argumentList);\n}\n\nQDBusPendingReply<> KeyboardDBusProxy::AddShortcutKeystroke(const QString &in0, int in1, const QString &in2)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1) << QVariant::fromValue(in2);\n    return m_dBusKeybingdingInter->asyncCallWithArgumentList(QStringLiteral(\"AddShortcutKeystroke\"), argumentList);\n}\n\nQDBusPendingReply<> KeyboardDBusProxy::AddCustomShortcut(const QString &in0, const QString &in1, const QString &in2)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1) << QVariant::fromValue(in2);\n    return m_dBusKeybingdingInter->asyncCallWithArgumentList(QStringLiteral(\"AddCustomShortcut\"), argumentList);\n}\n\nQDBusPendingReply<> KeyboardDBusProxy::ModifyCustomShortcut(const QString &in0, const QString &in1, const QString &in2, const QString &in3)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1) << QVariant::fromValue(in2) << QVariant::fromValue(in3);\n    return m_dBusKeybingdingInter->asyncCallWithArgumentList(QStringLiteral(\"ModifyCustomShortcut\"), argumentList);\n}\n\nQDBusPendingReply<> KeyboardDBusProxy::DeleteCustomShortcut(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusKeybingdingInter->asyncCallWithArgumentList(QStringLiteral(\"DeleteCustomShortcut\"), argumentList);\n}\n\nQDBusPendingReply<> KeyboardDBusProxy::GrabScreen()\n{\n    QList<QVariant> argumentList;\n    return m_dBusKeybingdingInter->asyncCallWithArgumentList(QStringLiteral(\"GrabScreen\"), argumentList);\n}\n\nvoid KeyboardDBusProxy::SetNumLockState(int in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    m_dBusKeybingdingInter->asyncCallWithArgumentList(QStringLiteral(\"SetNumLockState\"), argumentList);\n}\n\nQDBusPendingReply<QString> KeyboardDBusProxy::GetShortcut(const QString &in0, int in1)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n    return m_dBusKeybingdingInter->asyncCallWithArgumentList(QStringLiteral(\"GetShortcut\"), argumentList);\n}\n\nQDBusPendingReply<QString> KeyboardDBusProxy::SearchShortcuts(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusKeybingdingInter->asyncCallWithArgumentList(QStringLiteral(\"SearchShortcuts\"), argumentList);\n}\n\nQDBusPendingReply<QString> KeyboardDBusProxy::Query(const QString &in0, int in1)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n    return m_dBusKeybingdingInter->asyncCallWithArgumentList(QStringLiteral(\"Query\"), argumentList);\n}\n\nvoid KeyboardDBusProxy::SelectKeystroke()\n{\n    QList<QVariant> argumentList;\n    m_dBusKeybingdingInter->asyncCallWithArgumentList(QStringLiteral(\"SelectKeystroke\"), argumentList);\n}\n\n//keyBoard\nQDBusPendingReply<KeyboardLayoutList> KeyboardDBusProxy::LayoutList()\n{\n    QList<QVariant> argumentList;\n    return m_dBusKeyboardInter->asyncCallWithArgumentList(QStringLiteral(\"LayoutList\"), argumentList);\n}\n\nQDBusPendingReply<KeyboardLayoutList> KeyboardDBusProxy::AllLayoutList()\n{\n    QList<QVariant> argumentList;\n    return m_dBusKeyboardInter->asyncCallWithArgumentList(QStringLiteral(\"AllLayoutList\"), argumentList);\n}\n\nvoid KeyboardDBusProxy::AddUserLayout(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    m_dBusKeyboardInter->asyncCallWithArgumentList(QStringLiteral(\"AddUserLayout\"), argumentList);\n}\n\nvoid KeyboardDBusProxy::DeleteUserLayout(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    m_dBusKeyboardInter->asyncCallWithArgumentList(QStringLiteral(\"DeleteUserLayout\"), argumentList);\n}\n\nQDBusPendingReply<QString> KeyboardDBusProxy::GetLayoutDesc(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusKeyboardInter->asyncCallWithArgumentList(QStringLiteral(\"GetLayoutDesc\"), argumentList);\n}\n\nQDBusPendingReply<> KeyboardDBusProxy::AddLocale(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusLangSelectorInter->asyncCallWithArgumentList(QStringLiteral(\"AddLocale\"), argumentList);\n}\n\nQDBusPendingReply<> KeyboardDBusProxy::DeleteLocale(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusLangSelectorInter->asyncCallWithArgumentList(QStringLiteral(\"DeleteLocale\"), argumentList);\n}\n\nQDBusPendingReply<> KeyboardDBusProxy::SetLocale(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    return m_dBusLangSelectorInter->asyncCallWithArgumentList(QStringLiteral(\"SetLocale\"), argumentList);\n}\n\nQDBusPendingReply<LocaleList> KeyboardDBusProxy::GetLocaleList()\n{\n    QList<QVariant> argumentList;\n    return m_dBusLangSelectorInter->asyncCallWithArgumentList(QStringLiteral(\"GetLocaleList\"), argumentList);\n}\n"
  },
  {
    "path": "src/plugin-keyboard/operation/keyboarddbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef KEYBOARDDBUSPROXY_H\n#define KEYBOARDDBUSPROXY_H\n\n#include <DDBusInterface>\n\n#include <QObject>\n#include <QDBusPendingReply>\n\nclass QDBusInterface;\nclass QDBusMessage;\n\nusing Dtk::Core::DDBusInterface;\n\ntypedef QMap<QString, QString> KeyboardLayoutList;\n\nclass LocaleInfo\n{\npublic:\n    LocaleInfo(){}\n\n    friend QDBusArgument &operator<<(QDBusArgument &arg, const LocaleInfo &info)\n    {\n        arg.beginStructure();\n        arg << info.id << info.name;\n        arg.endStructure();\n\n        return arg;\n    }\n\n    friend const QDBusArgument &operator>>(const QDBusArgument &arg, LocaleInfo &info)\n    {\n        arg.beginStructure();\n        arg >> info.id >> info.name;\n        arg.endStructure();\n\n        return arg;\n    }\n\n    friend QDataStream &operator<<(QDataStream &ds, const LocaleInfo &info)\n    {\n        return ds << info.id << info.name;\n    }\n\n    friend const QDataStream &operator>>(QDataStream &ds, LocaleInfo &info)\n    {\n        return ds >> info.id >> info.name;\n    }\n\n    bool operator ==(const LocaleInfo &info)\n    {\n        return id==info.id && name==info.name;\n    }\n\npublic:\n    QString id{\"\"};\n    QString name{\"\"};\n};\n\ntypedef QList<LocaleInfo> LocaleList;\nnamespace dccV25 {\nclass DCCDBusInterface;\n}\n\nclass KeyboardDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit KeyboardDBusProxy(QObject *parent = nullptr);\n\n    //Keyboard\n    Q_PROPERTY(bool CapslockToggle READ capslockToggle WRITE setCapslockToggle NOTIFY CapslockToggleChanged)\n    bool capslockToggle();\n    void setCapslockToggle(bool value);\n\n    Q_PROPERTY(QString CurrentLayout READ currentLayout WRITE setCurrentLayout NOTIFY CurrentLayoutChanged)\n    QString currentLayout();\n    void setCurrentLayout(const QString &value);\n\n    Q_PROPERTY(int CursorBlink READ cursorBlink WRITE setCursorBlink NOTIFY CursorBlinkChanged)\n    int cursorBlink();\n    void setCursorBlink(int value);\n\n    Q_PROPERTY(int LayoutScope READ layoutScope WRITE setLayoutScope NOTIFY LayoutScopeChanged)\n    int layoutScope();\n    void setLayoutScope(int value);\n\n    Q_PROPERTY(uint RepeatDelay READ repeatDelay WRITE setRepeatDelay NOTIFY RepeatDelayChanged)\n    uint repeatDelay();\n    void setRepeatDelay(uint value);\n\n    Q_PROPERTY(bool RepeatEnabled READ repeatEnabled WRITE setRepeatEnabled NOTIFY RepeatEnabledChanged)\n    bool repeatEnabled();\n    void setRepeatEnabled(bool value);\n\n    Q_PROPERTY(uint RepeatInterval READ repeatInterval WRITE setRepeatInterval NOTIFY RepeatIntervalChanged)\n    uint repeatInterval();\n    void setRepeatInterval(uint value);\n\n    Q_PROPERTY(QStringList UserLayoutList READ userLayoutList NOTIFY UserLayoutListChanged)\n    QStringList userLayoutList();\n\n    Q_PROPERTY(QStringList UserOptionList READ userOptionList NOTIFY UserOptionListChanged)\n    QStringList userOptionList();\n\n    //LangSelector\n    Q_PROPERTY(QString CurrentLocale READ currentLocale NOTIFY CurrentLocaleChanged)\n    QString currentLocale();\n\n    Q_PROPERTY(int LocaleState READ localeState NOTIFY LocaleStateChanged)\n    int localeState();\n\n    Q_PROPERTY(QStringList Locales READ locales NOTIFY LocalesChanged)\n    QStringList locales();\n\n    //Keybinding\n    Q_PROPERTY(int NumLockState READ numLockState NOTIFY NumLockStateChanged)\n    int numLockState();\n\n    Q_PROPERTY(uint ShortcutSwitchLayout READ shortcutSwitchLayout WRITE setShortcutSwitchLayout NOTIFY ShortcutSwitchLayoutChanged)\n    uint shortcutSwitchLayout();\n    void setShortcutSwitchLayout(uint value);\n\n    bool langSelectorIsValid();\n    void langSelectorStartServiceProcess();\n\nsignals:\n    // Keyboard property\n    void CapslockToggleChanged(bool  value) const;\n    void CurrentLayoutChanged(const QString & value) const;\n    void CursorBlinkChanged(int  value) const;\n    void LayoutScopeChanged(int  value) const;\n    void RepeatDelayChanged(uint  value) const;\n    void RepeatEnabledChanged(bool  value) const;\n    void RepeatIntervalChanged(uint  value) const;\n    void UserLayoutListChanged(const QStringList & value) const;\n    void UserOptionListChanged(const QStringList & value) const;\n\n    // LangSelector property\n    void CurrentLocaleChanged(const QString & value) const;\n    void LocaleStateChanged(int  value) const;\n    void LocalesChanged(const QStringList & value) const;\n\n    // Keybinding property\n    void NumLockStateChanged(int  value) const;\n    void ShortcutSwitchLayoutChanged(uint  value) const;\n    // Keybinding\n    void Added(const QString &in0, int in1);\n    void Changed(const QString &in0, int in1);\n    void Deleted(const QString &in0, int in1);\n    void KeyEvent(bool in0, const QString &in1);\n\n    //wm\n    void compositingEnabledChanged(bool enabled);\n\n    void langSelectorServiceStartFinished(const quint32 ret) const;\n\npublic slots:\n    // Keybinding\n    QDBusPendingReply<>  KeybindingReset();\n    QDBusPendingReply<QString> ListAllShortcuts();\n    QString LookupConflictingShortcut(const QString &in0);\n    QDBusPendingReply<> ClearShortcutKeystrokes(const QString &in0, int in1);\n    QDBusPendingReply<> AddShortcutKeystroke(const QString &in0, int in1, const QString &in2);\n    QDBusPendingReply<> AddCustomShortcut(const QString &in0, const QString &in1, const QString &in2);\n    QDBusPendingReply<> ModifyCustomShortcut(const QString &in0, const QString &in1, const QString &in2, const QString &in3);\n    QDBusPendingReply<> DeleteCustomShortcut(const QString &in0);\n    QDBusPendingReply<> GrabScreen();\n    void SetNumLockState(int in0);\n    QDBusPendingReply<QString> GetShortcut(const QString &in0, int in1);\n    QDBusPendingReply<QString> SearchShortcuts(const QString &in0);\n    QDBusPendingReply<QString> Query(const QString &in0, int in1);\n    void SelectKeystroke();\n\n    //KeyBoard\n    QDBusPendingReply<KeyboardLayoutList> LayoutList();\n    QDBusPendingReply<KeyboardLayoutList> AllLayoutList();\n    void AddUserLayout(const QString &in0);\n    void DeleteUserLayout(const QString &in0);\n    QDBusPendingReply<QString> GetLayoutDesc(const QString &in0);\n\n    QDBusPendingReply<> AddLocale(const QString &in0);\n    QDBusPendingReply<> DeleteLocale(const QString &in0);\n    QDBusPendingReply<> SetLocale(const QString &in0);\n    QDBusPendingReply<LocaleList> GetLocaleList();\n\nprivate slots:\n    void onLangSelectorStartServiceProcessFinished(QDBusPendingCallWatcher *w);\nprivate:\n    void init();\n\nprivate:\n    DDBusInterface *m_dBusLangSelectorInter;\n    DDBusInterface *m_dBusKeyboardInter;\n    DDBusInterface *m_dBusKeybingdingInter;\n    DDBusInterface *m_dBusWMInter;\n};\n\nQ_DECLARE_METATYPE(KeyboardLayoutList)\nQ_DECLARE_METATYPE(LocaleInfo)\nQ_DECLARE_METATYPE(LocaleList)\n\n#endif // KeyboardDBusProxy_H\n"
  },
  {
    "path": "src/plugin-keyboard/operation/keyboardmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n\n#include \"keyboardmodel.h\"\n#include <QDebug>\n\nusing namespace dccV25;\nKeyboardModel::KeyboardModel(QObject *parent)\n    : QObject(parent)\n    , m_keyboardEnabled(true)\n    , m_capsLock(true)\n    , m_numLock(true)\n    , m_repeatInterval(1)\n    , m_repeatDelay(1)\n{\n}\n\nvoid KeyboardModel::setLangChangedState(const int state)\n{\n    if (m_status != state) {\n        m_status = state;\n        Q_EMIT onSetCurLangFinish(state);\n    }\n}\n\nvoid KeyboardModel::setLayoutLists(QMap<QString, QString> lists)\n{\n    m_layouts = lists;\n}\n\nvoid KeyboardModel::setAllLayoutLists(QMap<QString, QString> lists)\n{\n    m_allLayouts = lists;\n}\n\nQString KeyboardModel::langByKey(const QString &key) const\n{\n    auto res = std::find_if(m_langList.cbegin(), m_langList.end(), [key] (const MetaData &data)->bool{\n        return data.key() == key;\n    });\n\n    if (res != m_langList.cend()) {\n        return res->text();\n    }\n\n    return QString();\n}\n\nQString KeyboardModel::langFromText(const QString &text) const\n{\n    auto res = std::find_if(m_langList.cbegin(), m_langList.end(), [text] (const MetaData &data)->bool{\n        return data.text() == text;\n    });\n\n    if (res != m_langList.cend()) {\n        return res->key();\n    }\n\n    return QString();\n}\n\nvoid KeyboardModel::setLayout(const QString &key)\n{\n    if (key.isEmpty())\n        return;\n\n    if (m_layout == key)\n        return ;\n\n    m_layout = key;\n\n    Q_EMIT curLayoutChanged(m_layout);\n}\n\nQString KeyboardModel::curLayout() const\n{\n    return m_layout;\n}\n\nvoid KeyboardModel::setLang(const QString &value)\n{\n    qDebug() << \"old key is \" << m_currentLangKey << \" new is \" << value;\n    if (m_currentLangKey != value && !value.isEmpty()) {\n        m_currentLangKey = value;\n        const QString &langName = langByKey(value);\n        qDebug() << \"value is \" << value << \" langName is \" << langName;\n        if (!langName.isEmpty())\n            Q_EMIT curLangChanged(langName);\n    }\n}\n\nQStringList KeyboardModel::convertLang(const QStringList &langList)\n{\n    QStringList realLangList;\n    for (int i = 0; i < langList.size(); ++i) {\n        QString lang = langByKey(langList[i]);\n        if (!lang.isEmpty()) {\n            realLangList << lang;\n        }\n    }\n    return realLangList;\n}\n\nvoid KeyboardModel::setLocaleLang(const QStringList &localLangList)\n{\n    QStringList langList = convertLang(localLangList);\n    if (m_localLangList != langList && !langList.isEmpty()) {\n        m_localLangList = langList;\n\n        Q_EMIT curLocalLangChanged(m_localLangList);\n    }\n}\n\nvoid KeyboardModel::setLocaleList(const QList<MetaData> &langList)\n{\n    if (langList.isEmpty())\n        return;\n\n    m_langList = langList;\n    Q_EMIT langChanged(langList);\n\n    const QString &currentLang = langByKey(m_currentLangKey);\n    if (!currentLang.isEmpty())\n        Q_EMIT curLangChanged(currentLang);\n}\n\nvoid KeyboardModel::setCapsLock(bool value)\n{\n    if (m_capsLock != value) {\n        m_capsLock = value;\n        Q_EMIT capsLockChanged(value);\n    }\n}\n\nuint KeyboardModel::repeatDelay() const\n{\n    return m_repeatDelay;\n}\n\nvoid KeyboardModel::setRepeatDelay(const uint &repeatDelay)\n{\n    if (m_repeatDelay != repeatDelay) {\n        m_repeatDelay = repeatDelay;\n        Q_EMIT repeatDelayChanged(repeatDelay);\n    }\n}\n\nuint KeyboardModel::repeatInterval() const\n{\n    return m_repeatInterval;\n}\n\nvoid KeyboardModel::setRepeatInterval(const uint &repeatInterval)\n{\n    if (m_repeatInterval != repeatInterval) {\n        m_repeatInterval = repeatInterval;\n        Q_EMIT repeatIntervalChanged(repeatInterval);\n    }\n}\n\nbool KeyboardModel::keyboardEnabled() const\n{\n    return m_keyboardEnabled;\n}\n\nvoid KeyboardModel::setKeyboardEnabled(bool keyboardEnabled)\n{\n    if (m_keyboardEnabled != keyboardEnabled) {\n        m_keyboardEnabled = keyboardEnabled;\n        Q_EMIT keyboardEnabledChanged(m_keyboardEnabled);\n    }\n}\n\nvoid KeyboardModel::setAllShortcut(const QMap<QStringList, int> &map)\n{\n    m_shortcutMap = map;\n}\n\nbool KeyboardModel::numLock() const\n{\n    return m_numLock;\n}\n\nvoid KeyboardModel::setNumLock(bool numLock)\n{\n    if (m_numLock != numLock) {\n        m_numLock = numLock;\n        Q_EMIT numLockChanged(m_numLock);\n    }\n}\n\nvoid KeyboardModel::cleanUserLayout()\n{\n    m_userLayout.clear();\n}\n\nQString KeyboardModel::curLang() const\n{\n    qDebug() << \"curLang key is \" << m_currentLangKey;\n    return langByKey(m_currentLangKey);\n}\n\nQMap<QString, QString> KeyboardModel::userLayout() const\n{\n    return m_userLayout;\n}\n\nQMap<QString, QString> KeyboardModel::kbLayout() const\n{\n    return m_layouts;\n}\n\nQStringList KeyboardModel::localLang() const\n{\n    return m_localLangList;\n}\n\nvoid KeyboardModel::addUserLayout(const QString &id, const QString &value)\n{\n    if (!m_userLayout.contains(id)) {\n        m_userLayout.insert(id, value);\n        Q_EMIT userLayoutChanged(id, value);\n    }\n}\n\nQList<MetaData> KeyboardModel::langLists() const\n{\n    return m_langList;\n}\n\nbool KeyboardModel::capsLock() const\n{\n    return m_capsLock;\n}\n\nQMap<QStringList, int> KeyboardModel::allShortcut() const\n{\n    return m_shortcutMap;\n}\n"
  },
  {
    "path": "src/plugin-keyboard/operation/keyboardmodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n\n#ifndef KEYBOARDMODEL_H\n#define KEYBOARDMODEL_H\n\n#include \"metadata.h\"\n\n#include <QObject>\n#include <QStringList>\n#include <QMap>\n\nnamespace dccV25 {\n\nclass KeyboardModel : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit KeyboardModel(QObject *parent = nullptr);\n    enum KBLayoutScope {\n        system = 0,\n        application = 1\n    };\n#ifndef DCC_DISABLE_KBLAYOUT\n    void setLayoutLists(QMap<QString, QString> lists);\n    void setAllLayoutLists(QMap<QString, QString> lists);\n#endif\n    QString langByKey(const QString &key) const;\n    QString langFromText(const QString &text) const;\n\n    QString curLayout() const;\n    QString curLang() const;\n    QMap<QString, QString> userLayout() const;\n    QMap<QString, QString> kbLayout() const;\n    QMap<QString, QString> allLayout() const { return m_allLayouts; }\n    QStringList localLang() const;\n    QList<MetaData> langLists() const;\n    bool capsLock() const;\n    QMap<QStringList, int> allShortcut() const;\n\n    uint repeatInterval() const;\n    void setRepeatInterval(const uint &repeatInterval);\n\n    bool keyboardEnabled() const;\n\n    uint repeatDelay() const;\n    void setRepeatDelay(const uint &repeatDelay);\n\n    bool numLock() const;\n    void setNumLock(bool numLock);\n\n    void cleanUserLayout();\n\n    inline int getLangChangedState() const { return m_status; }\n    void setLangChangedState(const int state);\n    inline QStringList &getUserLayoutList() { return m_userLaylist; }\n\nQ_SIGNALS:\n#ifndef DCC_DISABLE_KBLAYOUT\n    void curLayoutChanged(const QString &layout);\n#endif\n    void keyboardEnabledChanged(bool value);\n    void curLangChanged(const QString &lang);\n    void capsLockChanged(bool value);\n    void numLockChanged(bool value);\n    void repeatDelayChanged(const uint value);\n    void repeatIntervalChanged(const uint value);\n    void userLayoutChanged(const QString &id, const QString &value);\n    void langChanged(const QList<MetaData> &data);\n\n    void curLocalLangChanged(const QStringList &localLangList);\n    void onSetCurLangFinish(const int value);\n\npublic Q_SLOTS:\n#ifndef DCC_DISABLE_KBLAYOUT\n    void setLayout(const QString &key);\n#endif\n    void setLang(const QString &value);\n    void setLocaleLang(const QStringList &localLangList);\n    void addUserLayout(const QString &id, const QString &value);\n    void setLocaleList(const QList<MetaData> &langList);\n    void setCapsLock(bool value);\n    void setAllShortcut(const QMap<QStringList, int> &map);\n    void setKeyboardEnabled(bool keyboardEnabled);\nprivate:\n    QStringList convertLang(const QStringList &langList);\nprivate:\n    bool m_keyboardEnabled;\n    bool m_capsLock;\n    bool m_numLock;\n    uint m_repeatInterval;\n    uint m_repeatDelay;\n    QString m_layout;\n    QString m_currentLangKey;\n    QStringList m_localLangList;\n    QStringList m_userLaylist;\n    QMap<QString, QString> m_userLayout;\n    QMap<QString, QString> m_layouts;\n    QMap<QString, QString> m_allLayouts;\n    QList<MetaData> m_langList;\n    QMap<QStringList, int> m_shortcutMap;\n    int m_status{0};\n};\n}\n#endif // KEYBOARDMODEL_H\n"
  },
  {
    "path": "src/plugin-keyboard/operation/keyboardwork.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n\n#include \"keyboardwork.h\"\n\n#include \"dcclocale.h\"\n\n#include <QTimer>\n#include <QDebug>\n#include <QLocale>\n#include <QCollator>\n#include <QCoreApplication>\n#include <QDBusArgument>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QJsonArray>\n#include <QDBusInterface>\n#include <QDBusPendingCallWatcher>\n#include <QTranslator>\n#include <QDateTime>\n\nusing namespace DTK_NAMESPACE::Core;\nusing namespace dccV25;\nbool caseInsensitiveLessThan(const MetaData &s1, const MetaData &s2);\n\nconst QMap<QString, QString> &ModelKeycode = {{\"minus\", \"-\"}, {\"equal\", \"=\"}, {\"backslash\", \"\\\\\"}, {\"question\", \"?/\"}, {\"exclam\", \"1\"}, {\"numbersign\", \"3\"},\n    {\"semicolon\", \";\"}, {\"apostrophe\", \"'\"}, {\"less\", \",<\"}, {\"period\", \">.\"}, {\"slash\", \"?/\"}, {\"parenleft\", \"9\"}, {\"bracketleft\", \"[\"},\n    {\"parenright\", \"0\"}, {\"bracketright\", \"]\"}, {\"quotedbl\", \"'\"}, {\"space\", \" \"}, {\"dollar\", \"$\"}, {\"plus\", \"+\"}, {\"asterisk\", \"*\"},\n    {\"underscore\", \"_\"}, {\"bar\", \"|\"}, {\"grave\", \"`\"}, {\"at\", \"2\"}, {\"percent\", \"5\"}, {\"greater\", \">.\"}, {\"asciicircum\", \"6\"},\n    {\"braceleft\", \"[\"}, {\"colon\", \":\"}, {\"comma\", \",<\"}, {\"asciitilde\", \"~\"}, {\"ampersand\", \"7\"}, {\"braceright\", \"]\"}, {\"Escape\", \"Esc\"}\n};\n\n\nKeyboardWorker::KeyboardWorker(KeyboardModel *model, QObject *parent)\n    : QObject(parent)\n    , m_model(model)\n    , m_keyboardDBusProxy(new KeyboardDBusProxy(this))\n    , m_translatorLanguage(nullptr)\n    , m_inputDevCfg(DConfig::create(\"org.deepin.dde.daemon\", \"org.deepin.dde.daemon.inputdevices\", QString(), this))\n{\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::compositingEnabledChanged, this, &KeyboardWorker::onGetWindowWM);\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::Added, this, &KeyboardWorker::onAdded);\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::Deleted, this, &KeyboardWorker::removed);\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::UserLayoutListChanged, this, &KeyboardWorker::onUserLayout);\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::CurrentLayoutChanged, this, &KeyboardWorker::onCurrentLayout);\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::CapslockToggleChanged, m_model, &KeyboardModel::setCapsLock);\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::NumLockStateChanged, m_model, &KeyboardModel::setNumLock);\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::langSelectorServiceStartFinished, this, [=] {\n        QTimer::singleShot(100, this, &KeyboardWorker::onLangSelectorServiceFinished);\n    });\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::RepeatDelayChanged, this, &KeyboardWorker::setModelRepeatDelay);\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::RepeatIntervalChanged, this, &KeyboardWorker::setModelRepeatInterval);\n\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::Changed, this, &KeyboardWorker::onShortcutChanged);\n\n    m_model->setLangChangedState(m_keyboardDBusProxy->localeState());\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::LocaleStateChanged, m_model, &KeyboardModel::setLangChangedState);\n}\n\nvoid KeyboardWorker::resetAll() {\n    // Prevent duplicate calls while resetting\n    if (m_isResetting) {\n        qDebug() << \"KeyboardWorker::resetAll: Already resetting, ignoring duplicate call\";\n        return;\n    }\n\n    m_isResetting = true;\n    QDBusPendingCallWatcher* watcher = new QDBusPendingCallWatcher(m_keyboardDBusProxy->KeybindingReset(), this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] (QDBusPendingCallWatcher *reply) {\n        watcher->deleteLater();\n\n        if (reply->isError()) {\n            qDebug() << Q_FUNC_INFO << reply->error();\n        }\n\n        // Reset completed, restore flag and emit signal\n        m_isResetting = false;\n        Q_EMIT onResetFinished();\n    });\n}\n\nvoid KeyboardWorker::onGetWindowWM(bool)\n{\n    windowSwitch();\n}\n\nvoid KeyboardWorker::setShortcutModel(ShortcutModel *model)\n{\n    m_shortcutModel = model;\n\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::KeyEvent, model, &ShortcutModel::keyEvent);\n}\n\nvoid KeyboardWorker::refreshShortcut()\n{\n    QDBusPendingCallWatcher *result = new QDBusPendingCallWatcher(m_keyboardDBusProxy->ListAllShortcuts(), this);\n    connect(result, SIGNAL(finished(QDBusPendingCallWatcher*)), this,\n            SLOT(onRequestShortcut(QDBusPendingCallWatcher*)));\n}\n\nvoid KeyboardWorker::refreshLang()\n{\n    m_keyboardDBusProxy->blockSignals(false);\n    if (!m_keyboardDBusProxy->langSelectorIsValid())\n        m_keyboardDBusProxy->langSelectorStartServiceProcess();\n    else\n        onLangSelectorServiceFinished();\n}\n\nvoid KeyboardWorker::windowSwitch()\n{\n    QDBusInterface licenseInfo(\"com.deepin.wm\",\n                               \"/com/deepin/wm\",\n                               \"com.deepin.wm\",\n                               QDBusConnection::sessionBus());\n    if (!licenseInfo.isValid()) {\n        qDebug() << \"com.deepin.license error ,\" << licenseInfo.lastError().name();\n        return;\n    }\n\n    if (m_shortcutModel)\n        m_shortcutModel->onWindowSwitchChanged(licenseInfo.property(\"compositingEnabled\").toBool());\n}\n\nvoid KeyboardWorker::active()\n{\n    m_keyboardDBusProxy->blockSignals(false);\n\n    setModelRepeatDelay(m_keyboardDBusProxy->repeatDelay());\n    setModelRepeatInterval(m_keyboardDBusProxy->repeatInterval());\n\n    m_metaDatas.clear();\n    m_letters.clear();\n\n    Q_EMIT onDatasChanged(m_metaDatas);\n    Q_EMIT onLettersChanged(m_letters);\n\n    m_model->setCapsLock(m_keyboardDBusProxy->capslockToggle());\n    m_model->setNumLock(m_keyboardDBusProxy->numLockState());\n\n    onRefreshKBLayout();\n    refreshLang();\n    windowSwitch();\n    refreshShortcut();\n    if (m_inputDevCfg->isValid()) {\n        QMetaObject::invokeMethod(m_model, \"setKeyboardEnabled\", Qt::DirectConnection, Q_ARG(bool, m_inputDevCfg->value(\"keyboardEnabled\", true).toBool()));\n        connect(m_inputDevCfg, &DConfig::valueChanged, this, [=](QString key) {\n            if (key == \"keyboardEnabled\") {\n                QMetaObject::invokeMethod(m_model, \"setKeyboardEnabled\", Qt::DirectConnection, Q_ARG(bool, m_inputDevCfg->value(key).toBool()));\n            }\n        });\n    } else {\n        qWarning() << QString(\"DConfig is invalide, name:[%1], subpath[%2].\").arg(m_inputDevCfg->name(), m_inputDevCfg->subpath());\n    }\n}\n\nvoid KeyboardWorker::deactive()\n{\n    m_keyboardDBusProxy->blockSignals(true);\n}\n\nbool KeyboardWorker::keyOccupy(const QStringList &list)\n{\n    int bit = 0;\n    for (QString t : list) {\n        if (t == \"Control\")\n            bit +=  Modifier::control;\n        else if (t == \"Alt\")\n            bit += Modifier::alt;\n        else if (t == \"Super\")\n            bit += Modifier::super;\n        else if (t == \"Shift\")\n            bit += Modifier::shift;\n        else\n            continue;\n    }\n\n    QMap<QStringList,int> keylist = m_model->allShortcut();\n    QMap<QStringList, int>::iterator i;\n    for (i = keylist.begin(); i != keylist.end(); ++i) {\n        if (bit == i.value() && i.key().last() == list.last()) {\n            return false;\n        }\n    }\n\n    return true;\n}\n\n#ifndef DCC_DISABLE_KBLAYOUT\nvoid KeyboardWorker::onRefreshKBLayout()\n{\n    QDBusPendingCallWatcher *allLayoutResult = new QDBusPendingCallWatcher(m_keyboardDBusProxy->AllLayoutList(), this);\n    connect(allLayoutResult, &QDBusPendingCallWatcher::finished, this, &KeyboardWorker::onAllLayoutListsFinished);\n    QDBusPendingCallWatcher *layoutResult = new QDBusPendingCallWatcher(m_keyboardDBusProxy->LayoutList(), this);\n    connect(layoutResult, &QDBusPendingCallWatcher::finished, this, &KeyboardWorker::onLayoutListsFinished);\n\n    onCurrentLayout(m_keyboardDBusProxy->currentLayout());\n    onUserLayout(m_keyboardDBusProxy->userLayoutList());\n}\n#endif\n\nvoid KeyboardWorker::modifyShortcutEditAux(ShortcutInfo *info, bool isKPDelete)\n{\n    if (!info)\n        return;\n\n    if (info->replace) {\n        onDisableShortcut(info->replace);\n    }\n\n    QString shortcut = info->accels;\n    if (!isKPDelete) {\n        shortcut = shortcut.replace(\"KP_Delete\", \"Delete\");\n    }\n\n    const QString &result = m_keyboardDBusProxy->LookupConflictingShortcut(shortcut);\n\n    if (!result.isEmpty()) {\n        const QJsonObject obj = QJsonDocument::fromJson(result.toLatin1()).object();\n        \n        QString targetKey = info->id + \"_\" + QString::number(info->type);\n        m_replacingShortcuts.insert(targetKey);\n        \n        QDBusPendingCall call = m_keyboardDBusProxy->ClearShortcutKeystrokes(obj[\"Id\"].toString(), obj[\"Type\"].toInt());\n        QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n\n        watcher->setProperty(\"id\", info->id);\n        watcher->setProperty(\"type\", info->type);\n        watcher->setProperty(\"shortcut\", shortcut);\n        watcher->setProperty(\"clean\", !isKPDelete);\n\n        connect(watcher, &QDBusPendingCallWatcher::finished, this, &KeyboardWorker::onConflictShortcutCleanFinished);\n    } else {\n        if (isKPDelete) {\n            m_keyboardDBusProxy->AddShortcutKeystroke(info->id, static_cast<int>(info->type), shortcut);\n        } else {\n            cleanShortcutSlef(info->id, static_cast<int>(info->type), shortcut);\n        }\n    }\n}\n\nvoid KeyboardWorker::modifyShortcutEdit(ShortcutInfo *info) {\n    modifyShortcutEditAux(info);\n}\n\nvoid KeyboardWorker::addCustomShortcut(const QString &name, const QString &command, const QString &accels)\n{\n    m_keyboardDBusProxy->AddCustomShortcut(name, command, accels);\n}\n\nvoid KeyboardWorker::modifyCustomShortcut(ShortcutInfo *info)\n{\n    if (info->replace) {\n        onDisableShortcut(info->replace);\n    }\n\n    // reset replace shortcut\n    info->replace = nullptr;\n\n    const QString &result = m_keyboardDBusProxy->LookupConflictingShortcut(info->accels);\n\n    if (!result.isEmpty()) {\n        const QJsonObject obj = QJsonDocument::fromJson(result.toUtf8()).object();\n        \n        QString targetKey = info->id + \"_\" + QString::number(info->type);\n        m_replacingShortcuts.insert(targetKey);\n        \n        QDBusPendingCall call = m_keyboardDBusProxy->ClearShortcutKeystrokes(obj[\"Id\"].toString(), obj[\"Type\"].toInt());\n        QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n\n        watcher->setProperty(\"id\", info->id);\n        watcher->setProperty(\"name\", info->name);\n        watcher->setProperty(\"command\", info->command);\n        watcher->setProperty(\"shortcut\", info->accels);\n\n        connect(watcher, &QDBusPendingCallWatcher::finished, this, &KeyboardWorker::onCustomConflictCleanFinished);\n    } else {\n        QString targetKey = info->id + \"_\" + QString::number(info->type);\n        m_replacingShortcuts.insert(targetKey);\n        m_keyboardDBusProxy->ModifyCustomShortcut(info->id, info->name, info->command, info->accels);\n    }\n}\n\nvoid KeyboardWorker::grabScreen()\n{\n    m_keyboardDBusProxy->GrabScreen();\n}\n\nbool KeyboardWorker::checkAvaliable(const QString &key)\n{\n   const QString &value = m_keyboardDBusProxy->LookupConflictingShortcut(key);\n\n   return value.isEmpty();\n}\n\nvoid KeyboardWorker::delShortcut(ShortcutInfo* info)\n{\n    m_keyboardDBusProxy->DeleteCustomShortcut(info->id);\n    if (m_shortcutModel)\n        m_shortcutModel->delInfo(info);\n}\n\nvoid KeyboardWorker::setRepeatDelay(uint value)\n{\n    m_keyboardDBusProxy->setRepeatDelay(converToDBusDelay(value));\n}\n\nvoid KeyboardWorker::setRepeatInterval(uint value)\n{\n    m_keyboardDBusProxy->setRepeatInterval(static_cast<uint>(converToDBusInterval(value)));\n}\n\nvoid KeyboardWorker::setModelRepeatDelay(uint value)\n{\n    m_model->setRepeatDelay(converToModelDelay(value));\n}\n\nvoid KeyboardWorker::setModelRepeatInterval(uint value)\n{\n    m_model->setRepeatInterval(converToModelInterval(value));\n}\n\nvoid KeyboardWorker::setNumLock(bool value)\n{\n    m_keyboardDBusProxy->SetNumLockState(value);\n}\n\nvoid KeyboardWorker::setCapsLock(bool value)\n{\n    m_keyboardDBusProxy->setCapslockToggle(value);\n}\n\nvoid KeyboardWorker::setKeyboardEnabled(bool value)\n{\n    if (m_inputDevCfg->isValid()) {\n        m_inputDevCfg->setValue(\"keyboardEnabled\", value);\n    }\n}\n\nvoid KeyboardWorker::addUserLayout(const QString &value)\n{\n    // Use allLayout as the data source\n    const auto &layouts = m_model->allLayout();\n    // Find the layout key in the layout source\n    QString layoutKey = layouts.key(value);\n\n    // If not found, the value might already be a key, try to use it directly\n    if (layoutKey.isEmpty() && layouts.contains(value)) {\n        layoutKey = value;\n    }\n\n    // If we still don't have a valid key, log error and return\n    if (layoutKey.isEmpty()) {\n        qWarning() << \"KeyboardWorker::addUserLayout: Could not find layout key for value:\" << value;\n        qWarning() << \"Available layout keys:\" << layouts.keys();\n        return;\n    }\n\n    qDebug() << \"KeyboardWorker::addUserLayout: Using layout key:\" << layoutKey << \"for value:\" << value;\n    m_keyboardDBusProxy->AddUserLayout(layoutKey);\n}\n\nvoid KeyboardWorker::delUserLayout(const QString &value)\n{\n    m_keyboardDBusProxy->DeleteUserLayout(m_model->userLayout().key(value));\n}\n\nbool caseInsensitiveLessThan(const MetaData &s1, const MetaData &s2)\n{\n    QCollator qc;\n    int i = qc.compare(s1.pinyin(), s2.pinyin());\n    if (i < 0)\n        return true;\n    else\n        return false;\n}\n\nvoid KeyboardWorker::onRequestShortcut(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<QString> reply = *watch;\n    if(reply.isError())\n    {\n        watch->deleteLater();\n        return;\n    }\n\n    QString info = reply.value();\n\n    QMap<QStringList,int> map;\n    QJsonArray array = QJsonDocument::fromJson(info.toStdString().c_str()).array();\n    Q_FOREACH(QJsonValue value, array) {\n        QJsonObject obj = value.toObject();\n        if (obj.isEmpty())\n            continue;\n        if (obj[\"Accels\"].toArray().isEmpty())\n            continue;\n        QString accels = obj[\"Accels\"].toArray().at(0).toString();\n        accels.replace(\"<\", \"\");\n        accels.replace(\">\", \"-\");\n        //转换为list\n        QStringList key;\n        key = accels.split(\"-\");\n        int bit = 0;\n        for (QString &t : key) {\n            if (t == \"Control\")\n                bit += Modifier::control;\n            else if (t == \"Alt\")\n                bit += Modifier::alt;\n            else if (t == \"Super\")\n                bit += Modifier::super;\n            else if (t == \"Shift\")\n                bit += Modifier::shift;\n            else {\n                QString s = t;\n                s = ModelKeycode.value(s);\n                if (!s.isEmpty())\n                    t = s;\n            }\n        }\n        if (bit == 0)\n            continue;\n\n        map.insert(key, bit);\n    }\n    m_model->setAllShortcut(map);\n    if (m_shortcutModel)\n        m_shortcutModel->onParseInfo(info);\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onAdded(const QString &in0, int in1)\n{\n    QDBusPendingReply<QString> reply = m_keyboardDBusProxy->GetShortcut(in0, in1);\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(reply, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, &KeyboardWorker::onAddedFinished);\n}\n\nvoid KeyboardWorker::onDisableShortcut(ShortcutInfo *info)\n{\n    // disable shortcut need wait!\n    m_keyboardDBusProxy->ClearShortcutKeystrokes(info->id, static_cast<int>(info->type)).waitForFinished();\n    info->accels.clear();\n}\n\nvoid KeyboardWorker::onAddedFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<QString> reply = *watch;\n\n    if (m_shortcutModel && !watch->isError())\n        m_shortcutModel->onCustomInfo(reply.value());\n\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onLayoutListsFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<KeyboardLayoutList> reply = *watch;\n\n    KeyboardLayoutList tmp_map = reply.value();\n    m_model->setLayoutLists(tmp_map);\n\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onAllLayoutListsFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<KeyboardLayoutList> reply = *watch;\n\n    KeyboardLayoutList tmp_map = reply.value();\n    m_model->setAllLayoutLists(tmp_map);\n\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onLocalListsFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<LocaleList> reply = *watch;\n\n    m_datas.clear();\n\n    LocaleList list = reply.value();\n\n    QStringList languageCodes;\n    QList<MetaData> metaDatas;\n    for (int i = 0; i != list.size(); ++i) {\n        MetaData md;\n        md.setKey(list.at(i).id);\n        languageCodes << list.at(i).id;\n        metaDatas << md;\n    }\n    QStringList dialectNames = DCCLocale::dialectNames(languageCodes);\n    for (int i = 0; i != metaDatas.size(); ++i) {\n        metaDatas[i].setText(QString(\"%1 - %2\").arg(list.at(i).name).arg(dialectNames.at(i)));\n    }\n    m_datas.append(metaDatas);\n\n    std::sort(m_datas.begin(), m_datas.end(), caseInsensitiveLessThan);\n\n    m_model->setLocaleList(m_datas);\n\n    watch->deleteLater();\n\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::CurrentLocaleChanged, m_model, &KeyboardModel::setLang);\n    connect(m_keyboardDBusProxy, &KeyboardDBusProxy::LocalesChanged, m_model, &KeyboardModel::setLocaleLang);\n    m_model->setLocaleLang(m_keyboardDBusProxy->locales());\n    m_model->setLang(m_keyboardDBusProxy->currentLocale());\n}\n\nvoid KeyboardWorker::onUserLayout(const QStringList &list)\n{\n    m_model->cleanUserLayout();\n    m_model->getUserLayoutList() = list;\n\n    for (const QString &data : list) {\n        QDBusPendingCallWatcher *layoutResult = new QDBusPendingCallWatcher(m_keyboardDBusProxy->GetLayoutDesc(data), this);\n        layoutResult->setProperty(\"id\", data);\n        connect(layoutResult, &QDBusPendingCallWatcher::finished, this, &KeyboardWorker::onUserLayoutFinished);\n    }\n}\n\nvoid KeyboardWorker::onUserLayoutFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<QString> reply = *watch;\n\n    m_model->addUserLayout(watch->property(\"id\").toString(), reply.value());\n\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onCurrentLayout(const QString &value)\n{\n    QDBusPendingCallWatcher *layoutResult = new QDBusPendingCallWatcher(m_keyboardDBusProxy->GetLayoutDesc(value), this);\n    connect(layoutResult, &QDBusPendingCallWatcher::finished, this, &KeyboardWorker::onCurrentLayoutFinished);\n}\n\nvoid KeyboardWorker::onSearchShortcuts(const QString &searchKey)\n{\n    qDebug() << \"onSearchShortcuts: \" << searchKey;\n    QDBusPendingReply<QString> reply = m_keyboardDBusProxy->SearchShortcuts(searchKey);\n    QDBusPendingCallWatcher *searchResult = new QDBusPendingCallWatcher(reply, this);\n    connect(searchResult, &QDBusPendingCallWatcher::finished, this, &KeyboardWorker::onSearchFinished);\n}\n\nvoid KeyboardWorker::onCurrentLayoutFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<QString> reply = *watch;\n\n    m_model->setLayout(reply.value());\n\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onSearchFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<QString> reply = *watch;\n    if (m_shortcutModel && !watch->isError()) {\n        m_shortcutModel->setSearchResult(reply.value());\n    } else {\n        qDebug() << \"search finished error.\" << watch->error();\n    }\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onPinyin()\n{\n    m_letters.clear();\n    m_metaDatas.clear();\n    QDBusInterface dbus_pinyin(\"org.deepin.dde.Pinyin1\", \"/org/deepin/dde/Pinyin1\",\n                               \"org.deepin.dde.Pinyin1\");\n\n    const auto &currentLayouts = m_model->kbLayout();\n    const auto &layouts = m_model->allLayout().isEmpty() ? currentLayouts : m_model->allLayout();\n    Q_FOREACH (const QString &key, layouts.keys()) {\n        MetaData md;\n        QString title = layouts[key];\n        md.setText(title);\n        md.setKey(key);\n        QChar letterFirst = title[0];\n        QStringList letterFirstList;\n        if (letterFirst.isLower() || letterFirst.isUpper()) {\n            letterFirstList << QString(letterFirst);\n            md.setPinyin(title);\n        } else {\n            QDBusMessage message = dbus_pinyin.call(\"Query\", title);\n            letterFirstList = message.arguments()[0].toStringList();\n            md.setPinyin(letterFirstList.at(0));\n        }\n        append(md);\n    }\n\n    QLocale locale;\n\n    if (locale.language() == QLocale::Chinese) {\n        // ListView.section does not need this....\n        // QChar ch = '\\0';\n        // for (int i(0); i != m_metaDatas.size(); ++i)\n        // {\n        //     const QChar flag = m_metaDatas[i].pinyin().at(0).toUpper();\n        //     if (flag == ch)\n        //         continue;\n        //     ch = flag;\n\n        //     m_letters.append(ch);\n        //     m_metaDatas.insert(i, MetaData(ch, true));\n        // }\n    } else {\n        std::sort(m_metaDatas.begin(), m_metaDatas.end(), caseInsensitiveLessThan);\n    }\n\n    Q_EMIT onDatasChanged(m_metaDatas);\n    Q_EMIT onLettersChanged(m_letters);\n}\n\nvoid KeyboardWorker::append(const MetaData &md)\n{\n    if(m_metaDatas.count() == 0)\n    {\n        m_metaDatas.append(md);\n        return;\n    }\n\n    int index = 0;\n    for (int i = 0; i != m_metaDatas.size(); ++i) {\n        if(m_metaDatas.at(i) > md)\n        {\n            m_metaDatas.insert(index,md);\n            return;\n        }\n        index++;\n    }\n\n    m_metaDatas.append(md);\n}\n\nvoid KeyboardWorker::onLangSelectorServiceFinished()\n{\n    QDBusPendingCallWatcher *localResult = new QDBusPendingCallWatcher(m_keyboardDBusProxy->GetLocaleList(), this);\n    connect(localResult, &QDBusPendingCallWatcher::finished, this, &KeyboardWorker::onLocalListsFinished);\n    m_keyboardDBusProxy->currentLocale();\n}\n\nvoid KeyboardWorker::onShortcutChanged(const QString &id, int type)\n{\n    QString key = makeShortcutKey(id, type);\n    qint64 currentTime = QDateTime::currentMSecsSinceEpoch();\n    m_shortcutQueryTime[key] = currentTime;\n\n    QDBusPendingCallWatcher *result = new QDBusPendingCallWatcher(m_keyboardDBusProxy->Query(id, type));\n    result->setProperty(\"queryTime\", currentTime);\n    result->setProperty(\"queryKey\", key);\n    connect(result, &QDBusPendingCallWatcher::finished, this, &KeyboardWorker::onGetShortcutFinished);\n}\n\nvoid KeyboardWorker::onGetShortcutFinished(QDBusPendingCallWatcher *watch)\n{\n    QDBusPendingReply<QString> reply = *watch;\n\n    qint64 queryTime = watch->property(\"queryTime\").toLongLong();\n    QString key = watch->property(\"queryKey\").toString();\n    if (queryTime < m_shortcutQueryTime.value(key, 0)) {\n        watch->deleteLater();\n        return;\n    }\n\n    if (m_shortcutModel && !watch->isError()) {\n        const QJsonObject obj = QJsonDocument::fromJson(reply.value().toStdString().c_str()).object();\n        const QJsonArray accels = obj[\"Accels\"].toArray();\n        \n        // Skip UI update if shortcut is being replaced to prevent flicker\n        // Wait until the new shortcut data is available (non-empty accels)\n        if (m_replacingShortcuts.contains(key)) {\n            if (!accels.isEmpty()) {\n                // New shortcut data has arrived, clear the flag and proceed with update\n                m_replacingShortcuts.remove(key);\n            } else {\n                // Still waiting for new shortcut data, skip this stale response\n                watch->deleteLater();\n                return;\n            }\n        }\n        \n        m_shortcutModel->onKeyBindingChanged(reply.value());\n    } else if (watch->isError()) {\n        if (m_replacingShortcuts.contains(key)) {\n            m_replacingShortcuts.remove(key);\n        }\n    }\n\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::updateKey(ShortcutInfo *info)\n{\n    if (m_shortcutModel)\n        m_shortcutModel->setCurrentInfo(info);\n\n    m_keyboardDBusProxy->SelectKeystroke();\n}\n\nvoid KeyboardWorker::cleanShortcutSlef(const QString &id, const int type, const QString &shortcut)\n{\n    QString key = makeShortcutKey(id, type);\n    m_replacingShortcuts.insert(key);\n    \n    QDBusPendingCall call = m_keyboardDBusProxy->ClearShortcutKeystrokes(id, type);\n\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n\n    watcher->setProperty(\"id\", id);\n    watcher->setProperty(\"type\", type);\n    watcher->setProperty(\"shortcut\", shortcut);\n\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, &KeyboardWorker::onShortcutCleanFinished);\n}\n\nvoid KeyboardWorker::setNewCustomShortcut(const QString &id, const QString &name, const QString &command, const QString &accles)\n{\n    m_keyboardDBusProxy->ModifyCustomShortcut(id, name, command, accles);\n}\n\nvoid KeyboardWorker::onConflictShortcutCleanFinished(QDBusPendingCallWatcher *watch)\n{\n    if (!watch->isError()) {\n        const QString &id = watch->property(\"id\").toString();\n        const int type = watch->property(\"type\").toInt();\n        const QString &shortcut = watch->property(\"shortcut\").toString();\n        const bool clean = watch->property(\"clean\").toBool();\n\n        if (clean) {\n            cleanShortcutSlef(id, type, shortcut);\n        } else {\n            m_keyboardDBusProxy->AddShortcutKeystroke(id, type, shortcut);\n        }\n    } else {\n        const QString &id = watch->property(\"id\").toString();\n        const int type = watch->property(\"type\").toInt();\n        QString key = makeShortcutKey(id, type);\n        m_replacingShortcuts.remove(key);\n    }\n\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onShortcutCleanFinished(QDBusPendingCallWatcher *watch)\n{\n    if (!watch->isError()) {\n        const QString &id = watch->property(\"id\").toString();\n        const int type = watch->property(\"type\").toInt();\n        const QString &shortcut = watch->property(\"shortcut\").toString();\n\n        m_keyboardDBusProxy->AddShortcutKeystroke(id, type, shortcut);\n\n        if (shortcut.contains(\"Delete\") && !shortcut.contains(\"KP_Delete\")) {\n            ShortcutInfo si;\n            si.id = id;\n            si.type = static_cast<uint>(type);\n            si.accels = shortcut;\n            si.accels = si.accels.replace(\"Delete\", \"KP_Delete\");\n            modifyShortcutEditAux(&si, true);\n        }\n    } else {\n        qDebug() << watch->error();\n        const QString &id = watch->property(\"id\").toString();\n        const int type = watch->property(\"type\").toInt();\n        QString key = makeShortcutKey(id, type);\n        m_replacingShortcuts.remove(key);\n    }\n\n    watch->deleteLater();\n}\n\nvoid KeyboardWorker::onCustomConflictCleanFinished(QDBusPendingCallWatcher *w)\n{\n    if (!w->isError()) {\n        const QString &id = w->property(\"id\").toString();\n        const QString name = w->property(\"name\").toString();\n        const QString &command = w->property(\"command\").toString();\n        const QString &accles = w->property(\"shortcut\").toString();\n\n        setNewCustomShortcut(id, name, command, accles);\n    } else {\n        const QString &id = w->property(\"id\").toString();\n        QString key = id + \"_1\";\n        m_replacingShortcuts.remove(key);\n    }\n\n    w->deleteLater();\n}\n\nQString KeyboardWorker::makeShortcutKey(const QString &id, int type)\n{\n    return id + \"_\" + QString::number(type);\n}\n\nuint KeyboardWorker::converToDBusDelay(uint value)\n{\n    switch (value) {\n    case 1:\n        return 20;\n    case 2:\n        return 80;\n    case 3:\n        return 150;\n    case 4:\n        return 250;\n    case 5:\n        return 360;\n    case 6:\n        return 480;\n    case 7:\n        return 600;\n    default:\n        return 4;\n    }\n}\n\nuint KeyboardWorker::converToModelDelay(uint value)\n{\n    if (value <= 20)\n        return 1;\n    else if (value <= 80)\n        return 2;\n    else if (value <= 150)\n        return 3;\n    else if (value <= 250)\n        return 4;\n    else if (value <= 360)\n        return 5;\n    else if (value <= 480)\n        return 6;\n    else\n        return 7;\n}\n\nint KeyboardWorker::converToDBusInterval(int value)\n{\n    switch (value) {\n    case 1:\n        return 100;\n    case 2:\n        return 80;\n    case 3:\n        return 65;\n    case 4:\n        return 50;\n    case 5:\n        return 35;\n    case 6:\n        return 25;\n    case 7:\n        return 20;\n    default:\n        return 4;\n    }\n}\n\nuint KeyboardWorker::converToModelInterval(uint value)\n{\n    if (value <= 20)\n        return 7;\n    else if (value <= 25)\n        return 6;\n    else if (value <= 35)\n        return 5;\n    else if (value <= 50)\n        return 4;\n    else if (value <= 65)\n        return 3;\n    else if (value <= 80)\n        return 2;\n    else\n        return 1;\n}\n\nvoid KeyboardWorker::setLayout(const QString &value)\n{\n    m_keyboardDBusProxy->setCurrentLayout(value);\n}\n\nvoid KeyboardWorker::setLang(const QString &value)\n{\n    Q_EMIT requestSetAutoHide(false);\n\n    QDBusPendingCall call = m_keyboardDBusProxy->SetLocale(value);\n    qDebug() << \"setLang is \" << value;\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            qDebug() << \"setLang error: \" << call.error().type();\n            m_model->setLang(m_keyboardDBusProxy->currentLocale());\n        }\n\n        qDebug() << \"setLang success\";\n        Q_EMIT requestSetAutoHide(true);\n        watcher->deleteLater();\n    });\n}\n\nvoid KeyboardWorker::addLang(const QString &value)\n{\n    Q_EMIT requestSetAutoHide(false);\n\n    QDBusPendingCall call = m_keyboardDBusProxy->AddLocale(value);\n\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            qDebug() << \"add Locale language error: \" << call.error().type();\n        }\n\n        Q_EMIT requestSetAutoHide(true);\n        watcher->deleteLater();\n    });\n}\n\nvoid KeyboardWorker::deleteLang(const QString &value)\n{\n    Q_EMIT requestSetAutoHide(false);\n\n    QString lang = m_model->langFromText(value);\n    QDBusPendingCall call = m_keyboardDBusProxy->DeleteLocale(lang);\n\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=] {\n        if (call.isError()) {\n            qDebug() << \"delete Locale language error: \" << call.error().type();\n        }\n\n        Q_EMIT requestSetAutoHide(true);\n        watcher->deleteLater();\n    });\n}\n"
  },
  {
    "path": "src/plugin-keyboard/operation/keyboardwork.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef KEYBOARDWORK_H\n#define KEYBOARDWORK_H\n\n#include \"operation/metadata.h\"\n#include \"shortcutmodel.h\"\n#include \"keyboardmodel.h\"\n#include \"keyboarddbusproxy.h\"\n\n#include <DConfig>\n\n#include <QObject>\n\nclass QDBusPendingCallWatcher;\nclass QTranslator;\n\nnamespace dccV25 {\nclass KeyboardWorker : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit KeyboardWorker(KeyboardModel* model, QObject *parent = nullptr);\n    enum Modifier {\n        control = 1,\n        super = 2,\n        alt = 4,\n        shift = 8\n    };\n\n    void resetAll();\n\n    void setShortcutModel(ShortcutModel * model);\n    void refreshShortcut();\n    void refreshLang();\n    void windowSwitch();\n\n    inline QList<MetaData> getDatas() {return m_metaDatas;}\n    inline QList<QString> getLetters() {return m_letters;}\n\n    void modifyShortcutEditAux(ShortcutInfo* info, bool isKPDelete = false);\n    void modifyShortcutEdit(ShortcutInfo* info);\n    void addCustomShortcut(const QString& name, const QString& command, const QString& accels);\n    void modifyCustomShortcut(ShortcutInfo *info);\n\n    void grabScreen();\n    bool checkAvaliable(const QString& key);\n    void delShortcut(ShortcutInfo *info);\n\n    void setRepeatDelay(uint value);\n    void setRepeatInterval(uint value);\n    void setModelRepeatDelay(uint value);\n    void setModelRepeatInterval(uint value);\n\n    void setNumLock(bool value);\n    void setCapsLock(bool value);\n    void setKeyboardEnabled(bool value);\n    Q_INVOKABLE void active();\n    void deactive();\n    bool keyOccupy(const QStringList &list);\n    void onRefreshKBLayout();\n\nQ_SIGNALS:\n    void KeyEvent(bool in0, const QString &in1);\n    void searchChangd(ShortcutInfo* info, const QString& key);\n    void removed(const QString &id, int type);\n    void requestSetAutoHide(const bool visible);\n    void onDatasChanged(QList<MetaData> datas);\n    void onLettersChanged(QList<QString> letters);\n    // 快捷键恢复默认完成\n    void onResetFinished();\n\npublic Q_SLOTS:\n    void setLang(const QString &value);\n    void addLang(const QString &value);\n    void deleteLang(const QString& value);\n    void setLayout(const QString& value);\n    void addUserLayout(const QString& value);\n    void delUserLayout(const QString& value);\n    void onRequestShortcut(QDBusPendingCallWatcher* watch);\n    void onAdded(const QString&in0, int in1);\n    void onDisableShortcut(ShortcutInfo* info);\n    void onAddedFinished(QDBusPendingCallWatcher *watch);\n    void onLocalListsFinished(QDBusPendingCallWatcher *watch);\n    void onGetWindowWM(bool value);\n    void onLayoutListsFinished(QDBusPendingCallWatcher *watch);\n    void onAllLayoutListsFinished(QDBusPendingCallWatcher *watch);\n    void onUserLayout(const QStringList &list);\n    void onUserLayoutFinished(QDBusPendingCallWatcher *watch);\n    void onCurrentLayout(const QString &value);\n    void onCurrentLayoutFinished(QDBusPendingCallWatcher *watch);\n    void onPinyin();\n    void onSearchShortcuts(const QString &searchKey);\n    void onSearchFinished(QDBusPendingCallWatcher *watch);\n    void append(const MetaData& md);\n    void onLangSelectorServiceFinished();\n    void onShortcutChanged(const QString &id, int type);\n    void onGetShortcutFinished(QDBusPendingCallWatcher *watch);\n    void updateKey(ShortcutInfo *info);\n    void cleanShortcutSlef(const QString &id, const int type, const QString &shortcut);\n    void setNewCustomShortcut(const QString &id, const QString &name, const QString &command, const QString &accles);\n    void onConflictShortcutCleanFinished(QDBusPendingCallWatcher *watch);\n    void onShortcutCleanFinished(QDBusPendingCallWatcher *watch);\n    void onCustomConflictCleanFinished(QDBusPendingCallWatcher *w);\n\nprivate:\n    static QString makeShortcutKey(const QString &id, int type);\n    uint converToDBusDelay(uint value);\n    uint converToModelDelay(uint value);\n    int converToDBusInterval(int value);\n    uint converToModelInterval(uint value);\n\nprivate:\n    QList<MetaData> m_datas;\n    QList<MetaData> m_metaDatas;\n    QList<QString> m_letters;\n    int m_delayValue;\n    int m_speedValue;\n    KeyboardModel* m_model;\n    KeyboardDBusProxy *m_keyboardDBusProxy;\n    ShortcutModel *m_shortcutModel = nullptr;\n    QTranslator *m_translatorLanguage;\n    Dtk::Core::DConfig *m_inputDevCfg;\n    bool m_isResetting = false; // Flag to prevent duplicate reset calls\n    QMap<QString, qint64> m_shortcutQueryTime; // 记录每个快捷键最后一次 Query 的时间戳\n    QSet<QString> m_replacingShortcuts; // 记录正在替换的快捷键，用于屏蔽中间状态的UI更新\n};\n}\n#endif // KEYBOARDWORK_H\n"
  },
  {
    "path": "src/plugin-keyboard/operation/layoutsmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"layoutsmodel.h\"\n#include \"keyboardwork.h\"\n#include \"keyboardcontroller.h\"\n\nnamespace dccV25 {\n\nLayoutsModel::LayoutsModel(QObject *parent)\n    : QAbstractListModel{ parent }\n{\n}\n\nint LayoutsModel::rowCount(const QModelIndex &) const\n{\n    KeyboardWorker *worker = dynamic_cast<KeyboardWorker *>(parent());\n    if (!worker)\n        return 0;\n\n    const QList<MetaData> &datas = worker->getDatas();\n\n    return datas.size();\n}\n\nQVariant LayoutsModel::data(const QModelIndex &index, int role) const\n{\n    KeyboardWorker *worker = dynamic_cast<KeyboardWorker *>(parent());\n    if (!worker)\n        return QVariant();\n\n    QList<MetaData> datas = worker->getDatas();\n\n    if (!index.isValid() || index.row() >= datas.size())\n        return QVariant();\n\n    const MetaData &data = datas.value(index.row());\n\n    switch (role) {\n    case Qt::DisplayRole:\n        return data.text();\n    case SearchedTextRole:\n        return data.pinyin() + data.key() + data.text();\n    case IdRole:\n        return data.key();\n    case SectionRole:\n        return data.pinyin().left(1).toUpper();\n    default:\n        break;\n    }\n\n    return QVariant();\n}\n\nQHash<int, QByteArray> LayoutsModel::roleNames() const\n{\n    QHash<int, QByteArray> names = QAbstractListModel::roleNames();\n    names[SearchedTextRole] = \"searchedText\";\n    names[IdRole] = \"id\";\n    names[SectionRole] = \"section\";\n    return names;\n}\n\nLayoutFilterModel::LayoutFilterModel(QObject *parent)\n    :QSortFilterProxyModel(parent)\n{\n\n}\n\nbool LayoutFilterModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const\n{\n    KeyboardController *controller = dynamic_cast<KeyboardController *>(parent());\n    if (!controller)\n        return false;\n\n    QModelIndex modelIndex = this->sourceModel()->index(sourceRow, 0, sourceParent);\n    if (!modelIndex.isValid())\n        return false;\n\n    bool accepted =  QSortFilterProxyModel::filterAcceptsRow(sourceRow, sourceParent);\n    return accepted && !controller->userLayoutsContains(modelIndex.data(LayoutsModel::IdRole).toString());\n}\n\n}\n"
  },
  {
    "path": "src/plugin-keyboard/operation/layoutsmodel.h",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef LAYOUTSMODEL_H\n#define LAYOUTSMODEL_H\n\n#include <QAbstractListModel>\n#include <QSortFilterProxyModel>\n\nnamespace dccV25 {\n\nclass LayoutsModel : public QAbstractListModel\n{\npublic:\n    explicit LayoutsModel(QObject *parent = nullptr);\n\n    enum LayoutRole {\n        SearchedTextRole = Qt::UserRole + 1,\n        IdRole,\n        SectionRole\n    };\n\n    // QAbstractItemModel interface\n    int rowCount(const QModelIndex &parent) const override;\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n    QHash<int, QByteArray> roleNames() const override;\n};\n\nclass LayoutFilterModel : public QSortFilterProxyModel {\npublic:\n    explicit LayoutFilterModel(QObject *parent = nullptr);\n    virtual bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const;\n};\n\n}\n#endif // LAYOUTSMODEL_H\n"
  },
  {
    "path": "src/plugin-keyboard/operation/metadata.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"metadata.h\"\n#include <QDebug>\n\nnamespace dccV25 {\n\nMetaData::MetaData(const QString &text, bool section)\n    : m_text(text)\n    , m_pinyin(QString())\n    , m_section(section)\n    , m_selected(false)\n{\n\n}\n\nvoid MetaData::setPinyin(const QString &py)\n{\n    m_pinyin = py;\n}\n\nQString MetaData::pinyin() const\n{\n    return m_pinyin == QString() ? m_text : m_pinyin;\n}\n\nvoid MetaData::setText(const QString &text)\n{\n    m_text = text;\n}\n\nQString MetaData::text() const\n{\n    return m_text;\n}\n\nvoid MetaData::setKey(const QString &key)\n{\n    m_key = key;\n}\n\nQString MetaData::key() const\n{\n    return m_key;\n}\n\nvoid MetaData::setSection(bool section)\n{\n    m_section = section;\n}\n\nbool MetaData::section() const\n{\n    return m_section;\n}\n\nvoid MetaData::setSelected(bool selected)\n{\n    m_selected = selected;\n}\n\nbool MetaData::selected() const\n{\n    return m_selected;\n}\n\nbool MetaData::operator ==(const MetaData &md) const\n{\n    return m_text == md.m_text;\n}\n\nbool MetaData::operator >(const MetaData &md) const\n{\n    int x = QString::compare(m_pinyin, md.m_pinyin, Qt::CaseInsensitive);\n    return x > 0;\n}\n\nQDebug &operator<<(QDebug &dbg, const MetaData &md)\n{\n    dbg.nospace() << QString(\"key: %1, text: %2, m_section: %3, pinyin: %4\")\n                             .arg(md.key())\n                             .arg(md.text())\n                             .arg(md.section())\n                             .arg(md.pinyin());\n    return dbg;\n}\n\n}\n"
  },
  {
    "path": "src/plugin-keyboard/operation/metadata.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QObject>\n\nnamespace dccV25 {\n\nclass MetaData\n{\npublic:\n    MetaData(const QString &text = QString(), bool section = false);\n\n    void setPinyin(const QString &py);\n    QString pinyin() const;\n\n    void setText(const QString &text);\n    QString text() const;\n\n    void setKey(const QString &key);\n    QString key() const;\n\n    void setSection(bool section);\n    bool section() const;\n\n    void setSelected(bool selected);\n    bool selected() const;\n\n    bool operator ==(const MetaData &md) const;\n    bool operator >(const MetaData &md) const;\nprivate:\n    QString m_key;\n    QString m_text;\n    QString m_pinyin;\n    bool m_section;\n    bool m_selected;\n    friend QDebug &operator<<(QDebug &dbg, const MetaData &md);\n};\n\nQDebug &operator<<(QDebug &dbg, const MetaData &md);\n\n}\nQ_DECLARE_METATYPE(dccV25::MetaData)\n"
  },
  {
    "path": "src/plugin-keyboard/operation/qrc/keyboard.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_keyboard_42px.svg</file>\n        <file>icons/dcc_nav_keyboard_84px.svg</file>\n    </qresource>\n    <qresource prefix=\"/action\">\n\t <file>icons/list_select@2x.png</file>\n\t <file>icons/list_select.png</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-keyboard/operation/shortcutmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"shortcutmodel.h\"\n\n#include <DSysInfo>\n#include <QDBusInterface>\n#include <QDebug>\n#include <QJsonArray>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QJsonValue>\n#include <QThreadPool>\n#include <QGuiApplication>\n#include <DPinyin>\n\nQStringList systemFilter = {\"terminal\",\n                            \"terminalQuake\",\n                            \"globalSearch\",\n                            \"screenshot\",\n                            \"screenshotDelayed\",\n                            \"screenshotFullscreen\",\n                            \"screenshotWindow\",\n                            \"screenshotScroll\",\n                            \"screenshotOcr\",\n                            \"deepinScreenRecorder\",\n                            \"switchGroup\",\n                            \"switchGroupBackward\",\n                            \"previewWorkspace\",\n                            \"launcher\",\n                            \"switchApplications\",\n                            \"switchApplicationsBackward\",\n                            \"showDesktop\",\n                            \"fileManager\",\n                            \"lockScreen\",\n                            \"logout\",\n                            \"wmSwitcher\",\n                            \"systemMonitor\",\n                            \"colorPicker\",\n                            \"clipboard\",\n                            \"switchMonitors\"\n};\n\nconst QStringList &windowFilter = {\"activateWindowMenu\",\n                                   \"maximize\",\n                                   \"unmaximize\",\n                                   \"minimize\",\n                                   \"beginMove\",\n                                   \"beginResize\",\n                                   \"close\",\n                                   \"toggleToLeft\",\n                                   \"toggleToRight\"\n};\n\nconst QStringList &workspaceFilter = {\"switchToWorkspaceLeft\",\n                                      \"switchToWorkspaceRight\",\n                                      \"moveToWorkspaceLeft\",\n                                      \"moveToWorkspaceRight\"};\n\nconst QStringList &assistiveToolsFilter = {\"textToSpeech\",\n                                           \"speechToText\",\n                                           \"translation\",\n                                            \"viewZoomIn\",\n                                            \"viewZoomOut\",\n                                            \"viewActualSize\"};\n\n// from dquickrectangle_p.h\n#define NoneCorner 0x0\n#define TopLeftCorner 0x1\n#define TopRightCorner 0x2\n#define BottomLeftCorner 0x4\n#define BottomRightCorner 0x8\n#define TopCorner TopLeftCorner | TopRightCorner\n#define BottomCorner BottomLeftCorner| BottomRightCorner\n#define LeftCorner TopLeftCorner| BottomLeftCorner\n#define RightCorner TopRightCorner| BottomRightCorner\n#define AllCorner TopCorner | BottomCorner\n\nstatic const QString FieldSeparator = QString(QChar(0x1F));\n\nstatic const QMap<QString, QString> &DisplaykeyMap = { {\"exclam\", \"!\"}, {\"at\", \"@\"}, {\"numbersign\", \"#\"}, {\"dollar\", \"$\"}, {\"percent\", \"%\"},\n    {\"asciicircum\", \"^\"}, {\"ampersand\", \"&\"}, {\"asterisk\", \"*\"}, {\"parenleft\", \"(\"},\n    {\"parenright\", \")\"}, {\"underscore\", \"_\"}, {\"plus\", \"+\"}, {\"braceleft\", \"{\"}, {\"braceright\", \"}\"},\n    {\"bar\", \"|\"}, {\"colon\", \":\"}, {\"quotedbl\", \"\\\"\"}, {\"less\", \"<\"}, {\"greater\", \">\"}, {\"question\", \"?\"},\n    {\"minus\", \"-\"}, {\"equal\", \"=\"}, {\"brackertleft\", \"[\"}, {\"breckertright\", \"]\"}, {\"backslash\", \"\\\\\"},\n    {\"semicolon\", \";\"}, {\"apostrophe\", \"'\"}, {\"comma\", \",\"}, {\"period\", \".\"}, {\"slash\", \"/\"}, {\"Up\", \"↑\"},\n    {\"Left\", \"←\"}, {\"Down\", \"↓\"}, {\"Right\", \"→\"}, {\"asciitilde\", \"~\"}, {\"grave\", \"`\"}, {\"Control\", \"Ctrl\"},\n    {\"Super_L\", \"Super\"}, {\"Super_R\", \"Super\"}\n};\n\nstatic QString toPinyin(const QString &name)\n{\n    DCORE_USE_NAMESPACE\n    return pinyin(name, TS_NoneTone).join(FieldSeparator) + FieldSeparator + firstLetters(name).join(FieldSeparator);\n}\n\nusing namespace dccV25;\nDCORE_USE_NAMESPACE\nShortcutModel::ShortcutModel(QObject *parent)\n    : QObject(parent)\n    , m_windowSwitchState(false)\n{\n}\n\nShortcutModel::~ShortcutModel()\n{\n    qDeleteAll(m_infos);\n\n    m_infos.clear();\n    m_systemInfos.clear();\n    m_windowInfos.clear();\n    m_workspaceInfos.clear();\n    m_customInfos.clear();\n    qDeleteAll(m_searchList);\n    m_searchList.clear();\n}\n\nQList<ShortcutInfo *> ShortcutModel::systemInfo() const\n{\n    return m_systemInfos;\n}\n\nQList<ShortcutInfo *> ShortcutModel::windowInfo() const\n{\n    return m_windowInfos;\n}\n\nQList<ShortcutInfo *> ShortcutModel::workspaceInfo() const\n{\n    return m_workspaceInfos;\n}\n\nQList<ShortcutInfo *> ShortcutModel::assistiveToolsInfo() const\n{\n    return m_assistiveToolsInfos;\n}\n\nQList<ShortcutInfo *> ShortcutModel::customInfo() const\n{\n    return m_customInfos;\n}\n\nQList<ShortcutInfo *> ShortcutModel::infos() const\n{\n    return m_infos;\n}\n\nShortcutInfo *ShortcutModel::shortcutAt(int index, int *corners)\n{\n    if (index < 0)\n        return nullptr;\n\n    auto getCorners = [](QList<ShortcutInfo *>&list, int index) {\n        if (index == 0)\n            return TopCorner;\n        else if (index == list.count() - 1)\n            return BottomCorner;\n        else\n            return NoneCorner;\n    };\n\n#define CHECK_INDEX_DCC(List) \\\n    if (index < List.count()) { \\\n        if (corners) \\\n            *corners = getCorners(List, index); \\\n        return List.value(index); \\\n    } else { \\\n        index -= List.count(); \\\n    }\n\n    CHECK_INDEX_DCC(m_systemInfos)\n    CHECK_INDEX_DCC(m_windowInfos)\n    CHECK_INDEX_DCC(m_workspaceInfos)\n    CHECK_INDEX_DCC(m_assistiveToolsInfos)\n    CHECK_INDEX_DCC(m_customInfos)\n\n    return nullptr;\n}\n\nvoid ShortcutModel::delInfo(ShortcutInfo *info)\n{\n    if (m_infos.contains(info)) {\n        m_infos.removeOne(info);\n    }\n    if (m_customInfos.contains(info)) {\n        m_customInfos.removeOne(info);\n    }\n\n    Q_EMIT delCustomInfo(info);\n\n    delete info;\n    info = nullptr;\n}\n\nvoid ShortcutModel::onParseInfo(const QString &info)\n{\n    QStringList systemShortKeys;\n    if (DSysInfo::UosServer == DSysInfo::uosType()) {\n        QStringList systemFilterServer = systemFilter;\n        systemFilterServer.removeOne(\"wm-switcher\");\n        systemFilterServer.removeOne(\"preview-workspace\");\n        systemShortKeys = systemFilterServer;\n    } else {\n        systemShortKeys = systemFilter;\n    }\n#ifdef DISABLE_SCREEN_RECORDING\n    QStringList systemFilterServer = systemShortKeys;\n    systemFilterServer.removeOne(\"deepin-screen-recorder\");\n    systemShortKeys = systemFilterServer;\n#endif\n    // Save custom info IDs before clearing\n    QStringList customInfoIds;\n    for (auto info : m_customInfos) {\n        customInfoIds << info->id;\n    }\n\n    qDeleteAll(m_infos);\n\n    m_infos.clear();\n    m_systemInfos.clear();\n    m_windowInfos.clear();\n    m_workspaceInfos.clear();\n    m_assistiveToolsInfos.clear();\n    m_customInfos.clear();\n    \n    // 清理系统快捷键名称缓存，因为数据即将更新\n    invalidateSystemShortcutNamesCache();\n\n    QJsonArray array = QJsonDocument::fromJson(info.toStdString().c_str()).array();\n\n    Q_FOREACH (QJsonValue value, array) {\n        QJsonObject obj  = value.toObject();\n        int         type = obj[\"Type\"].toInt();\n\n        ShortcutInfo *info = new ShortcutInfo();\n        info->type         = type;\n        info->accels       = obj[\"Accels\"].toArray().first().toString();\n        info->id      = obj[\"Id\"].toString();\n        info->name    = obj[\"Name\"].toString();\n        if (systemShortKeys.contains(info->id)) {\n            info->name    = info->name.trimmed();\n        }\n        info->pinyin  =  toPinyin(info->name);\n        info->command = obj[\"Exec\"].toString();\n\n        m_infos << info;\n\n        if (type != MEDIAKEY) {\n            if (systemShortKeys.contains(info->id)) {\n                info->sectionName = tr(\"System\");\n                m_systemInfos << info;\n                continue;\n            }\n            if (windowFilter.contains(info->id)) {\n                info->sectionName = tr(\"Window\");\n                m_windowInfos << info;\n                continue;\n            }\n            if (workspaceFilter.contains(info->id)) {\n                info->sectionName = tr(\"Workspace\");\n                m_workspaceInfos << info;\n                continue;\n            }\n            if (assistiveToolsFilter.contains(info->id)) {\n                info->sectionName = tr(\"AssistiveTools\");\n                m_assistiveToolsInfos << info;\n                continue;\n            }\n            if (type == 1) {\n                info->sectionName = tr(\"Custom\");\n                m_customInfos << info;\n            }\n        }\n    }\n\n    std::sort(m_systemInfos.begin(), m_systemInfos.end(), [ = ](ShortcutInfo *s1, ShortcutInfo *s2) {\n        return systemShortKeys.indexOf(s1->id) < systemShortKeys.indexOf(s2->id);\n    });\n    // More efficient implementation using std::find_if\n    auto it = std::find_if(m_systemInfos.begin(), m_systemInfos.end(),\n        [](const ShortcutInfo* info) { return info->id == \"previewWorkspace\"; });\n    m_windowSwitchStateInfos.clear();\n    if (it != m_systemInfos.end()) {\n        int index = std::distance(m_systemInfos.begin(), it);\n        (*it)->index = index;\n        m_windowSwitchStateInfos << *it;\n        if (!m_windowSwitchState) {\n            m_systemInfos.erase(it);  // More efficient than removeOne\n        }\n    }\n\n    std::sort(m_windowInfos.begin(), m_windowInfos.end(), [ = ](ShortcutInfo *s1, ShortcutInfo *s2) {\n        return windowFilter.indexOf(s1->id) < windowFilter.indexOf(s2->id);\n    });\n\n    std::sort(m_workspaceInfos.begin(), m_workspaceInfos.end(), [ = ](ShortcutInfo *s1, ShortcutInfo *s2) {\n        return workspaceFilter.indexOf(s1->id) < workspaceFilter.indexOf(s2->id);\n    });\n\n    std::sort(m_assistiveToolsInfos.begin(), m_assistiveToolsInfos.end(), [ = ](ShortcutInfo *s1, ShortcutInfo *s2) {\n        return assistiveToolsFilter.indexOf(s1->id) < assistiveToolsFilter.indexOf(s2->id);\n    });\n\n    // Rebuild m_customInfos in original order first\n    QList<ShortcutInfo*> orderedCustomInfos;\n    for (const QString &id : customInfoIds) {\n        auto it = std::find_if(m_customInfos.begin(), m_customInfos.end(),\n            [id](ShortcutInfo *info) { return info->id == id && info->type == 1; });\n        if (it != m_customInfos.end()) {\n            orderedCustomInfos << *it;\n        }\n    }\n    // Add new custom infos that weren't in original list\n    for (auto info : m_customInfos) {\n        if (info->type == 1 && !customInfoIds.contains(info->id)) {\n            orderedCustomInfos << info;\n        }\n    }\n    m_customInfos = orderedCustomInfos;\n\n    Q_EMIT listChanged(m_systemInfos, InfoType::System);\n    Q_EMIT listChanged(m_windowInfos, InfoType::Window);\n    Q_EMIT listChanged(m_workspaceInfos, InfoType::Workspace);\n    Q_EMIT listChanged(m_assistiveToolsInfos, InfoType::AssistiveTools);\n    Q_EMIT listChanged(m_customInfos, InfoType::Custom);\n}\n\nvoid ShortcutModel::onCustomInfo(const QString &json)\n{\n    QJsonObject   obj  = QJsonDocument::fromJson(json.toStdString().c_str()).object();\n    ShortcutInfo *info = new ShortcutInfo();\n    info->type         = obj[\"Type\"].toInt();\n    QString accels     = obj[\"Accels\"].toArray().at(0).toString();\n\n    info->accels = accels;\n\n    info->name    = obj[\"Name\"].toString();\n    info->pinyin = toPinyin(info->name);\n    info->id      = obj[\"Id\"].toString();\n    info->command = obj[\"Exec\"].toString();\n    info->sectionName = tr(\"Custom\");\n\n    m_infos.append(info);\n    m_customInfos.append(info);\n    Q_EMIT addCustomInfo(info);\n}\n\nvoid ShortcutModel::onKeyBindingChanged(const QString &value)\n{\n    const QJsonObject &obj       = QJsonDocument::fromJson(value.toStdString().c_str()).object();\n    const QString     &update_id = obj[\"Id\"].toString();\n    const int     &update_type = obj[\"Type\"].toInt();\n    auto res = std::find_if(m_infos.begin(), m_infos.end(), [ = ] (const ShortcutInfo *info)->bool{\n        return info->id == update_id && info->type == update_type;\n    });\n\n    if (res != m_infos.end()) {\n        (*res)->type = obj[\"Type\"].toInt();\n        (*res)->accels  = obj[\"Accels\"].toArray().first().toString();\n        (*res)->name    = obj[\"Name\"].toString();\n        (*res)->command = obj[\"Exec\"].toString();\n\n        Q_EMIT shortcutChanged((*res));\n    }\n}\n\nvoid ShortcutModel::onWindowSwitchChanged(bool value)\n{\n    if (m_windowSwitchState != value) {\n        m_windowSwitchState = value;\n        if (m_windowSwitchState) {\n            for (int i = m_windowSwitchStateInfos.size() - 1; i >= 0; i--) {\n                m_systemInfos.insert(m_windowSwitchStateInfos.at(i)->index, m_windowSwitchStateInfos.at(i));\n            }\n        } else {\n            for (int i = 0; i < m_windowSwitchStateInfos.size(); i++) {\n                m_systemInfos.removeOne(m_windowSwitchStateInfos.at(i));\n            }\n        }\n        \n        // 系统快捷键列表发生变化，清理缓存\n        invalidateSystemShortcutNamesCache();\n        \n        Q_EMIT windowSwitchChanged(m_windowSwitchState);\n    }\n}\n\n bool ShortcutModel::getWindowSwitch()\n {\n     return m_windowSwitchState;\n }\n\n QStringList ShortcutModel::formatKeys(const QString &shortcut)\n {\n     if (shortcut.isEmpty())\n         return QStringList{ShortcutModel::tr(\"None\")};\n\n     QString accels = shortcut;\n     accels = accels.replace(\"<\", \"\");\n     accels = accels.replace(\">\", \"-\");\n     accels = accels.replace(\"_L\", \"\");\n     accels = accels.replace(\"_R\", \"\");\n     accels = accels.replace(\"Control\", \"Ctrl\");\n\n     QStringList keylist = accels.split(\"-\");\n\n     QStringList newList;\n     for (int i = 0; i < keylist.size(); ++i) {\n         const QString &value = DisplaykeyMap.value(keylist.value(i));\n         newList << (value.isEmpty() ? keylist.value(i) : value);\n     }\n\n     return newList;\n}\n\nint ShortcutModel::indexOfShortcut(ShortcutInfo *info)\n{\n    if (!info)\n        return -1;\n\n    const QList<ShortcutInfo*> *lists[] = {\n        &m_systemInfos, &m_windowInfos, &m_workspaceInfos,\n        &m_assistiveToolsInfos, &m_customInfos\n    };\n\n    int row = 0;\n    for (const auto *list : lists) {\n        const int idx = list->indexOf(info);\n        if (idx >= 0)\n            return row + idx;\n        row += list->size();\n    }\n\n    return -1;\n}\n\nShortcutInfo *ShortcutModel::currentInfo() const\n{\n    return m_currentInfo;\n}\n\nvoid ShortcutModel::setCurrentInfo(ShortcutInfo *currentInfo)\n{\n    m_currentInfo = currentInfo;\n}\n\nShortcutInfo *ShortcutModel::findInfoIf(std::function<bool (ShortcutInfo *)> cb)\n{\n    auto res = std::find_if(m_infos.begin(), m_infos.end(), cb);\n    if (res != m_infos.end()) {\n        return *res;\n    }\n\n    return nullptr;\n}\n\nShortcutInfo *ShortcutModel::getInfo(const QString &shortcut)\n{\n    if (shortcut.isEmpty())\n        return nullptr;\n\n    return findInfoIf([ = ] (const ShortcutInfo *info)->bool{\n        return !QString::compare(info->accels, shortcut, Qt::CaseInsensitive); //判断是否相等，相等则返回0\n    });\n}\n\nvoid ShortcutModel::setSearchResult(const QString &searchResult)\n{\n    qDeleteAll(m_searchList);\n    m_searchList.clear();\n\n    QList<ShortcutInfo *> systemInfoList;\n    QList<ShortcutInfo *> windowInfoList;\n    QList<ShortcutInfo *> workspaceInfoList;\n    QList<ShortcutInfo *> customInfoList;\n    QList<ShortcutInfo *> speechInfoList;\n\n    QJsonArray array = QJsonDocument::fromJson(searchResult.toStdString().c_str()).array();\n    for (auto value : array) {\n        QJsonObject obj  = value.toObject();\n        int         type = obj[\"Type\"].toInt();\n        ShortcutInfo *info = new ShortcutInfo();\n        info->type         = type;\n        info->accels       = obj[\"Accels\"].toArray().first().toString();\n        info->name    = obj[\"Name\"].toString();\n        info->id      = obj[\"Id\"].toString();\n        info->command = obj[\"Exec\"].toString();\n\n        if (type != MEDIAKEY) {\n            if (systemFilter.contains(info->id)) {\n                systemInfoList << info;\n                continue;\n            }\n            if (windowFilter.contains(info->id)) {\n                windowInfoList << info;\n                continue;\n            }\n            if (workspaceFilter.contains(info->id)) {\n                workspaceInfoList << info;\n                continue;\n            }\n            if (assistiveToolsFilter.contains(info->id)) {\n                speechInfoList << info;\n                continue;\n            }\n\n            if (type == 1) {\n                customInfoList << info;\n            }else{\n                delete info;\n                info = nullptr;\n            }\n\n        } else {\n            qDebug() << \"not search is:\" << info->name;\n            delete info;\n            info = nullptr;\n        }\n    }\n\n    std::sort(systemInfoList.begin(), systemInfoList.end(), [ = ](ShortcutInfo *s1, ShortcutInfo *s2) {\n        return systemFilter.indexOf(s1->id) < systemFilter.indexOf(s2->id);\n    });\n    std::sort(windowInfoList.begin(), windowInfoList.end(), [ = ](ShortcutInfo *s1, ShortcutInfo *s2) {\n        return windowFilter.indexOf(s1->id) < windowFilter.indexOf(s2->id);\n    });\n    std::sort(workspaceInfoList.begin(), workspaceInfoList.end(), [ = ](ShortcutInfo *s1, ShortcutInfo *s2) {\n        return workspaceFilter.indexOf(s1->id) < workspaceFilter.indexOf(s2->id);\n    });\n    m_searchList.append(systemInfoList);\n    m_searchList.append(windowInfoList);\n    m_searchList.append(workspaceInfoList);\n    m_searchList.append(speechInfoList);\n    m_searchList.append(customInfoList);\n    int i = 0;\n    for (auto search : m_searchList) {\n        qDebug() << \"search\" << ++i << \" is: \" << search->name;\n    }\n\n    Q_EMIT searchFinished(m_searchList);\n}\n\nbool ShortcutModel::searchResultContains(const QString &id)\n{\n    auto res = std::find_if(m_searchList.begin(), m_searchList.end(), [ = ] (const ShortcutInfo *info)->bool{\n        return info->id == id;\n    });\n\n    return res != m_infos.end();\n}\n\nQStringList ShortcutModel::getSystemShortcutNames() const\n{\n    QStringList names;\n    \n    // 合并所有系统相关的快捷键列表\n    QList<QList<ShortcutInfo *>> systemLists = {\n        m_systemInfos,\n        m_windowInfos, \n        m_workspaceInfos,\n        m_assistiveToolsInfos\n    };\n    \n    for (const auto &list : systemLists) {\n        for (const auto *info : list) {\n            if (info && !info->name.trimmed().isEmpty()) {\n                names.append(info->name.trimmed());\n            }\n        }\n    }\n    \n    return names;\n}\n\nbool ShortcutModel::containsSystemShortcutName(const QString &name) const\n{\n    // 处理边界情况\n    if (name.trimmed().isEmpty()) {\n        return false;\n    }\n    \n    // 使用成员变量缓存提高查找效率\n    if (m_systemNamesCache.isEmpty()) {\n        // 构建缓存\n        const QStringList systemNames = getSystemShortcutNames();\n        m_systemNamesCache = QSet<QString>(systemNames.begin(), systemNames.end());\n    }\n    \n    return m_systemNamesCache.contains(name.trimmed());\n}\n\nvoid ShortcutModel::invalidateSystemShortcutNamesCache() const\n{\n    // 清空缓存，强制下次访问时重新构建\n    m_systemNamesCache.clear();\n}\n\nShortcutListModel::ShortcutListModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n\n}\n\nvoid ShortcutListModel::setSouceModel(ShortcutModel *model)\n{\n    if (m_model == model)\n        return;\n    m_model = model;\n}\n\nShortcutModel *ShortcutListModel::souceModel()\n{\n    return m_model;\n}\n\nvoid ShortcutListModel::reset()\n{\n    beginResetModel();\n    endResetModel();\n}\n\nvoid ShortcutListModel::onUpdateShortcut(ShortcutInfo *info)\n{\n    if (!m_model || !info)\n        return;\n\n    int row = m_model->indexOfShortcut(info);\n    if (row >= 0)\n    {\n        QModelIndex modelIndex = index(row);\n        Q_EMIT dataChanged(modelIndex, modelIndex, {Qt::DisplayRole, KeySequenceRole});\n    }\n}\n\nint ShortcutListModel::rowCount(const QModelIndex &) const\n{\n    if (!m_model)\n        return 0;\n\n    return m_model->count();\n}\n\nQVariant ShortcutListModel::data(const QModelIndex &index, int role) const\n{\n    if (!index.isValid() || index.row() >= m_model->count())\n        return QVariant();\n\n    int corners = NoneCorner;\n    ShortcutInfo *info = m_model->shortcutAt(index.row(), &corners);\n    if (!info)\n        return QVariant();\n\n    auto displayKeys = ShortcutModel::formatKeys(info->accels);\n\n    switch (role) {\n    case Qt::DisplayRole:\n        return info->name;\n    case SearchedTextRole:\n        return info->name + info->pinyin + FieldSeparator + displayKeys.join(FieldSeparator);\n    case IdRole:\n        return info->id;\n    case TypeRole:\n        return info->type;\n    case KeySequenceRole:\n        return displayKeys;\n    case CommandRole:\n        return info->command;\n    case AccelsRole:\n        return info->accels;\n    case SectionNameRole:\n        return info->sectionName;\n    case CornersRole:\n        return corners;\n    case IsCustomRole:\n        return info->type == ShortcutModel::Custom;\n    default:\n        break;\n    }\n\n    return QVariant();\n}\n\nQHash<int, QByteArray> ShortcutListModel::roleNames() const\n{\n    QHash<int, QByteArray> names = QAbstractListModel::roleNames();\n    names[SearchedTextRole] = \"searchedText\";\n    names[IdRole] = \"id\";\n    names[TypeRole] = \"type\";\n    names[KeySequenceRole] = \"keySequence\";\n    names[CommandRole] = \"command\";\n    names[SectionNameRole] = \"section\";\n    names[AccelsRole] = \"accels\";\n    names[CornersRole] = \"corners\";\n    names[IsCustomRole] = \"isCustom\";\n\n    return names;\n}\n"
  },
  {
    "path": "src/plugin-keyboard/operation/shortcutmodel.h",
    "content": "// SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef SHORTCUTMODEL_H\n#define SHORTCUTMODEL_H\n\n#define MEDIAKEY 2\n\n#include <QAbstractListModel>\n#include <QObject>\n#include <QSet>\n#include <QSortFilterProxyModel>\n\nnamespace dccV25 {\n\nclass ShortcutItem;\n\nstruct ShortcutInfo\n{\n    QString accels;\n    QString id;\n    QString name;\n    QString command;\n    int type;\n    ShortcutInfo *replace = nullptr;\n    ShortcutItem *item = nullptr;\n    QString sectionName;\n    QString pinyin;\n    int index = 0;\n\n    ShortcutInfo()\n        : type(0)\n        , replace(nullptr)\n        , item(nullptr)\n    {\n    }\n\n    bool operator==(const ShortcutInfo &info) const { return id == info.id && type == info.type; }\n\n    QString toString() { return name + accels + command + \"_\" + id + \"_\" + QString::number(type); }\n};\n\ntypedef QList<ShortcutInfo> ShortcutInfoList;\n\nclass ShortcutModel : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit ShortcutModel(QObject *parent = nullptr);\n    ~ShortcutModel();\n\n    enum InfoType {\n        System,\n        Custom,\n        Media,\n        Window,\n        Workspace,\n        AssistiveTools,\n    };\n\n    QList<ShortcutInfo *> systemInfo() const;\n    QList<ShortcutInfo *> windowInfo() const;\n    QList<ShortcutInfo *> workspaceInfo() const;\n    QList<ShortcutInfo *> assistiveToolsInfo() const;\n    QList<ShortcutInfo *> customInfo() const;\n    QList<ShortcutInfo *> infos() const;\n\n    inline int count()\n    {\n        int c = m_systemInfos.count() + m_windowInfos.count() + m_workspaceInfos.count()\n                + m_assistiveToolsInfos.count() + m_customInfos.count();\n        return c;\n    }\n\n    ShortcutInfo *shortcutAt(int index, int *corners = nullptr);\n\n    void delInfo(ShortcutInfo *info);\n\n    ShortcutInfo *currentInfo() const;\n    void setCurrentInfo(ShortcutInfo *currentInfo);\n\n    ShortcutInfo *findInfoIf(std::function<bool(ShortcutInfo *)> cb);\n    ShortcutInfo *getInfo(const QString &shortcut);\n\n    void setSearchResult(const QString &searchResult);\n    bool searchResultContains(const QString &id);\n    bool getWindowSwitch();\n\n    // 新增：获取所有系统快捷键名称列表\n    QStringList getSystemShortcutNames() const;\n\n    // 新增：检查指定名称是否在系统快捷键中存在\n    bool containsSystemShortcutName(const QString &name) const;\n\n    static QStringList formatKeys(const QString &shortcut);\n    int indexOfShortcut(ShortcutInfo *info);\n\nQ_SIGNALS:\n    void listChanged(QList<ShortcutInfo *>, InfoType);\n    void addCustomInfo(ShortcutInfo *info);\n    void delCustomInfo(ShortcutInfo *info);\n    void shortcutChanged(ShortcutInfo *info);\n    void keyEvent(bool press, const QString &shortcut);\n    void searchFinished(const QList<ShortcutInfo *> searchResult);\n    void windowSwitchChanged(bool value);\n\npublic Q_SLOTS:\n    void onParseInfo(const QString &info);\n    void onCustomInfo(const QString &json);\n    void onKeyBindingChanged(const QString &value);\n    void onWindowSwitchChanged(bool value);\n\nprivate:\n    // 清理系统快捷键名称缓存\n    void invalidateSystemShortcutNamesCache() const;\n    QString m_info;\n    QList<ShortcutInfo *> m_infos;\n    QList<ShortcutInfo *> m_systemInfos;\n    QList<ShortcutInfo *> m_windowInfos;\n    QList<ShortcutInfo *> m_workspaceInfos;\n    QList<ShortcutInfo *> m_assistiveToolsInfos;\n    QList<ShortcutInfo *> m_customInfos;\n    QList<ShortcutInfo *> m_searchList;\n    QList<ShortcutInfo *> m_windowSwitchStateInfos;\n    ShortcutInfo *m_currentInfo = nullptr;\n    bool m_windowSwitchState;\n\n    // 系统快捷键名称缓存\n    mutable QSet<QString> m_systemNamesCache;\n    // dcc::display::DisplayModel m_dis;\n};\n\nclass ShortcutListModel : public QAbstractListModel\n{\n    Q_OBJECT\npublic:\n    explicit ShortcutListModel(QObject *parent = nullptr);\n\n    enum ShortcutRole {\n        SearchedTextRole = Qt::UserRole + 1,\n        IdRole,\n        TypeRole,\n        CommandRole,\n        KeySequenceRole,\n        AccelsRole,\n        SectionNameRole,\n        CornersRole,\n        IsCustomRole\n\n    };\n\n    void setSouceModel(ShortcutModel *model);\n    ShortcutModel *souceModel();\n\n    int rowCount(const QModelIndex &parent) const override;\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n    QHash<int, QByteArray> roleNames() const override;\n\npublic Q_SLOTS:\n    void reset();\n    void onUpdateShortcut(ShortcutInfo *info);\n\nprivate:\n    ShortcutModel *m_model = nullptr;\n};\n\n} // namespace dccV25\n\n#endif // SHORTCUTMODEL_H\n"
  },
  {
    "path": "src/plugin-keyboard/qml/Common.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.0\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n    DccTitleObject {\n        name: \"Common\"\n        parentName: \"KeyboardCommon\"\n        displayName: qsTr(\"Common\")\n        weight: 10\n    }\n    DccObject {\n        name: \"enableKeyboard\"\n        parentName: \"KeyboardCommon\"\n        displayName: qsTr(\"Enable Keyboard\")\n        visible: false\n        weight: 20\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Editor\n        page: D.Switch {\n            checked: dccData.keyboardEnabled\n            onCheckedChanged: {\n                dccData.keyboardEnabled = checked\n            }\n        }\n    }\n    DccObject {\n        name: \"RepeatDelay\"\n        parentName: \"KeyboardCommon\"\n        displayName: qsTr(\"Repeat delay\")\n        backgroundType: DccObject.Normal\n        weight: 30\n        visible: dccData.keyboardEnabled\n        pageType: DccObject.Item\n        page: ColumnLayout {\n            Layout.fillHeight: true\n            Label {\n                id: speedText\n                Layout.topMargin: 10\n                font: D.DTK.fontManager.t6\n                text: dccObj.displayName\n                Layout.leftMargin: 14\n            }\n            D.TipsSlider {\n                id: scrollSlider\n                readonly property var tips: [qsTr(\"Short\"), (\"\"), (\"\"), (\"\"), (\"\"), (\"\"), qsTr(\"Long\")]\n\n                property real leftTextWidth: 10\n                property real rightTextWidth: 10\n                property real dynamicLeftMargin: Math.max(10, leftTextWidth / 2)\n                property real dynamicRightMargin: Math.max(10, rightTextWidth / 2)\n\n                Layout.preferredHeight: 90\n                Layout.alignment: Qt.AlignCenter\n                Layout.leftMargin: dynamicLeftMargin\n                Layout.rightMargin: dynamicRightMargin\n                Layout.topMargin: 10\n                Layout.bottomMargin: 10\n                Layout.fillWidth: true\n\n                TextMetrics {\n                    id: leftTextMetrics\n                    font: D.DTK.fontManager.t7\n                    text: scrollSlider.tips[0]\n                    Component.onCompleted: {\n                        scrollSlider.leftTextWidth = width\n                    }\n                }\n                TextMetrics {\n                    id: rightTextMetrics\n                    font: D.DTK.fontManager.t7\n                    text: scrollSlider.tips[scrollSlider.tips.length - 1]\n                    Component.onCompleted: {\n                        scrollSlider.rightTextWidth = width\n                    }\n                }\n                tickDirection: D.TipsSlider.TickDirection.Back\n                slider.handleType: Slider.HandleType.ArrowBottom\n                slider.value: dccData.repeatDelay\n                slider.from: 1\n                slider.to: ticks.length\n                slider.live: true\n                slider.stepSize: 1\n                slider.snapMode: Slider.SnapAlways\n                ticks: [\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[0]\n                        highlight: scrollSlider.slider.value === 1\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[1]\n                        highlight: scrollSlider.slider.value === 2\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[2]\n                        highlight: scrollSlider.slider.value === 3\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[3]\n                        highlight: scrollSlider.slider.value === 4\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[4]\n                        highlight: scrollSlider.slider.value === 5\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[5]\n                        highlight: scrollSlider.slider.value === 6\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[6]\n                        highlight: scrollSlider.slider.value === 7\n                    }\n                ]\n                slider.onValueChanged: {\n                    if (dccData.repeatDelay !== slider.value)\n                        dccData.repeatDelay = slider.value\n                }\n            }\n        }\n    }\n    DccObject {\n        name: \"RepeatRateGroup\"\n        parentName: \"KeyboardCommon\"\n        weight: 40\n        visible: dccData.keyboardEnabled\n        pageType: DccObject.Item\n        page: DccGroupView {\n            height: implicitHeight + 20\n        }\n\n        DccObject {\n            name: \"RepeatRate\"\n            parentName: \"RepeatRateGroup\"\n            displayName: qsTr(\"Repeat rate\")\n            weight: 50\n            visible: dccData.keyboardEnabled\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Item\n            page: Rectangle {\n                color: \"transparent\"\n                implicitHeight: rowView.height + 20\n                RowLayout {\n                    id: rowView\n                    width: parent.width\n                    ColumnLayout {\n                        Layout.fillHeight: true\n                        Label {\n                            id: doubleClickText\n                            Layout.topMargin: 10\n                            Layout.leftMargin: 14\n                            font: D.DTK.fontManager.t6\n                            text: dccObj.displayName\n                        }\n                        D.TipsSlider {\n                            id: repeatRateSlider\n                            readonly property var tips: [qsTr(\"Slow\"), (\"\"), (\"\"), (\"\"), (\"\"), (\"\"), qsTr(\"Fast\")]\n\n                            // 动态计算左右边距\n                            property real leftTextWidth: 0\n                            property real rightTextWidth: 0\n                            property real dynamicLeftMargin: Math.max(10, leftTextWidth / 2 + 5)\n                            property real dynamicRightMargin: Math.max(10, rightTextWidth / 2 + 5)\n\n                            Layout.preferredHeight: 90\n                            Layout.alignment: Qt.AlignCenter\n                            Layout.leftMargin: dynamicLeftMargin\n                            Layout.rightMargin: dynamicRightMargin\n                            Layout.topMargin: 10\n                            Layout.bottomMargin: 10\n                            Layout.fillWidth: true\n\n                            // 测量左右端文字宽度\n                            TextMetrics {\n                                id: repeatLeftTextMetrics\n                                font: D.DTK.fontManager.t7\n                                text: repeatRateSlider.tips[0] // 最左边的文字\n                                Component.onCompleted: {\n                                    repeatRateSlider.leftTextWidth = width\n                                }\n                            }\n\n                            TextMetrics {\n                                id: repeatRightTextMetrics\n                                font: D.DTK.fontManager.t7\n                                text: repeatRateSlider.tips[repeatRateSlider.tips.length - 1] // 最右边的文字\n                                Component.onCompleted: {\n                                    repeatRateSlider.rightTextWidth = width\n                                }\n                            }\n                            tickDirection: D.TipsSlider.TickDirection.Back\n                            slider.handleType: Slider.HandleType.ArrowBottom\n                            slider.value: dccData.repeatInterval\n                            slider.from: 1\n                            slider.to: ticks.length\n                            slider.live: true\n                            slider.stepSize: 1\n                            slider.snapMode: Slider.SnapAlways\n                            ticks: [\n                                D.SliderTipItem {\n                                    text: repeatRateSlider.tips[0]\n                                    highlight: repeatRateSlider.slider.value === 1\n                                },\n                                D.SliderTipItem {\n                                    text: repeatRateSlider.tips[1]\n                                    highlight: repeatRateSlider.slider.value === 2\n                                },\n                                D.SliderTipItem {\n                                    text: repeatRateSlider.tips[2]\n                                    highlight: repeatRateSlider.slider.value === 3\n                                },\n                                D.SliderTipItem {\n                                    text: repeatRateSlider.tips[3]\n                                    highlight: repeatRateSlider.slider.value === 4\n                                },\n                                D.SliderTipItem {\n                                    text: repeatRateSlider.tips[4]\n                                    highlight: repeatRateSlider.slider.value === 5\n                                },\n                                D.SliderTipItem {\n                                    text: repeatRateSlider.tips[5]\n                                    highlight: repeatRateSlider.slider.value === 6\n                                },\n                                D.SliderTipItem {\n                                    text: repeatRateSlider.tips[6]\n                                    highlight: repeatRateSlider.slider.value === 7\n                                }\n                            ]\n                            slider.onValueChanged: {\n                                if (dccData.repeatInterval !== slider.value)\n                                    dccData.repeatInterval = slider.value\n                            }\n                        }\n                    }\n                }\n            }\n        }\n\n        DccObject {\n            name: \"EditTesting\"\n            parentName: \"RepeatRateGroup\"\n            weight: 60\n            visible: dccData.keyboardEnabled\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Item\n            page: TextField {\n                id: textField\n                placeholderText: qsTr(\"test here\")\n                background: null\n                horizontalAlignment: textMetrics.boundingRect.width > width ? Text.AlignRight : Text.AlignHCenter\n                font: D.DTK.fontManager.t8\n                onActiveFocusChanged: {\n                    if (!activeFocus) {\n                        text = \"\"\n                    }\n                }\n                // 创建文本测量器\n                TextMetrics {\n                    id: textMetrics\n                    font: textField.font // 使用与 TextField 相同的字体\n                    text: textField.text // 绑定到当前文本\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"KeypadSettings\"\n        parentName: \"KeyboardCommon\"\n        weight: 70\n        visible: dccData.keyboardEnabled\n        pageType: DccObject.Item\n        page: DccGroupView {\n            height: implicitHeight + 20\n        }\n        DccObject {\n            name: \"EnableNumLock\"\n            parentName: \"KeypadSettings\"\n            displayName: qsTr(\"Numeric Keypad\")\n            weight: 80\n            visible: dccData.keyboardEnabled\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            page: D.Switch {\n                checked: dccData.numLock\n                onCheckedChanged: {\n                    dccData.numLock = checked\n                }\n            }\n        }\n        DccObject {\n            name: \"CapsLockPrompt\"\n            parentName: \"KeypadSettings\"\n            displayName: qsTr(\"Caps lock prompt\")\n            weight: 90\n            visible: dccData.keyboardEnabled\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            page: D.Switch {\n                checked: dccData.capsLock\n                onCheckedChanged: {\n                    dccData.capsLock = checked\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-keyboard/qml/KeySequenceDisplay.qml",
    "content": "// SPDX-FileCopyrightText: 2022 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: LGPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls\nimport QtQuick.Layouts\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dtk.private 1.0 as P\nimport org.deepin.dcc 1.0\n\nControl {\n    id: control\n    property string text\n    property string placeholderText\n    property list<string> keys\n    property D.Palette backgroundColor: DS.Style.keySequenceEdit.background\n    property D.Palette placeholderTextColor: DS.Style.keySequenceEdit.placeholderText\n    property bool showEditButtons: false\n    property bool showWarnning: false\n    property int textToKeySpacing: 20// 名称文字与快捷键按钮区域的间距\n    signal requestKeys\n    signal requestEditKeys\n    signal requestDeleteKeys\n\n    background: Rectangle {\n        implicitWidth: DS.Style.keySequenceEdit.width\n        implicitHeight: DS.Style.keySequenceEdit.height\n        radius: DS.Style.control.radius\n        color: control.D.ColorSelector.backgroundColor\n    }\n\n    contentItem: RowLayout {\n        spacing: control.textToKeySpacing\n\n        Label {\n            id: textLabel\n            Layout.leftMargin: DS.Style.keySequenceEdit.margin\n            font: D.DTK.fontManager.t6\n            textFormat: Text.PlainText\n            text: control.text\n            elide: Text.ElideRight\n            horizontalAlignment: Qt.AlignLeft\n            verticalAlignment: Qt.AlignVCenter\n            Layout.fillWidth: true\n            Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter\n        }\n\n        Loader {\n            id: keyLoader\n            Layout.rightMargin: DS.Style.keySequenceEdit.margin\n            Layout.alignment: Qt.AlignVCenter\n            Layout.fillWidth: false\n            sourceComponent: (control.keys.length !== 0) ? keyComponent : inputComponent\n\n            MouseArea {\n                anchors.fill: parent\n                onClicked: (mouse) => {\n                    if (control.showEditButtons && mouse.x >= editButton.x) {\n                        return\n                    }\n                    control.requestKeys()\n                }\n            }\n        }\n    }\n\n    Component {\n        id: inputComponent\n        Label {\n            text: control.placeholderText\n            color: control.D.ColorSelector.placeholderTextColor\n            font: D.DTK.fontManager.t7\n            horizontalAlignment: Qt.AlignRight\n            verticalAlignment: Qt.AlignVCenter\n        }\n    }\n\n    Component {\n        id: keyComponent\n        RowLayout {\n            spacing: DS.Style.keySequenceEdit.margin\n            D.IconButton {\n                id: warnningBtn\n                flat: true\n                background: null\n                visible: showWarnning\n                icon.name: \"icon_info\"\n                icon.width: 24\n                icon.height: 24\n            }\n\n            Repeater {\n                model: control.keys\n                P.KeySequenceLabel {\n                    Layout.alignment: Qt.AlignRight\n                    text: modelData\n                }\n            }\n\n            RowLayout {\n                spacing: 0\n                Layout.alignment: Qt.AlignRight\n                D.IconButton {\n                    id: editButton\n                    visible: control.showEditButtons\n                    focusPolicy: Qt.NoFocus\n                    hoverEnabled: true\n                    icon.name: \"keyboard_edit\"\n                    icon.width: 16\n                    icon.height: 16\n                    implicitWidth: 36\n                    implicitHeight: 36\n                    Layout.alignment: Qt.AlignVCenter\n                    background: Rectangle {\n                       anchors.fill: parent\n                       property D.Palette pressedColor: D.Palette {\n                           normal: Qt.rgba(0, 0, 0, 0.2)\n                           normalDark: Qt.rgba(1, 1, 1, 0.25)\n                       }\n                       property D.Palette hoveredColor: D.Palette {\n                           normal: Qt.rgba(0, 0, 0, 0.1)\n                           normalDark: Qt.rgba(1, 1, 1, 0.1)\n                       }\n                       radius: DS.Style.control.radius\n                       color: parent.pressed ? D.ColorSelector.pressedColor : (parent.hovered ? D.ColorSelector.hoveredColor : \"transparent\")\n                       border {\n                           color: parent.palette.highlight\n                           width: parent.visualFocus ? DS.Style.control.focusBorderWidth : 0\n                       }\n                    }\n                    onClicked: {\n                        control.requestEditKeys()\n                    }\n                }\n                D.IconButton {\n                    id: removeButton\n                    visible: control.showEditButtons\n                    focusPolicy: Qt.NoFocus\n                    hoverEnabled: true\n                    icon.name: \"keyboard_delete\"\n                    icon.width: 16\n                    icon.height: 16\n                    implicitWidth: 36\n                    implicitHeight: 36\n                    background: Rectangle {\n                       anchors.fill: parent\n                       property D.Palette pressedColor: D.Palette {\n                           normal: Qt.rgba(0, 0, 0, 0.2)\n                           normalDark: Qt.rgba(1, 1, 1, 0.25)\n                       }\n                       property D.Palette hoveredColor: D.Palette {\n                           normal: Qt.rgba(0, 0, 0, 0.1)\n                           normalDark: Qt.rgba(1, 1, 1, 0.1)\n                       }\n                       radius: DS.Style.control.radius\n                       color: parent.pressed ? D.ColorSelector.pressedColor : (parent.hovered ? D.ColorSelector.hoveredColor : \"transparent\")\n                       border {\n                           color: parent.palette.highlight\n                           width: parent.visualFocus ? DS.Style.control.focusBorderWidth : 0\n                       }\n                    }\n                    onClicked: {\n                        control.requestDeleteKeys()\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-keyboard/qml/Keyboard.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: keyboard\n    name: \"keyboard\"\n    parentName: \"device\"\n    displayName: qsTr(\"Keyboard\")\n    description: qsTr(\"General Settings, input method, shortcuts\")\n    icon: \"device_keyboard\"\n    weight: 40\n    visible: false\n    DccDBusInterface {\n        property var numLockState\n        service: \"org.deepin.dde.Keybinding1\"\n        path: \"/org/deepin/dde/Keybinding1\"\n        inter: \"org.deepin.dde.Keybinding1\"\n        connection: DccDBusInterface.SessionBus\n        onNumLockStateChanged: keyboard.visible = true\n    }\n}\n"
  },
  {
    "path": "src/plugin-keyboard/qml/KeyboardMain.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.3\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n    DccObject {\n        name: \"KeyboardCommon\"\n        parentName: \"keyboard\"\n        displayName: qsTr(\"Common\")\n        weight: 10\n        pageType: DccObject.Item\n        page: DccGroupView {\n            spacing: 5\n            isGroup: false\n            height: implicitHeight + 20\n        }\n        Common {}\n    }\n    // 101~299 for InputMethod\n\n    Shortcuts {\n        weight: 300\n    }\n}\n"
  },
  {
    "path": "src/plugin-keyboard/qml/ShortcutSettingDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls\nimport QtQuick.Window\nimport QtQuick.Dialogs\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\n\nD.DialogWindow {\n    id: ddialog\n    width: 400\n    minimumWidth: 400\n    minimumHeight: 360\n    maximumWidth: minimumWidth\n    visible: true\n    icon: \"preferences-system\"\n    modality: Qt.WindowModal\n    property string keyId\n    property alias keyName: nameEdit.text\n    property alias cmdName: commandEdit.text\n    property alias keySequence: edit.keys\n    property alias accels: edit.accels\n    property alias conflitedText: conflictText.text\n    property string saveKeyName: \"\"\n    property string saveCmdName: \"\"\n    property string saveAccels: \"\"\n    property var saveKeys: [qsTr(\"None\")]\n    property bool nameExists: false\n\n    ColumnLayout {\n        spacing: 10\n        width: parent.width\n\n        Component.onCompleted: {\n            // 初始化时检查名称是否存在\n            if (nameEdit.text.trim().length > 0) {\n                ddialog.nameExists = dccData.isShortcutNameExists(nameEdit.text.trim(), ddialog.keyId);\n            }\n        }\n        Label {\n            Layout.fillWidth: true\n            Layout.alignment: Qt.AlignHCenter\n            horizontalAlignment: Text.AlignHCenter\n            wrapMode: Text.WordWrap\n            font {\n                family: D.DTK.fontManager.t5.family\n                pixelSize: D.DTK.fontManager.t5.pixelSize\n                weight: Font.Bold\n            }\n            text: ddialog.keyId.length > 0 ? qsTr(\"Change custom shortcut\") : qsTr(\"Add custom shortcut\")\n        }\n\n        Label {\n            Layout.alignment: Qt.AlignLeft\n            Layout.leftMargin: 4\n            font: D.DTK.fontManager.t6\n            text: qsTr(\"Name:\")\n        }\n\n        D.LineEdit {\n            id: nameEdit\n            Layout.rightMargin: 20\n            Layout.preferredWidth: parent.width\n            font: D.DTK.fontManager.t6\n            placeholderText: qsTr(\"Required\")\n            showAlert: ddialog.nameExists\n            alertText: qsTr(\"The shortcut name is already in use. Choose a different name.\")\n            onTextChanged: {\n                // 检查名称是否已存在（包括系统和自定义快捷键）\n                if (text.trim().length > 0) {\n                    ddialog.nameExists = dccData.isShortcutNameExists(text.trim(), ddialog.keyId);\n                } else {\n                    ddialog.nameExists = false;\n                }\n            }\n        }\n\n        Label {\n            Layout.alignment: Qt.AlignLeft\n            Layout.leftMargin: 4\n            font: D.DTK.fontManager.t6\n            text: qsTr(\"Command:\")\n        }\n\n        D.LineEdit {\n            id: commandEdit\n            Layout.rightMargin: 20\n            Layout.preferredWidth: parent.width\n            font: D.DTK.fontManager.t6\n            clearButton.visible: false\n            placeholderText: qsTr(\"Required\")\n            D.ActionButton {\n                anchors {\n                    right: commandEdit.right\n                    rightMargin: 10\n                    verticalCenter: parent.verticalCenter\n                }\n                icon {\n                    name: \"keyboard_add_file\"\n                    height: 20\n                    width: 20\n                }\n                onClicked: {\n                    keyFileDialog.open();\n                }\n            }\n            FileDialog {\n                id: keyFileDialog\n                title: \"Please choose a file\"\n                onAccepted: {\n                    var path = keyFileDialog.selectedFile.toString();\n                    // remove prefixed \"file:///\"\n                    path = path.replace(/^(file:\\/{3})/, \"/\");\n                    commandEdit.text = path;\n                }\n            }\n        }\n\n        KeySequenceDisplay {\n            id: edit\n            property bool showAlertColor: false\n            property string accels\n            text: qsTr(\"Shortcut\")\n            keys: [qsTr(\"None\")]\n            Layout.topMargin: 10\n            Layout.rightMargin: 20\n            Layout.preferredWidth: parent.width\n            placeholderText: qsTr(\"please enter a shortcut key\")\n            background.visible: edit.keys.length === 0 || conflictText.visible || showAlertColor\n            backgroundColor: {\n                if (edit.showAlertColor || conflictText.text.length > 0)\n                    return DS.Style.edit.alertBackground;\n                else\n                    return DS.Style.keySequenceEdit.background;\n            }\n            onRequestKeys: {\n                keys = [];\n                dccData.updateKey(ddialog.keyId, 1);\n            }\n        }\n\n        DccLabel {\n            id: conflictText\n            Layout.rightMargin: 20\n            Layout.fillWidth: true\n            wrapMode: Text.WordWrap\n            clip: true\n            font: D.DTK.fontManager.t6\n            visible: text.length > 0\n        }\n\n        RowLayout {\n            Layout.alignment: Qt.AlignBottom | Qt.AlignHCenter\n            Layout.topMargin: 0\n            spacing: 10\n            Button {\n                Layout.bottomMargin: 14\n                Layout.fillWidth: true\n                font: D.DTK.fontManager.t6\n                Layout.leftMargin: 4\n                text: qsTr(\"Cancel\")\n                onClicked: {\n                    if (ddialog.keyId.length > 0) {\n                        dccData.modifyCustomShortcut(ddialog.keyId, ddialog.saveKeyName, ddialog.saveCmdName, ddialog.saveAccels);\n                    }\n                    ddialog.close();\n                }\n            }\n            Button {\n                Layout.bottomMargin: 14\n                Layout.fillWidth: true\n                Layout.rightMargin: 24\n                font: D.DTK.fontManager.t6\n                text: ddialog.keyId.length > 0 ? qsTr(\"Save\") : qsTr(\"Add\")\n                enabled: commandEdit.text.length > 0 && nameEdit.text.length > 0 && !ddialog.nameExists\n                onClicked: {\n                    if (edit.keys[0] === qsTr(\"None\")) {\n                        edit.showAlertColor = true;\n                        return;\n                    }\n\n                    if (ddialog.keyId.length > 0)\n                        dccData.modifyCustomShortcut(ddialog.keyId, nameEdit.text, commandEdit.text, edit.accels);\n                    else\n                        dccData.addCustomShortcut(nameEdit.text, commandEdit.text, edit.accels);\n\n                    ddialog.close();\n                }\n            }\n        }\n\n        Connections {\n            target: dccData\n            function onRequestRestore() {\n                edit.keys = ddialog.saveKeys;\n                conflictText.text = \"\";\n                // 重置名称验证状态\n                if (nameEdit.text.trim().length > 0) {\n                    ddialog.nameExists = dccData.isShortcutNameExists(nameEdit.text.trim(), ddialog.keyId);\n                } else {\n                    ddialog.nameExists = false;\n                }\n            }\n            function onRequestClear() {\n                onRequestRestore();\n            }\n            function onKeyConflicted(oldAccels, newAccels) {\n                edit.accels = newAccels; // 冲突也可以覆盖\n                var actionText = ddialog.keyId.length > 0 ? qsTr(\"click Save to make this shortcut key effective\") : qsTr(\"click Add to make this shortcut key effective\");\n                conflictText.text = dccData.conflictText + \", \" + actionText;\n            }\n            function onKeyDone(accels) {\n                edit.keys = dccData.formatKeys(accels);\n                edit.accels = accels;\n                conflictText.text = \"\";\n            }\n            function onKeyEvent(accels) {\n                edit.showAlertColor = false;\n                edit.keys = dccData.formatKeys(accels);\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-keyboard/qml/Shortcuts.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nDccObject {\n    id: shortcutSettingsView\n    name: \"shortcutSettingsView\"\n    parentName: \"keyboard\"\n    displayName: qsTr(\"Shortcuts\")\n    description: qsTr(\"System shortcut, custom shortcut\")\n    icon: \"keyboard_fn\"\n    weight: parent.weight // 300\n    property int searchEditWidth: 600\n    property var viewScrollbar: ScrollBar {\n        width: 10\n    }\n\n    PropertyAnimation {\n        id: scrollbarAnimation\n        target: viewScrollbar\n        property: \"opacity\"\n        duration: 200\n        from: 0\n        to: 1\n        onFinished: viewScrollbar.increase()\n    }\n\n    page: DccSettingsView {\n        ScrollBar.vertical: viewScrollbar\n    }\n\n    DccObject {\n        id: shortcutSettingsBody\n        property bool isEditing: false\n        property string conflictAccels\n        name: \"shortcutSettingsBody\"\n        parentName: \"shortcutSettingsView\"\n        weight: 30\n        pageType: DccObject.Item\n        signal requestRestore\n\n        page: ColumnLayout {\n            spacing: 10\n            Timer {\n                id: timer\n                interval: 100\n                onTriggered: {\n                    shortcutView.model.setFilterFixedString(searchEdit.text);\n                }\n            }\n\n            D.SearchEdit {\n                id: searchEdit\n                Layout.topMargin: 10\n                Layout.alignment: Qt.AlignHCenter\n                Layout.fillWidth: true\n                placeholder: qsTr(\"Search shortcuts\")\n                onTextChanged: {\n                    timer.start()\n                }\n                onEditingFinished: {\n                    timer.start()\n                }\n                Component.onCompleted: {\n                    // clear\n                    shortcutView.model.setFilterWildcard(\"\");\n                    shortcutSettingsView.searchEditWidth = Qt.binding(function() { return width; });\n                }\n            }\n\n            ListView {\n                id: shortcutView\n                property Item editItem\n                property Item conflictText\n                clip: true\n                interactive: false // 外层有滚动了，listview 就别滚了\n                implicitHeight: contentHeight\n                implicitWidth: 600\n                Layout.fillWidth: true\n\n                model: dccData.shortcutSearchModel()\n\n                section.property: \"section\"\n                section.criteria: ViewSection.FullString\n                section.delegate: RowLayout {\n                    width: ListView.view.width\n                    height: childrenRect.height\n\n                    required property string section\n\n                    Label {\n                        text: parent.section\n                        font.bold: true\n                        font.pointSize: 13\n                        leftPadding: 20\n                        bottomPadding: 10\n                        topPadding: 16\n                    }\n\n                    D.Button {\n                        id: button\n                        focusPolicy: Qt.NoFocus\n                        visible: parent.section === qsTranslate(\"dccV25::ShortcutModel\", \"Custom\")\n                        checkable: true\n                        checked: shortcutSettingsBody.isEditing\n                        Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                        Layout.rightMargin: 10\n                        text: shortcutSettingsBody.isEditing ? qsTr(\"done\") : qsTr(\"edit\")\n                        font: D.DTK.fontManager.t8\n                        background: null\n                        textColor: D.Palette {\n                            normal {\n                                common: D.DTK.makeColor(D.Color.Highlight)\n                                crystal: D.DTK.makeColor(D.Color.Highlight)\n                            }\n                        }\n                        onCheckedChanged: {\n                            shortcutSettingsBody.isEditing = button.checked\n\n                            if (!shortcutView.editItem)\n                                return\n                            shortcutView.editItem.keys = shortcutView.editItem.keySequence\n                            shortcutView.editItem.focus = false\n                            shortcutView.conflictText.visible = false\n                            shortcutView.editItem = null\n                            shortcutView.conflictText = null\n                        }\n                    }\n                }\n\n                delegate: ItemDelegate {\n                    id: editorDelegate\n                    checkable: false\n                    implicitWidth: ListView.view.width\n                    topInset: 0\n                    bottomInset: 0\n                    backgroundVisible: true\n                    Layout.fillWidth: true\n                    corners: model.corners\n\n                    background: DccItemBackground {\n                        id: background\n                        separatorVisible: true\n                        backgroundType: DccObject.Normal\n                    }\n\n                    contentItem: ColumnLayout {\n                        KeySequenceDisplay {\n                            id: edit\n                            text: model.display\n                            keys: model.keySequence\n                            placeholderText: qsTr(\"please enter a new shortcut key\")\n                            background.visible: conflictText.visible\n                            backgroundColor: conflictText.visible ? DS.Style.edit.alertBackground : DS.Style.keySequenceEdit.background\n                            Layout.alignment: Qt.AlignRight\n                            Layout.bottomMargin:  conflictText.visible ? 8 : 0\n                            Layout.fillWidth: true\n                            showEditButtons: shortcutSettingsBody.isEditing && model.isCustom\n                            showWarnning: model.accels.length > 0 && shortcutSettingsBody.conflictAccels === model.accels\n\n                            Connections{\n                                target: model\n                                function onKeySequenceChanged() {\n                                    edit.keys= model.keySequence\n                                }\n                            }\n\n                            onRequestKeys: {\n                                if (shortcutView.editItem) {\n                                    shortcutView.editItem.restore()\n                                    // return\n                                }\n\n                                edit.keys = \"\"\n                                dccData.updateKey(model.id, model.type)\n                                shortcutView.editItem = edit\n                                shortcutView.conflictText = conflictText\n                                shortcutSettingsBody.isEditing = false\n                            }\n                            onRequestEditKeys: {\n                                dialogloader.active = true\n                            }\n                            onRequestDeleteKeys: {\n                                console.log(\"onRequestDeleteKeys\", model.id)\n                                dccData.deleteCustomShortcut(model.id)\n                            }\n\n                            function modifyShortcut(accels) {\n                                console.log(\"modifyShortcut\", model.id, accels, model.type)\n                                if (accels.length > 0)\n                                    dccData.modifyShortcut(model.id, accels, model.type)\n                            }\n\n                            function clearShortcut() {\n                                dccData.clearShortcut(model.id, model.type)\n\n                                focus = false\n                                keys = dccData.formatKeys(\"\")\n                                conflictText.visible = false\n\n                                shortcutSettingsBody.conflictAccels = \"\"\n                                shortcutView.editItem = null\n                                shortcutView.conflictText = null\n                            }\n\n                            function restore() {\n                                edit.keys = model.keySequence\n                                conflictText.visible = false\n\n                                shortcutSettingsBody.conflictAccels = \"\"\n                                shortcutView.editItem = null\n                                shortcutView.conflictText = null\n                            }\n\n                            Loader {\n                                id: dialogloader\n                                active: false\n                                sourceComponent: ShortcutSettingDialog {\n                                    onClosing: {\n                                        dialogloader.active = false\n\n                                        conflictText.visible = false\n                                        shortcutSettingsBody.conflictAccels = \"\"\n                                        shortcutView.editItem = null\n                                        shortcutView.conflictText = null\n                                    }\n                                }\n                                onLoaded: {\n                                    edit.restore()\n\n                                    item.keyId = model.id\n                                    item.keyName = model.display\n                                    item.cmdName = model.command\n                                    item.keySequence = model.keySequence\n                                    if (model.keySequence.length > 0) {\n                                        item.saveKeys = model.keySequence\n                                    }\n                                    item.accels = model.accels\n                                    item.saveAccels = item.accels\n                                    item.saveKeyName = item.keyName\n                                    item.saveCmdName = item.cmdName\n\n                                    item.show()\n                                }\n                            }\n                        }\n\n                        Item {\n                            id: conflictText\n                            visible: false\n                            implicitHeight: 20\n                            implicitWidth: row.implicitWidth\n                            Layout.alignment: Qt.AlignRight\n                            Layout.rightMargin: 20\n                            Layout.fillWidth: true\n\n                            onVisibleChanged : {\n                                if (visible && model.index === (shortcutView.count - 1)) {\n                                    scrollbarAnimation.start()\n                                }\n                            }\n\n                            RowLayout {\n                                id: row\n                                width: parent.width\n                                spacing: 3\n                                Label {\n                                    id: conflictTextLabel\n                                    text: dccData.conflictText + \",\"\n                                    elide: Text.ElideLeft\n                                    Layout.fillWidth: true\n                                    horizontalAlignment: Text.AlignRight\n                                    HoverHandler { id: conflictHandler }\n                                    ToolTip.visible: conflictHandler.hovered\n                                    ToolTip.text: conflictTextLabel.text + clickLabel.text + \" \" + cancelLabel.text + \" \" + orLabel.text + \" \" + replaceLabel.text\n                                    ToolTip.delay: 500\n                                    ToolTip.timeout: 4000\n                                }\n                                Label {\n                                    id: clickLabel\n                                    text: qsTr(\"Click\")\n                                }\n                                Label {\n                                    id: cancelLabel\n                                    text: qsTr(\"Cancel\")\n                                    color: palette.highlight\n                                    MouseArea {\n                                        anchors.fill: parent\n                                        onClicked: {\n                                            edit.restore()\n                                        }\n                                    }\n                                }\n                                Label {\n                                    id: orLabel\n                                    text: qsTr(\"or\")\n                                }\n                                Label {\n                                    id: replaceLabel\n                                    text: qsTr(\"Replace\")\n                                    color: palette.highlight\n                                    MouseArea {\n                                        anchors.fill: parent\n                                        onClicked: {\n                                            edit.modifyShortcut(shortcutSettingsBody.conflictAccels)\n                                            shortcutSettingsBody.conflictAccels = \"\"\n                                        }\n                                    }\n                                }\n                            }\n                        }\n\n                    }\n                }\n\n                function restoreShortcutView() {\n                    if (!shortcutView.editItem)\n                        return\n\n                    shortcutView.editItem.restore()\n                }\n\n                Connections {\n                    target: shortcutSettingsBody\n                    function onRequestRestore() {\n                        shortcutView.restoreShortcutView()\n                    }\n                }\n                Connections {\n                    target: dccData\n                    function onRequestRestore() {\n                        shortcutView.restoreShortcutView()\n                    }\n                    function onRequestClear() {\n                        shortcutView.editItem.clearShortcut()\n                    }\n                    function onKeyConflicted(oldAccels, newAccels) {\n                        if (shortcutView.conflictText)\n                            shortcutView.conflictText.visible = true\n\n                        shortcutSettingsBody.conflictAccels = newAccels\n                    }\n                    function onKeyDone(accels) {\n                        if (!shortcutView.editItem)\n                            return\n                        shortcutView.editItem.focus = false\n                        shortcutView.editItem.keys = dccData.formatKeys(accels)\n                        shortcutView.conflictText.visible = false\n\n                        shortcutView.editItem.modifyShortcut(accels)\n\n                        shortcutView.editItem = null\n                        shortcutView.conflictText = null\n\n                    }\n                    function onKeyEvent(accels) {\n                        if (!shortcutView.editItem)\n                            return\n\n                        shortcutView.editItem.focus = false\n                        shortcutView.editItem.keys = dccData.formatKeys(accels)\n                    }\n                }\n            }\n        }\n    }\n\n    DccObject {\n        id: bottomAreaFoot\n        name: \"bottomAreaFoot\"\n        parentName: \"shortcutSettingsView\"\n        weight: 40\n        pageType: DccObject.Item\n        property int restoreButtonWidth: DS.Style.button.width\n\n        DccObject {\n            name: \"bottomAreaRestoreButton\"\n            parentName: \"bottomAreaFoot\"\n            pageType: DccObject.Item\n            page: Button {\n                id: restoreButton\n                text: qsTr(\"Restore default\")\n                implicitWidth: {\n                    const totalPadding = leftPadding + rightPadding\n                    const contentWidth = implicitContentWidth + totalPadding\n                    const minWidth = DS.Style.button.width\n                    const maxWidth = shortcutSettingsView.searchEditWidth / 2 - totalPadding\n                    return Math.min(Math.max(contentWidth, minWidth), maxWidth)\n                }\n                \n                Text {\n                    id: restoreHiddenText\n                    text: restoreButton.text\n                    font: restoreButton.font\n                    visible: false\n                }\n                \n                ToolTip.visible: {\n                    const contentWidth = restoreHiddenText.width + leftPadding + rightPadding\n                    return width < contentWidth && hovered\n                }\n                ToolTip.text: text\n                \n                onClicked: {\n                    shortcutSettingsBody.isEditing = false\n                    shortcutSettingsBody.requestRestore()\n\n                    dccData.resetAllShortcuts()\n                }\n                Component.onCompleted: {\n                    bottomAreaFoot.restoreButtonWidth = Qt.binding(function() { return implicitWidth; })\n                }\n            }\n        }\n\n        DccObject {\n            name: \"bottomAreaSpacer\"\n            parentName: \"bottomAreaFoot\"\n            pageType: DccObject.Item\n            page: Item {\n                Layout.fillWidth: true\n            }\n        }\n\n        DccObject {\n            name: \"bottomAreaAddButton\"\n            parentName: \"bottomAreaFoot\"\n            pageType: DccObject.Item\n            page: Button {\n                id: addButton\n                property bool needShowDialog: false\n                text: qsTr(\"Add custom shortcut\")\n                implicitWidth: {\n                    const totalPadding = leftPadding + rightPadding\n                    const contentWidth = implicitContentWidth + totalPadding\n                    const minWidth = DS.Style.button.width\n                    const maxWidth = shortcutSettingsView.searchEditWidth - bottomAreaFoot.restoreButtonWidth - 2*totalPadding - DS.Style.control.spacing\n                    return Math.min(Math.max(contentWidth, minWidth), maxWidth)\n                }\n\n                Text {\n                    id: hiddenText\n                    text: addButton.text\n                    font: addButton.font\n                    visible: false\n                }\n                ToolTip.visible: {\n                    const contentWidth = hiddenText.width + leftPadding + rightPadding\n                    return width < contentWidth && hovered\n                }\n                ToolTip.text: text\n\n                Loader {\n                    id: loader\n                    active: addButton.needShowDialog\n                    sourceComponent: ShortcutSettingDialog {\n                        id: shortcutSettingDialog\n                        onClosing: {\n                            addButton.needShowDialog = false\n                            shortcutSettingsBody.conflictAccels = \"\"\n                        }\n                    }\n                    onLoaded: {\n                        item.show()\n                    }\n                }\n\n                onClicked: {\n                    shortcutSettingsBody.isEditing = false\n                    shortcutSettingsBody.requestRestore()\n\n                    addButton.needShowDialog = true\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-keyboard/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-mouse/CMakeLists.txt",
    "content": "if (BUILD_PLUGIN)\n\n    set(Mouse_Name mouse)\n    find_package(Qt6 REQUIRED COMPONENTS WaylandClient)\n    if(Qt6_VERSION VERSION_GREATER_EQUAL 6.10)\n        find_package(Qt6 COMPONENTS WaylandClientPrivate REQUIRED)\n    endif()\n\n    if (Enable_TreelandSupport)\n    find_package(TreelandProtocols REQUIRED)\n    endif()\n\n    file(GLOB_RECURSE mouse_SRCS\n        \"operation/*.cpp\"\n        \"operation/qrc/mouse.qrc\"\n    )\n    file(GLOB_RECURSE mouse_qml_SRCS\n        \"qml/*.qml\"\n    )\n    # pkg_check_modules(QGSettings REQUIRED IMPORTED_TARGET gsettings-qt)\n    add_library(${Mouse_Name} MODULE\n        ${mouse_SRCS}\n    )\n\n    if (Enable_TreelandSupport)\n    qt6_generate_wayland_protocol_client_sources(${Mouse_Name} FILES\n        ${TREELAND_PROTOCOLS_DATA_DIR}/treeland-personalization-manager-v1.xml\n    )\n\n    target_compile_definitions(${Mouse_Name} PRIVATE Enable_Treeland)\n    endif()\n\n    set(mouse_Includes\n        src/plugin-mouse/operation\n    )\n    set(mouse_Libraries\n        ${DCC_FRAME_Library}\n        ${DTK_NS}::Gui\n        ${QT_NS}::DBus\n        ${QT_NS}::Qml\n        ${QT_NS}::WaylandClientPrivate\n        # PkgConfig::QGSettings\n    )\n    target_include_directories(${Mouse_Name} PUBLIC\n        ${mouse_Includes}\n    )\n    target_link_libraries(${Mouse_Name} PRIVATE\n        ${mouse_Libraries}\n    )\n    dcc_install_plugin(NAME ${Mouse_Name} TARGET ${Mouse_Name})\n    # dcc_handle_plugin_translation(NAME ${Mouse_Name}  QML_FILES ${mouse_qml_SRCS} SOURCE_FILES ${mouse_SRCS})\nendif()\n"
  },
  {
    "path": "src/plugin-mouse/operation/gesturedata.cpp",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"gesturedata.h\"\n\nQString GestureData::actionType() const\n{\n    return m_actionType;\n}\n\nvoid GestureData::setActionType(const QString &newActionType)\n{\n    if (m_actionType == newActionType)\n        return;\n    m_actionType = newActionType;\n    emit actionTypeChanged();\n}\n\nQString GestureData::direction() const\n{\n    return m_direction;\n}\n\nvoid GestureData::setDirection(const QString &newDirection)\n{\n    if (m_direction == newDirection)\n        return;\n    m_direction = newDirection;\n    emit directionChanged();\n}\n\nint GestureData::fingersNum() const\n{\n    return m_fingersNum;\n}\n\nvoid GestureData::setFingersNum(int newFingersNum)\n{\n    if (m_fingersNum == newFingersNum)\n        return;\n    m_fingersNum = newFingersNum;\n    emit fingersNumChanged();\n}\n\nQString GestureData::actionName() const\n{\n    return m_actionName;\n}\n\nvoid GestureData::setActionName(const QString &newActionName)\n{\n    if (m_actionName == newActionName)\n        return;\n    m_actionName = newActionName;\n    emit actionNameChanged();\n}\n\nQStringList GestureData::actionNameList() const\n{\n    return m_actionNameList;\n}\n\nvoid GestureData::setActionNameList(const QStringList &newActionNameList)\n{\n    m_actionNameList = newActionNameList;\n}\n\nQStringList GestureData::actionDescriptionList() const\n{\n    return m_actionDescriptionList;\n}\n\nvoid GestureData::setActionDescriptionList(const QStringList &newActionDescriptionList)\n{\n    m_actionDescriptionList = newActionDescriptionList;\n}\n\nQList<QPair<QString, QString> > GestureData::actionMaps() const\n{\n    return m_actionMaps;\n}\n\nvoid GestureData::setActionMaps(const QList<QPair<QString, QString> > &newActionMaps)\n{\n    m_actionMaps = newActionMaps;\n}\n\nvoid GestureData::addActiosPair(const QPair<QString, QString> &actionPair)\n{\n    m_actionMaps.append(actionPair);\n}\n\nGestureData::GestureData(QObject *parent)\n    : QObject(parent)\n{\n\n}\n"
  },
  {
    "path": "src/plugin-mouse/operation/gesturedata.h",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef GESTUREDATA_H\n#define GESTUREDATA_H\n\n#include <QObject>\n\nclass GestureData : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(QString actionType READ actionType WRITE setActionType NOTIFY actionTypeChanged FINAL)\n    Q_PROPERTY(QString direction READ direction WRITE setDirection NOTIFY directionChanged FINAL)\n    Q_PROPERTY(int fingersNum READ fingersNum WRITE setFingersNum NOTIFY fingersNumChanged FINAL)\n    Q_PROPERTY(QString actionName READ actionName WRITE setActionName NOTIFY actionNameChanged FINAL)\n\npublic:\n    explicit GestureData(QObject *parent = nullptr);\n\n    QString actionType() const;\n    void setActionType(const QString &newActionType);\n\n    QString direction() const;\n    void setDirection(const QString &newDirection);\n\n    int fingersNum() const;\n    void setFingersNum(int newFingersNum);\n\n    QString actionName() const;\n    void setActionName(const QString &newActionName);\n\n    QStringList actionNameList() const;\n    void setActionNameList(const QStringList &newActionNameList);\n\n    QStringList actionDescriptionList() const;\n    void setActionDescriptionList(const QStringList &newActionDescriptionList);\n\n    QList<QPair<QString, QString> > actionMaps() const;\n    void setActionMaps(const QList<QPair<QString, QString> > &newActionMaps);\n\n    void addActiosPair(const QPair<QString, QString> &actionPair);\n\n    QString getActionFromActionDec(QString actionDec);\n\nsignals:\n\n    void actionTypeChanged();\n\n    void directionChanged();\n\n    void fingersNumChanged();\n\n    void actionNameChanged();\n\nprivate:\n    QString m_actionType;\n    QString m_direction;\n    int m_fingersNum;\n    QString m_actionName;\n\n\n    QList<QPair<QString, QString>> m_actionMaps;\n    QStringList m_actionNameList;\n    QStringList m_actionDescriptionList;\n\n};\n\n#endif // GESTUREDATA_H\n"
  },
  {
    "path": "src/plugin-mouse/operation/gesturemodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"gesturemodel.h\"\n\nGestureModel::GestureModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n}\n\nGestureModel::~GestureModel()\n{\n    qDeleteAll(m_gestures);\n}\n\nbool GestureModel::containsGestures(QString direction, int fingersNum)\n{\n    for (auto data : m_gestures) {\n        if (data->direction() == direction && data->fingersNum() == fingersNum) {\n            return true;\n        }\n    }\n    return false;\n}\n\nvoid GestureModel::updateGestureData(const GestureData &data)\n{\n    for (int i = 0; i < m_gestures.size(); i++) {\n        if (data.direction() == m_gestures[i]->direction() && data.fingersNum() == m_gestures[i]->fingersNum()) {\n            m_gestures[i]->setActionName(data.actionName());\n            QModelIndex modelIndex = createIndex(i, 0);\n            emit dataChanged(modelIndex, modelIndex, {});\n            return;\n        }\n    }\n}\n\nint GestureModel::rowCount(const QModelIndex &parent) const\n{\n    // For list models only the root node (an invalid parent) should return the list's size. For all\n    // other (valid) parents, rowCount() should return 0 so that it does not become a tree model.\n    if (parent.isValid())\n        return 0;\n\n    // FIXME: Implement me!\n    return m_gestures.count();\n}\n\nQVariant GestureModel::data(const QModelIndex &index, int role) const\n{\n    if (!index.isValid())\n        return QVariant();\n\n    if (index.row() < 0 || index.row() >= m_gestures.count())\n        return QVariant();\n\n    GestureData *data = m_gestures[index.row()];\n\n    switch (role) {\n        case IconRole:\n            return getGesturesIconPath(data);\n        case DescriptionRole:\n            return getGesturesDec(data);\n        case ActionsIndexRole:\n            return getGestureActionIndex(data);\n        case ActionListRole:\n            return getGestureActionNames(data);\n        default:\n            break;\n    }\n\n    // FIXME: Implement me!\n    return QVariant();\n}\n\nQString GestureModel::getGesturesDec(GestureData *data) const\n{\n    QString description;\n    if (data->fingersNum() == 3) {\n        if (data->actionType() == \"swipe\") {\n            if (data->direction() == \"up\") {\n                description += tr(\"Three-finger up\");\n            } else if (data->direction() == \"down\") {\n                description += tr(\"Three-finger down\");\n            } else if (data->direction() == \"left\") {\n                description += tr(\"Three-finger left\");\n            } else if (data->direction() == \"right\") {\n                description += tr(\"Three-finger right\");\n            }\n        } else if (data->actionType() == \"tap\") {\n            description += tr(\"Three-finger tap\");\n        }\n    } else if (data->fingersNum() == 4) {\n        if (data->actionType() == \"swipe\") {\n            if (data->direction() == \"up\") {\n                description += tr(\"Four-finger up\");\n            } else if (data->direction() == \"down\") {\n                description += tr(\"Four-finger down\");\n            } else if (data->direction() == \"left\") {\n                description += tr(\"Four-finger left\");\n            } else if (data->direction() == \"right\") {\n                description += tr(\"Four-finger right\");\n            }\n        } else if (data->actionType() == \"tap\") {\n            description += tr(\"Four-finger tap\");\n        }\n    }\n\n    return description;\n}\n\nQString GestureModel::getGesturesIconPath(GestureData *data) const\n{\n    QString direction = data->direction();\n    if (data->direction() == \"none\") {\n        direction = \"click\";\n    }\n    return  QString(\"trackpad_gesture_%1_%2\").arg(data->fingersNum()).arg(direction);\n}\n\nQVariantList GestureModel::getGestureActionNames(GestureData *data) const\n{\n    QVariantList gestureActionNames;\n    for (auto data : data->actionMaps()) {\n        QVariantMap map;\n        map[\"actionText\"] = data.second;\n        map[\"actionValue\"] = data.first;\n        gestureActionNames.append(map);\n    }\n\n    return gestureActionNames;\n}\n\nint GestureModel::getGestureActionIndex(GestureData *data) const\n{\n    auto maps = data->actionMaps();\n    for (int i = 0; i < maps.size(); i++) {\n        if (maps[i].first == data->actionName()) {\n            return i;\n        }\n    }\n    return 0;\n}\n\nbool GestureModel::insertRows(int row, int count, const QModelIndex &parent)\n{\n    beginInsertRows(parent, row, row + count - 1);\n    // FIXME: Implement me!\n    endInsertRows();\n    return true;\n}\n\nbool GestureModel::removeRows(int row, int count, const QModelIndex &parent)\n{\n    beginRemoveRows(parent, row, row + count - 1);\n    // FIXME: Implement me!\n    endRemoveRows();\n    return true;\n}\n\nvoid GestureModel::addGestureData(GestureData *data)\n{\n    if (m_gestures.contains(data)) {\n        delete data;\n        return;\n    }\n\n    beginInsertRows(QModelIndex(), rowCount(), rowCount());\n    m_gestures.append(data);\n    endInsertRows();\n}\n\nvoid GestureModel::removeGestureData(GestureData *data)\n{\n    if (!m_gestures.contains(data)) {\n        return;\n    }\n\n    int index = m_gestures.indexOf(data);\n    beginRemoveRows(QModelIndex(), index, index);\n    m_gestures.remove(index);\n    endRemoveRows();\n    delete data;\n}\n\nvoid GestureModel::updateGestureData(GestureData *data)\n{\n    for (int index = 0; index < m_gestures.count(); index++) {\n        if (m_gestures[index]->fingersNum() == data->fingersNum()\n            && m_gestures[index]->direction() == data->direction()) {\n            QModelIndex modelIndex = createIndex(index, 0);\n            emit dataChanged(modelIndex, modelIndex, {});\n            break;\n        }\n    }\n}\n\nGestureData *GestureModel::getGestureData(int index) const\n{\n    if (index < 0 || index >= m_gestures.count())\n        return nullptr;\n    return m_gestures[index];\n}\n"
  },
  {
    "path": "src/plugin-mouse/operation/gesturemodel.h",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef GESTUREMODEL_H\n#define GESTUREMODEL_H\n\n#include <QAbstractListModel>\n\n#include \"gesturedata.h\"\n\nclass GestureModel : public QAbstractListModel\n{\n    Q_OBJECT\n\npublic:\n    enum gestureRoles {\n        IconRole = Qt::UserRole + 1,\n        DescriptionRole,\n        ActionsIndexRole,\n        ActionListRole,\n    };\n\n    explicit GestureModel(QObject *parent = nullptr);\n    ~GestureModel() override;\n\n    bool containsGestures(QString direction, int fingersNum);\n    void updateGestureData(const GestureData &data);\n\n    // Basic functionality:\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n\n    QString getGesturesDec(GestureData *data) const;\n    QString getGesturesIconPath(GestureData *data) const;\n    QVariantList getGestureActionNames(GestureData *data) const;\n    int getGestureActionIndex(GestureData *data) const;\n\n    // Add data:\n    bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    // Remove data:\n    bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    void addGestureData(GestureData *data);\n    void removeGestureData(GestureData *data);\n    void updateGestureData(GestureData *data);\n\n    GestureData *getGestureData(int index) const;\n\n    QHash<int, QByteArray> roleNames() const override\n    {\n        QHash<int, QByteArray> roles;\n        roles[IconRole] = \"iconRole\";\n        roles[DescriptionRole] = \"descriptionRole\";\n        roles[ActionsIndexRole] = \"actionsIndexRole\";\n        roles[ActionListRole] = \"actionListRole\";\n        return roles;\n    }\n\nprivate:\n    QList< GestureData *> m_gestures;\n};\n#endif // GESTUREMODEL_H\n"
  },
  {
    "path": "src/plugin-mouse/operation/mousedbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"mousedbusproxy.h\"\n#include \"gesturedata.h\"\n\n#include <QJsonArray>\n#include <QDBusArgument>\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusPendingCall>\n#include <QDBusPendingCallWatcher>\n#include <QDBusReply>\n#include <QJsonDocument>\n#include <QJsonObject>\n\nusing namespace DCC_NAMESPACE;\n\nconst QString Service = \"org.deepin.dde.InputDevices1\";\nconst QString MousePath = \"/org/deepin/dde/InputDevice1/Mouse\";\nconst QString TouchpadPath = \"/org/deepin/dde/InputDevice1/TouchPad\";\nconst QString TrackpointPath = \"/org/deepin/dde/InputDevice1/Mouse\";\nconst QString InputDevicesPath = \"/org/deepin/dde/InputDevices1\";\nconst QString PropertiesInterface = \"org.freedesktop.DBus.Properties\";\nconst QString MouseInterface = \"org.deepin.dde.InputDevice1.Mouse\";\nconst QString TouchpadInterface = \"org.deepin.dde.InputDevice1.TouchPad\";\nconst QString TrackpointInterface = \"org.deepin.dde.InputDevice1.TrackPoint\";\nconst QString InputDevicesInterface = \"org.deepin.dde.InputDevices1\";\nconst QString GestureInterface = \"org.deepin.dde.Gesture1\";\nconst QString GesturePath = \"/org/deepin/dde/Gesture1\";\nconst QString GestureService = \"org.deepin.dde.Gesture1\";\nconst QString AppearanceService = \"org.deepin.dde.Appearance1\";\nconst QString AppearancePath = \"/org/deepin/dde/Appearance1\";\nconst QString AppearanceInterface = \"org.deepin.dde.Appearance1\";\nconst QString PowerService = QStringLiteral(\"org.deepin.dde.Power1\");\nconst QString PowerPath = QStringLiteral(\"/org/deepin/dde/Power1\");\nconst QString PowerInterface = QStringLiteral(\"org.deepin.dde.Power1\");\n\nMouseDBusProxy::MouseDBusProxy(MouseWorker *worker, QObject *parent)\n    : QObject(parent)\n    , m_worker(worker)\n{\n    init();\n}\n\nvoid MouseDBusProxy::active()\n{\n    // initial mouse settingss\n    bool exist = m_dbusMouseProperties->call(\"Get\", MouseInterface, \"Exist\").arguments().at(0).value<QDBusVariant>().variant().toBool();\n    bool leftHanded = m_dbusMouseProperties->call(\"Get\", MouseInterface, \"LeftHanded\").arguments().at(0).value<QDBusVariant>().variant().toBool();\n    bool naturalScroll = m_dbusMouseProperties->call(\"Get\", MouseInterface, \"NaturalScroll\").arguments().at(0).value<QDBusVariant>().variant().toBool();\n    int doubleClick = m_dbusMouseProperties->call(\"Get\", MouseInterface, \"DoubleClick\").arguments().at(0).value<QDBusVariant>().variant().toInt();\n    bool disableTpad = m_dbusMouseProperties->call(\"Get\", MouseInterface, \"DisableTpad\").arguments().at(0).value<QDBusVariant>().variant().toBool();\n    bool adaptiveAccelProfile = m_dbusMouseProperties->call(\"Get\", MouseInterface, \"AdaptiveAccelProfile\").arguments().at(0).value<QDBusVariant>().variant().toBool();\n    double motionAcceleration = m_dbusMouseProperties->call(\"Get\", MouseInterface, \"MotionAcceleration\").arguments().at(0).value<QDBusVariant>().variant().toDouble();\n\n    m_worker->setMouseExist(exist);\n    m_worker->setLeftHandState(leftHanded);\n    m_worker->setMouseNaturalScrollState(naturalScroll);\n    m_worker->setDouClick(doubleClick);\n    m_worker->setDisTouchPad(disableTpad);\n    m_worker->setAccelProfile(adaptiveAccelProfile);\n    m_worker->setMouseMotionAcceleration(motionAcceleration);\n\n    // initial touchpad settings\n    motionAcceleration = m_dbusTouchPadProperties->call(\"Get\", TouchpadInterface, \"MotionAcceleration\").arguments().at(0).value<QDBusVariant>().variant().toDouble();\n    bool tapClick = m_dbusTouchPadProperties->call(\"Get\", TouchpadInterface, \"TapClick\").arguments().at(0).value<QDBusVariant>().variant().toBool();\n    exist = m_dbusTouchPadProperties->call(\"Get\", TouchpadInterface, \"Exist\").arguments().at(0).value<QDBusVariant>().variant().toBool();\n    bool touchpadEnabled = m_dbusTouchPadProperties->call(\"Get\", TouchpadInterface, \"TPadEnable\").arguments().at(0).value<QDBusVariant>().variant().toBool();\n    naturalScroll = m_dbusTouchPadProperties->call(\"Get\", TouchpadInterface, \"NaturalScroll\").arguments().at(0).value<QDBusVariant>().variant().toBool();\n    bool disableIfTyping = m_dbusTouchPadProperties->call(\"Get\", TouchpadInterface, \"DisableIfTyping\").arguments().at(0).value<QDBusVariant>().variant().toBool();\n    bool palmDetect = m_dbusTouchPadProperties->call(\"Get\", TouchpadInterface, \"PalmDetect\").arguments().at(0).value<QDBusVariant>().variant().toInt();\n    int palmMinWidth = m_dbusTouchPadProperties->call(\"Get\", TouchpadInterface, \"PalmMinWidth\").arguments().at(0).value<QDBusVariant>().variant().toInt();\n    bool palmMinZ = m_dbusTouchPadProperties->call(\"Get\", TouchpadInterface, \"PalmMinZ\").arguments().at(0).value<QDBusVariant>().variant().toBool();\n\n    m_worker->setTouchpadMotionAcceleration(motionAcceleration);\n    m_worker->setTpadEnabled(touchpadEnabled);\n    m_worker->setTapClick(tapClick);\n    m_worker->setTpadExist(exist);\n    m_worker->setTouchNaturalScrollState(naturalScroll);\n    m_worker->setDisTyping(disableIfTyping);\n    m_worker->setPalmDetect(palmDetect);\n    m_worker->setPalmMinWidth(palmMinWidth);\n    m_worker->setPalmMinz(palmMinZ);\n\n    // initial redpoint settings\n    motionAcceleration = m_dbusTrackPointProperties->call(\"Get\", TrackpointInterface, \"MotionAcceleration\").arguments().at(0).value<QDBusVariant>().variant().toDouble();\n    exist = m_dbusTouchPadProperties->call(\"Get\", TrackpointInterface, \"Exist\").arguments().at(0).value<QDBusVariant>().variant().toBool();\n\n    m_worker->setTrackPointMotionAcceleration(motionAcceleration);\n    m_worker->setRedPointExist(exist);\n\n    // initial device properties\n    uint wheelSpeed  = m_dbusDevicesProperties->call(\"Get\", InputDevicesInterface, \"WheelSpeed\").arguments().at(0).value<QDBusVariant>().variant().toUInt();\n\n    m_worker->setScrollSpeed(wheelSpeed);\n\n    // initial lid is present\n    bool lidIsPresent = getLidIsPresent();\n    m_worker->setLidIsPresent(lidIsPresent);\n\n    QVariant gestureInfos = m_dbusGestureProperties->call(\"Get\", GestureInterface, \"Infos\").arguments().at(0).value<QDBusVariant>().variant();\n    parseGesturesData(qvariant_cast<QDBusArgument>(gestureInfos));\n\n    listCursor();\n    auto cursorSize = m_appearance->property(\"CursorSize\").toInt();\n    m_worker->setCursorSize(cursorSize);\n}\n\nvoid MouseDBusProxy::deactive()\n{\n}\n\nvoid MouseDBusProxy::init()\n{\n    // 监控dbus上的属性改变信号\n    QDBusConnection::sessionBus().connect(Service,\n                                          MousePath,\n                                          PropertiesInterface,\n                                          \"PropertiesChanged\",\n                                          \"sa{sv}as\",\n                                          this,\n                                          SLOT(onMousePathPropertiesChanged(QDBusMessage)));\n\n    QDBusConnection::sessionBus().connect(Service,\n                                          TouchpadPath,\n                                          PropertiesInterface,\n                                          \"PropertiesChanged\",\n                                          \"sa{sv}as\",\n                                          this,\n                                          SLOT(onTouchpadPathPropertiesChanged(QDBusMessage)));\n\n    QDBusConnection::sessionBus().connect(Service,\n                                          TrackpointPath,\n                                          PropertiesInterface,\n                                          \"PropertiesChanged\",\n                                          \"sa{sv}as\",\n                                          this,\n                                          SLOT(onTrackpointPathPropertiesChanged(QDBusMessage)));\n\n    QDBusConnection::sessionBus().connect(Service,\n                                          InputDevicesPath,\n                                          PropertiesInterface,\n                                          \"PropertiesChanged\",\n                                          \"sa{sv}as\",\n                                          this,\n                                          SLOT(onInputDevicesPathPropertiesChanged(QDBusMessage)));\n    QDBusConnection::sessionBus().connect(GestureService,\n                                          GesturePath,\n                                          PropertiesInterface,\n                                          \"PropertiesChanged\",\n                                          \"sa{sv}as\",\n                                          this,\n                                          SLOT(onGesturePropertiesChanged(QDBusMessage)));\n\n    QDBusConnection::sessionBus().connect(AppearanceService,\n                                          AppearancePath,\n                                          PropertiesInterface,\n                                          \"PropertiesChanged\",\n                                          \"sa{sv}as\",\n                                          this,\n                                          SLOT(onAppearancePropertiesChanged(QDBusMessage)));\n\n    // 初始化dbus接口\n    m_dbusMouseProperties = new QDBusInterface(Service,\n                                               MousePath,\n                                               PropertiesInterface,\n                                               QDBusConnection::sessionBus());\n    m_dbusTouchPadProperties = new QDBusInterface(Service,\n                                                  TouchpadPath,\n                                                  PropertiesInterface,\n                                                  QDBusConnection::sessionBus());\n    m_dbusTrackPointProperties = new QDBusInterface(Service,\n                                                    TrackpointPath,\n                                                    PropertiesInterface,\n                                                    QDBusConnection::sessionBus());\n    m_dbusDevicesProperties = new QDBusInterface(Service,\n                                                 InputDevicesPath,\n                                                 PropertiesInterface,\n                                                 QDBusConnection::sessionBus());\n    m_dbusGestureProperties = new QDBusInterface(GestureService,\n                                                 GesturePath,\n                                                 PropertiesInterface,\n                                                 QDBusConnection::sessionBus());\n                                                \n    m_appearance = new QDBusInterface(AppearanceService,\n                                      AppearancePath,\n                                      AppearanceInterface,\n                                      QDBusConnection::sessionBus());\n\n    m_dbusMouse = new QDBusInterface(Service, MousePath, MouseInterface, QDBusConnection::sessionBus());\n    m_dbusTouchPad = new QDBusInterface(Service,\n                                        TouchpadPath,\n                                        TouchpadInterface,\n                                        QDBusConnection::sessionBus());\n    m_dbusTrackPoint = new QDBusInterface(Service,\n                                          TrackpointPath,\n                                          TrackpointInterface,\n                                          QDBusConnection::sessionBus());\n    m_dbusDevices = new QDBusInterface(Service,\n                                       InputDevicesPath,\n                                       InputDevicesInterface,\n                                       QDBusConnection::sessionBus());\n    m_dbusGesture = new QDBusInterface(GestureService,\n                                       GesturePath,\n                                       GestureInterface,\n                                       QDBusConnection::sessionBus());\n\n    // set Mouse settings from dde-control-center\n    connect(m_worker,\n            &MouseWorker::requestSetLeftHandState,\n            this,\n            &MouseDBusProxy::setLeftHandState);\n    connect(m_worker,\n            &MouseWorker::requestSetMouseNaturalScrollState,\n            this,\n            &MouseDBusProxy::setMouseNaturalScrollState);\n    connect(m_worker, &MouseWorker::requestSetDouClick, this, &MouseDBusProxy::setDouClick);\n    connect(m_worker,\n            &MouseWorker::requestSetDisTouchPad,\n            this,\n            &MouseDBusProxy::setDisableTouchPadWhenMouseExist);\n    connect(m_worker, &MouseWorker::requestSetAccelProfile, this, &MouseDBusProxy::setAccelProfile);\n    connect(m_worker,\n            &MouseWorker::requestSetMouseMotionAcceleration,\n            this,\n            &MouseDBusProxy::setMouseMotionAcceleration);\n\n    // set Touchpad settings from dde-control-center\n    connect(m_worker,\n            &MouseWorker::requestSetTouchNaturalScrollState,\n            this,\n            &MouseDBusProxy::setTouchNaturalScrollState);\n    connect(m_worker, &MouseWorker::requestSetDisTyping, this, &MouseDBusProxy::setDisTyping);\n    connect(m_worker,\n            &MouseWorker::requestSetTouchpadMotionAcceleration,\n            this,\n            &MouseDBusProxy::setTouchpadMotionAcceleration);\n    connect(m_worker, &MouseWorker::requestSetTapClick, this, &MouseDBusProxy::setTapClick);\n    connect(m_worker, &MouseWorker::requestSetPalmDetect, this, &MouseDBusProxy::setPalmDetect);\n    connect(m_worker, &MouseWorker::requestSetPalmMinWidth, this, &MouseDBusProxy::setPalmMinWidth);\n    connect(m_worker, &MouseWorker::requestSetPalmMinz, this, &MouseDBusProxy::setPalmMinz);\n\n    // set Redpoint settings from dde-control-center\n    connect(m_worker,\n            &MouseWorker::requestSetTrackPointMotionAcceleration,\n            this,\n            &MouseDBusProxy::setTrackPointMotionAcceleration);\n\n    // set Device properties from dde-control-center\n    connect(m_worker, &MouseWorker::requestSetScrollSpeed, this, &MouseDBusProxy::setScrollSpeed);\n    connect(m_worker,\n            &MouseWorker::requestSetTouchpadEnabled,\n            this,\n            &MouseDBusProxy::setTouchpadEnabled);\n\n    connect(m_worker, &MouseWorker::requestSetGesture, this, &MouseDBusProxy::setGesture);\n    connect(m_worker, &MouseWorker::requestSetCursorSize, this, &MouseDBusProxy::setCursorSize);\n}\n\nvoid MouseDBusProxy::parseGesturesData(const QDBusArgument &argument)\n{\n    // 开始解析数组\n    argument.beginArray();\n    while (!argument.atEnd()) {\n\n        QString actionType, direction, actionName;\n        qint32 fingerNum;\n\n        // 开始解析 Struct of (String,String,Int32,String)\n        argument.beginStructure();\n\n        argument >> actionType;\n        argument >> direction;\n        argument >> fingerNum;\n        argument >> actionName;\n        argument.endStructure();\n\n        QVariantMap data;\n        data.insert(\"actionType\", actionType);\n        data.insert(\"direction\", direction);\n        data.insert(\"actionName\", actionName);\n        data.insert(\"fingerNum\", fingerNum);\n\n        QDBusPendingReply<QString> reply = m_dbusGesture->asyncCall(\"GetGestureAvaiableActions\", actionType, fingerNum);\n        QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(reply, this);\n        watcher->setProperty(\"data\", QVariant::fromValue(data));\n        connect(watcher, &QDBusPendingCallWatcher::finished, this, &MouseDBusProxy::onGetGestureAvaiableActionsFinished);\n    }\n    argument.endArray();\n}\n\nvoid MouseDBusProxy::onDefaultReset()\n{\n     QDBusPendingCallWatcher *watcherMouse = new QDBusPendingCallWatcher(m_dbusMouse->asyncCall(\"Reset\"), this);\n     QObject::connect(watcherMouse, &QDBusPendingCallWatcher::finished, this, [=](){\n        watcherMouse->deleteLater();\n     });\n\n     QDBusPendingCallWatcher *watcherTouchPad = new QDBusPendingCallWatcher(m_dbusTouchPad->asyncCall(\"Reset\"), this);\n     QObject::connect(watcherTouchPad, &QDBusPendingCallWatcher::finished, this, [=](){\n        watcherTouchPad->deleteLater();\n     });\n\n     QDBusPendingCallWatcher *watcherTrackPoint = new QDBusPendingCallWatcher(m_dbusTrackPoint->asyncCall(\"Reset\"), this);\n     QObject::connect(watcherTrackPoint, &QDBusPendingCallWatcher::finished, this, [=](){\n        watcherTrackPoint->deleteLater();\n     });\n\n     QDBusPendingCallWatcher *watcherDevices = new QDBusPendingCallWatcher(m_dbusDevices->asyncCall(\"Reset\"), this);\n     QObject::connect(watcherDevices, &QDBusPendingCallWatcher::finished, this, [=](){\n        watcherDevices->deleteLater();\n     });\n}\n\nvoid MouseDBusProxy::setLeftHandState(const bool state)\n{\n    m_dbusMouseProperties->call(\"Set\", MouseInterface, \"LeftHanded\", state);\n    m_dbusTouchPadProperties->call(\"Set\", TouchpadInterface, \"LeftHanded\", state);\n    m_dbusTrackPointProperties->call(\"Set\", TrackpointInterface, \"LeftHanded\", state);\n}\n\nvoid MouseDBusProxy::setDouClick(const int &value)\n{\n    m_dbusMouseProperties->call(\"Set\", MouseInterface, \"DoubleClick\", value);\n    m_dbusTouchPadProperties->call(\"Set\", TouchpadInterface, \"DoubleClick\", value);\n}\n\nvoid MouseDBusProxy::setMouseNaturalScrollState(const bool state)\n{\n    m_dbusMouseProperties->call(\"Set\", MouseInterface, \"NaturalScroll\", state);\n}\n\nvoid MouseDBusProxy::setDisableTouchPadWhenMouseExist(const bool state)\n{\n    m_dbusMouseProperties->call(\"Set\", MouseInterface, \"DisableTpad\", state);\n}\n\nvoid MouseDBusProxy::setAccelProfile(const bool state)\n{\n    m_dbusMouseProperties->call(\"Set\", MouseInterface, \"AdaptiveAccelProfile\", state);\n}\n\nvoid MouseDBusProxy::setMouseMotionAcceleration(const double &value)\n{\n    m_dbusMouseProperties->call(\"Set\", MouseInterface, \"MotionAcceleration\", value);\n}\n\nvoid MouseDBusProxy::setTouchNaturalScrollState(const bool state)\n{\n    m_dbusTouchPadProperties->call(\"Set\", TouchpadInterface, \"NaturalScroll\", state);\n}\n\nvoid MouseDBusProxy::setDisTyping(const bool state)\n{\n    m_dbusTouchPadProperties->call(\"Set\", TouchpadInterface, \"DisableIfTyping\", state);\n}\n\nvoid MouseDBusProxy::setTouchpadMotionAcceleration(const double &value)\n{\n    m_dbusTouchPadProperties->call(\"Set\", TouchpadInterface, \"MotionAcceleration\", value);\n}\n\nvoid MouseDBusProxy::setTapClick(const bool state)\n{\n    m_dbusTouchPadProperties->call(\"Set\", TouchpadInterface, \"TapClick\", state);\n}\n\nvoid MouseDBusProxy::setPalmDetect(bool palmDetect)\n{\n    m_dbusTouchPadProperties->call(\"Set\", TouchpadInterface, \"PalmDetect\", palmDetect);\n}\n\nvoid MouseDBusProxy::setPalmMinWidth(int palmMinWidth)\n{\n    m_dbusTouchPadProperties->call(\"Set\", TouchpadInterface, \"PalmMinWidth\", palmMinWidth);\n}\n\nvoid MouseDBusProxy::setPalmMinz(int palmMinz)\n{\n    m_dbusTouchPadProperties->call(\"Set\", TouchpadInterface, \"PalmMinZ\", palmMinz);\n}\n\nvoid MouseDBusProxy::setTouchpadEnabled(bool state)\n{\n    m_dbusTouchPad->asyncCallWithArgumentList(\"Enable\", { state });\n}\n\nvoid MouseDBusProxy::setCursorSize(const int cursorSize)\n{\n    m_appearance->setProperty(\"CursorSize\", QVariant::fromValue(cursorSize));\n}\n\nvoid MouseDBusProxy::setTrackPointMotionAcceleration(const double &value)\n{\n    m_dbusTrackPointProperties->call(\"Set\", TrackpointInterface, \"MotionAcceleration\", value);\n}\n\nvoid MouseDBusProxy::setScrollSpeed(uint speed)\n{\n    m_dbusDevicesProperties->call(\"Set\", InputDevicesInterface, \"WheelSpeed\", speed);\n}\n\nvoid MouseDBusProxy::setGesture(const QString& name, const QString& direction, int fingers, const QString& action)\n{\n    m_dbusGesture->asyncCallWithArgumentList(\"SetGesture\", { name, direction, fingers, action });\n}\n\nvoid MouseDBusProxy::onMousePathPropertiesChanged(QDBusMessage msg)\n{\n    QList<QVariant> arguments = msg.arguments();\n    if (3 != arguments.count()) {\n        return;\n    }\n    QString interfaceName = msg.arguments().at(0).toString();\n    if (interfaceName == MouseInterface) {\n        QVariantMap changedProps = qdbus_cast<QVariantMap>(arguments.at(1).value<QDBusArgument>());\n        QStringList keys = changedProps.keys();\n        for (int i = 0; i < keys.size(); i++) {\n            if (keys.at(i) == \"Exist\") {\n                m_worker->setMouseExist(changedProps.value(keys.at(i)).toBool());\n            } else if(keys.at(i) == \"LeftHanded\") {\n                m_worker->setLeftHandState(changedProps.value(keys.at(i)).toBool());\n            } else if(keys.at(i) == \"NaturalScroll\") {\n                m_worker->setMouseNaturalScrollState(changedProps.value(keys.at(i)).toBool());\n            } else if(keys.at(i) == \"DoubleClick\") {\n                m_worker->setDouClick(changedProps.value(keys.at(i)).toInt());\n            } else if(keys.at(i) == \"DisableTpad\") {\n                m_worker->setDisTouchPad(changedProps.value(keys.at(i)).toBool());\n            } else if(keys.at(i) == \"AdaptiveAccelProfile\") {\n                m_worker->setAccelProfile(changedProps.value(keys.at(i)).toBool());\n            } else if(keys.at(i) == \"MotionAcceleration\") {\n                m_worker->setMouseMotionAcceleration(changedProps.value(keys.at(i)).toDouble());\n            }\n        }\n    }\n}\n\nvoid MouseDBusProxy::onTouchpadPathPropertiesChanged(QDBusMessage msg)\n{\n    QList<QVariant> arguments = msg.arguments();\n    if (3 != arguments.count()) {\n        return;\n    }\n    QString interfaceName = msg.arguments().at(0).toString();\n    if (interfaceName == TouchpadInterface) {\n        QVariantMap changedProps = qdbus_cast<QVariantMap>(arguments.at(1).value<QDBusArgument>());\n        QStringList keys = changedProps.keys();\n        for (int i = 0; i < keys.size(); i++) {\n            if (keys.at(i) == \"Exist\") {\n                m_worker->setTpadExist(changedProps.value(keys.at(i)).toBool());\n            } else if(keys.at(i) == \"TPadEnable\") {\n                m_worker->setTpadEnabled(changedProps.value(keys.at(i)).toBool());\n            } else if(keys.at(i) == \"NaturalScroll\") {\n                m_worker->setTouchNaturalScrollState(changedProps.value(keys.at(i)).toBool());\n            } else if(keys.at(i) == \"DisableIfTyping\") {\n                m_worker->setDisTyping(changedProps.value(keys.at(i)).toBool());\n            } else if(keys.at(i) == \"DoubleClick\") {\n                m_worker->setDouClick(changedProps.value(keys.at(i)).toInt());\n            } else if(keys.at(i) == \"MotionAcceleration\") {\n                m_worker->setTouchpadMotionAcceleration(changedProps.value(keys.at(i)).toDouble());\n            } else if(keys.at(i) == \"TapClick\") {\n                m_worker->setTapClick(changedProps.value(keys.at(i)).toBool());\n            } else if(keys.at(i) == \"PalmDetect\") {\n                m_worker->setPalmDetect(changedProps.value(keys.at(i)).toBool());\n            } else if(keys.at(i) == \"PalmMinWidth\") {\n                m_worker->setPalmMinWidth(changedProps.value(keys.at(i)).toInt());\n            } else if(keys.at(i) == \"PalmMinZ\") {\n                m_worker->setPalmMinz(changedProps.value(keys.at(i)).toInt());\n            }\n        }\n    }\n}\n\nvoid MouseDBusProxy::onTrackpointPathPropertiesChanged(QDBusMessage msg)\n{\n    QList<QVariant> arguments = msg.arguments();\n    if (3 != arguments.count()) {\n        return;\n    }\n    QString interfaceName = msg.arguments().at(0).toString();\n    if (interfaceName == TrackpointInterface) {\n        QVariantMap changedProps = qdbus_cast<QVariantMap>(arguments.at(1).value<QDBusArgument>());\n        QStringList keys = changedProps.keys();\n        for (int i = 0; i < keys.size(); i++) {\n            if (keys.at(i) == \"Exist\") {\n                m_worker->setRedPointExist(changedProps.value(keys.at(i)).toBool());\n            } else if(keys.at(i) == \"MotionAcceleration\") {\n                m_worker->setTrackPointMotionAcceleration(changedProps.value(keys.at(i)).toDouble());\n            }\n        }\n    }\n}\n\nvoid MouseDBusProxy::onInputDevicesPathPropertiesChanged(QDBusMessage msg)\n{\n    QList<QVariant> arguments = msg.arguments();\n    if (3 != arguments.count()) {\n        return;\n    }\n    QString interfaceName = msg.arguments().at(0).toString();\n    if (interfaceName == InputDevicesInterface) {\n        QVariantMap changedProps = qdbus_cast<QVariantMap>(arguments.at(1).value<QDBusArgument>());\n        QStringList keys = changedProps.keys();\n        for (int i = 0; i < keys.size(); i++) {\n            if (keys.at(i) == \"WheelSpeed\") {\n                m_worker->setScrollSpeed(changedProps.value(keys.at(i)).toUInt());\n            }\n        }\n    }\n}\n\nvoid MouseDBusProxy::onGesturePropertiesChanged(QDBusMessage msg)\n{\n    QList<QVariant> arguments = msg.arguments();\n    if (3 != arguments.count()) {\n        return;\n    }\n    QString interfaceName = msg.arguments().at(0).toString();\n    if (interfaceName == GestureInterface) {\n        QVariantMap changedProps = qdbus_cast<QVariantMap>(arguments.at(1).value<QDBusArgument>());\n        QStringList keys = changedProps.keys();\n        for (int i = 0; i < keys.size(); i++) {\n            if (keys.at(i) == \"Infos\") {\n                parseGesturesData(qvariant_cast<QDBusArgument>(changedProps.value(keys.at(i))));\n            }\n        }\n    }\n}\n\nvoid MouseDBusProxy::onAppearancePropertiesChanged(QDBusMessage msg)\n{\n    QList<QVariant> arguments = msg.arguments();\n    if (3 != arguments.count()) {\n        return;\n    }\n    QString interfaceName = msg.arguments().at(0).toString();\n    if (interfaceName == AppearanceInterface) {\n        QVariantMap changedProps = qdbus_cast<QVariantMap>(arguments.at(1).value<QDBusArgument>());\n        QStringList keys = changedProps.keys();\n        for (int i = 0; i < keys.size(); i++) {\n            if (keys.at(i) == \"CursorSize\") {\n                int cursorSize = changedProps.value(keys.at(i)).toInt();\n                m_worker->setCursorSize(cursorSize);\n            } else if (keys.at(i) == \"CursorTheme\") {\n                listCursor();\n            }\n        }\n    }\n}\n\nvoid MouseDBusProxy::onGetGestureAvaiableActionsFinished(QDBusPendingCallWatcher *w)\n{\n    QVariantMap dbusData = w->property(\"data\").toMap();\n\n    GestureData data;\n    data.setActionType(dbusData.value(\"actionType\").toString());\n    data.setDirection(dbusData.value(\"direction\").toString());\n    data.setActionName(dbusData.value(\"actionName\").toString());\n    data.setFingersNum(dbusData.value(\"fingerNum\").toInt());\n    QDBusPendingReply<QString> reply = *w;\n    if (!reply.isError()) {\n        QString actions = reply.value();\n        QJsonDocument document = QJsonDocument::fromJson(actions.toUtf8());\n\n        if (document.isArray()) {\n            QJsonArray array = document.array();\n            QStringList actionNameList;\n            QStringList actionDescriptionList;\n            for (int i = 0; i < array.size(); ++i) {\n                QJsonValue value = array.at(i);\n                if (value.isObject()) {\n                    QJsonObject object = value.toObject();\n\n                    QPair<QString, QString> actionPair;\n                    actionPair.first = object.value(\"Name\").toString();\n                    actionPair.second = object.value(\"Description\").toString();\n                    data.addActiosPair(actionPair);\n                }\n            }\n        }\n    }\n\n    m_worker->setGestureData(data);\n    m_worker->initFingerGestures();\n    w->deleteLater();\n}\n\nvoid MouseDBusProxy::listCursor()\n{\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(\n        m_appearance->asyncCall(\"List\", \"cursor\"), this);\n        \n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [=](){\n        QDBusPendingReply<QString> reply = *watcher;\n        if (!reply.isError()) {\n            QString cursorTheme =  m_appearance->property(\"CursorTheme\").toString();\n            QJsonDocument document = QJsonDocument::fromJson(reply.value().toUtf8());\n            auto array = document.array();\n            for (int i = 0; i < array.size(); ++i) {\n                QJsonValue value = array.at(i);\n                if (value.isObject()) {\n                    QJsonObject object = value.toObject();\n                    QString name = object.value(\"Id\").toString();\n                    if (name == cursorTheme) {\n                        auto availableSizesValue = object.value(\"AvailableSize\").toArray();\n                        QList<int> availableSizes;\n                        for (const auto &size : availableSizesValue) {\n                            availableSizes.append(size.toInt(-1));\n                        }\n                        m_worker->setAvailableCursorSizes(availableSizes);\n                        break;\n                    }\n                }\n            }\n        } else {\n            qWarning() << \"asyncCall list cursor failed:\" << reply.error();\n        }\n        watcher->deleteLater();\n    });\n}\n\nbool MouseDBusProxy::getLidIsPresent()\n{\n    // 通过Power1 DBus服务获取Lid状态\n    QDBusInterface powerInterface(PowerService,\n                                  PowerPath,\n                                  PowerInterface,\n                                  QDBusConnection::sessionBus());\n    QVariant lidIsPresentVariant = powerInterface.property(\"LidIsPresent\");\n    if (lidIsPresentVariant.isValid()) {\n        return lidIsPresentVariant.toBool();\n    }\n    return false;\n}\n"
  },
  {
    "path": "src/plugin-mouse/operation/mousedbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef MOUSEDBUSPROXY_H\n#define MOUSEDBUSPROXY_H\n\n#include \"mouseworker.h\"\n\n#include <QDBusMessage>\n#include <QDBusPendingCallWatcher>\n#include <QObject>\n\nclass QDBusInterface;\n\nnamespace DCC_NAMESPACE {\nclass MouseDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit MouseDBusProxy(MouseWorker *worker, QObject *parent = nullptr);\n    void deactive();\n    void init();\n\n    void parseGesturesData(const QDBusArgument &argument);\n\npublic Q_SLOTS:\n    void active();\n    void onDefaultReset();\n    void setLeftHandState(const bool state);\n    void setDouClick(const int &value);\n\n    // mouse settings\n    void setMouseNaturalScrollState(const bool state);\n    void setDisableTouchPadWhenMouseExist(const bool state);\n    void setAccelProfile(const bool state);\n    void setMouseMotionAcceleration(const double &value);\n\n    // touchpad settings\n    void setTouchNaturalScrollState(const bool state);\n    void setDisTyping(const bool state);\n    void setTouchpadMotionAcceleration(const double &value);\n    void setTapClick(const bool state);\n    void setPalmDetect(bool palmDetect);\n    void setPalmMinWidth(int palmMinWidth);\n    void setPalmMinz(int palmMinz);\n    void setTouchpadEnabled(bool state);\n\n    // appearance\n    void setCursorSize(const int cursorSize);\n    void listCursor();\n\n    // redpoint settings\n    void setTrackPointMotionAcceleration(const double &value);\n\n    // device properties\n    void setScrollSpeed(uint speed);\n    bool getLidIsPresent();\n\n    void setGesture(const QString& name, const QString& direction, int fingers, const QString& action);\n\n    void onMousePathPropertiesChanged(QDBusMessage msg);\n    void onTouchpadPathPropertiesChanged(QDBusMessage msg);\n    void onTrackpointPathPropertiesChanged(QDBusMessage msg);\n    void onInputDevicesPathPropertiesChanged(QDBusMessage msg);\n    void onGesturePropertiesChanged(QDBusMessage msg);\n    void onAppearancePropertiesChanged(QDBusMessage msg);\n\n    void onGetGestureAvaiableActionsFinished(QDBusPendingCallWatcher *w);\n\nprivate:\n    MouseWorker  *m_worker;\n    QDBusInterface *m_dbusMouseProperties;\n    QDBusInterface *m_dbusTouchPadProperties;\n    QDBusInterface *m_dbusTrackPointProperties;\n    QDBusInterface *m_dbusDevicesProperties;\n    QDBusInterface *m_dbusGestureProperties;\n\n    QDBusInterface *m_dbusMouse;\n    QDBusInterface *m_dbusTouchPad;\n    QDBusInterface *m_dbusTrackPoint;\n    QDBusInterface *m_dbusDevices;\n    QDBusInterface *m_dbusGesture;\n    QDBusInterface *m_appearance;\n};\n}\n\n#endif // MOUSEWORKER_H\n"
  },
  {
    "path": "src/plugin-mouse/operation/mousemodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"mousemodel.h\"\n#include \"dccfactory.h\"\n#include \"mouseworker.h\"\n#include \"mousedbusproxy.h\"\n#include <QFile>\n\nusing namespace DCC_NAMESPACE;\nMouseModel::MouseModel(QObject *parent)\n    : QObject(parent)\n    , m_leftHandState(false)\n    , m_disIfTyping(false)\n    , m_tpadExist(false)\n    , m_mouseExist(true)\n    , m_redPointExist(false)\n    , m_mouseNaturalScroll(false)\n    , m_tpadNaturalScroll(false)\n    , m_accelProfile(true)\n    , m_disTpad(false)\n    , m_palmDetect(false)\n    , m_tapClick(false)\n    , m_touchpadEnabled(true)\n    , m_doubleSpeed(1)\n    , m_mouseMoveSpeed(1)\n    , m_tpadMoveSpeed(1)\n    , m_redPointMoveSpeed(1)\n    , m_palmMinWidth(1)\n    , m_palmMinz(100)\n    , m_scrollSpeed(1)\n    , m_cursorSize(24)\n    , m_lidIsPresent(false)\n    , m_gestureFingerAniPath(\"\")\n    , m_gestureActionAniPath(\"\")\n    , m_themeType(Dtk::Gui::DGuiApplicationHelper::instance()->themeType())\n    , m_threeFingerGestureModel(new GestureModel(this))\n    , m_fourFigerGestureModel(new GestureModel(this))\n    , m_worker(new MouseWorker(this, this))\n{\n    connect(Dtk::Gui::DGuiApplicationHelper::instance(), &Dtk::Gui::DGuiApplicationHelper::themeTypeChanged, this, [ this ]() {\n        auto themeColorType = Dtk::Gui::DGuiApplicationHelper::instance()->themeType();\n        updateFigerAniPath(themeColorType);\n        setThemeType(themeColorType);\n    });\n}\n\nMouseModel::~MouseModel()\n{\n\n}\n\nvoid MouseModel::setLeftHandState(const bool state)\n{\n    if (m_leftHandState == state)\n        return;\n\n    m_leftHandState = state;\n\n    QMetaObject::invokeMethod(m_worker,\"onLeftHandStateChanged\", Qt::QueuedConnection, Q_ARG(bool, m_leftHandState));\n    Q_EMIT leftHandStateChanged(state);\n}\n\nvoid MouseModel::setDisIfTyping(const bool state)\n{\n    if (m_disIfTyping == state)\n        return;\n\n    m_disIfTyping = state;\n\n    QMetaObject::invokeMethod(m_worker,\"onDisTypingChanged\", Qt::QueuedConnection, Q_ARG(bool, m_disIfTyping));\n    Q_EMIT disIfTypingStateChanged(state);\n}\n\nvoid MouseModel::setTpadExist(bool tpadExist)\n{\n    if (m_tpadExist == tpadExist)\n        return;\n\n    m_tpadExist = tpadExist;\n\n    Q_EMIT tpadExistChanged(tpadExist);\n}\n\nvoid MouseModel::setMouseExist(bool mouseExist)\n{\n    if (m_mouseExist == mouseExist)\n        return;\n\n    m_mouseExist = mouseExist;\n\n    Q_EMIT mouseExistChanged(mouseExist);\n}\n\nvoid MouseModel::setRedPointExist(bool redPointExist)\n{\n    if (m_redPointExist == redPointExist)\n        return;\n\n    m_redPointExist = redPointExist;\n\n    Q_EMIT redPointExistChanged(redPointExist);\n}\n\nvoid MouseModel::setDoubleSpeed(int doubleSpeed)\n{\n    if (m_doubleSpeed == doubleSpeed)\n        return;\n\n    m_doubleSpeed = doubleSpeed;\n\n    QMetaObject::invokeMethod(m_worker,\"onDouClickChanged\", Qt::QueuedConnection, Q_ARG(int, m_doubleSpeed));\n    Q_EMIT doubleSpeedChanged(doubleSpeed);\n}\n\nvoid MouseModel::setMouseNaturalScroll(bool mouseNaturalScroll)\n{\n    if (m_mouseNaturalScroll == mouseNaturalScroll)\n        return;\n\n    m_mouseNaturalScroll = mouseNaturalScroll;\n\n    QMetaObject::invokeMethod(m_worker,\"onMouseNaturalScrollStateChanged\", Qt::QueuedConnection, Q_ARG(bool, m_mouseNaturalScroll));\n    Q_EMIT mouseNaturalScrollChanged(mouseNaturalScroll);\n}\n\nvoid MouseModel::setTpadNaturalScroll(bool tpadNaturalScroll)\n{\n    if (m_tpadNaturalScroll == tpadNaturalScroll)\n        return;\n\n    m_tpadNaturalScroll = tpadNaturalScroll;\n\n    QMetaObject::invokeMethod(m_worker,\"onTouchNaturalScrollStateChanged\", Qt::QueuedConnection, Q_ARG(bool, m_tpadNaturalScroll));\n    Q_EMIT tpadNaturalScrollChanged(tpadNaturalScroll);\n}\n\nvoid MouseModel::setMouseMoveSpeed(int mouseMoveSpeed)\n{\n    if (m_mouseMoveSpeed == mouseMoveSpeed)\n        return;\n\n    m_mouseMoveSpeed = mouseMoveSpeed;\n\n    QMetaObject::invokeMethod(m_worker,\"onMouseMotionAccelerationChanged\", Qt::QueuedConnection, Q_ARG(int, m_mouseMoveSpeed));\n    Q_EMIT mouseMoveSpeedChanged(mouseMoveSpeed);\n}\n\nvoid MouseModel::setTpadMoveSpeed(int tpadMoveSpeed)\n{\n    if (m_tpadMoveSpeed == tpadMoveSpeed)\n        return;\n\n    m_tpadMoveSpeed = tpadMoveSpeed;\n\n    QMetaObject::invokeMethod(m_worker,\"onTouchpadMotionAccelerationChanged\", Qt::QueuedConnection, Q_ARG(int, m_tpadMoveSpeed));\n    Q_EMIT tpadMoveSpeedChanged(tpadMoveSpeed);\n}\n\nvoid MouseModel::setAccelProfile(bool useAdaptiveProfile)\n{\n    if (m_accelProfile == useAdaptiveProfile)\n        return;\n\n    m_accelProfile = useAdaptiveProfile;\n\n    QMetaObject::invokeMethod(m_worker,\"onAccelProfileChanged\", Qt::QueuedConnection, Q_ARG(bool, m_accelProfile));\n    Q_EMIT accelProfileChanged(useAdaptiveProfile);\n}\n\nvoid MouseModel::setDisTpad(bool disTpad)\n{\n    if (m_disTpad == disTpad)\n        return;\n\n    m_disTpad = disTpad;\n\n    QMetaObject::invokeMethod(m_worker,\"onDisTouchPadChanged\", Qt::QueuedConnection, Q_ARG(bool, m_disTpad));\n    Q_EMIT disTpadChanged(disTpad);\n}\n\nvoid MouseModel::setRedPointMoveSpeed(int redPointMoveSpeed)\n{\n    if (m_redPointMoveSpeed == redPointMoveSpeed)\n        return;\n\n    m_redPointMoveSpeed = redPointMoveSpeed;\n\n    Q_EMIT redPointMoveSpeedChanged(redPointMoveSpeed);\n}\n\nvoid MouseModel::setPalmDetect(bool palmDetect)\n{\n    if (m_palmDetect == palmDetect)\n        return;\n\n    m_palmDetect = palmDetect;\n\n    Q_EMIT palmDetectChanged(palmDetect);\n}\n\nvoid MouseModel::setPalmMinWidth(int palmMinWidth)\n{\n    if (m_palmMinWidth == palmMinWidth)\n        return;\n\n    m_palmMinWidth = palmMinWidth;\n\n    Q_EMIT palmMinWidthChanged(palmMinWidth);\n}\n\nvoid MouseModel::setPalmMinz(int palmMinz)\n{\n    if (m_palmMinz == palmMinz)\n        return;\n\n    m_palmMinz = palmMinz;\n\n    Q_EMIT palmMinzChanged(palmMinz);\n}\n\nvoid MouseModel::setTapClick(bool tapClick)\n{\n    if (m_tapClick == tapClick)\n        return;\n\n    m_tapClick = tapClick;\n\n    QMetaObject::invokeMethod(m_worker,\"onTapClick\", Qt::QueuedConnection, Q_ARG(bool, m_tapClick));\n    Q_EMIT tapClickChanged(tapClick);\n}\n\nvoid MouseModel::setTapEnabled(bool tabEnabled)\n{\n    if (m_touchpadEnabled == tabEnabled)\n        return;\n\n    m_touchpadEnabled = tabEnabled;\n\n    QMetaObject::invokeMethod(m_worker,\"onTouchpadEnabledChanged\", Qt::QueuedConnection, Q_ARG(bool, m_touchpadEnabled));\n    Q_EMIT tapEnabledChanged(tabEnabled);\n}\n\nvoid MouseModel::setScrollSpeed(int speed)\n{\n    if (m_scrollSpeed == speed)\n        return;\n\n    m_scrollSpeed = speed;\n\n    QMetaObject::invokeMethod(m_worker,\n                              \"onScrollSpeedChanged\",\n                              Qt::QueuedConnection,\n                              Q_ARG(int, m_scrollSpeed));\n    Q_EMIT scrollSpeedChanged(speed);\n}\n\nvoid MouseModel::setCursorSize(int cursorSize)\n{\n    if (m_cursorSize == cursorSize)\n        return;\n\n    m_cursorSize = cursorSize;\n\n    QMetaObject::invokeMethod(m_worker,\n                              \"onCursorSizeChanged\",\n                              Qt::QueuedConnection,\n                              Q_ARG(int, m_cursorSize));\n    Q_EMIT cursorSizeChanged(cursorSize);\n}\n\nvoid MouseModel::updateGesturesData(const GestureData &gestureData)\n{\n    GestureModel* gestureModel = NULL;\n    if (gestureData.fingersNum() == 3) {\n\n        gestureModel = m_threeFingerGestureModel;\n    } else if (gestureData.fingersNum() == 4) {\n        gestureModel = m_fourFigerGestureModel;\n    } else {\n        return;\n    }\n\n    if (gestureModel->containsGestures(gestureData.direction(), gestureData.fingersNum())) {\n        gestureModel->updateGestureData(gestureData);\n    } else {\n        GestureData *data = new GestureData(this);\n        data->setActionType(gestureData.actionType());\n        data->setDirection(gestureData.direction());\n        data->setActionName(gestureData.actionName());\n        data->setFingersNum(gestureData.fingersNum());\n        data->setActionMaps(gestureData.actionMaps());\n        gestureModel->addGestureData(data);\n    }\n}\n\nGestureModel *MouseModel::threeFingerGestureModel() const\n{\n    return m_threeFingerGestureModel;\n}\n\nGestureModel *MouseModel::fourFigerGestureModel() const\n{\n    return m_fourFigerGestureModel;\n}\n\nvoid MouseModel::setGestures(int fingerNum, int index, QString actionName)\n{\n    GestureModel *gestureModel = NULL;\n    if (fingerNum == 4) {\n        gestureModel = m_fourFigerGestureModel;\n    } else if (fingerNum == 3) {\n        gestureModel = m_threeFingerGestureModel;\n    } else {\n        return;\n    }\n\n    GestureData *data = gestureModel->getGestureData(index);\n    if (data) {\n        qDebug() << \" setGestures action name : \" << actionName << data->actionName();\n        if (actionName == data->actionName())\n            return;\n\n        updateFigerAniPath(actionName, data);\n        Q_EMIT m_worker->requestSetGesture(data->actionType(),\n                                           data->direction(),\n                                           data->fingersNum(),\n                                           actionName);\n    }\n}\n\nvoid MouseModel::updateFigerGestureAni(int fingerNum, int index, QString acitonDec)\n{\n    GestureModel *gestureModel = NULL;\n    if (fingerNum == 4) {\n        gestureModel = m_fourFigerGestureModel;\n    } else if (fingerNum == 3) {\n        gestureModel = m_threeFingerGestureModel;\n    } else {\n        return;\n    }\n    updateFigerAniPath(acitonDec, gestureModel->getGestureData(index));\n}\n\nQString MouseModel::getGestureFingerAniPath() const\n{\n    return m_gestureFingerAniPath;\n}\n\nvoid MouseModel::setGestureFingerAniPath(const QString &newGestureFingerAniPath)\n{\n    if (m_gestureFingerAniPath == newGestureFingerAniPath)\n        return;\n    qDebug() << \"setGestureFingerAniPath : \" << newGestureFingerAniPath;\n    m_gestureFingerAniPath = newGestureFingerAniPath;\n    emit gestureFingerAniPathChanged();\n}\n\nQString MouseModel::getGestureActionAniPath() const\n{\n    return m_gestureActionAniPath;\n}\n\nvoid MouseModel::setGestureActionAniPath(const QString &newGestureActionAniPath)\n{\n    if (m_gestureActionAniPath == newGestureActionAniPath)\n        return;\n\n    qDebug() << \"setGestureActionAniPath : \" << newGestureActionAniPath;\n    m_gestureActionAniPath = newGestureActionAniPath;\n    emit gestureActionAniPathChanged();\n}\n\nDtk::Gui::DGuiApplicationHelper::ColorType MouseModel::themeType() const\n{\n    return m_themeType;\n}\n\nvoid MouseModel::updateFigerAniPath(QString actionName, GestureData *data)\n{\n    if (data == nullptr) {\n        data = m_threeFingerGestureModel->getGestureData(0);\n    }\n    if (data == nullptr) {\n        return;\n    }\n    if (actionName == \"\") {\n        actionName = data->actionName();\n    }\n    QString themeColor = \"\";\n    if (m_themeType == Dtk::Gui::DGuiApplicationHelper::ColorType::DarkType) {\n        themeColor = \"dark\";\n    } else if (m_themeType == Dtk::Gui::DGuiApplicationHelper::ColorType::LightType) {\n        themeColor = \"light\";\n    }\n\n    QString gestureDirection = data->actionType() == \"tap\" ? data->actionType() : data->direction();\n\n    QString fingerNum = \"\";\n    if (data->fingersNum() == 4) {\n        fingerNum = \"Four\";\n    } else if (data->fingersNum() == 3) {\n        fingerNum = \"Three\";\n    }\n\n    setGestureFingerAniPath(QString(\"qrc:/icons/deepin/builtin/icons/%1/%2_finger_%3_ani.webp\")\n                                    .arg(themeColor)\n                                    .arg(fingerNum)\n                                    .arg(gestureDirection));\n    setGestureActionAniPath(QString(\"qrc:/icons/deepin/builtin/icons/%1/%2.webp\").arg(themeColor).arg(actionName));\n}\n\nvoid MouseModel::updateFigerAniPath(const Dtk::Gui::DGuiApplicationHelper::ColorType &newThemeType)\n{\n    QString currentThemeColor = \"\";\n    QString changedThemeColor = \"\";\n\n\n    currentThemeColor = m_themeType == Dtk::Gui::DGuiApplicationHelper::ColorType::DarkType ? \"dark\" : \"light\";\n    changedThemeColor = newThemeType == Dtk::Gui::DGuiApplicationHelper::ColorType::DarkType ? \"dark\" : \"light\";\n\n    setGestureFingerAniPath(getGestureFingerAniPath().replace(currentThemeColor,changedThemeColor));\n    setGestureActionAniPath(getGestureActionAniPath().replace(currentThemeColor,changedThemeColor));\n}\n\nvoid MouseModel::setThemeType(const Dtk::Gui::DGuiApplicationHelper::ColorType &newThemeType)\n{\n    if (m_themeType == newThemeType)\n        return;\n    m_themeType = newThemeType;\n    emit themeTypeChanged();\n}\n\nvoid MouseModel::setLidIsPresent(bool lidIsPresent)\n{\n    if (m_lidIsPresent == lidIsPresent)\n        return;\n\n    m_lidIsPresent = lidIsPresent;\n    Q_EMIT lidIsPresentChanged(lidIsPresent);\n}\n\nDCC_FACTORY_CLASS(MouseModel)\n\n#include \"mousemodel.moc\"\n"
  },
  {
    "path": "src/plugin-mouse/operation/mousemodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef MOUSEMODEL_H\n#define MOUSEMODEL_H\n\n#include \"gesturedata.h\"\n#include \"gesturemodel.h\"\n\n#include <QDBusArgument>\n#include <QDebug>\n#include <QObject>\n#include <QQmlEngine>\n#include <DGuiApplicationHelper>\n\nnamespace DCC_NAMESPACE {\nclass MouseWorker;\nclass MouseModel : public QObject\n{\n    Q_OBJECT\n    friend class MouseWorker;\npublic:\n    explicit MouseModel(QObject *parent = nullptr);\n    ~MouseModel();\n\n    Q_PROPERTY(int scrollSpeed READ scrollSpeed WRITE setScrollSpeed NOTIFY scrollSpeedChanged FINAL)\n    Q_PROPERTY(int doubleSpeed READ doubleSpeed WRITE setDoubleSpeed NOTIFY doubleSpeedChanged FINAL)\n    Q_PROPERTY(bool leftHandState READ leftHandState WRITE setLeftHandState NOTIFY leftHandStateChanged FINAL)\n    Q_PROPERTY(int mouseMoveSpeed READ mouseMoveSpeed WRITE setMouseMoveSpeed NOTIFY mouseMoveSpeedChanged FINAL)\n    Q_PROPERTY(bool accelProfile READ accelProfile WRITE setAccelProfile NOTIFY accelProfileChanged FINAL)\n    Q_PROPERTY(bool disTpad READ disTpad WRITE setDisTpad NOTIFY disTpadChanged FINAL)\n    Q_PROPERTY(bool tpadExist READ tpadExist WRITE setTpadExist NOTIFY tpadExistChanged FINAL)\n    Q_PROPERTY(bool mouseNaturalScroll READ mouseNaturalScroll WRITE setMouseNaturalScroll NOTIFY mouseNaturalScrollChanged FINAL)\n    Q_PROPERTY(int tpadMoveSpeed READ tpadMoveSpeed WRITE setTpadMoveSpeed NOTIFY tpadMoveSpeedChanged FINAL)\n    Q_PROPERTY(bool tapClick READ tapClick WRITE setTapClick NOTIFY tapClickChanged FINAL)\n    Q_PROPERTY(bool tpadNaturalScroll READ tpadNaturalScroll WRITE setTpadNaturalScroll NOTIFY tpadNaturalScrollChanged FINAL)\n    Q_PROPERTY(bool disIfTyping READ disIfTyping WRITE setDisIfTyping NOTIFY disIfTypingChanged FINAL)\n    Q_PROPERTY(bool tapEnabled READ tapEnabled WRITE setTapEnabled NOTIFY tapEnabledChanged FINAL)\n    Q_PROPERTY(QString gestureFingerAniPath READ getGestureFingerAniPath NOTIFY gestureFingerAniPathChanged FINAL)\n    Q_PROPERTY(QString gestureActionAniPath READ getGestureActionAniPath NOTIFY gestureActionAniPathChanged FINAL)\n    Q_PROPERTY(int cursorSize READ cursorSize WRITE setCursorSize NOTIFY cursorSizeChanged FINAL)\n    Q_PROPERTY(QList<int> availableCursorSizes READ availableCursorSizes WRITE setAvailableCursorSizes NOTIFY availableCursorSizesChanged FINAL)\n    Q_PROPERTY(bool lidIsPresent READ lidIsPresent NOTIFY lidIsPresentChanged FINAL)\n\n    inline bool leftHandState() const { return m_leftHandState; }\n    void setLeftHandState(const bool state);\n\n    void setDisIfTyping(const bool state);\n    inline bool disIfTyping()   const { return m_disIfTyping; }\n\n    inline bool tpadExist() const { return m_tpadExist; }\n    void setTpadExist(bool tpadExist);\n\n    inline bool mouseExist() const { return m_mouseExist; }\n    void setMouseExist(bool mouseExist);\n\n    inline bool redPointExist() const { return m_redPointExist; }\n    void setRedPointExist(bool redPointExist);\n\n    inline int doubleSpeed() const { return m_doubleSpeed; }\n    void setDoubleSpeed(int doubleSpeed);\n\n    inline bool mouseNaturalScroll() const { return m_mouseNaturalScroll; }\n    void setMouseNaturalScroll(bool mouseNaturalScroll);\n\n    inline bool tpadNaturalScroll() const { return m_tpadNaturalScroll; }\n    void setTpadNaturalScroll(bool tpadNaturalScroll);\n\n    inline int mouseMoveSpeed() const { return m_mouseMoveSpeed; }\n    void setMouseMoveSpeed(int mouseMoveSpeed);\n\n    inline int tpadMoveSpeed() const { return m_tpadMoveSpeed; }\n    void setTpadMoveSpeed(int tpadMoveSpeed);\n\n    inline bool accelProfile() const { return m_accelProfile; }\n    void setAccelProfile(bool useAdaptiveProfile);\n\n    inline bool disTpad() const { return m_disTpad; }\n    void setDisTpad(bool disTpad);\n\n    inline int redPointMoveSpeed() const { return m_redPointMoveSpeed; }\n    void setRedPointMoveSpeed(int redPointMoveSpeed);\n\n    inline bool palmDetect() const { return m_palmDetect; }\n    void setPalmDetect(bool palmDetect);\n\n    inline int palmMinWidth() const { return m_palmMinWidth; }\n    void setPalmMinWidth(int palmMinWidth);\n\n    inline int palmMinz() const { return m_palmMinz; }\n    void setPalmMinz(int palmMinz);\n\n    bool tapClick() const { return m_tapClick; }\n    void setTapClick(bool tapClick);\n\n    bool tapEnabled() const { return m_touchpadEnabled; }\n    void setTapEnabled(bool tapEnabled);\n\n    int scrollSpeed() const { return m_scrollSpeed; }\n    void setScrollSpeed(int speed);\n\n    int cursorSize() const { return m_cursorSize; }\n    void setCursorSize(int cursorSize);\n\n    QList<int> availableCursorSizes() const { return m_availableCursorSizes; }\n    void setAvailableCursorSizes(const QList<int> sizes) { m_availableCursorSizes = sizes; }\n\n    bool lidIsPresent() const { return m_lidIsPresent; }\n    void setLidIsPresent(bool lidIsPresent);\n\n    void updateGesturesData(const GestureData &gestureData);\n\n    Q_INVOKABLE GestureModel *threeFingerGestureModel() const;\n\n    Q_INVOKABLE GestureModel *fourFigerGestureModel() const;\n\n    Q_INVOKABLE void setGestures(int fingerNum, int index, QString actionName);\n    Q_INVOKABLE void updateFigerGestureAni(int fingerNum, int index, QString acitonDec);\n\n    QString getGestureFingerAniPath() const;\n    void setGestureFingerAniPath(const QString &newGestureFingerAniPath);\n\n    QString getGestureActionAniPath() const;\n    void setGestureActionAniPath(const QString &newGestureActionAniPath);\n\n    Dtk::Gui::DGuiApplicationHelper::ColorType themeType() const;\n\n    void updateFigerAniPath(QString actionName = \"\", GestureData* data = nullptr);\n    void updateFigerAniPath(const Dtk::Gui::DGuiApplicationHelper::ColorType &newThemeType);\n\n    void setThemeType(const Dtk::Gui::DGuiApplicationHelper::ColorType &newThemeType);\n\n\nQ_SIGNALS:\n    void leftHandStateChanged(bool state);\n    void disIfTypingStateChanged(bool state);\n    void tpadExistChanged(bool tpadExist);\n    void mouseExistChanged(bool mouseExist);\n    void redPointExistChanged(bool rPointExist);\n    void doubleSpeedChanged(int speed);\n    void mouseNaturalScrollChanged(bool natural);\n    void tpadNaturalScrollChanged(bool natural);\n    void mouseMoveSpeedChanged(int speed);\n    void tpadMoveSpeedChanged(int speed);\n    void accelProfileChanged(bool useAdaptiveProfile);\n    void redPointMoveSpeedChanged(int speed);\n    void disTpadChanged(bool disable);\n    void palmDetectChanged(bool detect);\n    void palmMinWidthChanged(int palmMinWidth);\n    void palmMinzChanged(int palmMinz);\n    void tapClickChanged(bool tapClick);\n    void tapEnabledChanged(bool tapClick);\n    void scrollSpeedChanged(int speed);\n    void disIfTypingChanged(bool state);\n    void cursorSizeChanged(int cursorSize);\n    void availableCursorSizesChanged(QList<int> sizes);\n    void lidIsPresentChanged(bool lidIsPresent);\n\n    void gestureFingerAniPathChanged();\n\n    void gestureActionAniPathChanged();\n\n    void themeTypeChanged();\n\nprivate:\n    bool m_leftHandState;\n    bool m_disIfTyping;\n    bool m_tpadExist;\n    bool m_mouseExist;\n    bool m_redPointExist;\n    bool m_mouseNaturalScroll;\n    bool m_tpadNaturalScroll;\n    bool m_accelProfile;\n    bool m_disTpad;\n    bool m_palmDetect;\n    bool m_tapClick;\n    bool m_touchpadEnabled;\n    int  m_doubleSpeed;\n    int  m_mouseMoveSpeed;\n    int  m_tpadMoveSpeed;\n    int  m_redPointMoveSpeed;\n    int  m_palmMinWidth;\n    int  m_palmMinz;\n    int  m_scrollSpeed;\n    int  m_cursorSize;\n    bool m_lidIsPresent;\n    QList<int> m_availableCursorSizes;\n\n    QString m_gestureFingerAniPath;\n    QString m_gestureActionAniPath;\n    Dtk::Gui::DGuiApplicationHelper::ColorType m_themeType;\n\n    // 手势ui数据\n    GestureModel* m_threeFingerGestureModel;\n    GestureModel* m_fourFigerGestureModel;\n    MouseWorker* m_worker;\n};\n\n}\n\n\n\n#endif // MOUSEMODEL_H\n"
  },
  {
    "path": "src/plugin-mouse/operation/mouseworker.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"mouseworker.h\"\n\n#include \"mousedbusproxy.h\"\n\nusing namespace DCC_NAMESPACE;\nconst QString Service = \"org.deepin.dde.InputDevices1\";\n\nMouseWorker::MouseWorker(MouseModel *model, QObject *parent)\n    : QObject(parent)\n    , m_model(model)\n    , m_treelandWorker(new TreeLandWorker(this))\n{\n    MouseDBusProxy *proxy = new MouseDBusProxy(this, this);\n    QMetaObject::invokeMethod(proxy, \"active\", Qt::QueuedConnection);\n#ifdef Enable_Treeland\n    m_treelandWorker->active();\n#endif\n}\n\nvoid MouseWorker::initFingerGestures()\n{\n    m_model->updateFigerAniPath();\n}\n\nvoid MouseWorker::setMouseExist(bool exist)\n{\n    m_model->setMouseExist(exist);\n}\n\nvoid MouseWorker::setTpadExist(bool exist)\n{\n    m_model->setTpadExist(exist);\n}\n\nvoid MouseWorker::setTpadEnabled(bool enabled)\n{\n    m_model->setTapEnabled(enabled);\n}\n\nvoid MouseWorker::setRedPointExist(bool exist)\n{\n    m_model->setRedPointExist(exist);\n}\n\nvoid MouseWorker::setLeftHandState(const bool state)\n{\n    m_model->setLeftHandState(state);\n}\n\nvoid MouseWorker::setMouseNaturalScrollState(const bool state)\n{\n    m_model->setMouseNaturalScroll(state);\n}\n\nvoid MouseWorker::setTouchNaturalScrollState(const bool state)\n{\n    m_model->setTpadNaturalScroll(state);\n}\n\nvoid MouseWorker::setDisTyping(const bool state)\n{\n    m_model->setDisIfTyping(state);\n}\n\nvoid MouseWorker::setDisTouchPad(const bool state)\n{\n    m_model->setDisTpad(state);\n}\n\nvoid MouseWorker::setTapClick(const bool state)\n{\n    m_model->setTapClick(state);\n}\n\nvoid MouseWorker::setDouClick(const int &value)\n{\n    m_model->setDoubleSpeed(converToDoubleModel(value));\n}\n\nvoid MouseWorker::setMouseMotionAcceleration(const double &value)\n{\n    m_model->setMouseMoveSpeed(converToModelMotionAcceleration(value));\n}\n\nvoid MouseWorker::setAccelProfile(const bool state)\n{\n    m_model->setAccelProfile(state);\n}\n\nvoid MouseWorker::setTouchpadMotionAcceleration(const double &value)\n{\n    m_model->setTpadMoveSpeed(converToModelMotionAcceleration(value));\n}\n\nvoid MouseWorker::setTrackPointMotionAcceleration(const double &value)\n{\n    m_model->setRedPointMoveSpeed(converToModelMotionAcceleration(value));\n}\n\nvoid MouseWorker::setPalmDetect(bool palmDetect)\n{\n    m_model->setPalmDetect(palmDetect);\n}\n\nvoid MouseWorker::setPalmMinWidth(int palmMinWidth)\n{\n    m_model->setPalmMinWidth(palmMinWidth);\n}\n\nvoid MouseWorker::setPalmMinz(int palmMinz)\n{\n    m_model->setPalmMinz(palmMinz);\n}\n\nvoid MouseWorker::setScrollSpeed(uint speed)\n{\n    m_model->setScrollSpeed(speed);\n}\n\nvoid MouseWorker::setGestureData(const GestureData &data)\n{\n    m_model->updateGesturesData(data);\n}\n\nvoid MouseWorker::setCursorSize(const int cursorSize)\n{\n    m_model->setCursorSize(cursorSize);\n}\n\nvoid MouseWorker::setAvailableCursorSizes(QList<int> sizes)\n{\n    m_model->setAvailableCursorSizes(sizes);\n}\n\nvoid MouseWorker::setLidIsPresent(bool lidIsPresent)\n{\n    m_model->setLidIsPresent(lidIsPresent);\n}\n\nvoid MouseWorker::onPalmDetectChanged(bool palmDetect)\n{\n    Q_EMIT requestSetPalmDetect(palmDetect);\n}\n\nvoid MouseWorker::onPalmMinWidthChanged(int palmMinWidth)\n{\n    Q_EMIT requestSetPalmMinWidth(palmMinWidth);\n}\n\nvoid MouseWorker::onPalmMinzChanged(int palmMinz)\n{\n    Q_EMIT requestSetPalmMinz(palmMinz);\n}\n\nvoid MouseWorker::onScrollSpeedChanged(int speed)\n{\n    Q_EMIT requestSetScrollSpeed(static_cast<uint>(speed));\n}\n\nvoid MouseWorker::onTouchpadEnabledChanged(const bool state)\n{\n    Q_EMIT requestSetTouchpadEnabled(state);\n}\n\nvoid MouseWorker::onCursorSizeChanged(const int cursorSize)\n{\n    Q_EMIT requestSetCursorSize(cursorSize);\n#ifdef Enable_Treeland\n    if (Dtk::Gui::DGuiApplicationHelper::testAttribute(\n                Dtk::Gui::DGuiApplicationHelper::IsWaylandPlatform)) {\n        m_treelandWorker->setCursorSize(cursorSize);\n    }\n#endif\n}\n\nvoid MouseWorker::onLeftHandStateChanged(const bool state)\n{\n    Q_EMIT requestSetLeftHandState(state);\n}\n\nvoid MouseWorker::onMouseNaturalScrollStateChanged(const bool state)\n{\n    Q_EMIT requestSetMouseNaturalScrollState(state);\n}\n\nvoid MouseWorker::onTouchNaturalScrollStateChanged(const bool state)\n{\n    Q_EMIT requestSetTouchNaturalScrollState(state);\n}\n\nvoid MouseWorker::onDisTypingChanged(const bool state)\n{\n    Q_EMIT requestSetDisTyping(state);\n}\n\nvoid MouseWorker::onDisTouchPadChanged(const bool state)\n{\n    Q_EMIT requestSetDisTouchPad(state);\n}\n\nvoid MouseWorker::onTapClick(const bool state)\n{\n    Q_EMIT requestSetTapClick(state);\n}\n\nvoid MouseWorker::onDouClickChanged(const int &value)\n{\n    Q_EMIT requestSetDouClick(converToDouble(value));\n}\n\nvoid MouseWorker::onMouseMotionAccelerationChanged(const int &value)\n{\n    Q_EMIT requestSetMouseMotionAcceleration(converToMotionAcceleration(value));\n}\n\nvoid MouseWorker::onAccelProfileChanged(const bool state)\n{\n    Q_EMIT requestSetAccelProfile(state);\n}\n\nvoid MouseWorker::onTouchpadMotionAccelerationChanged(const int &value)\n{\n    Q_EMIT requestSetTouchpadMotionAcceleration(converToMotionAcceleration(value));\n}\n\nvoid MouseWorker::onTrackPointMotionAccelerationChanged(const int &value)\n{\n    Q_EMIT requestSetTrackPointMotionAcceleration(converToMotionAcceleration(value));\n}\n\nint MouseWorker::converToDouble(int value)\n{\n    return 800 - value * 100;\n}\n\nint MouseWorker::converToDoubleModel(int value)\n{\n    return (800 - value) / 100;\n}\n//conver slider value to real value\ndouble MouseWorker::converToMotionAcceleration(int value)\n{\n    switch (value) {\n    case 0:\n        return 3.2;\n    case 1:\n        return 2.3;\n    case 2:\n        return 1.6;\n    case 3:\n        return 1.0;\n    case 4:\n        return 0.6;\n    case 5:\n        return 0.3;\n    case 6:\n        return 0.2;\n    default:\n        return 1.0;\n    }\n}\n//conver real value to slider value\nint MouseWorker::converToModelMotionAcceleration(double value)\n{\n    if (value <= 0.2) {\n        return 6;\n    } else if (value <= 0.3) {\n        return 5;\n    } else if (value <= 0.6) {\n        return 4;\n    } else if (value <= 1.0) {\n        return 3;\n    } else if (value <= 1.6) {\n        return 2;\n    } else if (value <= 2.3) {\n        return 1;\n    } else if (value <= 3.2) {\n        return 0;\n    } else {\n        return 3;\n    }\n}\n"
  },
  {
    "path": "src/plugin-mouse/operation/mouseworker.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef MOUSEWORKER_H\n#define MOUSEWORKER_H\n\n#include \"mousemodel.h\"\n#include \"treelandworker.h\"\n\n#include <QObject>\n\nusing namespace DCC_MOUSE;\nnamespace DCC_NAMESPACE {\nclass MouseWorker : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit MouseWorker(MouseModel *model, QObject *parent = nullptr);\n    void active();\n    void deactive();\n    void init();\n\n    void initFingerGestures();\n\npublic Q_SLOTS:\n    void setMouseExist(bool exist);\n    void setTpadExist(bool exist);\n    void setTpadEnabled(bool enabled);\n    void setRedPointExist(bool exist);\n    void setLeftHandState(const bool state);\n    void setMouseNaturalScrollState(const bool state);\n    void setTouchNaturalScrollState(const bool state);\n    void setDisTyping(const bool state);\n    void setDisTouchPad(const bool state);\n    void setTapClick(const bool state);\n    void setDouClick(const int &value);\n    void setMouseMotionAcceleration(const double &value);\n    void setAccelProfile(const bool state);\n    void setTouchpadMotionAcceleration(const double &value);\n    void setTrackPointMotionAcceleration(const double &value);\n    void setPalmDetect(bool palmDetect);\n    void setPalmMinWidth(int palmMinWidth);\n    void setPalmMinz(int palmMinz);\n    void setScrollSpeed(uint speed);\n    void setGestureData(const GestureData &data);\n    void setCursorSize(const int cursorSize);\n    void setAvailableCursorSizes(QList<int> sizes);\n    void setLidIsPresent(bool lidIsPresent);\n\n    void onLeftHandStateChanged(const bool state);\n    void onMouseNaturalScrollStateChanged(const bool state);\n    void onTouchNaturalScrollStateChanged(const bool state);\n    void onDisTypingChanged(const bool state);\n    void onDisTouchPadChanged(const bool state);\n    void onTapClick(const bool state);\n    void onDouClickChanged(const int &value);\n    void onMouseMotionAccelerationChanged(const int &value);\n    void onAccelProfileChanged(const bool state);\n    void onTouchpadMotionAccelerationChanged(const int &value);\n    void onTrackPointMotionAccelerationChanged(const int &value);\n    void onPalmDetectChanged(bool palmDetect);\n    void onPalmMinWidthChanged(int palmMinWidth);\n    void onPalmMinzChanged(int palmMinz);\n    void onScrollSpeedChanged(int speed);\n    void onTouchpadEnabledChanged(const bool state);\n    void onCursorSizeChanged(const int cursorSize);\n\nQ_SIGNALS:\n    void requestSetPalmDetect(bool palmDetect);\n    void requestSetPalmMinWidth(int palmMinWidth);\n    void requestSetPalmMinz(int palmMinz);\n    void requestSetScrollSpeed(uint speed);\n    void requestSetLeftHandState(const bool state);\n    void requestSetMouseNaturalScrollState(const bool state);\n    void requestSetTouchNaturalScrollState(const bool state);\n    void requestSetDisTyping(const bool state);\n    void requestSetDisTouchPad(const bool state);\n    void requestSetTapClick(const bool state);\n    void requestSetDouClick(const int &value);\n    void requestSetMouseMotionAcceleration(const double &value);\n    void requestSetAccelProfile(const bool state);\n    void requestSetTouchpadMotionAcceleration(const double &value);\n    void requestSetTrackPointMotionAcceleration(const double &value);\n    void requestSetTouchpadEnabled(const bool state);\n    void requestSetGesture(const QString& name, const QString& direction, int fingers, const QString& action);\n    void requestSetCursorSize(const int cursorSize);\n\nprivate:\n    int converToDouble(int value);\n    int converToDoubleModel(int value);\n    double converToMotionAcceleration(int value);\n    int converToModelMotionAcceleration(double value);\n\nprivate:\n    MouseModel *m_model;\n    TreeLandWorker *m_treelandWorker;\n};\n}\n\n#endif // MOUSEWORKER_H\n"
  },
  {
    "path": "src/plugin-mouse/operation/qrc/mouse.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dark/Four_finger_tap_ani.webp</file>\n        <file>icons/dark/Four_finger_down_ani.webp</file>\n        <file>icons/dark/Four_finger_left_ani.webp</file>\n        <file>icons/dark/Four_finger_right_ani.webp</file>\n        <file>icons/dark/Four_finger_up_ani.webp</file>\n        <file>icons/dark/HideDesktop.webp</file>\n        <file>icons/dark/HideMultitask.webp</file>\n        <file>icons/dark/MaximizeWindow.webp</file>\n        <file>icons/dark/RestoreWindow.webp</file>\n        <file>icons/dark/ShowDesktop.webp</file>\n        <file>icons/dark/ShowMultiTask.webp</file>\n        <file>icons/dark/SplitWindowLeft.webp</file>\n        <file>icons/dark/SplitWindowRight.webp</file>\n        <file>icons/dark/SwitchToNextDesktop.webp</file>\n        <file>icons/dark/SwitchToPreDesktop.webp</file>\n        <file>icons/dark/Three_finger_down_ani.webp</file>\n        <file>icons/dark/Three_finger_left_ani.webp</file>\n        <file>icons/dark/Three_finger_right_ani.webp</file>\n        <file>icons/dark/ToggleClipboard.webp</file>\n        <file>icons/dark/ToggleGrandSearch.webp</file>\n        <file>icons/dark/ToggleLaunchPad.webp</file>\n        <file>icons/dark/ToggleNotifications.webp</file>\n        <file>icons/light/Four_finger_tap_ani.webp</file>\n        <file>icons/light/Four_finger_down_ani.webp</file>\n        <file>icons/light/Four_finger_left_ani.webp</file>\n        <file>icons/light/Four_finger_right_ani.webp</file>\n        <file>icons/light/Four_finger_up_ani.webp</file>\n        <file>icons/light/HideDesktop.webp</file>\n        <file>icons/light/HideMultitask.webp</file>\n        <file>icons/light/MaximizeWindow.webp</file>\n        <file>icons/light/RestoreWindow.webp</file>\n        <file>icons/light/ShowDesktop.webp</file>\n        <file>icons/light/ShowMultiTask.webp</file>\n        <file>icons/light/SplitWindowLeft.webp</file>\n        <file>icons/light/SplitWindowRight.webp</file>\n        <file>icons/light/SwitchToNextDesktop.webp</file>\n        <file>icons/light/SwitchToPreDesktop.webp</file>\n        <file>icons/light/Three_finger_tap_ani.webp</file>\n        <file>icons/light/Three_finger_down_ani.webp</file>\n        <file>icons/light/Three_finger_left_ani.webp</file>\n        <file>icons/light/Three_finger_right_ani.webp</file>\n        <file>icons/light/Three_finger_up_ani.webp</file>\n        <file>icons/light/ToggleClipboard.webp</file>\n        <file>icons/light/ToggleGrandSearch.webp</file>\n        <file>icons/light/ToggleLaunchPad.webp</file>\n        <file>icons/light/ToggleNotifications.webp</file>\n        <file>icons/dark/Three_finger_tap_ani.webp</file>\n        <file>icons/dark/Three_finger_up_ani.webp</file>\n        <file>icons/light/mouse_cursor_size_big.png</file>\n        <file>icons/light/mouse_cursor_size_largest.png</file>\n        <file>icons/light/mouse_cursor_size_medium.png</file>\n        <file>icons/light/mouse_cursor_size_small.png</file>\n        <file>icons/dark/mouse_cursor_size_big.png</file>\n        <file>icons/dark/mouse_cursor_size_largest.png</file>\n        <file>icons/dark/mouse_cursor_size_medium.png</file>\n        <file>icons/dark/mouse_cursor_size_small.png</file>\n    </qresource>\n    <qresource prefix=\"/mouse\">\n        <file>double_test/bow_head/bow_head_00001.png</file>\n        <file>double_test/bow_head/bow_head_00002.png</file>\n        <file>double_test/bow_head/bow_head_00003.png</file>\n        <file>double_test/bow_head/bow_head_00004.png</file>\n        <file>double_test/bow_head/bow_head_00005.png</file>\n        <file>double_test/bow_head/bow_head_00006.png</file>\n        <file>double_test/bow_head/bow_head_00007.png</file>\n        <file>double_test/bow_head/bow_head_00008.png</file>\n        <file>double_test/bow_head/bow_head_00009.png</file>\n        <file>double_test/bow_head/bow_head_00010.png</file>\n        <file>double_test/bow_head/bow_head_00011.png</file>\n        <file>double_test/bow_head/bow_head_00012.png</file>\n        <file>double_test/bow_head/bow_head_00013.png</file>\n        <file>double_test/bow_head/bow_head_00014.png</file>\n        <file>double_test/bow_head/bow_head_00015.png</file>\n        <file>double_test/bow_head/bow_head_00016.png</file>\n        <file>double_test/bow_head/bow_head_00017.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00001.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00002.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00003.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00004.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00005.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00006.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00007.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00008.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00009.png</file>\n        <file>double_test/raise_head/raise_head_00001.png</file>\n        <file>double_test/raise_head/raise_head_00002.png</file>\n        <file>double_test/raise_head/raise_head_00003.png</file>\n        <file>double_test/raise_head/raise_head_00004.png</file>\n        <file>double_test/raise_head/raise_head_00005.png</file>\n        <file>double_test/raise_head/raise_head_00006.png</file>\n        <file>double_test/raise_head/raise_head_00007.png</file>\n        <file>double_test/raise_head/raise_head_00008.png</file>\n        <file>double_test/raise_head/raise_head_00009.png</file>\n        <file>double_test/raise_head/raise_head_00010.png</file>\n        <file>double_test/raise_head/raise_head_00011.png</file>\n        <file>double_test/raise_head/raise_head_00012.png</file>\n        <file>double_test/raise_head/raise_head_00013.png</file>\n        <file>double_test/raise_head/raise_head_00014.png</file>\n        <file>double_test/raise_head/raise_head_00015.png</file>\n        <file>double_test/raise_head/raise_head_00016.png</file>\n        <file>double_test/raise_head/raise_head_00017.png</file>\n        <file>double_test/raise_head/raise_head_00018.png</file>\n        <file>double_test/raise_head/raise_head_00019.png</file>\n        <file>double_test/raise_head/raise_head_00020.png</file>\n        <file>double_test/raise_head/raise_head_00021.png</file>\n        <file>double_test/raise_head/raise_head_00022.png</file>\n        <file>double_test/raise_head/raise_head_00023.png</file>\n        <file>double_test/raise_head/raise_head_00024.png</file>\n        <file>double_test/raise_head/raise_head_00025.png</file>\n        <file>double_test/raise_head/raise_head_00026.png</file>\n        <file>double_test/raise_head/raise_head_00027.png</file>\n        <file>double_test/raise_head/raise_head_00028.png</file>\n        <file>double_test/raise_head/raise_head_00029.png</file>\n        <file>double_test/raise_head/raise_head_00030.png</file>\n        <file>double_test/raise_head/raise_head_00031.png</file>\n        <file>double_test/raise_head/raise_head_00032.png</file>\n        <file>double_test/raise_head/raise_head_00033.png</file>\n        <file>double_test/raise_head/raise_head_00034.png</file>\n        <file>double_test/raise_head/raise_head_00035.png</file>\n        <file>double_test/raise_head/raise_head_00036.png</file>\n        <file>double_test/raise_head/raise_head_00037.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00001.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00002.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00003.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00004.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00005.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00006.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00007.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00008.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00009.png</file>\n        <file>double_test/bow_head/bow_head_00001@2x.png</file>\n        <file>double_test/bow_head/bow_head_00002@2x.png</file>\n        <file>double_test/bow_head/bow_head_00003@2x.png</file>\n        <file>double_test/bow_head/bow_head_00004@2x.png</file>\n        <file>double_test/bow_head/bow_head_00005@2x.png</file>\n        <file>double_test/bow_head/bow_head_00006@2x.png</file>\n        <file>double_test/bow_head/bow_head_00007@2x.png</file>\n        <file>double_test/bow_head/bow_head_00008@2x.png</file>\n        <file>double_test/bow_head/bow_head_00009@2x.png</file>\n        <file>double_test/bow_head/bow_head_00010@2x.png</file>\n        <file>double_test/bow_head/bow_head_00011@2x.png</file>\n        <file>double_test/bow_head/bow_head_00012@2x.png</file>\n        <file>double_test/bow_head/bow_head_00013@2x.png</file>\n        <file>double_test/bow_head/bow_head_00014@2x.png</file>\n        <file>double_test/bow_head/bow_head_00015@2x.png</file>\n        <file>double_test/bow_head/bow_head_00016@2x.png</file>\n        <file>double_test/bow_head/bow_head_00017@2x.png</file>\n        <file>double_test/bow_head/bow_head_00018.png</file>\n        <file>double_test/bow_head/bow_head_00018@2x.png</file>\n        <file>double_test/bow_head/bow_head_00019.png</file>\n        <file>double_test/bow_head/bow_head_00019@2x.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00001@2x.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00002@2x.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00003@2x.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00004@2x.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00005@2x.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00006@2x.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00007@2x.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00008@2x.png</file>\n        <file>double_test/bow_head_ears/bow_head_ears_00009@2x.png</file>\n        <file>double_test/raise_head/raise_head_00001@2x.png</file>\n        <file>double_test/raise_head/raise_head_00002@2x.png</file>\n        <file>double_test/raise_head/raise_head_00003@2x.png</file>\n        <file>double_test/raise_head/raise_head_00004@2x.png</file>\n        <file>double_test/raise_head/raise_head_00005@2x.png</file>\n        <file>double_test/raise_head/raise_head_00006@2x.png</file>\n        <file>double_test/raise_head/raise_head_00007@2x.png</file>\n        <file>double_test/raise_head/raise_head_00008@2x.png</file>\n        <file>double_test/raise_head/raise_head_00009@2x.png</file>\n        <file>double_test/raise_head/raise_head_00010@2x.png</file>\n        <file>double_test/raise_head/raise_head_00011@2x.png</file>\n        <file>double_test/raise_head/raise_head_00012@2x.png</file>\n        <file>double_test/raise_head/raise_head_00013@2x.png</file>\n        <file>double_test/raise_head/raise_head_00014@2x.png</file>\n        <file>double_test/raise_head/raise_head_00015@2x.png</file>\n        <file>double_test/raise_head/raise_head_00016@2x.png</file>\n        <file>double_test/raise_head/raise_head_00017@2x.png</file>\n        <file>double_test/raise_head/raise_head_00018@2x.png</file>\n        <file>double_test/raise_head/raise_head_00019@2x.png</file>\n        <file>double_test/raise_head/raise_head_00020@2x.png</file>\n        <file>double_test/raise_head/raise_head_00021@2x.png</file>\n        <file>double_test/raise_head/raise_head_00022@2x.png</file>\n        <file>double_test/raise_head/raise_head_00023@2x.png</file>\n        <file>double_test/raise_head/raise_head_00024@2x.png</file>\n        <file>double_test/raise_head/raise_head_00025@2x.png</file>\n        <file>double_test/raise_head/raise_head_00026@2x.png</file>\n        <file>double_test/raise_head/raise_head_00027@2x.png</file>\n        <file>double_test/raise_head/raise_head_00028@2x.png</file>\n        <file>double_test/raise_head/raise_head_00029@2x.png</file>\n        <file>double_test/raise_head/raise_head_00030@2x.png</file>\n        <file>double_test/raise_head/raise_head_00031@2x.png</file>\n        <file>double_test/raise_head/raise_head_00032@2x.png</file>\n        <file>double_test/raise_head/raise_head_00033@2x.png</file>\n        <file>double_test/raise_head/raise_head_00034@2x.png</file>\n        <file>double_test/raise_head/raise_head_00035@2x.png</file>\n        <file>double_test/raise_head/raise_head_00036@2x.png</file>\n        <file>double_test/raise_head/raise_head_00037@2x.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00001@2x.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00002@2x.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00003@2x.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00004@2x.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00005@2x.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00006@2x.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00007@2x.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00008@2x.png</file>\n        <file>double_test/raise_head_ears/raise_head_ears_00009@2x.png</file>\n    </qresource>\n    <qresource prefix=\"/mouse/icons\"/>\n    <qresource prefix=\"/dsg\"/>\n</RCC>\n"
  },
  {
    "path": "src/plugin-mouse/operation/treelandworker.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"treelandworker.h\"\n\n#include <private/qguiapplication_p.h>\n#include <private/qwaylandintegration_p.h>\n#include <private/qwaylandwindow_p.h>\n#include <qlogging.h>\n\n#include <QGuiApplication>\n\nusing namespace DCC_MOUSE;\n\nTreeLandWorker::TreeLandWorker(QObject *parent)\n    : QObject(parent)\n{\n}\n\nvoid TreeLandWorker::active()\n{\n#ifdef Enable_Treeland\n    if (m_personalizationManager.isNull()) {\n        m_personalizationManager.reset(new PersonalizationManager(this));\n        connect(m_personalizationManager.get(),\n                &PersonalizationManager::activeChanged,\n                this,\n                [this]() {\n                    if (m_personalizationManager->isActive()) {\n                        init();\n                    } else {\n                        // clear();\n                    }\n                });\n    }\n#endif\n}\n\nvoid TreeLandWorker::init()\n{\n#ifdef Enable_Treeland\n    if (m_cursorContext.isNull()) {\n        m_cursorContext.reset(\n                new TreelandCursorContext(m_personalizationManager->get_cursor_context()));\n    }\n#endif\n}\n\nvoid TreeLandWorker::setCursorSize(int size)\n{\n#ifdef Enable_Treeland\n    if (m_cursorContext) {\n        m_cursorContext->set_size(size);\n        m_cursorContext->commit();\n    }\n#endif\n}\n\n#ifdef Enable_Treeland\nPersonalizationManager::PersonalizationManager(QObject *parent)\n    : QWaylandClientExtensionTemplate<PersonalizationManager>(1)\n{\n    if (QGuiApplication::platformName() == QLatin1String(\"wayland\")) {\n        QtWaylandClient::QWaylandIntegration *waylandIntegration =\n                static_cast<QtWaylandClient::QWaylandIntegration *>(\n                        QGuiApplicationPrivate::platformIntegration());\n        if (!waylandIntegration) {\n            qWarning() << \"waylandIntegration is nullptr!!!\";\n            return;\n        }\n        m_waylandDisplay = waylandIntegration->display();\n        if (!m_waylandDisplay) {\n            qWarning() << \"waylandDisplay is nullptr!!!\";\n            return;\n        }\n\n        addListener();\n    }\n    setParent(parent);\n}\n\nvoid PersonalizationManager::addListener()\n{\n    if (!m_waylandDisplay) {\n        qWarning() << \"waylandDisplay is nullptr!, skip addListener\";\n        return;\n    }\n    m_waylandDisplay->addRegistryListener(&handleListenerGlobal, this);\n}\n\nvoid PersonalizationManager::removeListener()\n{\n    if (!m_waylandDisplay) {\n        qWarning() << \"waylandDisplay is nullptr!, skip removeListener\";\n        return;\n    }\n    m_waylandDisplay->removeListener(&handleListenerGlobal, this);\n}\n\nvoid PersonalizationManager::handleListenerGlobal(\n        void *data, wl_registry *registry, uint32_t id, const QString &interface, uint32_t version)\n{\n    if (interface == treeland_personalization_manager_v1_interface.name) {\n        PersonalizationManager *integration = static_cast<PersonalizationManager *>(data);\n        if (!integration) {\n            qWarning() << \"integration is nullptr!!!\";\n            return;\n        }\n\n        integration->init(registry, id, version);\n    }\n}\n\nTreelandCursorContext::TreelandCursorContext(\n        struct ::treeland_personalization_cursor_context_v1 *context)\n    : QWaylandClientExtensionTemplate<TreelandCursorContext>(1)\n    , QtWayland::treeland_personalization_cursor_context_v1(context)\n{\n}\n#endif"
  },
  {
    "path": "src/plugin-mouse/operation/treelandworker.h",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef TREELANDWORKER_H\n#define TREELANDWORKER_H\n\n#include <QObject>\n#include <QtWaylandClient/QWaylandClientExtension>\n#include <QWaylandClientExtension>\n#include <private/qwaylanddisplay_p.h>\n\n#ifdef Enable_Treeland\n#include \"wayland-treeland-personalization-manager-v1-client-protocol.h\"\n#include \"qwayland-treeland-personalization-manager-v1.h\"\n#endif\n\nnamespace DCC_MOUSE {\n\nclass PersonalizationManager;\nclass TreelandCursorContext;\n\nclass TreeLandWorker : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit TreeLandWorker(QObject *parent);\n    void active();\n    void init();\n\n    void setCursorSize(int size);\nprivate:\n#ifdef Enable_Treeland\n    QScopedPointer<PersonalizationManager> m_personalizationManager;\n    QScopedPointer<TreelandCursorContext> m_cursorContext;\n#endif\n};\n\n#ifdef Enable_Treeland\n\nclass PersonalizationManager: public QWaylandClientExtensionTemplate<PersonalizationManager>,\n                              public QtWayland::treeland_personalization_manager_v1\n{\n    Q_OBJECT\npublic:\n    explicit PersonalizationManager(QObject *parent = nullptr);\n\nprivate:\n    void addListener();\n    void removeListener();\n\n    static void handleListenerGlobal(void *data, wl_registry *registry, uint32_t id, const QString &interface, uint32_t version);\n\nprivate:\n    QtWaylandClient::QWaylandDisplay *m_waylandDisplay = nullptr;\n};\n\n\nclass TreelandCursorContext : public QWaylandClientExtensionTemplate<TreelandCursorContext>,\n                                     public QtWayland::treeland_personalization_cursor_context_v1\n{\n    Q_OBJECT\npublic:\n    explicit TreelandCursorContext(struct ::treeland_personalization_cursor_context_v1 *context);\n};\n#endif\n}\n#endif\n"
  },
  {
    "path": "src/plugin-mouse/qml/ClickTest.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.0\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nItem {\n    id: root\n    property var outAni: []\n    property var inAni: []\n    property bool isOut: true\n    property int range: 0\n    property int index: 0\n    Image {\n        id: doubleClickAni\n        source: \"qrc:/mouse/double_test/raise_head/raise_head_00001.png\"\n    }\n\n    Timer {\n        id: timer\n        interval: 50\n        repeat: true\n        onTriggered: {\n            if (isOut) {\n                doubleClickAni.source = outAni[index]\n            } else {\n                doubleClickAni.source = inAni[index]\n            }\n            index = index + 1\n            if (index >= range) {\n                index = 0\n                timer.stop()\n                isOut = !isOut\n            }\n        }\n    }\n\n    MouseArea {\n        id: mouseArea\n        anchors.fill: parent\n        onDoubleClicked: {\n            if (timer.running)\n                isOut = !isOut\n            if (isOut) {\n                range = 37\n            } else {\n                range = 19\n            }\n            index = 0\n            timer.restart()\n        }\n    }\n\n    Component.onCompleted: {\n        for (var i = 0; i < 38; i++) {\n            outAni[i] = \"qrc:/mouse/double_test/raise_head/raise_head_000\" + (i + 1).toString().padStart(2, '0') + \".png\"\n            // console.log(outAni[i])\n        }\n        for (var j = 0; j < 20; j++) {\n            inAni[j] = \"qrc:/mouse/double_test/bow_head/bow_head_000\" + (j + 1).toString().padStart(2, '0') + \".png\"\n            // console.log(inAni[j])\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-mouse/qml/Common.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.0\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n    DccTitleObject {\n        name: \"Common\"\n        parentName: \"MouseAndTouchpadCommon\"\n        displayName: qsTr(\"General\")\n        weight: 10\n        onParentItemChanged: {\n            if (parentItem) {\n                parentItem.bottomInset = 10\n            }\n        }\n    }\n    DccObject {\n        name: \"ScrollSpeed\"\n        parentName: \"MouseAndTouchpadCommon\"\n        displayName: qsTr(\"Scrolling Speed\")\n        backgroundType: DccObject.Normal\n        weight: 20\n        pageType: DccObject.Item\n        page: ColumnLayout {\n            Layout.fillHeight: true\n            Label {\n                id: speedText\n                Layout.topMargin: 10\n                font: D.DTK.fontManager.t6\n                text: dccObj.displayName\n                Layout.leftMargin: 14\n                Layout.bottomMargin: 0\n            }\n            D.TipsSlider {\n                id: scrollSlider\n                readonly property var tips: [(\"1\"), (\"2\"), (\"3\"), (\"4\"), (\"5\"), (\"6\"), (\"7\"), (\"8\"), (\"9\"), (\"10\")]\n                Layout.alignment: Qt.AlignCenter\n                Layout.leftMargin: 10\n                Layout.rightMargin: 10\n                Layout.topMargin: 2\n                Layout.bottomMargin: 10\n                Layout.fillWidth: true\n                slider.height: 30\n                tickDirection: D.TipsSlider.TickDirection.Back\n                slider.handleType: Slider.HandleType.ArrowBottom\n                slider.value: dccData.scrollSpeed\n                slider.from: 1\n                slider.to: ticks.length\n                slider.live: true\n                slider.stepSize: 1\n                slider.snapMode: Slider.SnapAlways\n                ticks: [\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[0]\n                        highlight: scrollSlider.slider.value === 1\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[1]\n                        highlight: scrollSlider.slider.value === 2\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[2]\n                        highlight: scrollSlider.slider.value === 3\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[3]\n                        highlight: scrollSlider.slider.value === 4\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[4]\n                        highlight: scrollSlider.slider.value === 5\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[5]\n                        highlight: scrollSlider.slider.value === 6\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[6]\n                        highlight: scrollSlider.slider.value === 7\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[7]\n                        highlight: scrollSlider.slider.value === 8\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[8]\n                        highlight: scrollSlider.slider.value === 9\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[9]\n                        highlight: scrollSlider.slider.value === 10\n                    }\n                ]\n                slider.onValueChanged: {\n                    if (dccData.scrollSpeed !== slider.value)\n                        dccData.scrollSpeed = slider.value\n                }\n            }\n        }\n    }\n    DccObject {\n        name: \"DoubleClickSpeed\"\n        parentName: \"MouseAndTouchpadCommon\"\n        displayName: qsTr(\"Double Click Speed\")\n        weight: 30\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: Rectangle {\n            color: \"transparent\"\n            implicitHeight: rowView.height\n            RowLayout {\n                id: rowView\n                width: parent.width\n                ColumnLayout {\n                    Layout.fillHeight: true\n                    Label {\n                        id: doubleClickText\n                        Layout.topMargin: 10\n                        Layout.leftMargin: 14\n                        font: D.DTK.fontManager.t6\n                        text: dccObj.displayName\n                    }\n                    D.TipsSlider {\n                        id: doubleClickSlider\n                        readonly property var tips: [qsTr(\"Slow\"), (\"\"), (\"\"), (\"\"), (\"\"), (\"\"), qsTr(\"Fast\")]\n                        Layout.alignment: Qt.AlignCenter\n                        Layout.leftMargin: 10\n                        Layout.rightMargin: 10\n                        Layout.topMargin: 2\n                        Layout.bottomMargin: 10\n                        Layout.fillWidth: true\n                        slider.height: 30\n                        tickDirection: D.TipsSlider.TickDirection.Back\n                        slider.handleType: Slider.HandleType.ArrowBottom\n                        slider.value: dccData.doubleSpeed\n                        slider.from: 0\n                        slider.to: 6\n                        slider.live: true\n                        slider.stepSize: 1\n                        slider.snapMode: Slider.SnapAlways\n                        ticks: [\n                            D.SliderTipItem {\n                                text: doubleClickSlider.tips[0]\n                                // highlight: doubleClickSlider.slider.value === 1\n                            },\n                            D.SliderTipItem {\n                                text: doubleClickSlider.tips[1]\n                            },\n                            D.SliderTipItem {\n                                text: doubleClickSlider.tips[2]\n                            },\n                            D.SliderTipItem {\n                                text: doubleClickSlider.tips[3]\n                            },\n                            D.SliderTipItem {\n                                text: doubleClickSlider.tips[4]\n                            },\n                            D.SliderTipItem {\n                                text: doubleClickSlider.tips[5]\n                            },\n                            D.SliderTipItem {\n                                text: doubleClickSlider.tips[6]\n                            }\n                        ]\n                        slider.onValueChanged: {\n                            if (dccData.doubleSpeed !== slider.value)\n                                dccData.doubleSpeed = slider.value\n                        }\n                    }\n                }\n                ColumnLayout {\n                    Layout.preferredWidth: 145\n                    Label {\n                        id: scrollText\n                        Layout.alignment: Qt.AlignLeft\n                        font: D.DTK.fontManager.t7\n                        text: qsTr(\"Double Click Test\")\n                    }\n                    ClickTest {\n                        id: doubleClickAni\n                        Layout.alignment: Qt.AlignHCenter\n                        Layout.leftMargin: 8\n                        Layout.bottomMargin: 10\n                        Layout.preferredWidth: 150\n                        Layout.preferredHeight: 60\n                    }\n                }\n            }\n        }\n    }\n    DccObject {\n        name: \"LeftHandMode\"\n        parentName: \"MouseAndTouchpadCommon\"\n        displayName: qsTr(\"Left Hand Mode\")\n        weight: 40\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Editor\n        page: D.Switch {\n            checked: dccData.leftHandState\n            onCheckedChanged: {\n                dccData.leftHandState = checked\n            }\n        }\n        onParentItemChanged: {\n            if (parentItem) {\n                parentItem.topInset = 6\n                parentItem.bottomInset = 15\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-mouse/qml/GestureGroup.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\n\nRectangle {\n    id: root\n    property alias model: repeater.model\n    property bool backgroundVisible: true\n    property bool showPlayBtn: true\n    signal clicked(int index, bool checked)\n    signal comboIndexChanged(int index, var actionDec)\n    signal hoveredChanged(int index, var actionDec, bool hovered)\n\n    color: \"transparent\"\n    implicitHeight: layoutView.height\n    Layout.fillWidth: true\n    ColumnLayout {\n        id: layoutView\n        width: parent.width\n        clip: true\n        spacing: 0\n        Repeater {\n            id: repeater\n            delegate: D.ItemDelegate {\n                id: itemCtl\n                Layout.fillWidth: true\n                leftPadding: 10\n                rightPadding: 10\n                topPadding: 0\n                bottomPadding: 0\n                implicitHeight: 36\n                topInset: index === 0 ? 2 : 0\n                cascadeSelected: true\n                backgroundVisible: root.backgroundVisible\n                text: model.descriptionRole\n                icon.name: model.iconRole\n                hoverEnabled: true\n                \n                // 使用框架标准函数动态设置corners\n                corners: getCornersForBackground(index, repeater.count)\n\n                property var comboMoel: model.actionListRole\n                property int comboIndex: model.actionsIndexRole\n                property var comboItem: null\n                property int delegateIndex: index  // Save delegate's index to avoid being overridden by ComboBox's index parameter\n                content: D.ComboBox {\n                    id: combo\n                    Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                    model: comboMoel\n                    textRole: \"actionText\"\n                    valueRole: \"actionValue\"\n                    currentIndex: comboIndex\n                    editable: false\n                    flat: true\n                    onActivated: {\n                        root.comboIndexChanged(itemCtl.delegateIndex, combo.currentValue)\n                    }\n                    Component.onCompleted: comboItem = this\n                }\n                \n                background: DccItemBackground {\n                    backgroundType: DccObject.Hover\n                    separatorVisible: index < (repeater.count - 1)  // 动态条件：最后一行不显示分割线\n                }\n\n                onHoveredChanged: {\n                    root.hoveredChanged(delegateIndex, comboItem.currentValue, hovered)\n                }\n\n                onClicked: {\n                    root.clicked(delegateIndex, !model.isChecked)\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-mouse/qml/Mouse.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: mouse\n    name:\"MouseAndTouchpad\"\n    parentName:\"device\"\n    displayName: qsTr(\"Mouse and Touchpad\")\n    description: qsTr(\"Common、Mouse、Touchpad\")\n    icon:\"device_mouse\"\n    weight: 30\n\n    page: DccRightView {\n        spacing: -4\n    }\n\n    visible: !DccApp.isTreeland()\n}\n"
  },
  {
    "path": "src/plugin-mouse/qml/MouseMain.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    DccObject {\n        name: \"MouseAndTouchpadCommon\"\n        parentName: \"MouseAndTouchpad\"\n        displayName: qsTr(\"Common\")\n        weight: 10\n        pageType: DccObject.Item\n        page: DccGroupView {\n            spacing: -5\n            isGroup: false\n        }\n        Common {}\n    }\n    DccObject {\n        name: \"MouseAndTouchpadMouse\"\n        parentName: \"MouseAndTouchpad\"\n        displayName: qsTr(\"Mouse\")\n        icon: \"mouse_trackpad_mouse\"\n        weight: 100\n        page: DccRightView {\n            spacing: 5\n        }\n        MousePage {}\n    }\n    DccObject {\n        name: \"Touchpad\"\n        parentName: \"MouseAndTouchpad\"\n        displayName: qsTr(\"Touchpad\")\n        icon: \"mouse_trackpad_trackpad\"\n        visible: dccData.tpadExist\n        weight: 200\n        page: DccRightView {\n            spacing: 0\n        }\n        Touchpad {}\n    }\n}\n"
  },
  {
    "path": "src/plugin-mouse/qml/MousePage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.0\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\n\nDccObject {\n    DccTitleObject {\n        name: \"Mouse\"\n        parentName: \"MouseAndTouchpadMouse\"\n        displayName: qsTr(\"Mouse\")\n        weight: 10\n    }\n    DccObject {\n        name: \"PointerSpeed\"\n        parentName: \"MouseAndTouchpadMouse\"\n        displayName: qsTr(\"Pointer Speed\")\n        weight: 20\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: ColumnLayout {\n            Label {\n                id: speedText\n                Layout.topMargin: 10\n                font: D.DTK.fontManager.t6\n                text: dccObj.displayName\n                Layout.leftMargin: 14\n            }\n            D.TipsSlider {\n                id: scrollSlider\n                readonly property var tips: [qsTr(\"Slow\"), (\"\"), (\"\"), (\"\"), (\"\"), (\"\"), qsTr(\"Fast\")]\n                Layout.preferredHeight: 100\n                Layout.alignment: Qt.AlignCenter\n                Layout.margins: 10\n                Layout.fillWidth: true\n                tickDirection: D.TipsSlider.TickDirection.Back\n                slider.handleType: Slider.HandleType.ArrowBottom\n                slider.value: dccData.mouseMoveSpeed\n                slider.from: 0\n                slider.to: ticks.length - 1\n                slider.live: true\n                slider.stepSize: 1\n                slider.snapMode: Slider.SnapAlways\n                ticks: [\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[0]\n                        highlight: scrollSlider.slider.value === 0\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[1]\n                        highlight: scrollSlider.slider.value === 1\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[2]\n                        highlight: scrollSlider.slider.value === 2\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[3]\n                        highlight: scrollSlider.slider.value === 3\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[4]\n                        highlight: scrollSlider.slider.value === 4\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[5]\n                        highlight: scrollSlider.slider.value === 5\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[6]\n                        highlight: scrollSlider.slider.value === 6\n                    }\n                ]\n                slider.onValueChanged: {\n                    dccData.mouseMoveSpeed = slider.value\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"PointerSize\"\n        parentName: \"MouseAndTouchpadMouse\"\n        displayName: qsTr(\"Pointer Size\")\n        weight: 30\n        pageType: DccObject.Item\n        backgroundType: DccObject.Normal\n        page: ColumnLayout {\n            anchors.fill: parent\n            Label {\n                Layout.topMargin: 10\n                text: dccObj.displayName\n                Layout.leftMargin: 14\n            }\n\n            Flow {\n                id: listview\n                Layout.fillWidth: true\n                Layout.leftMargin: 10\n                opacity: enabled ? 1 : 0.4\n                property var tips: [qsTr(\"Small\"), qsTr(\"Medium\"), qsTr(\"Large\")]\n                property var icons: [\"mouse_cursor_size_small.png\", \"mouse_cursor_size_medium.png\", \"mouse_cursor_size_big.png\"]\n                property var availables: [false, false, false]\n                property var availableSizes: [24, 36, 48]\n                property var availableSizesModel: dccData.availableCursorSizes\n\n                onAvailableSizesModelChanged: {\n                    availables = [true, false, false]\n                    for (let i = 0; i < availableSizesModel.length; i++) {\n                        let size = availableSizesModel[i]\n                        if (size > 30 && !availables[1]) {\n                            availables[1] = true\n                        } else if (size > 42 && !availables[2]) {\n                            availables[2] = true\n                        }\n                    }\n                }\n\n                spacing: 8\n                Repeater {\n                    model: listview.tips.length\n                    ColumnLayout {\n                        id: layout\n                        visible: listview.availables[index]\n                        property bool checked: {\n                            let cutCursorSize = dccData.cursorSize\n                            if (index === 0 && cutCursorSize > 0 && cutCursorSize <= 30) {\n                                return true\n                            } else if (index === 1 && cutCursorSize > 30 && cutCursorSize <= 42) {\n                                return true\n                            } else if (index === 2 && cutCursorSize > 42) {\n                                return true\n                            }\n                            return false\n                        }\n                        width: 112\n                        height: 104\n                        Item {\n                            Layout.preferredHeight: 78\n                            Layout.fillWidth: true\n\n                            Rectangle {\n                                anchors.fill: parent\n                                color: \"transparent\"\n                                border.width: 2\n                                border.color: layout.checked ? D.DTK.platformTheme.activeColor : \"transparent\"\n                                radius: 7\n                                Control {\n                                    id: iconControl\n                                    anchors.fill: parent\n                                    anchors.margins: 4\n                                    \n                                    contentItem: Image {\n                                        sourceSize: Qt.size(width, height)\n                                        source: \"qrc:/icons/deepin/builtin/icons/\" + (D.DTK.themeType === D.ApplicationHelper.LightType ? \"light/\" : \"dark/\") + listview.icons[index]\n                                    }\n                                }\n                            }\n                            MouseArea {\n                                anchors.fill: parent\n                                onClicked: {\n                                    if (dccData.cursorSize === listview.availableSizes[index]) {\n                                        return\n                                    }\n                                    dccData.cursorSize = listview.availableSizes[index]\n                                    pointerSizeTips.visible = true\n                                }\n                            }\n                        }\n\n                        Text {\n                            Layout.fillWidth: true\n                            Layout.fillHeight: true\n                            text: listview.tips[index]\n                            horizontalAlignment: Text.AlignHCenter\n                            verticalAlignment: Text.AlignVCenter\n                            color: layout.checked ? D.DTK.platformTheme.activeColor : this.palette.windowText\n                        }\n                    }\n                }\n            }\n\n            Item {\n                id: pointerSizeTips\n                visible: false\n                Layout.fillWidth: true\n                Layout.preferredHeight: tipsRow.implicitHeight\n                RowLayout {\n                    id: tipsRow\n                    anchors.horizontalCenter: parent.horizontalCenter\n                    D.DciIcon {\n                        name: \"tip_warning\"\n                        sourceSize: Qt.size(18, 18)\n                        Layout.leftMargin: 10\n                    }\n\n                    Label {\n                        Layout.fillWidth: true\n                        font: D.DTK.fontManager.t7\n                        text: qsTr(\"Some apps require logout or system restart to take effect\")\n                        wrapMode: Text.Wrap\n                    }\n                }\n            }\n\n            Item {\n                Layout.fillWidth: true\n                Layout.preferredHeight: 6\n            }\n        }\n    }\n\n    DccObject {\n        name: \"MouseSettings\"\n        parentName: \"MouseAndTouchpadMouse\"\n        weight: 50\n        pageType: DccObject.Item\n        page: DccGroupView {}\n        DccObject {\n            name: \"MouseAcceleration\"\n            parentName: \"MouseSettings\"\n            displayName: qsTr(\"Mouse Acceleration\")\n            weight: 10\n            pageType: DccObject.Editor\n            page: D.Switch {\n                checked: dccData.accelProfile\n                onCheckedChanged: {\n                    dccData.accelProfile = checked\n                }\n            }\n        }\n        DccObject {\n            name: \"DisableTouchpad\"\n            parentName: \"MouseSettings\"\n            displayName: qsTr(\"Disable touchpad when a mouse is connected\")\n            weight: 20\n            visible: dccData.tpadExist\n            pageType: DccObject.Editor\n            page: D.Switch {\n                checked: dccData.disTpad\n                onCheckedChanged: {\n                    dccData.disTpad = checked\n                }\n            }\n        }\n        DccObject {\n            name: \"NaturalScrolling\"\n            parentName: \"MouseSettings\"\n            displayName: qsTr(\"Natural Scrolling\")\n            weight: 30\n            pageType: DccObject.Editor\n            page: D.Switch {\n                checked: dccData.mouseNaturalScroll\n                onCheckedChanged: {\n                    dccData.mouseNaturalScroll = checked\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-mouse/qml/Touchpad.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.0\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: touchpad\n    property bool enabled : dccData.tapEnabled\n    property bool isHovering: false\n    property bool animatedImagePlaying: false\n    property var preActionDec: undefined\n    // Animation priority control: ensure selection animation has priority over hover animation\n    property bool isPlayingSelectionAnimation: false\n    property int animationPriority: 0  // 0: no animation, 1: hover animation, 2: selection animation\n    // Record current hover state details for switching after selection animation ends\n    property int currentHoverIndex: -1\n    property var currentHoverActionDec: undefined\n    property int currentFingerNum: 3  // Record current gesture finger count\n    property bool resetAnimationTrigger: false  // Trigger to reset animation frames\n    DccObject {\n        name: \"BasicSettings\"\n        parentName: \"MouseAndTouchpad/Touchpad\"\n        displayName: qsTr(\"Basic Settings\")\n        weight: 10\n        pageType: DccObject.Item\n\n        page: ColumnLayout {\n            Label {\n                Layout.leftMargin: 10\n                font.pixelSize: D.DTK.fontManager.t5.pixelSize\n                font.weight: 500\n                color: D.DTK.themeType === D.ApplicationHelper.LightType ?\n                    Qt.rgba(0, 0, 0, 1) : Qt.rgba(1, 1, 1, 1)\n                text: dccObj.displayName\n            }\n        }\n        onParentItemChanged: item => {\n            if (item) {\n                item.bottomPadding = 4\n            }\n        }\n    }\n\n    DccObject {\n        name: \"DisableTouchpadByMouse\"\n        parentName: \"MouseAndTouchpad/Touchpad\"\n        displayName: qsTr(\"Touchpad\")\n        weight: 20\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Editor\n        page: D.Switch {\n            Layout.rightMargin: 10\n            Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n            checked: dccData.tapEnabled\n            onCheckedChanged: {\n                if (checked !== dccData.tapEnabled) {\n                    dccData.tapEnabled = checked;\n                }\n            }\n        }\n        onParentItemChanged: item => {\n            if (item) {\n                item.topInset = 4\n                item.bottomInset = 3\n            }\n        }\n    }\n\n    DccObject {\n        name: \"PointerSpeed\"\n        parentName: \"MouseAndTouchpad/Touchpad\"\n        displayName: qsTr(\"Pointer Speed\")\n        weight: 30\n        visible: touchpad.enabled\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n\n        page: ColumnLayout {\n            Label {\n                id: speedText\n                Layout.topMargin: 10\n                Layout.leftMargin: 14\n                font: D.DTK.fontManager.t6\n                text: dccObj.displayName\n            }\n\n            D.TipsSlider {\n                id: scrollSlider\n\n                readonly property var tips: [qsTr(\"Slow\"), (\"\"), (\"\"), (\"\"), (\"\"), (\"\"), qsTr(\"Fast\")]\n\n                Layout.preferredHeight: 90\n                Layout.alignment: Qt.AlignCenter\n                Layout.margins: 10\n                Layout.fillWidth: true\n                tickDirection: D.TipsSlider.TickDirection.Back\n                slider.handleType: Slider.HandleType.ArrowBottom\n                slider.value: dccData.tpadMoveSpeed\n                slider.from: 0\n                slider.to: ticks.length - 1\n                slider.live: true\n                slider.stepSize: 1\n                slider.snapMode: Slider.SnapAlways\n                slider.onValueChanged: {\n                    dccData.tpadMoveSpeed = slider.value;\n                }\n                ticks: [\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[0]\n                        highlight: scrollSlider.slider.value === 0\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[1]\n                        highlight: scrollSlider.slider.value === 1\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[2]\n                        highlight: scrollSlider.slider.value === 2\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[3]\n                        highlight: scrollSlider.slider.value === 3\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[4]\n                        highlight: scrollSlider.slider.value === 4\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[5]\n                        highlight: scrollSlider.slider.value === 5\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[6]\n                        highlight: scrollSlider.slider.value === 6\n                    }\n                ]\n            }\n\n        }\n        onParentItemChanged: item => {\n            if (item) {\n                item.topPadding = 0\n                item.bottomPadding = 3\n            }\n        }\n    }\n\n    DccObject {\n        name: \"TouchpadGroup\"\n        parentName: \"MouseAndTouchpad/Touchpad\"\n        displayName: qsTr(\"Pointer Speed\")\n        weight: 40\n        visible: touchpad.enabled\n        pageType: DccObject.Item\n\n        DccObject {\n            name: \"DisableTouchpadByInput\"\n            parentName: \"MouseAndTouchpad/Touchpad/TouchpadGroup\"\n            displayName: qsTr(\"Disable touchpad during input\")\n            weight: 10\n            visible: dccData.lidIsPresent\n            pageType: DccObject.Editor\n\n            page: D.Switch {\n                Layout.rightMargin: 10\n                Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                checked: dccData.disIfTyping\n                onCheckedChanged: {\n                    if (checked !== dccData.disIfTyping) {\n                        dccData.disIfTyping = checked;\n                    }\n                }\n            }\n\n        }\n\n        DccObject {\n            name: \"TapToClick\"\n            parentName: \"MouseAndTouchpad/Touchpad/TouchpadGroup\"\n            displayName: qsTr(\"Tap to Click\")\n            weight: 20\n            pageType: DccObject.Editor\n\n            page: D.Switch {\n                Layout.rightMargin: 10\n                Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                checked: dccData.tapClick\n                onCheckedChanged: {\n                    if (checked !== dccData.tapClick) {\n                        dccData.tapClick = checked;\n                    }\n                }\n            }\n\n        }\n\n        DccObject {\n            name: \"NaturalScrolling\"\n            parentName: \"MouseAndTouchpad/Touchpad/TouchpadGroup\"\n            displayName: qsTr(\"Natural Scrolling\")\n            weight: 30\n            pageType: DccObject.Editor\n\n            page: D.Switch {\n                Layout.rightMargin: 10\n                Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                checked: dccData.tpadNaturalScroll\n                onCheckedChanged: {\n                    if (checked !== dccData.tpadNaturalScroll) {\n                        dccData.tpadNaturalScroll = checked;\n                    }\n                }\n            }\n\n        }\n\n        page: DccGroupView {\n        }\n\n        onParentItemChanged: item => {\n            if (item) {\n                item.topPadding = 3\n                item.bottomPadding = 8\n            }\n        }\n    }\n\n    DccObject {\n        name: \"Gesture\"\n        parentName: \"MouseAndTouchpad/Touchpad\"\n        displayName: qsTr(\"Gestures\")\n        weight: 50\n        visible: touchpad.enabled\n        pageType: DccObject.Item\n\n        page: ColumnLayout {\n            Label {\n                Layout.leftMargin: 10\n                font.pixelSize: D.DTK.fontManager.t5.pixelSize\n                font.weight: 500\n                color: D.DTK.themeType === D.ApplicationHelper.LightType ?\n                    Qt.rgba(0, 0, 0, 1) : Qt.rgba(1, 1, 1, 1)\n                text: dccObj.displayName\n            }\n        }\n\n        onParentItemChanged: item => {\n            if (item) {\n                item.topPadding = 8\n                item.bottomPadding = 4\n            }\n        }\n    }\n\n    DccObject {\n        name: \"GestureGroup\"\n        parentName: \"MouseAndTouchpad/Touchpad\"\n        weight: 60\n        visible: touchpad.enabled\n        pageType: DccObject.Item\n\n        DccObject {\n            name: \"animation\"\n            parentName: \"MouseAndTouchpad/Touchpad/GestureGroup\"\n            weight: 10\n            pageType: DccObject.Item\n\n            page: Rectangle {\n                color: \"transparent\"\n                implicitHeight: rowView.height + 20\n\n                RowLayout {\n                    id: rowView\n\n                    width: parent.width\n                    anchors.centerIn: parent\n\n                    AnimatedImage {\n                        id: gestureFingerAnimatedImage\n                        source: dccData.gestureFingerAniPath\n                        Layout.alignment: Qt.AlignCenter\n                        sourceSize.width: 204\n                        sourceSize.height: 134\n                        playing: touchpad.animatedImagePlaying\n\n                        // Reset animation frame when new selection is made\n                        Connections {\n                            target: touchpad\n                            function onResetAnimationTriggerChanged() {\n                                gestureFingerAnimatedImage.currentFrame = 0\n                            }\n                        }\n\n                        onFrameChanged: {\n                            if (currentFrame >= (frameCount - 1)) {\n                                currentFrame = 0\n                                if (touchpad.animationPriority === 2) {\n                                    // Selection animation completed, reset priority\n                                    touchpad.isPlayingSelectionAnimation = false\n                                    touchpad.animationPriority = 0\n\n                                    // If currently hovering, immediately play hover animation\n                                    if (touchpad.isHovering && touchpad.currentHoverIndex >= 0 && touchpad.currentHoverActionDec) {\n                                        // Update animation path to the hovered action\n                                        dccData.updateFigerGestureAni(touchpad.currentFingerNum, touchpad.currentHoverIndex, touchpad.currentHoverActionDec)\n                                        touchpad.animationPriority = 1\n                                        touchpad.animatedImagePlaying = true\n                                        return // Continue playing hover animation\n                                    }\n                                }\n                                if (!touchpad.isHovering || touchpad.animationPriority === 2) {\n                                    touchpad.animatedImagePlaying = false;\n                                }\n                            }\n                        }\n                    }\n\n                    AnimatedImage {\n                        id: gestureActionAnimatedImage\n                        source: dccData.gestureActionAniPath\n                        Layout.alignment: Qt.AlignCenter\n                        sourceSize.width: 204\n                        sourceSize.height: 134\n                        playing:  touchpad.animatedImagePlaying\n\n                        // Reset animation frame when new selection is made\n                        Connections {\n                            target: touchpad\n                            function onResetAnimationTriggerChanged() {\n                                gestureActionAnimatedImage.currentFrame = 0\n                            }\n                        }\n\n                        onFrameChanged: {\n                            if (currentFrame >= (frameCount - 1)) {\n                                currentFrame = 0\n                                if (touchpad.animationPriority === 2) {\n                                    // Selection animation completed, reset priority\n                                    touchpad.isPlayingSelectionAnimation = false\n                                    touchpad.animationPriority = 0\n\n                                    // If currently hovering, immediately play hover animation\n                                    if (touchpad.isHovering && touchpad.currentHoverIndex >= 0 && touchpad.currentHoverActionDec) {\n                                        // Update animation path to the hovered action\n                                        dccData.updateFigerGestureAni(touchpad.currentFingerNum, touchpad.currentHoverIndex, touchpad.currentHoverActionDec)\n                                        touchpad.animationPriority = 1\n                                        touchpad.animatedImagePlaying = true\n                                        return // Continue playing hover animation\n                                    }\n                                }\n                                if (!touchpad.isHovering || touchpad.animationPriority === 2) {\n                                    touchpad.animatedImagePlaying = false;\n                                }\n                            }\n                        }\n                    }\n\n                }\n\n            }\n\n        }\n\n        page: DccGroupView {\n        }\n\n        onParentItemChanged: item => {\n            if (item) {\n                item.topPadding = 4\n                item.bottomPadding = 6\n            }\n        }\n    }\n\n    DccObject {\n        name: \"ThreeFingerGesture\"\n        parentName: \"MouseAndTouchpad/Touchpad\"\n        displayName: qsTr(\"Three-finger gestures\")\n        weight: 70\n        visible: touchpad.enabled\n        backgroundType: DccObject.AutoBg\n        pageType: DccObject.Item\n\n        page: ColumnLayout {\n            Label {\n                Layout.leftMargin: 10\n                font: D.DTK.fontManager.t6\n                text: dccObj.displayName\n            }\n\n        }\n\n        onParentItemChanged: item => {\n            if (item) {\n                item.topPadding = 6\n                item.bottomPadding = 3\n            }\n        }\n    }\n\n    DccObject {\n        name: \"ThreeFingerGestureGroup\"\n        parentName: \"MouseAndTouchpad/Touchpad\"\n        weight: 80\n        visible: touchpad.enabled\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: GestureGroup {\n            model: dccData.threeFingerGestureModel()\n\n            onComboIndexChanged: function (index, actionDec){\n                dccData.setGestures(3, index, actionDec)\n                dccData.updateFigerGestureAni(3, index, actionDec)\n\n                // Reset animation frames to ensure full playback from the beginning\n                touchpad.resetAnimationTrigger = !touchpad.resetAnimationTrigger\n\n                // Set high priority for selection animation\n                touchpad.animationPriority = 2\n                touchpad.isPlayingSelectionAnimation = true\n                touchpad.animatedImagePlaying = true\n            }\n\n            onHoveredChanged: function (index, actionDec, hovered) {\n                if (hovered) {\n                    // Record hover state details\n                    touchpad.currentHoverIndex = index\n                    touchpad.currentHoverActionDec = actionDec\n                    touchpad.currentFingerNum = 3  // Three-finger gesture\n\n                    // Only play hover animation when no selection animation is playing\n                    if (!touchpad.isPlayingSelectionAnimation && touchpad.animationPriority < 2) {\n                        dccData.updateFigerGestureAni(3, index, actionDec)\n                        preActionDec = actionDec\n                        touchpad.isHovering = true\n                        touchpad.animationPriority = 1\n                        touchpad.animatedImagePlaying = true\n                    } else {\n                        // Record hover state but don't play animation\n                        preActionDec = actionDec\n                        touchpad.isHovering = true\n                    }\n                } else if (preActionDec === actionDec) {\n                    touchpad.isHovering = false\n                    preActionDec = undefined\n                    touchpad.currentHoverIndex = -1\n                    touchpad.currentHoverActionDec = undefined\n                    if (touchpad.animationPriority === 1) {\n                        touchpad.animationPriority = 0\n                    }\n                }\n            }\n\n        }\n        onParentItemChanged: item => {\n            if (item) {\n                item.topPadding = 3\n                item.bottomPadding = 6\n            }\n        }\n    }\n\n    DccObject {\n        name: \"FourFingerGesture\"\n        parentName: \"MouseAndTouchpad/Touchpad\"\n        displayName: qsTr(\"Four-finger gestures\")\n        weight: 90\n        visible: touchpad.enabled\n        backgroundType: DccObject.AutoBg\n        pageType: DccObject.Item\n        page: ColumnLayout {\n            Label {\n                Layout.leftMargin: 10\n                font: D.DTK.fontManager.t6\n                text: dccObj.displayName\n            }\n\n        }\n        onParentItemChanged: item => {\n            if (item) {\n                item.topPadding = 6\n                item.bottomPadding = 3\n            }\n        }\n    }\n\n    DccObject {\n        name: \"FourFingerGestureGroup\"\n        parentName: \"MouseAndTouchpad/Touchpad\"\n        weight: 100\n        visible: touchpad.enabled\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: GestureGroup {\n            model: dccData.fourFigerGestureModel()\n            onComboIndexChanged: function (index, actionDec){\n                dccData.setGestures(4, index, actionDec)\n                dccData.updateFigerGestureAni(4, index, actionDec)\n\n                // Reset animation frames to ensure full playback from the beginning\n                touchpad.resetAnimationTrigger = !touchpad.resetAnimationTrigger\n\n                // Set high priority for selection animation\n                touchpad.animationPriority = 2\n                touchpad.isPlayingSelectionAnimation = true\n                touchpad.animatedImagePlaying = true\n            }\n\n            onHoveredChanged: function (index, actionDec, hovered) {\n                if (hovered) {\n                    // Record hover state details (four-finger gesture)\n                    touchpad.currentHoverIndex = index\n                    touchpad.currentHoverActionDec = actionDec\n                    touchpad.currentFingerNum = 4  // Four-finger gesture\n\n                    // Only play hover animation when no selection animation is playing\n                    if (!touchpad.isPlayingSelectionAnimation && touchpad.animationPriority < 2) {\n                        dccData.updateFigerGestureAni(4, index, actionDec)\n                        preActionDec = actionDec\n                        touchpad.isHovering = true\n                        touchpad.animationPriority = 1\n                        touchpad.animatedImagePlaying = true\n                    } else {\n                        // Record hover state but don't play animation\n                        preActionDec = actionDec\n                        touchpad.isHovering = true\n                    }\n                } else if (preActionDec === actionDec) {\n                    touchpad.isHovering = false\n                    preActionDec = undefined\n                    touchpad.currentHoverIndex = -1\n                    touchpad.currentHoverActionDec = undefined\n                    if (touchpad.animationPriority === 1) {\n                        touchpad.animationPriority = 0\n                    }\n                }\n            }\n        }\n\n        onParentItemChanged: item => {\n            if (item) {\n                item.topPadding = 3\n            }\n        }\n    }\n\n}\n"
  },
  {
    "path": "src/plugin-mouse/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-notification/CMakeLists.txt",
    "content": "set(QT_VERSION_MAJOR \"6\")\nfind_package(Dtk6 REQUIRED COMPONENTS Tools) # for ${DTK_XML2CPP} which provides the path of `qdbusxml2cpp-fix` binary\n\nif (BUILD_PLUGIN)\n\n    set(notification_Name notification)\n    file(GLOB_RECURSE notification_SRCS\n        \"operation/*.cpp\"\n        \"operation/*.h\"\n        \"types/*.h\"\n        \"operation/qrc/notification.qrc\"\n    )\n    file(GLOB_RECURSE notification_qml_SRCS\n        \"qml/*.qml\"\n    )\n    find_package(${QT_NS} COMPONENTS Concurrent REQUIRED COMPONENTS Qml)\n\n    set_source_files_properties(\n        ${CMAKE_CURRENT_SOURCE_DIR}/operation/xml/org.desktopspec.ApplicationManager1.Application.xml\n        PROPERTIES  INCLUDE types/am.h\n                    CLASSNAME AppManager1Application\n    )\n\n    set_source_files_properties(\n        ${CMAKE_CURRENT_SOURCE_DIR}/operation/xml/org.desktopspec.ObjectManager1.xml\n        PROPERTIES  INCLUDE types/am.h\n                    CLASSNAME AppManager1ApplicationObjectManager\n    )\n\n    qt_add_dbus_interfaces(\n        DBUS_INTERFACES\n        ${CMAKE_CURRENT_SOURCE_DIR}/operation/xml/org.desktopspec.ApplicationManager1.Application.xml\n    )\n\n    qt_add_dbus_interfaces(\n        DBUS_INTERFACES\n        ${CMAKE_CURRENT_SOURCE_DIR}/operation/xml/org.desktopspec.ObjectManager1.xml\n    )\n\n    add_library(${notification_Name} MODULE\n        ${notification_SRCS}\n        ${DBUS_INTERFACES}\n    )\n\n    set(notification_Includes\n        src/plugin-notification/operation\n        src/plugin-notification\n        ${PROJECT_BINARY_DIR}/src/plugin-notification\n    )\n    set(notification_Libraries\n        ${DCC_FRAME_Library}\n        ${DTK_NS}::Gui\n        ${QT_NS}::DBus\n        ${QT_NS}::Concurrent\n    )\n    target_include_directories(${notification_Name} PUBLIC\n        ${notification_Includes}\n    )\n    target_link_libraries(${notification_Name} PRIVATE\n        ${notification_Libraries}\n    )\n\n    dcc_install_plugin(NAME ${notification_Name} TARGET ${notification_Name})\nendif()\n"
  },
  {
    "path": "src/plugin-notification/operation/appmgr.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"appmgr.h\"\n\n#include \"applicationinterface.h\"\n#include \"objectmanager1interface.h\"\n\n#include <DConfig>\n#include <DExpected>\nDCORE_USE_NAMESPACE\n\nusing AppManager1Application = AppManager1Application;\nusing AppManager1ApplicationObjectManager = AppManager1ApplicationObjectManager;\n\nstatic QString parseDisplayName(const QStringMap &source)\n{\n    static QString key = QLocale::system().name();\n    return source.value(key, source.value(u8\"default\"));\n}\n\nstatic QString parseName(const QStringMap &source)\n{\n    QString name = source.value(QLocale::system().name());\n    return !name.isEmpty() ? name : source.value(u8\"default\");\n}\n\nstatic QString parseIcon(const QStringMap &source)\n{\n\n    QString icon = source.value(u8\"Desktop Entry\");\n\n    // fallback to default icon\n    if (icon.isEmpty()) {\n        icon = \"application-x-executable\";\n    }\n\n    return icon;\n}\n\ntemplate<class T>\nstatic DExpected<T> parseDBusField(const QVariantMap &map, const QString &key)\n{\n    if (!map.contains(key))\n        return {};\n    const auto value = map.value(key);\n    return DExpected<T>{qdbus_cast<T>(value)};\n}\n\nstatic QString getDisplayName(const bool isDeepin, const QStringMap &name, const QStringMap &genericName)\n{\n    if (isDeepin) {\n        const auto tmp = parseDisplayName(genericName);\n        if (!tmp.isEmpty())\n            return tmp;\n    }\n\n    return parseDisplayName(name);\n}\n\nstatic AppMgr::AppItem *parseDBus2AppItem(const ObjectInterfaceMap &source)\n{\n    const QVariantMap appInfo = source.value(\"org.desktopspec.ApplicationManager1.Application\");\n    if (appInfo.isEmpty())\n        return nullptr;\n\n    const auto nodisplay = parseDBusField<bool>(appInfo, u8\"NoDisplay\");\n    if (!nodisplay || nodisplay.value()) {\n        return nullptr;\n    }\n    AppMgr::AppItem *item = nullptr;\n    if (auto value = parseDBusField<QString>(appInfo, u8\"ID\")) {\n        item = new AppMgr::AppItem();\n        item->id = value.value() + \".desktop\";\n        item->appId = value.value();\n    }\n\n    if (!item) {\n        return nullptr;\n    }\n\n    if (auto value = parseDBusField<QStringList>(appInfo, u8\"Categories\")) {\n        item->categories = value.value();\n    }\n\n    // fallback to Name if GenericName is empty, only for X_Deepin_Vendor equals to \"deepin\".\n    const auto deepinVendor = parseDBusField<QString>(appInfo, u8\"X_Deepin_Vendor\");\n    item->displayName = getDisplayName(deepinVendor && deepinVendor.value() == QStringLiteral(\"deepin\"),\n                                       parseDBusField<QStringMap>(appInfo, u8\"Name\").value(),\n                                       parseDBusField<QStringMap>(appInfo, u8\"GenericName\").value());\n\n    if (auto value = parseDBusField<QStringMap>(appInfo, u8\"Name\")) {\n        item->name = parseName(value.value());\n    }\n\n    if (auto value = parseDBusField<QStringMap>(appInfo, u8\"Icons\")) {\n        item->iconName = parseIcon(value.value());\n    }\n\n    if (auto value = parseDBusField<qint64>(appInfo, u8\"InstalledTime\")) {\n        item->installedTime = value.value();\n    }\n\n    if (auto value = parseDBusField<qint64>(appInfo, u8\"LastLaunchedTime\")) {\n        item->lastLaunchedTime = value.value();\n    }\n\n    if (auto value = parseDBusField<bool>(appInfo, u8\"AutoStart\")) {\n        item->isAutoStart = value.value();\n    }\n\n    return item;\n}\n\nAppMgr::AppMgr(QObject *parent)\n    : QObject(parent)\n    , m_objectManager(new AppManager1ApplicationObjectManager(\"org.desktopspec.ApplicationManager1\",\n                                                              \"/org/desktopspec/ApplicationManager1\",\n                                                              QDBusConnection::sessionBus(), this))\n{\n    qDBusRegisterMetaType<ObjectInterfaceMap>();\n    qDBusRegisterMetaType<ObjectMap>();\n    qDBusRegisterMetaType<QStringMap>();\n    qDBusRegisterMetaType<PropMap>();\n    initObjectManager();\n}\n\nAppMgr::~AppMgr()\n{\n    for (auto item : std::as_const(m_appItems)) {\n        if (auto handler = item->handler) {\n            handler->deleteLater();\n        }\n    }\n    qDeleteAll(m_appItems);\n}\n\nAppManager1Application * createAM1AppIfaceByPath(const QString &dbusPath)\n{\n    AppManager1Application * amAppIface = new AppManager1Application(QLatin1String(\"org.desktopspec.ApplicationManager1\"),\n                                                                    dbusPath,\n                                                                    QDBusConnection::sessionBus());\n    if (!amAppIface->isValid()) {\n        qDebug() << \"D-Bus interface not exist or failed to connect to\" << dbusPath;\n        return nullptr;\n    }\n\n    return amAppIface;\n}\n\nAppManager1Application * createAM1AppIface(const QString &desktopId)\n{\n    auto appItem = AppMgr::instance()->appItem(desktopId);\n    if (!appItem) {\n        qWarning() << \"Can't find appItem for the desktopId\" << desktopId;\n        return nullptr;\n    }\n    qDebug() << \"Get app interface for the desktopId\" << desktopId;\n    return appItem->handler;\n}\n\n// if return false, it means the launch is not even started.\n// if return true, it means we attempted to launch it via AM, but not sure if it's succeed.\nbool AppMgr::launchApp(const QString &desktopId)\n{\n    AppManager1Application * amAppIface = createAM1AppIface(desktopId);\n    if (!amAppIface) return false;\n\n    const auto path = amAppIface->path();\n    QProcess process;\n    process.setProcessChannelMode(QProcess::MergedChannels);\n    process.start(\"dde-am\", {\"--by-user\", path});\n    if (!process.waitForFinished()) {\n        qWarning() << \"Failed to launch the desktopId:\" << desktopId << process.errorString();\n        return false;\n    } else if (process.exitCode() != 0) {\n        qWarning() << \"Failed to launch the desktopId:\" << desktopId << process.readAll();\n        return false;\n    }\n    qDebug() << \"Launch the desktopId\" << desktopId;\n    return true;\n}\n\nbool AppMgr::autoStart(const QString &desktopId)\n{\n    AppManager1Application * amAppIface = createAM1AppIface(desktopId);\n    if (!amAppIface) return false;\n\n    return amAppIface->autoStart();\n}\n\nvoid AppMgr::setAutoStart(const QString &desktopId, bool autoStart)\n{\n    AppManager1Application * amAppIface = createAM1AppIface(desktopId);\n    if (!amAppIface) return;\n\n    amAppIface->setAutoStart(autoStart);\n}\n\nstatic const QStringList DisabledScaleEnvironments {\n    \"DEEPIN_WINE_SCALE=1\",\n    \"QT_SCALE_FACTOR=1\",\n    \"GDK_SCALE=1\",\n    \"GDK_DPI_SCALE=1\",\n    \"D_DXCB_DISABLE_OVERRIDE_HIDPI=1\"\n};\n\nbool AppMgr::disableScale(const QString &desktopId)\n{\n    AppManager1Application * amAppIface = createAM1AppIface(desktopId);\n    if (!amAppIface) return 0;\n\n    const auto environ = amAppIface->environ();\n    const QStringList envs(environ.split(';'));\n    // return true if envs contains any one of DisabledScaleEnvironments.\n    auto iter = std::find_if(envs.begin(), envs.end(), [] (const QString &env) {\n        return DisabledScaleEnvironments.contains(env);\n    });\n    return iter != envs.end();\n}\n\nvoid AppMgr::setDisableScale(const QString &desktopId, bool disableScale)\n{\n    AppManager1Application * amAppIface = createAM1AppIface(desktopId);\n    if (!amAppIface) return;\n\n    QString environ = amAppIface->environ();\n    QStringList envs(environ.split(';', Qt::SkipEmptyParts));\n    if (disableScale) {\n        // remove all ScaleEnvironments, avoid other caller has set it manually.\n        envs.removeIf([] (const QString &env) {\n            auto iter = std::find_if(DisabledScaleEnvironments.begin(), DisabledScaleEnvironments.end(),\n                                     [env] (const QString &item) {\n                                         const auto left = item.split('=');\n                                         const auto right = env.split('=');\n                                         return !right.isEmpty() && left.at(0) == right.at(0);\n                                     });\n            return iter != DisabledScaleEnvironments.end();\n        });\n        envs << DisabledScaleEnvironments;\n    } else {\n        // remove all DisabledScaleEnvironments.\n        envs.removeIf([] (const QString &env) {\n            return DisabledScaleEnvironments.contains(env);\n        });\n    }\n\n    environ = envs.join(';');\n    qDebug() << \"Update environ for the desktopId\" << desktopId << \", env:\" << environ;\n    amAppIface->setEnviron(environ);\n}\n\nbool AppMgr::isOnDesktop(const QString &desktopId)\n{\n    AppManager1Application * amAppIface = createAM1AppIface(desktopId);\n    if (!amAppIface) return false;\n\n    return amAppIface->isOnDesktop();\n}\n\nbool AppMgr::sendToDesktop(const QString &desktopId)\n{\n    AppManager1Application * amAppIface = createAM1AppIface(desktopId);\n    if (!amAppIface) return false;\n\n    QDBusPendingReply<bool> reply = amAppIface->SendToDesktop();\n    reply.waitForFinished();\n\n    if (reply.isError()) {\n        qDebug() << reply.error();\n        return false;\n    }\n\n    return reply.value();\n}\n\nbool AppMgr::removeFromDesktop(const QString &desktopId)\n{\n    AppManager1Application * amAppIface = createAM1AppIface(desktopId);\n    if (!amAppIface) return false;\n\n    QDBusPendingReply<bool> reply = amAppIface->RemoveFromDesktop();\n    reply.waitForFinished();\n\n    if (reply.isError()) {\n        qDebug() << reply.error();\n        return false;\n    }\n\n    return reply.value();\n}\n\nbool AppMgr::isValid() const\n{\n    return m_objectManager->isValid();\n}\n\nQList<AppMgr::AppItem *> AppMgr::allAppInfosShouldBeShown() const\n{\n    return m_appItems.values();\n}\n\nAppMgr::AppItem *AppMgr::appItem(const QString &id) const\n{\n    const auto items = m_appItems.values();\n    auto iter = std::find_if(items.begin(), items.end(), [id](AppItem *item) {\n        return item->id == id;\n    });\n    return iter != items.end() ? *iter : nullptr;\n}\n\nvoid AppMgr::watchingAppItemPropertyChanged(const QString &key, AppMgr::AppItem *appItem)\n{\n    AppManager1Application * amAppIface = createAM1AppIfaceByPath(key);\n    if (!amAppIface)\n        return;\n\n    Q_ASSERT(appItem->handler == nullptr);\n    appItem->handler = amAppIface;\n}\n\nvoid AppMgr::updateAppsLaunchedTimes(const QVariantMap &appsLaunchedTimes)\n{\n    // need to update times for removed and updated.\n    const auto &appItems = m_appItems.values();\n    for (const auto item : std::as_const(appItems)) {\n        auto iter = appsLaunchedTimes.find(item->appId);\n        qint64 times = 0;\n        if (iter != appsLaunchedTimes.cend())\n            times = iter->toLongLong();\n\n        // including reset and increase times.\n        if (item->launchedTimes != times) {\n            qDebug() << \"LaunchedTimesChanged by DConfig, desktopId\" << item->id;\n            item->launchedTimes = times;\n            Q_EMIT itemDataChanged(item->id);\n        }\n    }\n}\n\nvoid AppMgr::initObjectManager()\n{\n    if (!isValid())\n        return;\n\n    connect(m_objectManager, &AppManager1ApplicationObjectManager::InterfacesAdded, this,\n            [this](const QDBusObjectPath &objPath, ObjectInterfaceMap interfacesAndProperties) {\n                const QString key(objPath.path());\n                qDebug() << \"InterfacesAdded by AM, path:\" << key;\n                if (m_appItems.contains(objPath.path())) {\n                    qWarning() << \"App already exists for the path:\" << key;\n                    return;\n                }\n                if (auto appItem = parseDBus2AppItem(interfacesAndProperties)) {\n                    qDebug() << \"App item added, desktopId\" << appItem->id;\n                    watchingAppItemAdded(key, appItem);\n                }\n            });\n    connect(m_objectManager, &AppManager1ApplicationObjectManager::InterfacesRemoved, this,\n            [this](const QDBusObjectPath &objPath, const QStringList &interfaces) {\n                Q_UNUSED(interfaces)\n                const QString key(objPath.path());\n                qDebug() << \"InterfacesRemoved by AM, path:\" << key;\n                watchingAppItemRemoved(key);\n            });\n\n    fetchAppItems();\n\n    DConfig *config = DConfig::create(\"org.deepin.dde.application-manager\", \"org.deepin.dde.am\", \"\", this);\n    if (!config->isValid()) {\n        qWarning() << \"DConfig is invalid when getting launched times.\";\n    } else {\n        static const QString AppsLaunchedTimes(u8\"appsLaunchedTimes\");\n        const auto &value = config->value(AppsLaunchedTimes).toMap();\n        updateAppsLaunchedTimes(value);\n        QObject::connect(config, &DConfig::valueChanged, this, [this, config](const QString &key) {\n            if (key != AppsLaunchedTimes)\n                return;\n\n            qDebug() << \"appsLaunchedTimes of DConfig Changed.\";\n            const auto &value = config->value(AppsLaunchedTimes).toMap();\n            updateAppsLaunchedTimes(value);\n        });\n    }\n}\n\nvoid AppMgr::fetchAppItems()\n{\n    qDebug() << \"Begin to fetch apps.\";\n    const auto reply = m_objectManager->GetManagedObjects();\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(reply, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [this](QDBusPendingCallWatcher *call){\n        QDBusPendingReply<ObjectMap> reply = *call;\n        if (reply.isError()) {\n            qWarning() << \"Failed to get apps from AM, \" << reply.error();\n            call->deleteLater();\n            return;\n        }\n        qDebug() << \"Fetched all AppItem, and start parsing data.\";\n        QMap<QString, AppMgr::AppItem *> items;\n        const auto objects = reply.value();\n        for (auto iter = objects.cbegin(); iter != objects.cend(); ++iter) {\n            const auto &objPath = iter.key();\n            const ObjectInterfaceMap &objs = iter.value();\n            auto appItem = parseDBus2AppItem(objs);\n            if (!appItem) {\n                continue;\n            }\n\n            items[objPath.path()] = appItem;\n            watchingAppItemPropertyChanged(objPath.path(), appItem);\n        }\n        call->deleteLater();\n        qDebug() << \"Fetched all AppItem, and end up parsing data.\";\n\n        m_appItems = items;\n        Q_EMIT changed();\n    });\n    // TODO async to fetch apps.\n    watcher->waitForFinished();\n}\n\nvoid AppMgr::watchingAppItemAdded(const QString &key, AppItem *appItem)\n{\n    m_appItems[key] = appItem;\n    watchingAppItemPropertyChanged(key, appItem);\n    Q_EMIT changed();\n    Q_EMIT appItemAdd(key);\n}\n\nvoid AppMgr::watchingAppItemRemoved(const QString &key)\n{\n    auto appItem = m_appItems.value(key);\n    if (!appItem)\n        return;\n\n    qDebug() << \"App item removed, desktopId\" << appItem->id;\n    if (auto handler = appItem->handler) {\n        handler->deleteLater();\n    }\n    m_appItems.remove(key);\n    delete appItem;\n    Q_EMIT changed();\n    Q_EMIT appItemRemove(key);\n}\n\nAppMgr *AppMgr::instance() {\n    static AppMgr *gInstance = nullptr;\n    if (!gInstance) {\n        gInstance = new AppMgr();\n        gInstance->moveToThread(qApp->thread());\n    }\n    return gInstance;\n}\n"
  },
  {
    "path": "src/plugin-notification/operation/appmgr.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QMap>\n#include <QObject>\n#include <QPointer>\n#include <dtkcore_global.h>\n\nDCORE_BEGIN_NAMESPACE\nclass DConfig;\nDCORE_END_NAMESPACE\nclass AppManager1Application;\nclass AppManager1ApplicationObjectManager;\nclass AppMgr : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit AppMgr(QObject *parent = nullptr);\n    ~AppMgr();\n    struct AppItem\n    {\n        QPointer<AppManager1Application> handler;\n        QString id;\n        QString name;\n        QString displayName;\n        QString iconName;\n        QStringList categories;\n        qint64 installedTime = 0;\n        qint64 lastLaunchedTime = 0;\n        qint64 launchedTimes = 0;\n        bool isAutoStart = false;\n        QString appId;\n    };\n\n    static AppMgr *instance();\n\n    static bool launchApp(const QString & desktopId);\n    static bool autoStart(const QString & desktopId);\n    static void setAutoStart(const QString & desktopId, bool autoStart);\n    static bool disableScale(const QString & desktopId);\n    static void setDisableScale(const QString & desktopId, bool disableScale);\n    static bool isOnDesktop(const QString & desktopId);\n    static bool sendToDesktop(const QString & desktopId);\n    static bool removeFromDesktop(const QString & desktopId);\n\n    bool isValid() const;\n    QList<AppMgr::AppItem *> allAppInfosShouldBeShown() const;\n    AppMgr::AppItem * appItem(const QString &id) const;\n\nQ_SIGNALS:\n    void changed();\n    void itemDataChanged(const QString &id);\n    void appItemAdd(const QString &id);\n    void appItemRemove(const QString &id);\n\nprivate:\n    void initObjectManager();\n    void fetchAppItems();\n    void watchingAppItemAdded(const QString &key, AppMgr::AppItem *appItem);\n    void watchingAppItemRemoved(const QString &key);\n    void watchingAppItemPropertyChanged(const QString &key, AppMgr::AppItem *appItem);\n    void updateAppsLaunchedTimes(const QVariantMap &appsLaunchedTimes);\n\nprivate:\n    AppManager1ApplicationObjectManager *m_objectManager;\n    QMap<QString, AppMgr::AppItem *> m_appItems;\n};\n"
  },
  {
    "path": "src/plugin-notification/operation/appslistmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"appslistmodel.h\"\n#include \"appssourcemodel.h\"\n\nusing namespace DCC_NAMESPACE;\n\nAppsListModel::AppsListModel(QObject *parent)\n    : QSortFilterProxyModel{ parent }\n{\n    setFilterCaseSensitivity(Qt::CaseInsensitive);\n}\n\nbool AppsListModel::lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const\n{\n    QString l_transliterated = sourceModel()->data(source_left, TransliteratedRole).toString();\n    QString r_transliterated = sourceModel()->data(source_right, TransliteratedRole).toString();\n    QChar l_start = l_transliterated.isEmpty() ? QChar() : l_transliterated.constData()[0].toUpper();\n    QChar r_start = r_transliterated.isEmpty() ? QChar() : r_transliterated.constData()[0].toUpper();\n    if (l_start != r_start) {\n        return l_start < r_start;\n    } else {\n        QString l_display = source_left.model()->data(source_left, Qt::DisplayRole).toString();\n        QString r_display = source_right.model()->data(source_right, Qt::DisplayRole).toString();\n        QChar ld_start = l_display.isEmpty() ? QChar() : l_display.constData()[0].toUpper();\n        QChar rd_start = r_display.isEmpty() ? QChar() : r_display.constData()[0].toUpper();\n        if ((l_start == ld_start && ld_start == rd_start) || (l_start != ld_start && l_start != rd_start)) {\n            // display name both start with ascii letter, or both NOT start with ascii letter\n            // use their transliterated form for sorting\n            if (!l_start.isNull() && l_transliterated.constData()[0] != r_transliterated.constData()[0]) {\n                // Since in ascii table, `A` is lower than `a`, we specially check to ensure `a` is lower here.\n                return l_transliterated.constData()[0].isLower();\n            }\n            return l_transliterated < r_transliterated;\n        } else {\n            // one of them are ascii letter and another of them is non-ascii letter.\n            // the ascii one should be display on the front\n            return l_start == ld_start;\n        }\n    }\n}\n\nbool AppsListModel::filterAcceptsRow(int source_row, const QModelIndex &source_parent) const\n{\n    if (!sourceModel())\n        return true;\n\n    if (filterRegularExpression().pattern().isEmpty())\n        return true;\n\n    QModelIndex appNameIndex = sourceModel()->index(source_row, 0, source_parent);\n    QString appName = sourceModel()->data(appNameIndex, AppNameRole).toString();\n    QString transliterated = sourceModel()->data(appNameIndex, TransliteratedRole).toString();\n\n    return appName.contains(filterRegularExpression()) || transliterated.contains(filterRegularExpression());\n}\n"
  },
  {
    "path": "src/plugin-notification/operation/appslistmodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef APPSLISTMODEL_H\n#define APPSLISTMODEL_H\n\n#include <QObject>\n#include <QSortFilterProxyModel>\n\nnamespace DCC_NAMESPACE{\n\nclass AppsListModel : public QSortFilterProxyModel\n{\n    Q_OBJECT\npublic:\n    explicit AppsListModel(QObject *parent = nullptr);\n\nprotected:\n    bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const override;\n    bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const override;\n};\n}\n#endif // APPSLISTMODEL_H\n"
  },
  {
    "path": "src/plugin-notification/operation/appssourcemodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"appssourcemodel.h\"\n#include \"model/appitemmodel.h\"\n#include <qlogging.h>\n\n#include <DPinyin>\n\nusing namespace DCC_NAMESPACE;\n\nAppsSourceModel::AppsSourceModel(QObject *parent)\n    : QAbstractItemModel(parent)\n{\n}\n\nQHash<int, QByteArray> AppsSourceModel::roleNames() const\n{\n    QHash<int, QByteArray> names= QAbstractItemModel::roleNames();\n    names[AppIdRole] = \"AppId\";\n    names[AppNameRole] = \"AppName\";\n    names[AppIconRole] = \"AppIcon\";\n    names[EnableNotificationRole] = \"EnableNotification\";\n    names[EnablePreviewRole] = \"EnablePreview\";\n    names[EnableSoundRole] = \"EnableSound\";\n    names[ShowNotificationDesktopRole] = \"ShowNotificationDesktop\";\n    names[ShowNotificationCenterRole] = \"ShowNotificationCenter\";\n    names[LockScreenShowNotificationRole] = \"LockScreenShowNotification\";\n    names[TransliteratedRole] = \"Transliterated\";\n    return names;\n}\n\nQModelIndex AppsSourceModel::index(int row, int column, const QModelIndex &) const\n{\n    if (row < 0 || row >= m_appItemModels.size()) {\n        return QModelIndex();\n    }\n    return createIndex(row, column);\n}\n\nQModelIndex AppsSourceModel::parent(const QModelIndex &) const\n{\n    return QModelIndex();\n}\n\nint AppsSourceModel::rowCount(const QModelIndex &) const\n{\n    return m_appItemModels.size();\n}\n\nint AppsSourceModel::columnCount(const QModelIndex &) const\n{\n    return 1;\n}\n\nQVariant AppsSourceModel::data(const QModelIndex &index, int role) const\n{\n    if (index.row() < 0 || index.row() >= m_appItemModels.size()) {\n        return QVariant();\n    }\n    switch (role) {\n    case Qt::DisplayRole:\n        return QVariant::fromValue(m_appItemModels.at(index.row()));\n    case AppIdRole:\n        return m_appItemModels.at(index.row())->getActName();\n    case AppNameRole:\n        return m_appItemModels.at(index.row())->softName();\n    case AppIconRole:\n        return m_appItemModels.at(index.row())->icon();\n    case EnableNotificationRole:\n        return m_appItemModels.at(index.row())->isAllowNotify();\n    case EnablePreviewRole:\n        return m_appItemModels.at(index.row())->isShowNotifyPreview();\n    case EnableSoundRole:\n        return m_appItemModels.at(index.row())->isNotifySound();\n    case ShowNotificationDesktopRole:\n        return m_appItemModels.at(index.row())->isShowDesktop();\n    case ShowNotificationCenterRole:\n        return m_appItemModels.at(index.row())->isShowInNotifyCenter();\n    case LockScreenShowNotificationRole:\n        return m_appItemModels.at(index.row())->isLockShowNotify();\n\n    case TransliteratedRole: {\n        const auto decodedDisplay = Dtk::Core::pinyin(index.data(AppNameRole).toString(), Dtk::Core::TS_NoneTone);\n        if (decodedDisplay.isEmpty()) return QString();\n        const QString transliterated = decodedDisplay.constFirst();\n        if (transliterated.isEmpty()) return transliterated;\n        const QChar & firstChar = transliterated.constData()[0];\n        if (firstChar.isDigit()) return QString(\"#%1\").arg(transliterated);\n        else if (!firstChar.isLetter()) return QString(\"&%1\").arg(transliterated);\n        return transliterated;\n    }\n    default:\n        break;\n    }\n    return QVariant();\n}\n\nbool AppsSourceModel::setData(const QModelIndex &index, const QVariant &value, int role)\n{\n    int i = index.row();\n    if (i < 0 || i >= m_appItemModels.size()) {\n        return false;\n    }\n\n    switch (role) {\n    case EnableNotificationRole: {\n        m_appItemModels.at(index.row())->setAllowNotify(value.toBool());\n        return true;\n    }\n    case EnablePreviewRole: {\n        m_appItemModels.at(index.row())->setShowNotifyPreview(value.toBool());\n        return true;\n    }\n    case EnableSoundRole: {\n        m_appItemModels.at(index.row())->setNotifySound(value.toBool());\n        return true;\n    }\n    case ShowNotificationDesktopRole: {\n        m_appItemModels.at(index.row())->setShowDesktop(value.toBool());\n        return true;\n    }\n    case ShowNotificationCenterRole: {\n        m_appItemModels.at(index.row())->setShowInNotifyCenter(value.toBool());\n        return true;\n    }\n    case LockScreenShowNotificationRole: {\n        m_appItemModels.at(index.row())->setLockShowNotify(value.toBool());\n        return true;\n    }\n    default:\n        break;\n    }\n    return false;\n}\n\nvoid AppsSourceModel::appAdded(AppItemModel *item)\n{\n    beginInsertRows(QModelIndex(), m_appItemModels.size(), m_appItemModels.size());\n    m_appItemModels.append(item);\n    connect(item, &AppItemModel::allowNotifyChanged, this, [this, item]() {\n        Q_EMIT dataChanged(createIndex(m_appItemModels.indexOf(item), 0), createIndex(m_appItemModels.indexOf(item), 0));\n    });\n    connect(item, &AppItemModel::notifySoundChanged, this, [this, item]() {\n        Q_EMIT dataChanged(createIndex(m_appItemModels.indexOf(item), 0), createIndex(m_appItemModels.indexOf(item), 0));\n    });\n    connect(item, &AppItemModel::lockShowNotifyChanged, this,[this, item]() {\n        Q_EMIT dataChanged(createIndex(m_appItemModels.indexOf(item), 0), createIndex(m_appItemModels.indexOf(item), 0));\n    });\n    connect(item, &AppItemModel::showInNotifyCenterChanged, this, [this, item]() {\n        Q_EMIT dataChanged(createIndex(m_appItemModels.indexOf(item), 0), createIndex(m_appItemModels.indexOf(item), 0));\n    });\n    connect(item, &AppItemModel::showNotifyPreviewChanged, this, [this, item]() {\n        Q_EMIT dataChanged(createIndex(m_appItemModels.indexOf(item), 0), createIndex(m_appItemModels.indexOf(item), 0));\n    });\n    connect(item, &AppItemModel::showOnDesktop, this, [this, item]() {\n        Q_EMIT dataChanged(createIndex(m_appItemModels.indexOf(item), 0), createIndex(m_appItemModels.indexOf(item), 0));\n    });\n    endInsertRows();\n}\n\nvoid AppsSourceModel::appRemoved(const QString &appName)\n{\n    for (int i = 0; i < m_appItemModels.size(); i++) {\n        if (m_appItemModels[i]->getActName() == appName) {\n            // Q_EMIT appListRemoved(m_appItemModels[i]);\n            beginRemoveRows(QModelIndex(), i, i);\n            m_appItemModels[i]->deleteLater();\n            m_appItemModels[i] = nullptr;\n            m_appItemModels.removeAt(i);\n            endRemoveRows();\n            break;\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-notification/operation/appssourcemodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef APPSSOURCEMODEL_H\n#define APPSSOURCEMODEL_H\n\n#include <QAbstractItemModel>\nnamespace DCC_NAMESPACE{\n\nclass AppItemModel;\n\nenum AppsSourceModelRole\n{\n    AppIdRole = Qt::UserRole + 1,\n    AppNameRole,\n    AppIconRole,\n    EnableNotificationRole,\n    EnablePreviewRole,\n    EnableSoundRole,\n    ShowNotificationDesktopRole,\n    ShowNotificationCenterRole,\n    LockScreenShowNotificationRole,\n    TransliteratedRole\n};\n\nclass AppsSourceModel : public QAbstractItemModel\n{\n    Q_OBJECT\n\npublic:\n    explicit AppsSourceModel(QObject *parent = nullptr);\n\n    // Basic functionality:\n    QHash<int, QByteArray> roleNames() const override;\n    QModelIndex index(int row,\n                      int column,\n                      const QModelIndex &parent = QModelIndex()) const override;\n    QModelIndex parent(const QModelIndex &index) const override;\n\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n    int columnCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n    bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;\n\n    void appAdded(AppItemModel* item);\n    void appRemoved(const QString &appName);\n\nprivate:\n    QList<AppItemModel *> m_appItemModels;\n};\n}\n#endif // APPSSOURCEMODEL_H\n"
  },
  {
    "path": "src/plugin-notification/operation/model/appitemmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"appitemmodel.h\"\n#include \"../notificationsetting.h\"\n\n#include <QVariant>\n\nusing namespace DCC_NAMESPACE;\n\nAppItemModel::AppItemModel(NotificationSetting *setting, QObject *parent)\n    : QObject(parent)\n    , m_setting(setting)\n    , m_softName(QString())\n    , m_isAllowNotify(false)\n    , m_isNotifySound(false)\n    , m_isLockShowNotify(false)\n    , m_isShowInNotifyCenter(false)\n    , m_isShowNotifyPreview(false)\n{\n\n}\n\nvoid AppItemModel::setActName(const QString &name)\n{\n    if (m_actName != name) {\n        m_actName = name;\n    }\n}\n\nvoid AppItemModel::initValues(const QString &actName, const QString &softName, const QString &icon,\n                              bool allowNotify, bool notifySound, bool lockShowNotify,\n                              bool showDesktop, bool showInNotifyCenter, bool showNotifyPreview)\n{\n    m_actName = actName;\n    m_softName = softName;\n    m_icon = icon;\n    m_isAllowNotify = allowNotify;\n    m_isNotifySound = notifySound;\n    m_isLockShowNotify = lockShowNotify;\n    m_isShowDesktop = showDesktop;\n    m_isShowInNotifyCenter = showInNotifyCenter;\n    m_isShowNotifyPreview = showNotifyPreview;\n}\n\nvoid AppItemModel::onSettingChanged(const QString &id, const uint &item, QDBusVariant var)\n{\n    if (id != m_actName)\n        return;\n    switch (item) {\n    case APPNAME:\n        setSoftName(var.variant().toString());\n        break;\n    case APPICON:\n        setIcon(var.variant().toString());\n        break;\n    case ENABELNOTIFICATION:\n        setAllowNotify(var.variant().toBool());\n        break;\n    case ENABELPREVIEW:\n        setShowNotifyPreview(var.variant().toBool());\n        break;\n    case ENABELSOUND:\n        setNotifySound(var.variant().toBool());\n        break;\n    case SHOWINNOTIFICATIONCENTER:\n        setShowInNotifyCenter(var.variant().toBool());\n        break;\n    case LOCKSCREENSHOWNOTIFICATION:\n        setLockShowNotify(var.variant().toBool());\n        break;\n    }\n}\n\nvoid AppItemModel::setSoftName(const QString &name) {\n    if (m_softName == name)\n        return;\n    m_softName = name;\n    Q_EMIT softNameChanged(name);\n}\n\nvoid AppItemModel::setIcon(const QString &icon)\n{\n    if (m_icon == icon)\n        return;\n    m_icon = icon;\n    Q_EMIT iconChanged(icon);\n}\n\nvoid AppItemModel::setAllowNotify(const bool &state)\n{\n    if (m_isAllowNotify == state)\n        return;\n    m_isAllowNotify = state;\n    m_setting->setAppValue(m_actName, NotificationSetting::EnableNotification, state);\n    Q_EMIT allowNotifyChanged(state);\n\n}\n\nvoid AppItemModel::setNotifySound(const bool &state)\n{\n    if (m_isNotifySound == state)\n        return;\n    m_isNotifySound = state;\n    m_setting->setAppValue(m_actName, NotificationSetting::EnableSound, state);\n    Q_EMIT notifySoundChanged(state);\n}\n\nvoid AppItemModel::setLockShowNotify(const bool &state)\n{\n    if (m_isLockShowNotify == state)\n        return;\n    m_isLockShowNotify = state;\n    m_setting->setAppValue(m_actName, NotificationSetting::ShowOnLockScreen, state);\n    Q_EMIT lockShowNotifyChanged(state);\n}\n\nvoid AppItemModel::setShowDesktop(const bool &state)\n{\n    if (m_isShowDesktop == state)\n        return;\n    m_isShowDesktop = state;\n    m_setting->setAppValue(m_actName, NotificationSetting::ShowOnDesktop, state);\n    Q_EMIT showOnDesktop(state);\n}\n\nvoid AppItemModel::setShowInNotifyCenter(const bool &state)\n{\n    if (m_isShowInNotifyCenter == state)\n        return;\n    m_isShowInNotifyCenter = state;\n    m_setting->setAppValue(m_actName, NotificationSetting::ShowInCenter, state);\n    Q_EMIT showInNotifyCenterChanged(state);\n}\n\nvoid AppItemModel::setShowNotifyPreview(const bool &state)\n{\n    if (m_isShowNotifyPreview == state)\n        return;\n    m_isShowNotifyPreview = state;\n    m_setting->setAppValue(m_actName, NotificationSetting::EnablePreview, state);\n    Q_EMIT showNotifyPreviewChanged(state);\n}\n"
  },
  {
    "path": "src/plugin-notification/operation/model/appitemmodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#pragma once\n\n#include <QObject>\n#include <QDBusVariant>\n\nQT_BEGIN_NAMESPACE\nclass QJsonObject;\nQT_END_NAMESPACE\n\nnamespace DCC_NAMESPACE{\n\nclass NotificationSetting;\n\nclass AppItemModel : public QObject\n{\n    Q_OBJECT\npublic:\n    typedef enum {\n        APPNAME,\n        APPICON,\n        ENABELNOTIFICATION,\n        ENABELPREVIEW,\n        ENABELSOUND,\n        SHOWINNOTIFICATIONDESKTOP,\n        SHOWINNOTIFICATIONCENTER,\n        LOCKSCREENSHOWNOTIFICATION\n    } AppConfigurationItem;\n\n    explicit AppItemModel(NotificationSetting *setting, QObject *parent = nullptr);\n\n    Q_PROPERTY(QString softName READ softName WRITE setSoftName NOTIFY softNameChanged FINAL)\n    Q_PROPERTY(QString icon READ icon WRITE setIcon NOTIFY iconChanged FINAL)\n    inline QString softName()const {return  m_softName;}\n    void setSoftName(const QString &name);\n\n    inline QString icon()const {return m_icon;}\n    void setIcon(const QString &icon);\n\n    inline bool isAllowNotify()const {return m_isAllowNotify;}\n    void setAllowNotify(const bool &state);\n\n    inline bool isNotifySound()const {return m_isNotifySound;}\n    void setNotifySound(const bool &state);\n\n    inline bool isLockShowNotify()const {return m_isLockShowNotify;}\n    void setLockShowNotify(const bool &state);\n\n    inline bool isShowDesktop()const {return m_isShowDesktop;}\n    void setShowDesktop(const bool &state);\n\n    inline bool isShowInNotifyCenter()const {return m_isShowInNotifyCenter;}\n    void setShowInNotifyCenter(const bool &state);\n\n    inline bool isShowNotifyPreview()const {return m_isShowNotifyPreview;}\n    void setShowNotifyPreview(const bool &state);\n\n    inline QString getActName()const {return m_actName;}\n    void setActName(const QString &name);\n\n    // Initialize member values directly without triggering setAppValue/D-Bus writes.\n    // Use this in constructors to avoid synchronous D-Bus calls during plugin loading.\n    void initValues(const QString &actName, const QString &softName, const QString &icon,\n                    bool allowNotify, bool notifySound, bool lockShowNotify,\n                    bool showDesktop, bool showInNotifyCenter, bool showNotifyPreview);\n\npublic Q_SLOTS:\n    void onSettingChanged(const QString &id, const uint &item, QDBusVariant var);\n\nQ_SIGNALS:\n    void softNameChanged(QString name);\n    void iconChanged(QString icon);\n    void allowNotifyChanged(bool state);\n    void notifySoundChanged(bool state);\n    void lockShowNotifyChanged(bool state);\n    void showInNotifyCenterChanged(bool state);\n    void showNotifyPreviewChanged(bool state);\n    void showOnDesktop(bool state);\n\nprivate:\n    NotificationSetting *m_setting;\n    QString m_softName;//应用程序名\n    QString m_icon;//应用系统图表\n    QString m_actName;//传入后端应用名\n    bool m_isAllowNotify;//允许应用通知\n    bool m_isNotifySound;//是否有通知声音\n    bool m_isLockShowNotify;//锁屏显示通知\n    bool m_isShowDesktop;//show desktop notification\n    bool m_isShowInNotifyCenter;//通知仅在通知中心显示\n    bool m_isShowNotifyPreview;//显示消息预览\n};\n}\n"
  },
  {
    "path": "src/plugin-notification/operation/model/sysitemmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"sysitemmodel.h\"\n#include \"../notificationsetting.h\"\n\nusing namespace DCC_NAMESPACE;\n\nSysItemModel::SysItemModel(NotificationSetting *setting, QObject *parent)\n    : QObject(parent)\n    , m_setting(setting)\n{\n    connect(m_setting, SIGNAL(systemValueChanged(const QString&)), this, SLOT(onSettingChanged(const QString&)));\n}\n\nvoid SysItemModel::setDisturbMode(const bool disturbMode)\n{\n    m_setting->setSystemValue(NotificationSetting::DNDMode, disturbMode);\n    Q_EMIT disturbModeChanged(disturbMode);\n}\n\nbool SysItemModel::timeSlot() const\n{\n    return m_setting->systemValue(NotificationSetting::OpenByTimeInterval).toBool();\n}\n\nvoid SysItemModel::setTimeSlot(const bool timeSlot)\n{\n    m_setting->setSystemValue(NotificationSetting::OpenByTimeInterval, timeSlot);\n    Q_EMIT timeSlotChanged(timeSlot);\n}\n\nbool SysItemModel::lockScreen() const\n{\n    return m_setting->systemValue(NotificationSetting::LockScreenOpenDNDMode).toBool();\n}\n\nvoid SysItemModel::setLockScreen(const bool lockScreen)\n{\n    m_setting->setSystemValue(NotificationSetting::LockScreenOpenDNDMode, lockScreen);\n    Q_EMIT lockScreenChanged(lockScreen);\n}\n\nQString SysItemModel::timeStart() const\n{\n    return m_setting->systemValue(NotificationSetting::StartTime).toString();\n}\n\nvoid SysItemModel::setTimeStart(const QString &timeStart)\n{\n    m_setting->setSystemValue(NotificationSetting::StartTime, timeStart);\n    Q_EMIT timeStartChanged(timeStart);\n}\n\nQString SysItemModel::timeEnd() const\n{\n    return m_setting->systemValue(NotificationSetting::EndTime).toString();\n}\n\nvoid SysItemModel::setTimeEnd(const QString &timeEnd)\n{\n    m_setting->setSystemValue(NotificationSetting::EndTime, timeEnd);\n    Q_EMIT timeEndChanged(timeEnd);\n}\n\nvoid SysItemModel::onSettingChanged(const QString &key)\n{\n    if (\"dndMode\" == key) {\n        Q_EMIT disturbModeChanged(m_setting->systemValue(NotificationSetting::DNDMode).toBool());\n    } else if (\"lockScreenOpenDndMode\" == key) {\n        Q_EMIT lockScreenChanged(m_setting->systemValue(NotificationSetting::LockScreenOpenDNDMode).toBool());\n    } else if (\"openByTimeInterval\" == key) {\n        Q_EMIT timeSlotChanged(m_setting->systemValue(NotificationSetting::OpenByTimeInterval).toBool());\n    } else if (\"startTime\" == key) {\n        Q_EMIT timeStartChanged(m_setting->systemValue(NotificationSetting::StartTime).toString());\n    } else if (\"endTime\" == key) {\n        Q_EMIT timeEndChanged(m_setting->systemValue(NotificationSetting::EndTime).toString());\n    } else if (\"bubbleCount\" == key) {\n        Q_EMIT bubbleCountChanged(m_setting->systemValue(NotificationSetting::BubbleCount).toInt());\n    }\n}\n\nbool DCC_NAMESPACE::SysItemModel::disturbMode() const\n{\n    return m_setting->systemValue(NotificationSetting::DNDMode).toBool();\n}\n\nint SysItemModel::bubbleCount() const\n{\n    return m_setting->systemValue(NotificationSetting::BubbleCount).toInt();\n}\n\nvoid SysItemModel::setBubbleCount(int newBubbleCount)\n{\n    m_setting->setSystemValue(NotificationSetting::BubbleCount, newBubbleCount);\n    Q_EMIT bubbleCountChanged(newBubbleCount);\n}\n"
  },
  {
    "path": "src/plugin-notification/operation/model/sysitemmodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#pragma once\n\n#include <QObject>\n#include <QTime>\n#include <QDBusVariant>\n\nQT_BEGIN_NAMESPACE\nclass QJsonObject;\nQT_END_NAMESPACE\n\nnamespace DCC_NAMESPACE {\n\nclass NotificationSetting;\nclass NotificationWorker;\n\nclass SysItemModel : public QObject\n{\n    Q_OBJECT\npublic:\n    typedef enum {\n        DNDMODE,\n        LOCKSCREENOPENDNDMODE,\n        OPENBYTIMEINTERVAL,\n        STARTTIME,\n        ENDTIME,\n        SHOWICON\n    } SystemConfigurationItem;\n\n    explicit SysItemModel(NotificationSetting *setting, QObject *parent = nullptr);\n\n    Q_PROPERTY(bool disturbMode READ disturbMode WRITE setDisturbMode NOTIFY disturbModeChanged FINAL)\n    Q_PROPERTY(bool lockScreen READ lockScreen WRITE setLockScreen NOTIFY lockScreenChanged FINAL)\n    Q_PROPERTY(bool timeSlot READ timeSlot WRITE setTimeSlot NOTIFY timeSlotChanged FINAL)\n    Q_PROPERTY(int  bubbleCount READ bubbleCount WRITE setBubbleCount NOTIFY bubbleCountChanged FINAL)\n    Q_PROPERTY(QString timeStart READ timeStart WRITE setTimeStart NOTIFY timeStartChanged FINAL)\n    Q_PROPERTY(QString timeEnd READ timeEnd WRITE setTimeEnd NOTIFY timeEndChanged FINAL)\n\n    bool disturbMode() const;\n    void setDisturbMode(const bool disturbMode);\n\n    bool timeSlot()const;\n    void setTimeSlot(const bool timeSlot);\n\n    bool lockScreen()const;\n    void setLockScreen(const bool lockScreen);\n\n    QString timeStart()const;\n    void setTimeStart(const QString &timeStart);\n\n    QString timeEnd()const;\n    void setTimeEnd(const QString &timeEnd);\n\n    int bubbleCount() const;\n    void setBubbleCount(int newBubbleCount);\n\npublic Q_SLOTS:\n    void onSettingChanged(const QString &key);\n\nQ_SIGNALS:\n    void disturbModeChanged(bool disturbMode);\n    void timeSlotChanged(bool timeSlot);\n    void lockScreenChanged(bool lockScreen);\n    void timeStartChanged(const QString &timeStart);\n    void timeEndChanged(const QString &timeEnd);\n    void maxCountChanged(const int maxCount);\n\n    void bubbleCountChanged(const int bubbleCount);\n\nprivate:\n    NotificationSetting *m_setting;\n};\n\n}\n"
  },
  {
    "path": "src/plugin-notification/operation/notificationmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"notificationmodel.h\"\n#include \"model/sysitemmodel.h\"\n#include \"model/appitemmodel.h\"\n#include \"dccfactory.h\"\n#include \"appssourcemodel.h\"\n#include \"appslistmodel.h\"\n#include \"operation/notificationsetting.h\"\n#include \"appmgr.h\"\n\nusing namespace DCC_NAMESPACE;\n\n#define SYSTEMNOTIFY_NAME \"SystemNotify\"\n\nNotificationModel::NotificationModel(QObject *parent)\n    : QObject(parent)\n    , m_setting(new NotificationSetting(this))\n    , m_sysItemModel(new SysItemModel(m_setting, this))\n    , m_appsSourceModel(new AppsSourceModel(this))\n    , m_appsListModel(new AppsListModel(this))\n{\n    m_appsListModel->setSourceModel(m_appsSourceModel);\n    m_appsListModel->sort(0);\n\n    auto addAppItem = [=] (const QString &appId) {\n        const QString actName = m_setting->appValue(appId, NotificationSetting::AppId).toString();\n        const QString softName = m_setting->appValue(appId, NotificationSetting::AppName).toString();\n        const QString icon = m_setting->appValue(appId, NotificationSetting::AppIcon).toString();\n        const bool allowNotify = m_setting->appValue(appId, NotificationSetting::EnableNotification).toBool();\n        const bool notifySound = m_setting->appValue(appId, NotificationSetting::EnableSound).toBool();\n        const bool lockShowNotify = m_setting->appValue(appId, NotificationSetting::ShowOnLockScreen).toBool();\n        const bool showDesktop = m_setting->appValue(appId, NotificationSetting::ShowOnDesktop).toBool();\n        const bool showInCenter = m_setting->appValue(appId, NotificationSetting::ShowInCenter).toBool();\n        const bool showPreview = m_setting->appValue(appId, NotificationSetting::EnablePreview).toBool();\n\n        AppItemModel *item = new AppItemModel(m_setting, this);\n        item->initValues(actName, softName, icon, allowNotify, notifySound,\n                         lockShowNotify, showDesktop, showInCenter, showPreview);\n        m_appsSourceModel->appAdded(item);\n    };\n\n    for (const auto &app : m_setting->apps()) {\n        addAppItem(app);\n    }\n    connect(m_setting, &NotificationSetting::appAdded, this, [=] (const QString &appId) {\n        addAppItem(appId);\n    });\n    connect(m_setting, &NotificationSetting::appRemoved, this, &NotificationModel::appRemoved);\n}\n\nNotificationModel::~NotificationModel()\n{\n\n}\n\nvoid NotificationModel::setSysSetting(SysItemModel *item)\n{\n    m_sysItemModel = item;\n}\n\nvoid NotificationModel::clearModel()\n{\n    m_sysItemModel->deleteLater();\n    m_sysItemModel = nullptr;\n    qDeleteAll(m_appItemModels);\n    m_appItemModels.clear();\n}\n\nvoid NotificationModel::appAdded(AppItemModel *item)\n{\n    m_appsSourceModel->appAdded(item);\n}\n\nvoid NotificationModel::appRemoved(const QString &appName)\n{\n    m_appsSourceModel->appRemoved(appName);\n}\n\nDCC_FACTORY_CLASS(NotificationModel)\n#include \"notificationmodel.moc\"\n\n"
  },
  {
    "path": "src/plugin-notification/operation/notificationmodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#pragma once\n\n#include <qdebug.h>\n#include <QObject>\n#include <QMap>\n\nQT_BEGIN_NAMESPACE\nclass QJsonArray;\nQT_END_NAMESPACE\n\nnamespace DCC_NAMESPACE {\n\nclass NotificationSetting;\nclass SysItemModel;\nclass AppItemModel;\nclass NotificationWorker;\nclass AppsSourceModel;\nclass AppsListModel;\n\nclass NotificationModel : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit NotificationModel(QObject *parent = nullptr);\n    ~NotificationModel();\n\n    Q_PROPERTY(SysItemModel *sysItemModel READ sysItemModel CONSTANT)\n    Q_PROPERTY(QList<AppItemModel *> appItemModels READ appItemModels NOTIFY appItemModelsChanged FINAL)\n    Q_INVOKABLE AppsListModel *appListModel() {return m_appsListModel;}\n\n    void setSysSetting(SysItemModel* item);\n    inline int getAppSize()const {return m_appItemModels.size();}\n    inline SysItemModel *getSystemModel()const {return m_sysItemModel;}\n    inline AppItemModel *getAppModel(const int &index) {return m_appItemModels[index];}\n    void clearModel();\n\n\n    inline SysItemModel *sysItemModel() const {return m_sysItemModel;}\n    QList<AppItemModel *> appItemModels() const {return m_appItemModels;}\n\npublic Q_SLOTS:\n    void appAdded(AppItemModel* item);\n    void appRemoved(const QString &appName);\n\nQ_SIGNALS:\n    void appListAdded(AppItemModel* item);\n    void appListRemoved(AppItemModel* item);\n\n    void appItemModelsChanged();\n\nprivate:\n    NotificationSetting *m_setting;\n    SysItemModel *m_sysItemModel;\n    QList<AppItemModel *> m_appItemModels;\n    AppsSourceModel *m_appsSourceModel;\n    AppsListModel *m_appsListModel;\n};\n}\n"
  },
  {
    "path": "src/plugin-notification/operation/notificationsetting.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"notificationsetting.h\"\n#include \"notificationmodel.h\"\n#include \"appmgr.h\"\n\n#include <QVariant>\n#include <QAbstractListModel>\n#include <QLoggingCategory>\n\n#include <DConfig>\n\nnamespace DCC_NAMESPACE {\n\nstatic const QString InvalidApp {\"DS-Invalid-Apps\"};\nnamespace {\nenum Roles {\n    DesktopIdRole = 0x1000,\n    NameRole,\n    IconNameRole,\n    StartUpWMClassRole,\n    NoDisplayRole,\n    ActionsRole,\n    DDECategoryRole,\n    InstalledTimeRole,\n    LastLaunchedTimeRole,\n    LaunchedTimesRole,\n    DockedRole,\n    OnDesktopRole,\n    AutoStartRole,\n    GroupRole,\n};\n}\n\nNotificationSetting::NotificationSetting(QObject *parent)\n    : QObject(parent)\n    , m_impl(Dtk::Core::DConfig::create(\"org.deepin.dde.shell\", \"org.deepin.dde.shell.notification\", QString(), this))\n{\n    invalidAppItemCached();\n    connect(m_impl, &Dtk::Core::DConfig::valueChanged, this, [this] (const QString &key) {\n        if (key == \"appsInfo\") {\n            invalidAppItemCached();\n        } else {\n            static const QStringList\n                    keys{\"dndMode\", \"openByTimeInterval\", \"lockScreenOpenDndMode\", \"startTime\", \"endTime\", \"notificationClosed\", \"maxCount\", \"bubbleCount\"};\n            if (keys.contains(key)) {\n                m_systemInfo = {};\n                Q_EMIT systemValueChanged(key);\n            }\n        }\n    });\n    connect(AppMgr::instance(), &AppMgr::appItemAdd, this, [=] () {onAppsChanged();});\n    connect(AppMgr::instance(), &AppMgr::appItemRemove, this, [=] () {onAppsChanged();});\n}\n\nvoid NotificationSetting::setAppValue(const QString &id, AppConfigItem item, const QVariant &value)\n{\n    auto info = appInfo(id);\n    switch (item) {\n    case EnableNotification: {\n        info[\"enabled\"] = value.toBool();\n        break;\n    }\n    case EnablePreview: {\n        info[\"enablePreview\"] = value.toBool();\n        break;\n    }\n    case EnableSound: {\n        info[\"enableSound\"] = value.toBool();\n        break;\n    }\n    case ShowInCenter: {\n        info[\"showInCenter\"] = value.toBool();\n        break;\n    }\n    case ShowOnLockScreen: {\n        info[\"showOnLockScreen\"] = value.toBool();\n        break;\n    }\n    case ShowOnDesktop: {\n        info[\"showOnDesktop\"] = value.toBool();\n        break;\n    }\n    default:\n        break;\n    }\n\n    {\n        QMutexLocker locker(&m_appsInfoMutex);\n        m_appsInfo[id] = info;\n        m_impl->setValue(\"appsInfo\", m_appsInfo);\n    }\n\n    Q_EMIT appValueChanged(id, item, value);\n}\n\nQVariant NotificationSetting::appValue(const QString &id, AppConfigItem item)\n{\n    if (item == AppId) {\n        return id;\n    }\n\n    const auto app = appItem(id);\n    switch (item) {\n    case AppId: {\n        return id;\n    }\n    case AppName: {\n        return app.appName;\n    }\n    case AppIcon: {\n        return app.appIcon;\n    default:\n        break;\n    }\n    }\n\n    const auto info = appInfo(id);\n    switch (item) {\n    case EnableNotification: {\n        return info.value(\"enabled\", true);\n    }\n    case EnablePreview: {\n        return info.value(\"enablePreview\", true);\n    }\n    case EnableSound: {\n        return info.value(\"enableSound\", true);\n    }\n    case ShowInCenter: {\n        return info.value(\"showInCenter\", true);\n    }\n    case ShowOnLockScreen: {\n        return info.value(\"showOnLockScreen\", true);\n    }\n    case ShowOnDesktop: {\n        return info.value(\"showOnDesktop\", true);\n    }\n    default:\n        break;\n    }\n\n    return QVariant();\n}\n\nvoid NotificationSetting::setSystemValue(NotificationSetting::SystemConfigItem item, const QVariant &value)\n{\n    switch (item) {\n    case DNDMode:\n        m_impl->setValue(\"dndMode\", value);\n        break;\n    case OpenByTimeInterval:\n        m_impl->setValue(\"openByTimeInterval\", value);\n        break;\n    case LockScreenOpenDNDMode:\n        m_impl->setValue(\"lockScreenOpenDndMode\", value);\n        break;\n    case StartTime:\n        m_impl->setValue(\"startTime\", value);\n        break;\n    case EndTime:\n        m_impl->setValue(\"endTime\", value);\n        break;\n    case CloseNotification:\n        m_impl->setValue(\"notificationClosed\", value);\n        break;\n    case MaxCount:\n        m_impl->setValue(\"maxCount\", value);\n        break;\n    case BubbleCount:\n        m_impl->setValue(\"bubbleCount\", value);\n        break;\n    default:\n        return;\n    }\n    m_systemInfo = {};\n    Q_EMIT systemValueChanged(item, value);\n}\n\nQVariant NotificationSetting::systemValue(NotificationSetting::SystemConfigItem item)\n{\n    switch (item) {\n    case DNDMode:\n        return systemValue(\"dndMode\", true);\n    case LockScreenOpenDNDMode:\n        return systemValue(\"lockScreenOpenDndMode\", false);\n    case OpenByTimeInterval:\n        return systemValue(\"openByTimeInterval\", true);\n    case StartTime:\n        return systemValue(\"startTime\", \"07:00\");\n    case EndTime:\n        return systemValue(\"endTime\", \"22:00\");\n    case CloseNotification:\n        return systemValue(\"notificationClosed\", false);\n    case MaxCount:\n        return systemValue(\"maxCount\", 2000);\n    case BubbleCount:\n        return systemValue(\"bubbleCount\", 3);\n    }\n\n    return {};\n}\n\nQStringList NotificationSetting::apps() const\n{\n    QStringList ret;\n    for (const auto &item : appItems()) {\n        ret << item.id;\n    }\n    return ret;\n}\n\nNotificationSetting::AppItem NotificationSetting::appItem(const QString &id) const\n{\n    const auto infos = appItems();\n    auto iter = std::find_if(infos.begin(), infos.end(), [id] (const AppItem &item) {\n        return id == item.id;\n    });\n    if (iter != infos.end()) {\n        return *iter;\n    }\n\n    return {};\n}\n\nQList<NotificationSetting::AppItem> NotificationSetting::appItems() const\n{\n    QMutexLocker locker(&(const_cast<NotificationSetting *>(this)->m_appItemsMutex));\n    if (!m_appItems.isEmpty())\n        return m_appItems;\n\n    QList<NotificationSetting::AppItem> apps = appItemsImpl();\n    const_cast<NotificationSetting *>(this)->m_appItems = apps;\n    return m_appItems;\n}\n\nQList<NotificationSetting::AppItem> NotificationSetting::appItemsImpl() const\n{\n    QList<NotificationSetting::AppItem> appSettings;\n    QList<AppMgr::AppItem *> apps = AppMgr::instance()->allAppInfosShouldBeShown();\n    for (int i = 0; i < apps.count(); i++) {\n        const auto desktopId = apps[i]->appId;\n        const auto icon = apps[i]->iconName;\n        const auto name = apps[i]->displayName;\n\n        NotificationSetting::AppItem item;\n        item.id = desktopId;\n        item.appIcon = icon;\n        item.appName = name;\n        appSettings << item;\n    }\n    return appSettings;\n}\n\nQVariantMap NotificationSetting::appInfo(const QString &id) const\n{\n    QMutexLocker locker(&(const_cast<NotificationSetting *>(this)->m_appsInfoMutex));\n    if (m_appsInfo.contains(InvalidApp)) {\n        const_cast<NotificationSetting *>(this)->m_appsInfo = m_impl->value(\"appsInfo\").toMap();\n    }\n    if (auto iter = m_appsInfo.find(id); iter != m_appsInfo.end()) {\n        return iter.value().toMap();\n    }\n    return {};\n}\n\nvoid NotificationSetting::onAppsChanged()\n{\n    const auto old = appItems();\n    const auto current = appItemsImpl();\n    {\n        QMutexLocker locker(&m_appItemsMutex);\n        m_appItems = current;\n    }\n\n    QList<NotificationSetting::AppItem> added;\n    for (const auto &item : current) {\n        const auto id = item.id;\n        auto iter = std::find_if(old.begin(), old.end(), [id] (const NotificationSetting::AppItem &app) {\n            return id == app.id;\n        });\n        if (iter == old.end()) {\n            added << item;\n        }\n    }\n    for (const auto &item : added) {\n        Q_EMIT appAdded(item.id);\n    }\n\n    QList<NotificationSetting::AppItem> removed;\n    for (const auto &item : old) {\n        const auto id = item.id;\n        auto iter = std::find_if(current.begin(), current.end(), [id] (const NotificationSetting::AppItem &app) {\n            return id == app.id;\n        });\n        if (iter == current.end()) {\n            removed << item;\n        }\n    }\n    for (const auto &item : removed) {\n        Q_EMIT appRemoved(item.id);\n    }\n\n}\n\nvoid NotificationSetting::invalidAppItemCached()\n{\n    QMutexLocker locker(&m_appsInfoMutex);\n    m_appsInfo.clear();\n    m_appsInfo[InvalidApp] = QVariant();\n}\n\nQVariant NotificationSetting::systemValue(const QString &key, const QVariant &fallback)\n{\n    if (!m_systemInfo.contains(key))\n        m_systemInfo[key] = m_impl->value(key, fallback);\n    return m_systemInfo[key];\n}\n\n} // notification\n"
  },
  {
    "path": "src/plugin-notification/operation/notificationsetting.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QMutex>\n#include <QObject>\n#include <QTimer>\n#include <QVariantMap>\n\nnamespace Dtk {\nnamespace Core {\n    class DConfig;\n}\n}\n\nclass QAbstractItemModel;\nnamespace DCC_NAMESPACE {\n\nclass NotificationSetting : public QObject\n{\n    Q_OBJECT\n\npublic:\n    // clang-format off\n    enum AppConfigItem {\n        AppId,\n        AppName,\n        AppIcon,\n        EnableNotification,\n        EnablePreview,\n        EnableSound,\n        ShowInCenter,\n        ShowOnLockScreen,\n        ShowOnDesktop\n    };\n\n    enum SystemConfigItem {\n        DNDMode,\n        LockScreenOpenDNDMode,\n        OpenByTimeInterval,\n        StartTime,\n        EndTime,\n        CloseNotification,\n        MaxCount,\n        BubbleCount\n    };\n\n    struct AppItem {\n        QString id;\n        QString appName;\n        QString appIcon;\n    };\n    // clang-format on\n\npublic:\n    explicit NotificationSetting(QObject *parent = nullptr);\n\n    void setAppValue(const QString &id, AppConfigItem item, const QVariant &value);\n    QVariant appValue(const QString &id, AppConfigItem item);\n\n    void setSystemValue(SystemConfigItem item, const QVariant &value);\n    QVariant systemValue(SystemConfigItem item);\n\n    QStringList apps() const;\n    AppItem appItem(const QString &id) const;\n    QList<AppItem> appItems() const;\n    QList<AppItem> appItemsImpl() const;\n\n    QVariantMap appInfo(const QString &id) const;\n\nsignals:\n    void appAdded(const QString &appId);\n    void appRemoved(const QString &id);\n    void appValueChanged(const QString &appId, uint configItem, const QVariant &value);\n    void systemValueChanged(uint configItem, const QVariant &value);\n    void systemValueChanged(const QString &key);\n\npublic slots:\n    void onAppsChanged();\n\nprivate:\n    void updateAppItemValue(const QVariantMap &info, AppItem &app) const;\n    void invalidAppItemCached();\n    QVariant systemValue(const QString &key, const QVariant &fallback);\n\nprivate:\n    Dtk::Core::DConfig *m_impl = nullptr;\n    QList<AppItem> m_appItems;\n    QMutex m_appItemsMutex;\n    QVariantMap m_appsInfo;\n    QMutex m_appsInfoMutex;\n    QVariantMap m_systemInfo;\n};\n\n} // notification\n"
  },
  {
    "path": "src/plugin-notification/operation/qrc/notification.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_notification_42px.svg</file>\n        <file>icons/dcc_nav_notification_84px.svg</file>\n        <file>dark/icons/notify_center_84px.png</file>\n        <file>dark/icons/notify_desktop_84px.png</file>\n        <file>dark/icons/notify_lock_84px.png</file>\n        <file>light/icons/notify_center_84px.png</file>\n        <file>light/icons/notify_desktop_84px.png</file>\n        <file>light/icons/notify_lock_84px.png</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-notification/operation/xml/org.desktopspec.ApplicationManager1.Application.xml",
    "content": "<!DOCTYPE node PUBLIC \"-//freedesktop//DTD D-BUS Object Introspection 1.0//EN\" \"https://www.freedesktop.org/standards/dbus/1.0/introspect.dtd\">\n<node>\n    <interface name=\"org.desktopspec.ApplicationManager1.Application\">\n        <annotation\n            name=\"org.freedesktop.DBus.Description\"\n            value=\"This interface is designed to provide a dbus interface of desktop file. Missing fields will be added later.\"\n        />\n\n        <property name=\"Categories\" type=\"as\" access=\"read\" />\n        <property name=\"X_linglong\" type=\"b\" access=\"read\" />\n        <property name=\"X_Flatpak\" type=\"b\" access=\"read\" />\n        <property name=\"X_Deepin_Vendor\" type=\"s\" access=\"read\">\n            <annotation name=\"org.freedesktop.DBus.Description\"\n                value=\"Whem this property is 'deepin', display name of the application\n                              should use GenericName.\"\n            />\n        </property>\n\n        <property name=\"NoDisplay\" type=\"b\" access=\"read\" />\n        <property name=\"MimeTypes\" type=\"as\" access=\"readwrite\" />\n\n        <property name=\"Actions\" type=\"as\" access=\"read\">\n            <annotation\n                name=\"org.freedesktop.DBus.Description\"\n                value=\"Names of all action identifiers of this application.\n                       Check https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html#extra-actions\n                       for futher information.\"\n            />\n        </property>\n\n        <property name=\"AutoStart\" type=\"b\" access=\"readwrite\" />\n        <property name=\"LastLaunchedTime\" type=\"x\" access=\"read\">\n            <annotation\n                name=\"org.freedesktop.DBus.Description\"\n                value=\"Set the value of this property to -1 to\n                       indicates that some errors has occured.\"\n            />\n        </property>\n\n        <property name=\"LaunchedTimes\" type=\"x\" access=\"read\">\n            <annotation\n                name=\"org.freedesktop.DBus.Description\"\n                value=\"Set the value of this property to -1 to\n                       indicates that some errors has occured.\"\n            />\n        </property>\n\n        <property name=\"InstalledTime\" type=\"x\" access=\"read\">\n            <annotation\n                name=\"org.freedesktop.DBus.Description\"\n                value=\"Set the value of this property to -1 to\n                   indicates that some errors has occured.\"\n            />\n        </property>\n\n        <property name=\"Instances\" type=\"ao\" access=\"read\">\n            <annotation\n                name=\"org.freedesktop.DBus.Description\"\n                value=\"All instances of this application.\"\n            />\n        </property>\n\n        <property name=\"ID\" type=\"s\" access=\"read\">\n            <annotation\n                name=\"org.freedesktop.DBus.Description\"\n                value=\"The desktop file id of this application.\n                       Check https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html#desktop-file-id\n                       for futher infomation.\"\n            />\n        </property>\n\n        <property name=\"Terminal\" type=\"b\" access=\"read\">\n            <annotation\n                name=\"org.freedesktop.DBus.Description\"\n                value=\"Indicate this application should launch by terminal or not.\"\n            />\n        </property>\n\n        <property name=\"Environ\" type=\"s\" access=\"readwrite\">\n            <annotation\n                name=\"org.freedesktop.DBus.Description\"\n                value=\"Indicate the environment of application's instance.\n                       passing some specific environment variables to Launch\n                       this application, eg. 'LANG=en_US;PATH=xxx:yyy;'\"\n            />\n        </property>\n\n        <property name=\"ActionName\" type=\"a{sa{ss}}\" access=\"read\">\n            <annotation\n                name=\"org.freedesktop.DBus.Description\"\n                value=\"The type of ActionName is a Map, first key represents action, second key represents locale and the value is the corresponding content.\"\n            />\n            <annotation name=\"org.qtproject.QtDBus.QtTypeName\" value=\"PropMap\"/>\n        </property>\n\n        <property name=\"Icons\" type=\"a{ss}\" access=\"read\">\n            <annotation\n                name=\"org.freedesktop.DBus.Description\"\n                value=\"The type of IconName is a Map, where the key represents the action and the value is the corresponding content.\"\n            />\n            <annotation name=\"org.qtproject.QtDBus.QtTypeName\" value=\"QStringMap\"/>\n        </property>\n\n        <property name=\"Name\" type=\"a{ss}\" access=\"read\">\n            <annotation\n                name=\"org.freedesktop.DBus.Description\"\n                value=\"The meaning of this property's type is same as which in ActionName.\"\n            />\n            <annotation name=\"org.qtproject.QtDBus.QtTypeName\" value=\"QStringMap\"/>\n        </property>\n\n        <property name=\"GenericName\" type=\"a{ss}\" access=\"read\">\n            <annotation\n                name=\"org.freedesktop.DBus.Description\"\n                value=\"The meaning of this property's type is same as which in ActionName.\"\n            />\n            <annotation name=\"org.qtproject.QtDBus.QtTypeName\" value=\"QStringMap\"/>\n        </property>\n\n        <method name=\"Launch\">\n            <arg type=\"s\" name=\"action\" direction=\"in\" />\n            <arg type=\"as\" name=\"fields\" direction=\"in\" />\n            <arg type=\"o\" name=\"job\" direction=\"out\" />\n\n            <arg type=\"a{sv}\" name=\"options\" direction=\"in\"/>\n            <annotation name=\"org.qtproject.QtDBus.QtTypeName.In2\" value=\"QVariantMap\"/>\n            <annotation\n                name=\"org.freedesktop.DBus.Description\"\n                value=\"Given an action identifier,\n                       and some fields (file path or URI),\n                       this method will launch this application,\n                       and the object path of the job launching application.\n                       Result of that job is a object path\n                       of the new application instance.\n                       If that job failed, the result is a bool `false`.\n\n                       Extra options can be passed in `options` argument:\n                       1. `uid` (type u):\n                          The user id as who is that application will be run.\n                          This option might request a polikit authentication.\n                       2. `env` (type s):\n                          passing some specific environment variables to Launch\n                          this application, eg. 'LANG=en_US;PATH=xxx:yyy;'\n                       3. `path` (type s):\n                          set this application's working directory, please pass\n                          absolute directory path.\n                       NOTE:\n                       When application launched with `uid` option,\n                       `env` option will not take effect at all.\"\n            />\n        </method>\n\n        <property name=\"isOnDesktop\" type=\"b\" access=\"read\"/>\n\n        <method name=\"SendToDesktop\">\n            <arg type=\"b\" name=\"success\" direction=\"out\"/>\n        </method>\n\n        <method name=\"RemoveFromDesktop\">\n            <arg type=\"b\" name=\"success\" direction=\"out\"/>\n        </method>\n\n    </interface>\n</node>\n"
  },
  {
    "path": "src/plugin-notification/operation/xml/org.desktopspec.ObjectManager1.xml",
    "content": "<!DOCTYPE node PUBLIC \"-//freedesktop//DTD D-BUS Object Introspection 1.0//EN\" \"https://www.freedesktop.org/standards/dbus/1.0/introspect.dtd\">\n<node>\n    <interface name=\"org.desktopspec.DBus.ObjectManager\">\n        <method name=\"GetManagedObjects\">\n            <arg name=\"objpath_interfaces_and_properties\" type=\"a{oa{sa{sv}}}\" direction=\"out\" />\n            <annotation name=\"org.qtproject.QtDBus.QtTypeName.Out0\" value=\"ObjectMap\"/>\n        </method>\n\n        <signal name=\"InterfacesAdded\">\n            <arg name=\"object_path\" type=\"o\" />\n            <arg name=\"interfaces_and_properties\" type=\"a{sa{sv}}\" />\n            <annotation name=\"org.qtproject.QtDBus.QtTypeName.Out1\" value=\"ObjectInterfaceMap\"/>\n        </signal>\n\n        <signal name=\"InterfacesRemoved\">\n            <arg name=\"object_path\" type=\"o\" />\n            <arg name=\"interfaces\" type=\"as\" />\n        </signal>\n    </interface>\n</node>\n"
  },
  {
    "path": "src/plugin-notification/qml/ImageCheckBox.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.11\nimport QtQuick.Layouts 1.15\nimport QtQuick.Templates as T\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\n\nT.Control {\n    id: control\n    property string text: \"ImageCheckBox\"\n    property bool checked: true\n    property string imageName: \"\"\n    implicitWidth: contentItem.implicitWidth\n    implicitHeight: contentItem.implicitHeight\n    Keys.onPressed: function(event) {\n        if (event.key === Qt.Key_Space || event.key === Qt.Key_Return) {\n            checked = !checked\n        }\n    }\n    MouseArea {\n        anchors.fill: parent\n        onClicked: {\n            checked = !checked\n        }\n    }\n    ColumnLayout {\n        id: contentItem\n        anchors.fill: parent\n        \n        Item {\n            Layout.alignment: Qt.AlignCenter\n            implicitWidth: 96\n            implicitHeight: 65\n            focus: true\n            activeFocusOnTab: true\n\n            Rectangle {\n                anchors.fill: parent\n                visible: parent.activeFocus\n                color: \"transparent\"\n                border.width: 2\n                border.color: control.palette.highlight\n                radius: DS.Style.control.radius\n                z: 1\n            }\n\n            Image {\n                anchors.centerIn: parent\n                sourceSize: Qt.size(96, 65)\n                mipmap: true\n                source: D.DTK.themeType === D.ApplicationHelper.LightType ?\n                    \"qrc:/icons/deepin/builtin/light/icons/\" + imageName +\"_84px.png\" : \"qrc:/icons/deepin/builtin/dark/icons/\" + imageName +\"_84px.png\"\n            }\n        }\n        \n        RowLayout {\n            Layout.alignment: Qt.AlignCenter\n            Item {\n                Layout.alignment: Qt.AlignCenter\n                implicitWidth: 24\n                implicitHeight: 24\n                focus: true\n                activeFocusOnTab: true\n\n                Rectangle {\n                    anchors.fill: parent\n                    visible: parent.activeFocus\n                    color: \"transparent\"\n                    border.width: 2\n                    border.color: control.palette.highlight\n                    radius: DS.Style.control.radius\n                    z: 1\n                }\n\n                DccCheckIcon {\n                    anchors.centerIn: parent\n                    checked: control.checked\n                    activeFocusOnTab: false\n                    onClicked: {\n                        control.checked = !control.checked\n                    }\n                }\n            }\n            Text {\n                Layout.alignment: Qt.AlignCenter\n                text: control.text\n                font: control.font\n                elide: Text.ElideRight\n                verticalAlignment: Text.AlignVCenter\n                color: control.palette.windowText\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-notification/qml/Notification.qml",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport org.deepin.dcc 1.0\n\nDccObject {\n    name: \"notification\"\n    parentName: \"system\"\n    displayName: qsTr(\"Notification\")\n    description: qsTr(\"DND mode, app notifications\")\n    icon: \"dcc_notification\"\n    weight: 30\n}\n"
  },
  {
    "path": "src/plugin-notification/qml/NotificationMain.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.0\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: root\n    property var appList: dccData.appItemModels\n    DccTitleObject {\n        name: \"doNotDisturbNotification\"\n        parentName: \"notification\"\n        displayName: qsTr(\"Do Not Disturb Settings\")\n        weight: 10\n    }\n    DccObject {\n        name: \"enableDoNotDisturb\"\n        parentName: \"notification\"\n        weight: 20\n        pageType: DccObject.Item\n        page: DccGroupView {}\n        DccObject {\n            name: \"enableDoNotDisturbSwitch\"\n            parentName: \"enableDoNotDisturb\"\n            description: qsTr(\"App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.\")\n            displayName: qsTr(\"Enable Do Not Disturb\")\n            weight: 10\n            pageType: DccObject.Editor\n            page: D.Switch {\n                anchors {\n                    left: parent.left\n                    leftMargin: 10\n                }\n                checked: dccData.sysItemModel.disturbMode\n                onCheckedChanged: {\n                    if (dccData.sysItemModel.disturbMode !== checked) {\n                        dccData.sysItemModel.disturbMode = checked\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"enableDoNotDisturbTime\"\n            parentName: \"enableDoNotDisturb\"\n            displayName: qsTr(\"Enable Do Not Disturb\")\n            icon: \"notification\"\n            weight: 20\n            pageType: DccObject.Item\n            visible: dccData.sysItemModel.disturbMode\n            page: TimeRange {\n                anchors {\n                    left: parent.left\n                    leftMargin: 10\n                }\n            }\n        }\n        DccObject {\n            name: \"enableDoNotDisturbLock\"\n            parentName: \"enableDoNotDisturb\"\n            displayName: qsTr(\"Enable Do Not Disturb\")\n            icon: \"notification\"\n            weight: 30\n            pageType: DccObject.Item\n            visible: dccData.sysItemModel.disturbMode\n            page: RowLayout {\n                anchors {\n                    left: parent.left\n                    leftMargin: 10\n                }\n                D.CheckBox {\n                    id: lockScreenCheckBox\n                    implicitHeight: implicitContentHeight + 30\n                    checked: dccData.sysItemModel.lockScreen\n                    onCheckedChanged: {\n                        if (dccData.sysItemModel.lockScreen !== checked) {\n                            dccData.sysItemModel.lockScreen = checked\n                        }\n                    }\n                }\n                D.Label {\n                    text: qsTr(\"When the screen is locked\")\n                    MouseArea {\n                        anchors.fill: parent\n                        acceptedButtons: Qt.LeftButton\n                        onClicked: {\n                            lockScreenCheckBox.checked = !lockScreenCheckBox.checked\n                        }\n                    }\n                }\n                Item {\n                    Layout.fillWidth: true\n                }\n            }\n        }\n    }\n    DccObject {\n        name: \"enableDoNotDisturb\"\n        parentName: \"notification\"\n        displayName: qsTr(\"Number of notifications shown on the desktop\")\n        weight: 30\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Editor\n        page: D.ComboBox {\n            model: [\"1\", \"2\", \"3\"]\n            flat: true\n            currentIndex: dccData.sysItemModel.bubbleCount - 1\n            onCurrentIndexChanged: {\n                if (dccData.sysItemModel.bubbleCount - 1 !== currentIndex) {\n                    dccData.sysItemModel.bubbleCount = currentIndex + 1\n                }\n            }\n        }\n    }\n\n    DccObject {\n        id: appNotifyTitle\n        name: \"appNotify\"\n        parentName: \"notification\"\n        displayName: qsTr(\"App Notifications\")\n        weight: 40\n        pageType: DccObject.Item\n\n        property bool searchVisible: false\n\n        page: RowLayout {\n            Timer {\n                id: searchTimer\n                interval: 100\n                onTriggered: {\n                    if (searchEdit.text.length > 0) {\n                        dccData.appListModel().setFilterFixedString(searchEdit.text);\n                    } else {\n                        dccData.appListModel().setFilterWildcard(\"\");\n                    }\n                }\n            }\n            spacing: 6\n            D.Label {\n                property D.Palette textColor: D.Palette {\n                    normal: Qt.rgba(0, 0, 0, 0.9)\n                    normalDark: Qt.rgba(1, 1, 1, 0.9)\n                }\n                Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter\n                Layout.leftMargin: 12\n                text: dccObj.displayName\n                font: DccUtils.copyFont(D.DTK.fontManager.t5, {\n                                            \"weight\": 500\n                                        })\n                color: D.ColorSelector.textColor\n            }\n            Item { Layout.fillWidth: true }\n\n            D.SearchEdit {\n                id: searchEdit\n                visible: appNotifyTitle.searchVisible\n                Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                Layout.rightMargin: 0\n                implicitWidth: 200\n                implicitHeight: 32\n                onTextChanged: {\n                    searchTimer.start()\n                }\n                onActiveFocusChanged: {\n                    if (!activeFocus && text.length === 0) {\n                        appNotifyTitle.searchVisible = false\n                    }\n                }\n                Component.onCompleted: {\n                    dccData.appListModel().setFilterWildcard(\"\");\n                }\n            }\n\n            D.IconButton {\n                id: searchButton\n                visible: !appNotifyTitle.searchVisible\n                Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                Layout.rightMargin: 0\n                icon.name: \"dcc-search\"\n                icon.width: 16\n                icon.height: 16\n                implicitWidth: 32\n                implicitHeight: 32\n                background: Rectangle {\n                    property D.Palette pressedColor: D.Palette {\n                        normal: Qt.rgba(0, 0, 0, 0.2)\n                        normalDark: Qt.rgba(1, 1, 1, 0.25)\n                    }\n                    property D.Palette hoveredColor: D.Palette {\n                        normal: Qt.rgba(0, 0, 0, 0.1)\n                        normalDark: Qt.rgba(1, 1, 1, 0.1)\n                    }\n                    radius: DS.Style.control.radius\n                    color: parent.pressed ? D.ColorSelector.pressedColor : (parent.hovered ? D.ColorSelector.hoveredColor : \"transparent\")\n                    border {\n                        color: parent.palette.highlight\n                        width: parent.visualFocus ? DS.Style.control.focusBorderWidth : 0\n                    }\n                }\n                onClicked: {\n                    appNotifyTitle.searchVisible = true\n                    searchEdit.forceActiveFocus()\n                }\n            }\n        }\n\n        onParentItemChanged: item => {\n            if (item) {\n                item.bottomPadding = 2\n                item.topPadding = 6\n                item.rightPadding = 0\n            }\n        }\n    }\n\n    DccObject {\n        id: applicationList\n        name: \"list\"\n        parentName: \"notification\"\n        weight: 50\n        pageType: DccObject.Item\n        page: DccGroupView {}\n        DccRepeater {\n            model: dccData.appListModel()\n            delegate: DccObject {\n                name: model.AppId\n                parentName: \"notification/list\"\n                pageType: DccObject.MenuEditor\n                weight: 10 + index\n                icon: model.AppIcon\n                displayName: model.AppName\n                backgroundType: DccObject.Normal\n                page: D.Switch {\n                    checked: model.EnableNotification\n                    onCheckedChanged: {\n                        if (model.EnableNotification !== checked) {\n                            model.EnableNotification = checked\n                        }\n                    }\n                }\n                DccObject {\n                    name: \"notificationItemDetails\"\n                    parentName: \"notification/list/\" + model.AppId\n                    DccObject {\n                        backgroundType: DccObject.Normal\n                        name: \"allowNotifications\"\n                        parentName: \"notification/list/\" + model.AppId + \"/notificationItemDetails\"\n                        displayName: qsTr(\"Allow Notifications\")\n                        description: qsTr(\"Display notification on desktop or show unread messages in the notification center\")\n                        icon: model.AppIcon\n                        weight: 10\n                        pageType: DccObject.Editor\n                        page: D.Switch {\n                            Layout.rightMargin: 10\n                            Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                            checked: model.EnableNotification\n                            onCheckedChanged: {\n                                if (model.EnableNotification !== checked) {\n                                    model.EnableNotification = checked\n                                }\n                            }\n                        }\n                    }\n                    DccObject {\n                        name: \"notificationItemDetailsType\"\n                        parentName: \"notification/list/\" + model.AppId + \"/notificationItemDetails\"\n                        backgroundType: DccObject.Normal\n                        visible: model.EnableNotification\n                        weight: 20\n                        pageType: DccObject.Item\n                        page: Rectangle {\n                            color: \"transparent\"\n                            implicitHeight: rowView.height + 20\n                            RowLayout {\n                                id: rowView\n                                width: parent.width\n                                anchors.centerIn: parent\n                                ImageCheckBox {\n                                    Layout.alignment: Qt.AlignCenter\n                                    text: qsTr(\"Desktop\")\n                                    imageName: \"notify_desktop\"\n                                    checked: model.ShowNotificationDesktop\n                                    onCheckedChanged: {\n                                        if (checked !== model.ShowNotificationDesktop) {\n                                            model.ShowNotificationDesktop = checked\n                                        }\n                                    }\n                                }\n                                ImageCheckBox {\n                                    Layout.alignment: Qt.AlignCenter\n                                    text: qsTr(\"Lock Screen\")\n                                    imageName: \"notify_lock\"\n                                    visible: false\n                                    checked: model.LockScreenShowNotification\n                                    onCheckedChanged: {\n                                        if (checked !== model.LockScreenShowNotification) {\n                                            model.LockScreenShowNotification = checked\n                                        }\n                                    }\n                                }\n                                ImageCheckBox {\n                                    Layout.alignment: Qt.AlignCenter\n                                    text: qsTr(\"Notification Center\")\n                                    imageName: \"notify_center\"\n                                    checked: model.ShowNotificationCenter\n                                    onCheckedChanged: {\n                                        if (checked !== model.ShowNotificationCenter) {\n                                            model.ShowNotificationCenter = checked\n                                        }\n                                    }\n                                }\n                            }\n                        }\n                    }\n                    DccObject {\n                        name: \"notificationSettingsGroup\"\n                        parentName: \"notification/list/\" + model.AppId + \"/notificationItemDetails\"\n                        pageType: DccObject.Item\n                        backgroundType: DccObject.Normal\n                        visible: model.EnableNotification\n                        weight: 30\n                        page: DccGroupView {}\n                        DccObject {\n                            name: \"notificationPreview\"\n                            parentName: \"notification/list/\" + model.AppId + \"/notificationItemDetails/notificationSettingsGroup\"\n                            displayName: qsTr(\"Show message preview\")\n                            pageType: DccObject.Item\n                            weight: 10\n                            page: RowLayout {\n                                D.CheckBox {\n                                    implicitHeight: 40\n                                    Layout.leftMargin: 14\n                                    text: dccObj.displayName\n                                    checked: model.EnablePreview\n                                    onCheckedChanged: {\n                                        if (model.EnablePreview !== checked) {\n                                            model.EnablePreview = checked\n                                        }\n                                    }\n                                }\n                            }\n                        }\n                        DccObject {\n                            name: \"notificationSound\"\n                            parentName: \"notification/list/\" + model.AppId + \"/notificationItemDetails/notificationSettingsGroup\"\n                            displayName: qsTr(\"Play a sound\")\n                            pageType: DccObject.Item\n                            weight: 20\n                            page: RowLayout {\n                                D.CheckBox {\n                                    implicitHeight: 40\n                                    Layout.leftMargin: 14\n                                    text: dccObj.displayName\n                                    checked: model.EnableSound\n                                    onCheckedChanged: {\n                                        if (model.EnableSound !== checked) {\n                                            model.EnableSound = checked\n                                        }\n                                    }\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n\n"
  },
  {
    "path": "src/plugin-notification/qml/TimeRange.qml",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.0\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc 1.0\n\nRowLayout {\n    property var sysItemModel: dccData.sysItemModel\n    spacing: 5\n    D.CheckBox {\n        id: timeSlotCheckBox\n        implicitHeight: implicitContentHeight + 30\n        checked: dccData.sysItemModel.timeSlot\n        onCheckedChanged: {\n            if (dccData.sysItemModel.timeSlot !== checked) {\n                dccData.sysItemModel.timeSlot = checked\n            }\n        }\n    }\n    D.Label {\n        text: qsTr(\"from\")\n        MouseArea {\n            anchors.fill: parent\n            acceptedButtons: Qt.LeftButton\n            onClicked: {\n                timeSlotCheckBox.checked = !timeSlotCheckBox.checked\n            }\n        }\n    }\n    DccTimeRange {\n        id: hourTime\n        hour: sysItemModel.timeStart.split(\":\")[0]\n        minute: sysItemModel.timeStart.split(\":\")[1]\n        onTimeChanged: sysItemModel.timeStart = timeString\n    }\n    D.Label {\n        text: qsTr(\"to\")\n    }\n    DccTimeRange {\n        hour: sysItemModel.timeEnd.split(\":\")[0]\n        minute: sysItemModel.timeEnd.split(\":\")[1]\n        onTimeChanged: sysItemModel.timeEnd = timeString\n    }\n    Item {\n        Layout.fillWidth: true\n    }\n}\n"
  },
  {
    "path": "src/plugin-notification/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-notification/types/am.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n// from am global.h\n#include <QMap>\n#include <QString>\n#include <QDBusObjectPath>\n\nusing ObjectInterfaceMap = QMap<QString, QVariantMap>;\nusing ObjectMap = QMap<QDBusObjectPath, ObjectInterfaceMap>;\nusing QStringMap = QMap<QString, QString>;\nusing PropMap = QMap<QString, QStringMap>;\n\nQ_DECLARE_METATYPE(ObjectInterfaceMap)\nQ_DECLARE_METATYPE(ObjectMap)\nQ_DECLARE_METATYPE(QStringMap)\nQ_DECLARE_METATYPE(PropMap)\n"
  },
  {
    "path": "src/plugin-personalization/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\nset(LIB_NAME personalization)\n\nfind_package(Qt6 REQUIRED COMPONENTS WaylandClient)\nif(Qt6_VERSION VERSION_GREATER_EQUAL 6.10)\n  find_package(Qt6 COMPONENTS WaylandClientPrivate REQUIRED)\nendif()\n\nif (Enable_TreelandSupport)\nfind_package(TreelandProtocols REQUIRED)\nendif()\n\nfile(GLOB_RECURSE Personalization_SRCS\n    \"operation/*.cpp\"\n    \"operation/*.hpp\"\n    \"operation/*.h\"\n    \"operation/qrc/personalization.qrc\"\n    )\n\nset(personalization_Includes\n    src/plugin-personalization/operation\n)\n\nadd_library(${LIB_NAME} MODULE\n    ${Personalization_SRCS}\n)\n\nif (Enable_TreelandSupport)\nqt6_generate_wayland_protocol_client_sources(${LIB_NAME} FILES\n    ${TREELAND_PROTOCOLS_DATA_DIR}/treeland-personalization-manager-v1.xml\n)\n\ntarget_compile_definitions(${LIB_NAME} PRIVATE Enable_Treeland)\nendif()\n\n\nset(Personalization_Libraries\n    ${DCC_FRAME_Library}\n    ${DTK_NS}::Gui\n    ${QT_NS}::DBus\n    ${QT_NS}::Qml\n    ${QT_NS}::WaylandClientPrivate\n)\n\ntarget_include_directories(${LIB_NAME} PUBLIC\n    ${personalization_Includes}\n)\n\ntarget_link_libraries(${LIB_NAME} PRIVATE\n    ${Personalization_Libraries}\n)\n\ndcc_install_plugin(NAME ${LIB_NAME} TARGET ${LIB_NAME})\n"
  },
  {
    "path": "src/plugin-personalization/operation/imagehelper.cpp",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include <QImage>\n#include <QQmlInfo>\n\n#include \"imagehelper.h\"\n\nImageHelper::ImageHelper(QObject *parent)\n    : QObject{ parent }\n{\n}\n\nbool ImageHelper::isDarkType(const QImage &img)\n{\n    int r = 0, g = 0, b = 0;\n    for (int i = 0; i < img.width(); i++)\n        for (int j = 0; j < img.height(); j++) {\n            r += qRed(img.pixel(i, j));\n            g += qGreen(img.pixel(i, j));\n            b += qBlue(img.pixel(i, j));\n        }\n    auto size = img.width() * img.height();\n    float luminance = 0.299 * r / size + 0.587 * g / size + 0.114 * b / size;\n    return qRound(luminance) <= 170;\n}\n"
  },
  {
    "path": "src/plugin-personalization/operation/imagehelper.h",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QObject>\n\nclass ImageHelper : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit ImageHelper(QObject *parent = nullptr);\n\n    Q_INVOKABLE bool isDarkType(const QImage &img);\n};\n"
  },
  {
    "path": "src/plugin-personalization/operation/keyfile.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"keyfile.h\"\n#include <QRegularExpression>\n\nKeyFile::KeyFile(char separtor)\n : modified(false)\n , listSeparator(separtor)\n{\n}\n\nKeyFile::~KeyFile()\n{\n    if (fp.isOpen()) {\n        fp.close();\n    }\n}\n\nbool KeyFile::getBool(const QString &section, const QString &key, bool defaultValue)\n{\n    if (mainKeyMap.find(section) == mainKeyMap.end())\n        return false;\n\n    QString valueStr = mainKeyMap[section][key];\n    bool value = defaultValue;\n    if (valueStr == \"true\")\n        value = true;\n    else if (valueStr == \"false\")\n        value = false;\n\n    return value;\n}\n\nQString KeyFile::getStr(const QString &section, const QString &key, QString defaultValue)\n{\n    if (mainKeyMap.find(section) == mainKeyMap.end())\n        return defaultValue;\n\n    QString valueStr = mainKeyMap[section][key];\n    if (valueStr.isEmpty())\n        valueStr = defaultValue;\n\n    return valueStr;\n}\n\nbool KeyFile::containKey(const QString &section, const QString &key)\n{\n    if (mainKeyMap.find(section) == mainKeyMap.end())\n        return false;\n\n    return mainKeyMap[section].find(key) != mainKeyMap[section].end();\n}\n\nQStringList KeyFile::getStrList(const QString &section, const QString &key)\n{\n    QString value = getStr(section, key);\n\n    return value.split(listSeparator);\n}\n\n// 修改keyfile内容\nvoid KeyFile::setKey(const QString &section, const QString &key, const QString &value)\n{\n    if (mainKeyMap.find(section) == mainKeyMap.end())\n    {\n        mainKeyMap.insert(section, KeyMap());\n    }\n\n    mainKeyMap[section].insert(key, value);\n}\n\n// 写入文件\nbool KeyFile::saveToFile(const QString &filePath)\n{\n    QFile file(filePath);\n    if(!file.open(QIODevice::WriteOnly | QIODevice::Text))\n    {\n        return false;\n    }\n\n    for (const auto &im : mainKeyMap.toStdMap()) {\n        const auto &keyMap = im.second;\n        QString section = \"[\" + im.first + \"]\\n\";\n        file.write(section.toLatin1());\n        for (const auto &ik : keyMap.toStdMap()) {\n            QString kv = ik.first + \"=\" + ik.second + \"\\n\";\n            file.write(kv.toLatin1());\n        }\n    }\n\n    file.close();\n    return true;\n}\n\nbool KeyFile::loadFile(const QString &filePath)\n{\n    mainKeyMap.clear();\n    if (fp.isOpen()) {\n        fp.close();\n    }\n\n    QString lastSection;\n    fp.setFileName(filePath);\n\n    if(!fp.open(QIODevice::ReadOnly))\n    {\n        return false;\n    }\n\n    QString line;\n    while (!fp.atEnd()) {\n        line=fp.readLine();\n        // 移除行首空行\n        line.replace(QRegularExpression(\"^ +\"),\"\");\n        if(line.front()=='#')\n        {\n            continue;\n        }\n\n        line.replace(QRegularExpression(\"\\\\t$\"),\"\");\n        line.replace(QRegularExpression(\"\\\\r$\"),\"\");\n        line.replace(QRegularExpression(\"\\\\n$\"),\"\");\n\n        int lPos = line.indexOf('[');\n        int rPos = line.indexOf(']');\n        if (lPos !=-1 && rPos !=-1 && rPos > lPos && lPos == 0 && rPos+1 == line.size()) {\n            // 主键\n            QString section = line.mid(lPos+1,line.size()-2);\n            mainKeyMap.insert(section, KeyMap());\n            lastSection = section;\n        } else {\n            int index = line.indexOf('=');\n            if (index ==-1)\n            {\n                continue;\n            }\n\n            // 文件格式错误\n            if (lastSection.isEmpty()){\n                return false;\n            }\n\n            // 子键\n            QString key = line.mid(0, index);\n            QString value = line.mid(index + 1, line.length()-index-1);\n            if(mainKeyMap.count(lastSection) == 1)\n            {\n                mainKeyMap[lastSection][key]=value;\n            }\n        }\n    }\n    fp.close();\n\n    return true;\n}\n\nQStringList KeyFile::getMainKeys()\n{\n    QStringList mainKeys;\n    for (const auto &iter : mainKeyMap.toStdMap())\n        mainKeys.push_back(iter.first);\n\n    return mainKeys;\n}\n\nvoid KeyFile::removeSection(const QString &section)\n{\n    mainKeyMap.remove(section);\n}\n\nvoid KeyFile::removeKey(const QString &section, const QString &key)\n{\n    if (mainKeyMap.contains(section)) {\n        mainKeyMap[section].remove(key);\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/operation/keyfile.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef KEYFILE_H\n#define KEYFILE_H\n\n#include <QMap>\n#include <QVector>\n#include <QFile>\n\ntypedef QMap<QString, QString> KeyMap;\ntypedef QMap<QString, KeyMap> MainKeyMap;\n\n// 解析ini、desktop文件类\nclass KeyFile\n{\npublic:\n    explicit KeyFile(char separtor = ';');\n    ~KeyFile();\n\n    bool getBool(const QString &section, const QString &key, bool defaultValue = false);\n\n    QString getStr(const QString &section, const QString &key, QString defaultValue = \"\");\n    bool containKey(const QString &section, const QString &key);\n    QStringList getStrList(const QString &section, const QString &key);\n\n    void setKey(const QString &section, const QString &key, const QString &value);\n    bool saveToFile(const QString &filePath);\n    bool loadFile(const QString &filePath);\n    QStringList getMainKeys();\n    void removeSection(const QString &section);\n    void removeKey(const QString &section, const QString &key);\n\nprivate:\n    MainKeyMap mainKeyMap; // section -> key : value\n    QString filePath;\n    QFile fp;\n    bool modified;\n    char listSeparator;\n};\n\n#endif // KEYFILE_H\n"
  },
  {
    "path": "src/plugin-personalization/operation/model/fontmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"fontmodel.h\"\n\nFontModel::FontModel(QObject *parent) : QObject(parent)\n{\n\n}\n\nvoid FontModel::setFontList(const QList<QJsonObject> &list)\n{\n    if (m_list != list) {\n        m_list = list;\n        Q_EMIT listChanged(list);\n    }\n}\nvoid FontModel::setFontName(const QString &name)\n{\n    if (m_fontName != name) {\n        m_fontName = name;\n        Q_EMIT defaultFontChanged(name);\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/operation/model/fontmodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef FONTMODEL_H\n#define FONTMODEL_H\n\n#include <QObject>\n#include <QList>\n#include <QJsonObject>\n\n\nclass FontModel : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(QString fontName READ getFontName WRITE setFontName NOTIFY defaultFontChanged)\n    Q_PROPERTY(QList<QJsonObject> fontList READ getFontList WRITE setFontList NOTIFY listChanged)\npublic:\n    explicit FontModel(QObject *parent = 0);\n    void setFontList(const QList<QJsonObject> &list);\n    void setFontName(const QString &name);\n    inline const QList<QJsonObject> getFontList() const { return m_list; }\n    inline const QString getFontName() const {return m_fontName;}\n\nQ_SIGNALS:\n    void listChanged(const QList<QJsonObject> &list);\n    void defaultFontChanged(const QString &name);\n\nprivate:\n    QList<QJsonObject> m_list;\n    QString m_fontName;\n};\n\nQ_DECLARE_METATYPE(FontModel*)\n#endif // FONTMODEL_H\n"
  },
  {
    "path": "src/plugin-personalization/operation/model/fontsizemodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"fontsizemodel.h\"\n\n\nFontSizeModel::FontSizeModel(QObject *parent)\n    : QObject(parent)\n    , m_size(0)\n{\n\n}\n\nvoid FontSizeModel::setFontSize(const int size)\n{\n    if (m_size!=size) {\n        m_size = size;\n        Q_EMIT sizeChanged(size);\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/operation/model/fontsizemodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef FONTSIZEMODEL_H\n#define FONTSIZEMODEL_H\n\n#include <QObject>\n\nclass FontSizeModel : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(int size READ getFontSize WRITE setFontSize NOTIFY sizeChanged)\npublic:\n    explicit FontSizeModel(QObject *parent = 0);\npublic Q_SLOTS:\n    void setFontSize(const int size);\n    Q_INVOKABLE inline int getFontSize() const { return m_size;}\n\nQ_SIGNALS:\n    void sizeChanged(int size);\n\nprivate:\n    int m_size;\n};\n\n#endif // FONTSIZEMODEL_H\n"
  },
  {
    "path": "src/plugin-personalization/operation/model/thememodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"thememodel.h\"\n\nThemeModel::ThemeModel(QObject *parent)\n    : QObject(parent)\n{\n}\n\nQStringList ThemeModel::keys()\n{\n    return m_keys;\n}\n\nvoid ThemeModel::addItem(const QString &id, const QJsonObject &json)\n{\n    if (m_list.contains(id)) {\n        m_keys.removeOne(id);\n        m_keys.append(id);\n        return;\n    }\n    m_keys.append(id);\n    m_list.insert(id, json);\n    Q_EMIT itemAdded(json);\n}\n\nvoid ThemeModel::setDefault(const QString &value)\n{\n    m_default = value;\n    Q_EMIT defaultChanged(value);\n    for (const auto &themeItem : m_list) {\n        if (themeItem.value(\"Id\") == value) {\n            const QString &themeName = themeItem.value(\"Name\").toString();\n            m_currentThemeName = themeName;\n            Q_EMIT currentThemeNameChanged(themeName);\n            break;\n        }\n    }\n}\n\nQMap<QString, QString> ThemeModel::getPicList() const\n{\n    return m_picList;\n}\n\nvoid ThemeModel::addPic(const QString &id, const QString &picPath)\n{\n    m_picList.insert(id, picPath);\n    Q_EMIT picAdded(id, picPath);\n}\n\nvoid ThemeModel::removeItem(const QString &id)\n{\n    m_list.remove(id);\n    m_keys.removeOne(id);\n    Q_EMIT itemRemoved(id);\n}\n"
  },
  {
    "path": "src/plugin-personalization/operation/model/thememodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef THEMEMODEL_H\n#define THEMEMODEL_H\n\n#include <QObject>\n#include <QMap>\n#include <QJsonObject>\n#include <QDebug>\n\nclass ThemeModel : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(QString currentTheme READ getDefault WRITE setDefault NOTIFY defaultChanged)\n    Q_PROPERTY(QString currentThemeName MEMBER m_currentThemeName NOTIFY currentThemeNameChanged)\npublic:\n    explicit ThemeModel(QObject *parent = 0);\n\n    QStringList keys();\n    void addItem(const QString &id, const QJsonObject &json);\n    QMap<QString, QJsonObject> getList() { return m_list; }\n\n    void setDefault(const QString &value);\n    inline QString getDefault() { return m_default; }\n\n    QMap<QString, QString> getPicList() const;\n    void addPic(const QString &id, const QString &picPath);\n\n    void removeItem(const QString &id);\n\nQ_SIGNALS:\n    void itemAdded(const QJsonObject &json);\n    void defaultChanged(const QString &value);\n    void currentThemeNameChanged(const QString &value);\n    void picAdded(const QString &id, const QString &picPath);\n    void itemRemoved(const QString &id);\n\nprivate:\n    QMap<QString, QJsonObject> m_list;\n    QString m_default;\n    QMap<QString, QString> m_picList;\n    QStringList m_keys;\n    QString m_currentThemeName;\n};\n\n#endif // THEMEMODEL_H\n"
  },
  {
    "path": "src/plugin-personalization/operation/model/wallpapermodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"wallpapermodel.h\"\n\n#include <QFile>\n#include <QUrl>\n\nWallpaperModel::WallpaperModel(QObject *parent) : QAbstractItemModel(parent)\n{\n\n}\n\nQModelIndex WallpaperModel::index(int row, int column, const QModelIndex &parent) const\n{\n    if (row < 0 || row >= rowCount() || parent.isValid() || column != 0)\n        return QModelIndex();\n\n    return createIndex(row, 0);\n}\n\nQModelIndex WallpaperModel::parent(const QModelIndex &child) const\n{\n    Q_UNUSED(child)\n    return QModelIndex();\n}\n\nint WallpaperModel::rowCount(const QModelIndex &parent) const\n{\n    if (parent.isValid())\n        return 0;\n\n    return items.size();\n}\n\nint WallpaperModel::columnCount(const QModelIndex &parent) const\n{\n    Q_UNUSED(parent)\n    return 1;\n}\n\nQVariant WallpaperModel::data(const QModelIndex &index, int role) const\n{\n    auto node = itemNode(index);\n    QVariant ret;\n    if (!node)\n        return ret;\n\n    switch (role) {\n    case Item_Url_Role:\n        ret = node->url;\n        break;\n    case Item_PicPath_Role:\n        ret = node->picPath;\n        break;\n    case Item_Thumbnail_Role:\n        ret = node->thumbnail;\n        break;\n    case Item_deleteAble_Role:\n        ret = node->deleteAble;\n        break;\n    case Item_lastModifiedTime_Role:\n        ret = node->lastModifiedTime;\n        break;\n    case Item_configurable_Role:\n        ret = node->configurable;\n        break;\n    case Item_Selected_Role:\n        ret = node->selected;\n        break;\n    default:\n        break;\n    }\n    return ret;\n}\n\nbool WallpaperModel::setData(const QModelIndex &index, const QVariant &value, int role)\n{\n    if (index.row() >= items.size() || index.row() < 0) {\n        return false;\n    }\n\n    if (role == Item_Selected_Role) {\n        if (items[index.row()]->selected != value.toBool()) {\n            items[index.row()]->selected = value.toBool();\n            Q_EMIT dataChanged(index, index, {role});\n\n        }\n    }\n\n    return QAbstractItemModel::setData(index, value, role);\n}\n\nQt::ItemFlags WallpaperModel::flags(const QModelIndex &index) const\n{\n    Qt::ItemFlags flg = Qt::NoItemFlags;\n    if (auto node = itemNode(index)) {\n        flg |= Qt::ItemIsEnabled;\n    }\n\n    return flg;\n}\n\nvoid WallpaperModel::insertItem(int pos, WallpaperItemPtr it)\n{\n    if (pos < 0 || pos > rowCount() || it.isNull())\n        pos = rowCount();\n\n    beginInsertRows(QModelIndex(), pos, pos);\n    items.insert(pos, it);\n    endInsertRows();\n}\n\nvoid WallpaperModel::appendItem(WallpaperItemPtr it)\n{\n    if (it.isNull())\n        return;\n    insertItem(rowCount(), it);\n}\n\nvoid WallpaperModel::removeItem(const QString &item)\n{\n    auto idx = itemIndex(item);\n    if (!idx.isValid())\n        return;\n\n    beginRemoveRows(QModelIndex(), idx.row(), idx.row());\n    items.removeAt(idx.row());\n    endRemoveRows();\n}\n\nvoid WallpaperModel::removeItem(WallpaperItemPtr item)\n{\n    beginRemoveRows(QModelIndex(), itemIndex(item).row(), itemIndex(item).row());\n    items.removeOne(item);\n    endRemoveRows();\n}\n\nWallpaperItemPtr WallpaperModel::itemNode(const QModelIndex &idx) const\n{\n    auto row = idx.row();\n    if (row < 0 || row > rowCount())\n        return {};\n\n    return items.at(row);\n}\n\nQModelIndex WallpaperModel::itemIndex(const QString &item) const\n{\n    auto it = std::find_if(items.begin(), items.end(), [item](const WallpaperItemPtr &ptr) {\n        return ptr->url == item;\n    });\n\n    if (it == items.end())\n        return QModelIndex();\n    auto row = items.indexOf(*it);\n    return index(row, 0);\n}\n\nQModelIndex WallpaperModel::itemIndex(WallpaperItemPtr item) const\n{\n    return index(items.indexOf(item), 0);\n}\n\nvoid WallpaperModel::resetData(const QList<WallpaperItemPtr> &list)\n{\n    beginResetModel();\n    items = list;\n    endResetModel();\n}\n\nvoid WallpaperModel::updateSelected(const QStringList &selectedLists)\n{\n    for(int i = 0; i < rowCount(); i++) {\n        auto cutIndex = index(i, 0);\n        setData(cutIndex, \n            selectedLists.contains(data(cutIndex, Item_Url_Role).toString()), \n            Item_Selected_Role);\n    }\n}\n\nQString WallpaperSortModel::getPicPathByUrl(const QString &url) const\n{\n    for(int i = 0; i < sourceModel()->rowCount(); i++) {\n        auto cutIndex = sourceModel()->index(i, 0);\n        if (url == sourceModel()->data(cutIndex, Item_Url_Role).toString()) {\n            const QString picPath = sourceModel()->data(cutIndex, Item_PicPath_Role).toString();\n            if (QFile::exists(picPath)) {\n                return QUrl::fromLocalFile(picPath).toString();\n            }\n            return picPath;\n        }\n    }\n    return {};\n}\n\nbool WallpaperSortModel::getConfigAbleByUrl(const QString &url) const\n{\n    for(int i = 0; i < sourceModel()->rowCount(); i++) {\n        auto cutIndex = sourceModel()->index(i, 0);\n        if (url == sourceModel()->data(cutIndex, Item_Url_Role).toString()) {\n            return sourceModel()->data(cutIndex, Item_configurable_Role).toBool();\n        }\n    }\n    return false;\n}\n\nQHash<int, QByteArray> WallpaperModel::roleNames() const\n{\n    QHash<int, QByteArray> roles = QAbstractItemModel::roleNames();;\n    roles[Item_Url_Role] = \"url\";\n    roles[Item_Thumbnail_Role] = \"picPath\";\n    roles[Item_Thumbnail_Role] = \"thumbnail\";\n    roles[Item_deleteAble_Role] = \"deleteAble\";\n    roles[Item_lastModifiedTime_Role] = \"lastModifiedTime\";\n    roles[Item_configurable_Role] = \"configurable\";\n    roles[Item_Selected_Role] = \"selected\";\n    return roles;\n}\n"
  },
  {
    "path": "src/plugin-personalization/operation/model/wallpapermodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef WALLPAPERMODEL_H\n#define WALLPAPERMODEL_H\n\n#include <QSortFilterProxyModel>\n#include <QAbstractItemModel>\n#include <QPixmap>\n\nstruct WallpaperItem {\n    QString url;\n    QString picPath;\n    QString thumbnail;\n    bool deleteAble;\n    qint64 lastModifiedTime;\n    bool configurable;\n    bool selected;\n};\n\nenum ItemTypeRole {\n    Item_Url_Role = Qt::UserRole + 1,\n    Item_PicPath_Role,\n    Item_Thumbnail_Role,\n    Item_deleteAble_Role,\n    Item_lastModifiedTime_Role,\n    Item_configurable_Role,\n    Item_Selected_Role,\n};\n\ntypedef QSharedPointer<WallpaperItem> WallpaperItemPtr;\n\nclass WallpaperSortModel : public QSortFilterProxyModel\n{\n    Q_OBJECT\n    Q_PROPERTY(int count READ rowCount NOTIFY countChanged)\npublic:\n    explicit WallpaperSortModel(QObject *parent = nullptr)\n        : QSortFilterProxyModel(parent) {\n            sort(0);\n        }\n\n    void setSourceModel(QAbstractItemModel *sourceModel) override {\n        if (this->sourceModel()) {\n            // 断开旧源模型的信号\n            disconnect(this->sourceModel(), &QAbstractItemModel::rowsInserted,\n                       this, &WallpaperSortModel::countChanged);\n            disconnect(this->sourceModel(), &QAbstractItemModel::rowsRemoved,\n                       this, &WallpaperSortModel::countChanged);\n            disconnect(this->sourceModel(), &QAbstractItemModel::modelReset,\n                       this, &WallpaperSortModel::countChanged);\n        }\n\n        QSortFilterProxyModel::setSourceModel(sourceModel);\n\n        if (sourceModel) {\n            // 连接新源模型的信号\n            connect(sourceModel, &QAbstractItemModel::rowsInserted,\n                    this, &WallpaperSortModel::countChanged);\n            connect(sourceModel, &QAbstractItemModel::rowsRemoved,\n                    this, &WallpaperSortModel::countChanged);\n            connect(sourceModel, &QAbstractItemModel::modelReset,\n                    this, &WallpaperSortModel::countChanged);\n        }\n    }\n\n    Q_INVOKABLE bool hasWallpaper(const QString &url) const {\n        for (int i = 0; i < sourceModel()->rowCount(); i++) {\n            if (url == sourceModel()->data(sourceModel()->index(i, 0), Item_Url_Role).toString()) {\n                return true;\n            }\n        }\n        return false;\n    }\n\n    Q_INVOKABLE QString getPicPathByUrl(const QString &url) const;\n    Q_INVOKABLE bool getConfigAbleByUrl(const QString &url) const;\n\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override {\n        return sourceModel() ? sourceModel()->rowCount(parent) : 0;\n    }\n\nsignals:\n    void countChanged();\n\nprotected:\n    bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const override\n    {\n\n    return sourceModel()->data(source_left, Item_lastModifiedTime_Role).value<qint64>() >\n        sourceModel()->data(source_right, Item_lastModifiedTime_Role).value<qint64>();\n}\n};\n\nclass WallpaperModel : public QAbstractItemModel\n{\n    Q_OBJECT\npublic:\n    explicit WallpaperModel(QObject *parent = nullptr);\n    QModelIndex index(int row, int column,\n                              const QModelIndex &parent = QModelIndex()) const override;\n    QModelIndex parent(const QModelIndex &child) const override;\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n    int columnCount(const QModelIndex &parent = QModelIndex()) const override;\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n    bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;\n    Qt::ItemFlags flags(const QModelIndex &index) const override;\n    void insertItem(int pos, WallpaperItemPtr it);\n    void appendItem(WallpaperItemPtr it);\n    void removeItem(const QString &item);\n    void removeItem(WallpaperItemPtr item);\n    WallpaperItemPtr itemNode(const QModelIndex &idx) const;\n    QModelIndex itemIndex(const QString &item) const;\n    QModelIndex itemIndex(WallpaperItemPtr item) const;\n    void resetData(const QList<WallpaperItemPtr> &list);\n    void updateSelected(const QStringList &selectedLists);\nprotected:\n    QHash<int, QByteArray> roleNames() const override;\nprivate:\n    QList<WallpaperItemPtr> items;\n};\n\n#endif // WALLPAPERMODEL_H\n"
  },
  {
    "path": "src/plugin-personalization/operation/personalizationdbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"personalizationdbusproxy.h\"\n\n#include <DGuiApplicationHelper>\n#include <QMetaObject>\n#include <QDBusConnection>\n#include <QDBusPendingReply>\n\nDCORE_USE_NAMESPACE\n\nconst QString AppearanceService = QStringLiteral(\"org.deepin.dde.Appearance1\");\nconst QString AppearancePath = QStringLiteral(\"/org/deepin/dde/Appearance1\");\nconst QString AppearanceInterface = QStringLiteral(\"org.deepin.dde.Appearance1\");\n\nconst QString WMService = QStringLiteral(\"com.deepin.wm\");\nconst QString WMPath = QStringLiteral(\"/com/deepin/wm\");\nconst QString WMInterface = QStringLiteral(\"com.deepin.wm\");\n\nconst QString EffectsService = QStringLiteral(\"org.kde.KWin\");\nconst QString EffectsPath = QStringLiteral(\"/Effects\");\nconst QString EffectsInterface = QStringLiteral(\"org.kde.kwin.Effects\");\n\nconst QString DaemonService = QStringLiteral(\"org.deepin.dde.Daemon1\");\nconst QString DaemonPath = QStringLiteral(\"/org/deepin/dde/Daemon1\");\nconst QString DaemonInterface = QStringLiteral(\"org.deepin.dde.Daemon1\");\n\nconst QString ScreenSaverServive = QStringLiteral(\"com.deepin.ScreenSaver\");\nconst QString ScreenSaverPath = QStringLiteral(\"/com/deepin/ScreenSaver\");\nconst QString ScreenSaverInterface = QStringLiteral(\"com.deepin.ScreenSaver\");\n\nconst QString WallpaperSlideshowService = QStringLiteral(\"org.deepin.dde.WallpaperSlideshow\");\nconst QString WallpaperSlideshowPath = QStringLiteral(\"/org/deepin/dde/WallpaperSlideshow\");\nconst QString WallpaperSlideshowInterface = QStringLiteral(\"org.deepin.dde.WallpaperSlideshow\");\n\nconst QString PowerService = QStringLiteral(\"org.deepin.dde.Power1\");\nconst QString PowerPath = QStringLiteral(\"/org/deepin/dde/Power1\");\nconst QString PowerInterface = QStringLiteral(\"org.deepin.dde.Power1\");\n\nconst QString PropertiesInterface = QStringLiteral(\"org.freedesktop.DBus.Properties\");\nconst QString PropertiesChanged = QStringLiteral(\"PropertiesChanged\");\n\nDGUI_USE_NAMESPACE\n\nPersonalizationDBusProxy::PersonalizationDBusProxy(QObject *parent)\n    : QObject(parent)\n{\n    m_AppearanceInter = new DDBusInterface(AppearanceService, AppearancePath, AppearanceInterface, QDBusConnection::sessionBus(), this);\n    m_DaemonInter = new DDBusInterface(DaemonService, DaemonPath, DaemonInterface, QDBusConnection::systemBus(), this);\n    m_wallpaperSlideshowInter = new DDBusInterface(WallpaperSlideshowService, WallpaperSlideshowPath, WallpaperSlideshowInterface, QDBusConnection::sessionBus(), this);\n    m_powerInter = new DDBusInterface(PowerService, PowerPath, PowerInterface, QDBusConnection::sessionBus(), this);\n    if (!DGuiApplicationHelper::testAttribute(DGuiApplicationHelper::IsWaylandPlatform)) {\n        m_WMInter = new DDBusInterface(WMService, WMPath, WMInterface, QDBusConnection::sessionBus(), this);\n        m_EffectsInter = new DDBusInterface(EffectsService, EffectsPath, EffectsInterface, QDBusConnection::sessionBus(), this);\n        m_screenSaverInter = new DDBusInterface(ScreenSaverServive, ScreenSaverPath, ScreenSaverInterface, QDBusConnection::sessionBus(), this);\n    }\n\n    connect(m_AppearanceInter, SIGNAL(Changed(const QString &, const QString &)), this, SIGNAL(Changed(const QString &, const QString &)));\n    connect(m_AppearanceInter, SIGNAL(Refreshed(const QString &)), this, SIGNAL(Refreshed(const QString &)));\n    connect(m_DaemonInter, SIGNAL(WallpaperChanged(const QString &, uint, const QStringList &)), this, SIGNAL(WallpaperChanged(const QString &, uint, const QStringList &)));\n}\n\n// Appearance\nQString PersonalizationDBusProxy::background()\n{\n    return qvariant_cast<QString>(m_AppearanceInter->property(\"Background\"));\n}\nvoid PersonalizationDBusProxy::setBackground(const QString &value)\n{\n    m_AppearanceInter->setProperty(\"Background\", QVariant::fromValue(value));\n}\n\nQString PersonalizationDBusProxy::cursorTheme()\n{\n    return qvariant_cast<QString>(m_AppearanceInter->property(\"CursorTheme\"));\n}\n\nvoid PersonalizationDBusProxy::setCursorTheme(const QString &value)\n{\n    m_AppearanceInter->setProperty(\"CursorTheme\", QVariant::fromValue(value));\n}\n\nQString PersonalizationDBusProxy::globalTheme()\n{\n    return qvariant_cast<QString>(m_AppearanceInter->property(\"GlobalTheme\"));\n}\n\nvoid PersonalizationDBusProxy::setGlobalTheme(const QString &value)\n{\n    m_AppearanceInter->setProperty(\"GlobalTheme\", QVariant::fromValue(value));\n}\n\ndouble PersonalizationDBusProxy::fontSize()\n{\n    return qvariant_cast<double>(m_AppearanceInter->property(\"FontSize\"));\n}\n\nvoid PersonalizationDBusProxy::setFontSize(double value)\n{\n    m_AppearanceInter->setProperty(\"FontSize\", QVariant::fromValue(value));\n}\n\nQString PersonalizationDBusProxy::gtkTheme()\n{\n    return qvariant_cast<QString>(m_AppearanceInter->property(\"GtkTheme\"));\n}\nvoid PersonalizationDBusProxy::setGtkTheme(const QString &value)\n{\n    m_AppearanceInter->setProperty(\"GtkTheme\", QVariant::fromValue(value));\n}\n\nQString PersonalizationDBusProxy::iconTheme()\n{\n    return qvariant_cast<QString>(m_AppearanceInter->property(\"IconTheme\"));\n}\n\nvoid PersonalizationDBusProxy::setIconTheme(const QString &value)\n{\n    m_AppearanceInter->setProperty(\"IconTheme\", QVariant::fromValue(value));\n}\n\nQString PersonalizationDBusProxy::monospaceFont()\n{\n    return qvariant_cast<QString>(m_AppearanceInter->property(\"MonospaceFont\"));\n}\n\nvoid PersonalizationDBusProxy::setMonospaceFont(const QString &value)\n{\n    m_AppearanceInter->setProperty(\"MonospaceFont\", QVariant::fromValue(value));\n}\n\ndouble PersonalizationDBusProxy::opacity()\n{\n    return qvariant_cast<double>(m_AppearanceInter->property(\"Opacity\"));\n}\n\nvoid PersonalizationDBusProxy::setOpacity(double value)\n{\n    m_AppearanceInter->setProperty(\"Opacity\", QVariant::fromValue(value));\n}\n\nQString PersonalizationDBusProxy::qtActiveColor()\n{\n    return qvariant_cast<QString>(m_AppearanceInter->property(\"QtActiveColor\"));\n}\n\nvoid PersonalizationDBusProxy::setQtActiveColor(const QString &value)\n{\n    m_AppearanceInter->setProperty(\"QtActiveColor\", QVariant::fromValue(value));\n}\n\nQString PersonalizationDBusProxy::standardFont()\n{\n    return qvariant_cast<QString>(m_AppearanceInter->property(\"StandardFont\"));\n}\n\nvoid PersonalizationDBusProxy::setStandardFont(const QString &value)\n{\n    m_AppearanceInter->setProperty(\"StandardFont\", QVariant::fromValue(value));\n}\n\nQString PersonalizationDBusProxy::wallpaperSlideShow()\n{\n    return qvariant_cast<QString>(m_wallpaperSlideshowInter->property(\"WallpaperSlideShow\"));\n}\n\nQString PersonalizationDBusProxy::wallpaperSlideShow(const QString &monitorName)\n{\n    return QDBusPendingReply<QString>(m_wallpaperSlideshowInter->asyncCall(QStringLiteral(\"GetWallpaperSlideShow\"), QVariant::fromValue(monitorName)));\n}\n\nvoid PersonalizationDBusProxy::setWallpaperSlideShow(const QString &monitorName, const QString &slideShow)\n{\n    m_wallpaperSlideshowInter->asyncCall(\"SetWallpaperSlideShow\", QVariant::fromValue(monitorName), QVariant::fromValue(slideShow));\n}\n\nvoid PersonalizationDBusProxy::setWallpaperSlideShow(const QString &wallpaperSlideShow)\n{\n    m_wallpaperSlideshowInter->setProperty(\"WallpaperSlideShow\", QVariant::fromValue(wallpaperSlideShow));\n}\n\nint PersonalizationDBusProxy::windowRadius()\n{\n    return qvariant_cast<int>(m_AppearanceInter->property(\"WindowRadius\"));\n}\n\nvoid PersonalizationDBusProxy::setWindowRadius(int value)\n{\n    m_AppearanceInter->setProperty(\"WindowRadius\", QVariant::fromValue(value));\n}\n\n// Appearance slot\nQString PersonalizationDBusProxy::List(const QString &ty)\n{\n    return QDBusPendingReply<QString>(m_AppearanceInter->asyncCall(QStringLiteral(\"List\"), QVariant::fromValue(ty)));\n}\n\nbool PersonalizationDBusProxy::List(const QString &ty, QObject *receiver, const char *member, const char *errorSlot)\n{\n    QList<QVariant> args;\n    args << QVariant::fromValue(ty);\n    return m_AppearanceInter->callWithCallback(QStringLiteral(\"List\"), args, receiver, member, errorSlot);\n}\n\nvoid PersonalizationDBusProxy::Set(const QString &ty, const QString &value)\n{\n    m_AppearanceInter->asyncCall(QStringLiteral(\"Set\"), QVariant::fromValue(ty), QVariant::fromValue(value));\n}\n\nQString PersonalizationDBusProxy::Show(const QString &ty, const QStringList &names)\n{\n    return QDBusPendingReply<QString>(m_AppearanceInter->asyncCall(QStringLiteral(\"Show\"), QVariant::fromValue(ty), QVariant::fromValue(names)));\n}\n\nbool PersonalizationDBusProxy::Show(const QString &ty, const QStringList &names, QObject *receiver, const char *member)\n{\n    QList<QVariant> args;\n    args << QVariant::fromValue(ty) << QVariant::fromValue(names);\n    return m_AppearanceInter->callWithCallback(QStringLiteral(\"Show\"), args, receiver, member);\n}\n\nQString PersonalizationDBusProxy::Thumbnail(const QString &ty, const QString &name)\n{\n    return QDBusPendingReply<QString>(m_AppearanceInter->asyncCall(QStringLiteral(\"Thumbnail\"), QVariant::fromValue(ty), QVariant::fromValue(name)));\n}\n\nbool PersonalizationDBusProxy::Thumbnail(const QString &ty, const QString &name, QObject *receiver, const char *member, const char *errorSlot)\n{\n    QList<QVariant> args;\n    args << QVariant::fromValue(ty) << QVariant::fromValue(name);\n    return m_AppearanceInter->callWithCallback(QStringLiteral(\"Thumbnail\"), args, receiver, member, errorSlot);\n}\n\nint PersonalizationDBusProxy::getDTKSizeMode()\n{\n    return qvariant_cast<int>(m_AppearanceInter->property(\"DTKSizeMode\"));\n}\n\nvoid PersonalizationDBusProxy::setDTKSizeMode(int value)\n{\n    m_AppearanceInter->setProperty(\"DTKSizeMode\", QVariant::fromValue(value));\n}\n\nint PersonalizationDBusProxy::getScrollBarPolicy()\n{\n    return qvariant_cast<int>(m_AppearanceInter->property(\"QtScrollBarPolicy\"));\n}\n\nvoid PersonalizationDBusProxy::setScrollBarPolicy(int value)\n{\n    m_AppearanceInter->setProperty(\"QtScrollBarPolicy\", QVariant::fromValue(value));\n}\n\nvoid PersonalizationDBusProxy::SetCurrentWorkspaceBackgroundForMonitor(const QString &url, const QString &screenName)\n{\n    m_AppearanceInter->asyncCall(QStringLiteral(\"SetCurrentWorkspaceBackgroundForMonitor\"), url, screenName);\n}\n\nvoid PersonalizationDBusProxy::SetGreeterBackground(const QString &url)\n{\n    m_AppearanceInter->asyncCall(QStringLiteral(\"Set\"), QStringLiteral(\"greeterbackground\"), QVariant::fromValue(url));\n}\n\nQString PersonalizationDBusProxy::getCurrentWorkSpaceBackgroundForMonitor(const QString &screenName)\n{\n    return QDBusPendingReply<QString>(m_AppearanceInter->asyncCall(QStringLiteral(\"GetCurrentWorkspaceBackgroundForMonitor\"), screenName));\n}\n\n// Daemon\nvoid PersonalizationDBusProxy::deleteCustomWallpaper(const QString &userName, const QString &url)\n{\n    m_DaemonInter->asyncCall(QStringLiteral(\"DeleteCustomWallPaper\"), QVariant::fromValue(userName), QVariant::fromValue(url));\n}\n\nQString PersonalizationDBusProxy::saveCustomWallpaper(const QString &userName, const QString &url)\n{\n    return QDBusPendingReply<QString>(m_DaemonInter->asyncCall(QStringLiteral(\"SaveCustomWallPaper\"), QVariant::fromValue(userName), QVariant::fromValue(url)));\n}\n\nQStringList PersonalizationDBusProxy::getCustomWallpaper(const QString &userName)\n{\n    return QDBusPendingReply<QStringList>(m_DaemonInter->asyncCall(QStringLiteral(\"GetCustomWallPapers\"), QVariant::fromValue(userName)));\n}\n\n// screenSaver\nQStringList PersonalizationDBusProxy::getAllscreensaver()\n{\n    if (!m_screenSaverInter)\n        return {};\n    return qvariant_cast<QStringList>(m_screenSaverInter->property(\"allScreenSaver\"));\n}\n\nQString PersonalizationDBusProxy::GetScreenSaverCover(const QString &name)\n{\n    if (!m_screenSaverInter)\n        return {};\n    return QDBusPendingReply<QString>(m_screenSaverInter->asyncCall(QStringLiteral(\"GetScreenSaverCover\"), QVariant::fromValue(name)));\n}\n\nQStringList PersonalizationDBusProxy::ConfigurableItems()\n{\n    if (!m_screenSaverInter)\n        return {};\n    return QDBusPendingReply<QStringList>(m_screenSaverInter->asyncCall(QStringLiteral(\"ConfigurableItems\")));\n}\n\nvoid PersonalizationDBusProxy::setCurrentScreenSaver(const QString &value)\n{\n    if (!m_screenSaverInter)\n        return;\n    m_screenSaverInter->setProperty(\"currentScreenSaver\", QVariant::fromValue(value));\n}\n\nQString PersonalizationDBusProxy::getCurrentScreenSaver()\n{\n    if (!m_screenSaverInter)\n        return {};\n    return qvariant_cast<QString>(m_screenSaverInter->property(\"currentScreenSaver\"));\n}\n\nvoid PersonalizationDBusProxy::preview(const QString &name, bool stayOn)\n{\n    if (!m_screenSaverInter)\n        return;\n    m_screenSaverInter->asyncCall(QStringLiteral(\"Preview\"), name, int32_t(stayOn));\n}\n\nvoid PersonalizationDBusProxy::setLinePowerScreenSaverTimeout(int value)\n{\n    if (!m_screenSaverInter)\n        return;\n    m_screenSaverInter->setProperty(\"linePowerScreenSaverTimeout\", QVariant::fromValue(value));\n}\n\nvoid PersonalizationDBusProxy::setBatteryScreenSaverTimeout(int value)\n{\n    if (!m_screenSaverInter)\n        return;\n    m_screenSaverInter->setProperty(\"batteryScreenSaverTimeout\", QVariant::fromValue(value));\n}\n\nint PersonalizationDBusProxy::getLinePowerScreenSaverTimeout()\n{\n    if (!m_screenSaverInter)\n        return {};\n    return qvariant_cast<int>(m_screenSaverInter->property(\"linePowerScreenSaverTimeout\"));\n}\n\nint PersonalizationDBusProxy::getBatteryScreenSaverTimeout()\n{\n    if (!m_screenSaverInter)\n        return {};\n    return qvariant_cast<int>(m_screenSaverInter->property(\"batteryScreenSaverTimeout\"));\n}\n\nvoid PersonalizationDBusProxy::requestScreenSaverConfig(const QString& name)\n{\n    if (!m_screenSaverInter)\n        return;\n    m_screenSaverInter->asyncCall(QStringLiteral(\"StartCustomConfig\"), QVariant::fromValue(name));\n}\n\nbool PersonalizationDBusProxy::getLockScreenAtAwake()\n{\n    if (!m_screenSaverInter)\n        return false;\n    return qvariant_cast<bool>(m_screenSaverInter->property(\"lockScreenAtAwake\"));\n}\n\nvoid PersonalizationDBusProxy::setLockScreenAtAwake(bool value)\n{\n    if (!m_screenSaverInter)\n        return;\n    m_screenSaverInter->setProperty(\"lockScreenAtAwake\", QVariant::fromValue(value));\n}\n\n// WM\nbool PersonalizationDBusProxy::compositingAllowSwitch()\n{\n    if (!m_WMInter) {\n        return false;\n    }\n    return qvariant_cast<bool>(m_WMInter->property(\"compositingAllowSwitch\"));\n}\n\nbool PersonalizationDBusProxy::compositingEnabled()\n{\n    if (!m_WMInter) {\n        return false;\n    }\n    return qvariant_cast<bool>(m_WMInter->property(\"compositingEnabled\"));\n}\n\nvoid PersonalizationDBusProxy::setCompositingEnabled(bool value)\n{\n    if (!m_WMInter) {\n        return;\n    }\n    m_WMInter->setProperty(\"compositingEnabled\", QVariant::fromValue(value));\n}\n\nbool PersonalizationDBusProxy::compositingPossible()\n{\n    if (!m_WMInter) {\n        return false;\n    }\n    return qvariant_cast<bool>(m_WMInter->property(\"compositingPossible\"));\n}\n\nint PersonalizationDBusProxy::cursorSize()\n{\n    if (!m_WMInter) {\n        return 0;\n    }\n    return qvariant_cast<int>(m_WMInter->property(\"cursorSize\"));\n}\n\nvoid PersonalizationDBusProxy::setCursorSize(int value)\n{\n    if (!m_WMInter) {\n        return;\n    }\n    m_WMInter->setProperty(\"cursorSize\", QVariant::fromValue(value));\n}\n\nbool PersonalizationDBusProxy::zoneEnabled()\n{\n    if (!m_WMInter) {\n        return false;\n    }\n    return qvariant_cast<bool>(m_WMInter->property(\"zoneEnabled\"));\n}\n\nvoid PersonalizationDBusProxy::setZoneEnabled(bool value)\n{\n    if (!m_WMInter) {\n        return;\n    }\n    m_WMInter->setProperty(\"zoneEnabled\", QVariant::fromValue(value));\n}\n\n// Effects\nbool PersonalizationDBusProxy::loadEffect(const QString &name)\n{\n    if (!m_EffectsInter) {\n        return false;\n    }\n    return QDBusPendingReply<bool>(m_EffectsInter->asyncCall(QStringLiteral(\"loadEffect\"), QVariant::fromValue(name)));\n}\n\nvoid PersonalizationDBusProxy::unloadEffect(const QString &name)\n{\n    if (!m_EffectsInter) {\n        return;\n    }\n    m_EffectsInter->asyncCall(QStringLiteral(\"unloadEffect\"), QVariant::fromValue(name));\n}\n\nbool PersonalizationDBusProxy::isEffectLoaded(const QString &name)\n{\n    if (!m_EffectsInter) {\n        return false;\n    }\n    return QDBusPendingReply<bool>(m_EffectsInter->asyncCall(QStringLiteral(\"isEffectLoaded\"), QVariant::fromValue(name)));\n}\n\nbool PersonalizationDBusProxy::isEffectLoaded(const QString &name, QObject *receiver, const char *member)\n{\n    if (!m_EffectsInter) {\n        return false;\n    }\n    QList<QVariant> args;\n    args << QVariant::fromValue(name);\n    return m_EffectsInter->callWithCallback(QStringLiteral(\"isEffectLoaded\"), args, receiver, member);\n}\n\nbool PersonalizationDBusProxy::isEffectSupported(const QString &name)\n{\n    if (!m_EffectsInter) {\n        return false;\n    }\n    return QDBusPendingReply<bool>(m_EffectsInter->asyncCall(QStringLiteral(\"isEffectSupported\"), QVariant::fromValue(name)));\n}\n\nQString PersonalizationDBusProxy::activeColors()\n{\n    return QDBusPendingReply<QString>(m_AppearanceInter->asyncCall(QStringLiteral(\"GetActiveColors\")));\n}\n\nvoid PersonalizationDBusProxy::setActiveColors(const QString &activeColors)\n{\n    m_AppearanceInter->asyncCall(QStringLiteral(\"SetActiveColors\"), QVariant::fromValue(activeColors));\n}\n\n// power\nbool PersonalizationDBusProxy::OnBattery()\n{\n    return qvariant_cast<bool>(m_powerInter->property(\"OnBattery\"));\n}\n"
  },
  {
    "path": "src/plugin-personalization/operation/personalizationdbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef PERSONALIZATIONDBUSPROXY_H\n#define PERSONALIZATIONDBUSPROXY_H\n\n#include <QObject>\n#include <DDBusInterface>\n#include <QDBusPendingReply>\n\nclass QDBusMessage;\n\nclass PersonalizationDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit PersonalizationDBusProxy(QObject *parent = nullptr);\n\n    // Appearance\n    Q_PROPERTY(QString Background READ background WRITE setBackground NOTIFY BackgroundChanged)\n    QString background();\n    void setBackground(const QString &value);\n    Q_PROPERTY(QString CursorTheme READ cursorTheme WRITE setCursorTheme NOTIFY CursorThemeChanged)\n    QString cursorTheme();\n    void setCursorTheme(const QString &value);\n    Q_PROPERTY(QString GlobalTheme READ globalTheme WRITE setGlobalTheme NOTIFY GlobalThemeChanged)\n    QString globalTheme();\n    void setGlobalTheme(const QString &value);\n    Q_PROPERTY(double FontSize READ fontSize WRITE setFontSize NOTIFY FontSizeChanged)\n    double fontSize();\n    void setFontSize(double value);\n    Q_PROPERTY(QString GtkTheme READ gtkTheme WRITE setGtkTheme NOTIFY GtkThemeChanged)\n    QString gtkTheme();\n    void setGtkTheme(const QString &value);\n    Q_PROPERTY(QString IconTheme READ iconTheme WRITE setIconTheme NOTIFY IconThemeChanged)\n    QString iconTheme();\n    void setIconTheme(const QString &value);\n    Q_PROPERTY(QString MonospaceFont READ monospaceFont WRITE setMonospaceFont NOTIFY MonospaceFontChanged)\n    QString monospaceFont();\n    void setMonospaceFont(const QString &value);\n    Q_PROPERTY(double Opacity READ opacity WRITE setOpacity NOTIFY OpacityChanged)\n    double opacity();\n    void setOpacity(double value);\n    Q_PROPERTY(QString QtActiveColor READ qtActiveColor WRITE setQtActiveColor NOTIFY QtActiveColorChanged)\n    QString qtActiveColor();\n    void setQtActiveColor(const QString &value);\n    Q_PROPERTY(QString StandardFont READ standardFont WRITE setStandardFont NOTIFY StandardFontChanged)\n    QString standardFont();\n    void setStandardFont(const QString &value);\n\n    // wallpaperSlideshow\n    Q_PROPERTY(QString WallpaperSlideShow WRITE setWallpaperSlideShow READ wallpaperSlideShow NOTIFY WallpaperSlideShowChanged)\n    QString wallpaperSlideShow();\n    QString wallpaperSlideShow(const QString &monitorName);\n    void setWallpaperSlideShow(const QString &monitorName, const QString &sliderShow);\n    void setWallpaperSlideShow(const QString &wallpaperSlideShow);\n\n    Q_PROPERTY(int WindowRadius READ windowRadius WRITE setWindowRadius NOTIFY WindowRadiusChanged)\n    int windowRadius();\n    void setWindowRadius(int value);\n    // SystemPersonalization\n    // WM\n    Q_PROPERTY(bool compositingAllowSwitch READ compositingAllowSwitch NOTIFY compositingAllowSwitchChanged)\n    bool compositingAllowSwitch();\n    Q_PROPERTY(bool compositingEnabled READ compositingEnabled WRITE setCompositingEnabled NOTIFY compositingEnabledChanged)\n    bool compositingEnabled();\n    void setCompositingEnabled(bool value);\n    Q_PROPERTY(bool compositingPossible READ compositingPossible NOTIFY compositingPossibleChanged)\n    bool compositingPossible();\n    Q_PROPERTY(int cursorSize READ cursorSize WRITE setCursorSize NOTIFY cursorSizeChanged)\n    int cursorSize();\n    void setCursorSize(int value);\n    //    Q_PROPERTY(QString cursorTheme READ cursorTheme WRITE setCursorTheme NOTIFY CursorThemeChanged)\n    //    QString cursorTheme();\n    //    void setCursorTheme(const QString &value);\n    Q_PROPERTY(bool zoneEnabled READ zoneEnabled WRITE setZoneEnabled NOTIFY ZoneEnabledChanged)\n    bool zoneEnabled();\n    void setZoneEnabled(bool value);\n\n    Q_PROPERTY(int DTKSizeMode READ getDTKSizeMode WRITE setDTKSizeMode NOTIFY DTKSizeModeChanged)\n    int getDTKSizeMode();\n    void setDTKSizeMode(int value);\n\n    Q_PROPERTY(int scrollBarPolicy READ getScrollBarPolicy WRITE setScrollBarPolicy NOTIFY scrollBarPolicyChanged)\n    int getScrollBarPolicy();\n    void setScrollBarPolicy(int value);\n\n    void SetCurrentWorkspaceBackgroundForMonitor(const QString &url, const QString &screenName);\n    QString getCurrentWorkSpaceBackgroundForMonitor(const QString &screenName);\n\n    void SetGreeterBackground(const QString &url);\n    \n    // daemon\n    QString saveCustomWallpaper(const QString &userName, const QString &url);\n    void deleteCustomWallpaper(const QString &userName, const QString &url);\n    QStringList getCustomWallpaper(const QString &userName);\n\n    // screenSaver\n    QStringList getAllscreensaver();\n\n    void setCurrentScreenSaver(const QString &value);\n    QString getCurrentScreenSaver();\n\n    void setLockScreenAtAwake(bool value);\n    bool getLockScreenAtAwake();\n\n    void preview(const QString &name, bool stayOn = true);\n\n    void setLinePowerScreenSaverTimeout(int value);\n    void setBatteryScreenSaverTimeout(int value);\n\n    int getLinePowerScreenSaverTimeout();\n    int getBatteryScreenSaverTimeout();\n\n    void requestScreenSaverConfig(const QString& name);\n\n    QStringList ConfigurableItems();\n\n    QString GetScreenSaverCover(const QString &name);\n\n    // power\n    bool OnBattery();\n\nsignals:\n    // Appearance\n    void Changed(const QString &in0, const QString &in1);\n    void Refreshed(const QString &in0);\n    // begin property changed signals\n    void BackgroundChanged(const QString &value) const;\n    void CursorThemeChanged(const QString &value) const;\n    void FontSizeChanged(double value) const;\n    void GtkThemeChanged(const QString &value) const;\n    void IconThemeChanged(const QString &value) const;\n    void GlobalThemeChanged(const QString &value) const;\n    void MonospaceFontChanged(const QString &value) const;\n    void OpacityChanged(double value) const;\n    void QtActiveColorChanged(const QString &value) const;\n    void StandardFontChanged(const QString &value) const;\n    void WallpaperSlideShowChanged(const QString &value) const;\n    void WindowRadiusChanged(int value) const;\n    // WMSwitcher\n    void WMChanged(const QString &wm);\n    // WM\n    // begin property changed signals\n    void compositingAllowSwitchChanged(bool value) const;\n    void compositingEnabledChanged(bool value) const;\n    void compositingPossibleChanged(bool value) const;\n    void cursorSizeChanged(int value) const;\n    //    void CursorThemeChanged(const QString & value) const;\n    void ZoneEnabledChanged(bool value) const;\n    void DTKSizeModeChanged(int value) const;\n    void scrollBarPolicyChanged(int value) const;\n    void WallpaperURlsChanged(QString) const;\n    // screenSaver\n    void allscreensaverChanged(const QStringList &value);\n    void currentScreenSaverChanged(const QString &value);\n    void lockScreenAtAwakeChanged(bool value);\n    void linePowerScreenSaverTimeoutChanged(int value);\n    void batteryScreenSaverTimeoutChanged(int value);\n    // daemon\n    void WallpaperChanged(const QString &value, uint mode, const QStringList &urls);\n\n    // power\n    void OnBatteryChanged(bool value);\n\npublic slots:\n    // Appearance\n    QString List(const QString &ty);\n    bool List(const QString &ty, QObject *receiver, const char *member, const char *errorSlot);\n    void Set(const QString &ty, const QString &value);\n    QString Show(const QString &ty, const QStringList &names);\n    bool Show(const QString &ty, const QStringList &names, QObject *receiver, const char *member);\n    QString Thumbnail(const QString &ty, const QString &name);\n    bool Thumbnail(const QString &ty, const QString &name, QObject *receiver, const char *member, const char *errorSlot);\n    QString activeColors();\n    void setActiveColors(const QString &activeColors);\n    // Effects\n    bool loadEffect(const QString &name);\n    void unloadEffect(const QString &name);\n    bool isEffectLoaded(const QString &name);\n    bool isEffectLoaded(const QString &name, QObject *receiver, const char *member);\n    bool isEffectSupported(const QString &name);\n\nprivate:\n    Dtk::Core::DDBusInterface *m_AppearanceInter = nullptr;\n    Dtk::Core::DDBusInterface *m_WMInter = nullptr;\n    Dtk::Core::DDBusInterface *m_EffectsInter = nullptr;\n    Dtk::Core::DDBusInterface *m_DaemonInter = nullptr;\n    Dtk::Core::DDBusInterface *m_screenSaverInter = nullptr;\n    Dtk::Core::DDBusInterface *m_wallpaperSlideshowInter = nullptr;\n    Dtk::Core::DDBusInterface *m_powerInter = nullptr;\n};\n\n#endif // PERSONALIZATIONDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-personalization/operation/personalizationexport.hpp",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QObject>\n\nclass PersonalizationExport : public QObject\n{\n    Q_OBJECT\npublic:\n    PersonalizationExport(QObject *parent = nullptr)\n    : QObject(parent)\n    {\n\n    }\n    enum WallpaperSetOption {\n        Option_Desktop = 0,\n        Option_Lock,\n        Option_Other,\n        Option_All,\n    };\n    Q_ENUM(WallpaperSetOption)\n\n    enum ModuleType {\n        Root = 0,\n        Theme,\n        Wallpaper,\n        ScreenSaver\n    };\n\n    Q_ENUM(ModuleType)\n};\n"
  },
  {
    "path": "src/plugin-personalization/operation/personalizationinterface.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"personalizationinterface.h\"\n#include \"operation/imagehelper.h\"\n#include \"operation/personalizationexport.hpp\"\n#include \"operation/treelandworker.h\"\n#include \"operation/x11worker.h\"\n#include \"dccfactory.h\"\n#include \"model/thememodel.h\"\n#include \"utils.hpp\"\n\n#include <QIcon>\n#include <QtQml>\n#include <QDBusConnection>\n#include <QDBusConnectionInterface>\n#include <QDBusMessage>\n#include <QDBusPendingCall>\n#include <QUuid>\n#include <QColor>\n#include <DGuiApplicationHelper>\n\n#define PICKER_SERVICE \"com.deepin.Picker\"\n#define PICKER_PATH \"/com/deepin/Picker\"\n\nThemeVieweModel::ThemeVieweModel(QObject *parent)\n    : QAbstractItemModel(parent)\n    , m_themeModel(nullptr)\n{\n\n}\n\nvoid ThemeVieweModel::setThemeModel(ThemeModel *model)\n{\n    m_themeModel = model;\n    connect(m_themeModel, &ThemeModel::defaultChanged, this, &ThemeVieweModel::updateData);\n    connect(m_themeModel, &ThemeModel::picAdded, this, &ThemeVieweModel::updateData);\n    connect(m_themeModel, &ThemeModel::itemAdded, this, &ThemeVieweModel::updateData);\n    connect(m_themeModel, &ThemeModel::itemRemoved, this, &ThemeVieweModel::updateData);\n    updateData();\n}\n\nQModelIndex ThemeVieweModel::index(int row, int column, const QModelIndex &parent) const\n{\n    Q_UNUSED(parent);\n    if (row < 0 || row >= m_keys.size())\n        return QModelIndex();\n    return createIndex(row, column);\n}\n\nQModelIndex ThemeVieweModel::parent(const QModelIndex &index) const\n{\n    Q_UNUSED(index);\n    return QModelIndex();\n}\n\nint ThemeVieweModel::rowCount(const QModelIndex &parent) const\n{\n    if (!parent.isValid())\n        return m_keys.size();\n\n    return 0;\n}\n\nint ThemeVieweModel::columnCount(const QModelIndex &parent) const\n{\n    Q_UNUSED(parent);\n    return 1;\n}\n\nQVariant ThemeVieweModel::data(const QModelIndex &index, int role) const\n{\n    if (m_keys.isEmpty() || !index.isValid())\n        return QVariant();\n\n    int row = index.row();\n    switch (role) {\n    case ThemeVieweModel::NameRole:\n        return m_themeModel->getList().value(m_keys.at(row))[\"Name\"].toString();\n    case Qt::ToolTipRole:\n        return m_themeModel->getList().value(m_keys.at(row))[\"Comment\"].toString();\n    case Qt::DecorationRole:\n        return QIcon(m_themeModel->getPicList().value(m_keys.at(row)));\n    case Qt::CheckStateRole: {\n        QString id = m_themeModel->getDefault();\n        if (id.endsWith(\".light\")) {\n            id.chop(6);\n        } else if (id.endsWith(\".dark\")) {\n            id.chop(5);\n        }\n        return m_keys.at(row) == id ? Qt::Checked : Qt::Unchecked;\n    }\n    case ThemeVieweModel::IdRole:\n        return m_keys.at(row);\n    case ThemeVieweModel::PicRole: {\n        QString pic = m_themeModel->getPicList().value(m_keys.at(row));\n        return pic.startsWith(\"/\") ? QUrl::fromLocalFile(pic).toString() : pic;\n    }\n    default:\n        break;\n    }\n    return QVariant();\n}\n\nvoid ThemeVieweModel::updateData()\n{\n    QStringList keys = m_themeModel->keys();\n    if (keys.contains(\"custom\")) {\n        keys.removeAll(\"custom\");\n    }\n    // 按字母排序（不区分大小写）\n    std::sort(keys.begin(), keys.end(), [this](const QString &a, const QString &b) {\n        return m_themeModel->getList().value(a)[\"Name\"].toString().toLower() < m_themeModel->getList().value(b)[\"Name\"].toString().toLower();\n    });\n    // custom主题始终放在最前面\n    if (m_themeModel->keys().contains(\"custom\")) {\n        keys.push_front(\"custom\");\n    }\n    beginResetModel();\n    m_keys = keys;\n    endResetModel();\n}\n\nQHash<int, QByteArray> ThemeVieweModel::roleNames() const\n{\n    QHash<int, QByteArray> roles = QAbstractItemModel::roleNames();\n    roles[IdRole] = \"id\";\n    roles[NameRole] = \"name\";\n    roles[PicRole] = \"pic\";\n    roles[Qt::CheckStateRole] = \"checked\";\n    return roles;\n}\n\nPersonalizationInterface::PersonalizationInterface(QObject *parent) \n: QObject(parent)\n, m_model(new PersonalizationModel(this))\n, m_imageHelper(new ImageHelper(this))\n, m_globalThemeViewModel(new ThemeVieweModel(this))\n, m_iconThemeViewModel(new ThemeVieweModel(this))\n, m_cursorThemeViewModel(new ThemeVieweModel(this))\n, m_pickerId(QUuid::createUuid().toString())\n, m_pickerAvailable(false)\n{\n    qmlRegisterType<PersonalizationExport>(\"org.deepin.dcc.personalization\", 1, 0, \"PersonalizationData\");\n    if (Dtk::Gui::DGuiApplicationHelper::testAttribute(Dtk::Gui::DGuiApplicationHelper::IsWaylandPlatform)) {\n        m_work = new TreeLandWorker(m_model, this);\n    } else {\n        m_work = new X11Worker(m_model, this);\n    }\n\n    qmlRegisterType<PersonalizationExport>(\"org.deepin.dcc.personalization\", 1, 0, \"PersonalizationExport\");\n\n    m_globalThemeViewModel->setThemeModel(m_model->getGlobalThemeModel());\n    m_iconThemeViewModel->setThemeModel(m_model->getIconModel());\n    m_cursorThemeViewModel->setThemeModel(m_model->getMouseModel());\n\n    // after do\n    m_work->active(); // refresh data\n    m_work->refreshTheme();\n    m_work->refreshFont();\n\n    initAppearanceSwitchModel();\n\n    m_pickerAvailable = checkPickerService();\n    if (m_pickerAvailable) {\n        QDBusConnection::sessionBus().connect(PICKER_SERVICE, PICKER_PATH, PICKER_SERVICE,\n                                              \"colorPicked\", this, SLOT(onPickerColorPicked(QString,QString)));\n        qDebug() << \"Picker service is available, using DBus picker\";\n    } else {\n        qDebug() << \"Picker service is not available, will use Qt's built-in color picker\";\n    }\n}\n\nvoid PersonalizationInterface::initAppearanceSwitchModel()\n{\n    ThemeModel *globalTheme = m_model->getGlobalThemeModel();\n\n    auto updateDefault = [this]() {\n        ThemeModel *globalTheme = m_model->getGlobalThemeModel();\n        QString mode;\n        QString themeId = getGlobalThemeId(globalTheme->getDefault(), mode);\n        m_appearanceSwitchModel.clear();\n        m_appearanceSwitchModel.append(QVariantMap{{\"text\", tr(\"Light\")}, {\"value\", \".light\"}});\n        const QJsonObject &json = globalTheme->getList().value(themeId);\n        if (json.isEmpty())\n            return;\n        if (json[\"hasDark\"].toBool()) {\n            m_appearanceSwitchModel.append(QVariantMap{{\"text\", tr(\"Auto\")}, {\"value\", \"\"}});\n            m_appearanceSwitchModel.append(QVariantMap{{\"text\", tr(\"Dark\")}, {\"value\", \".dark\"}});\n        }\n        Q_EMIT appearanceSwitchModelChanged(m_appearanceSwitchModel);\n        if (mode != m_currentAppearance) {\n            m_currentAppearance = mode;\n            Q_EMIT currentAppearanceChanged(m_currentAppearance);\n        }\n    };\n\n    updateDefault();\n\n    connect(globalTheme, &ThemeModel::defaultChanged, updateDefault);\n    connect(globalTheme, &ThemeModel::itemAdded, updateDefault);\n    connect(globalTheme, &ThemeModel::itemRemoved, updateDefault);\n}\n\nQString PersonalizationInterface::platformName()\n{\n    return qApp->platformName();\n}\n\nvoid PersonalizationInterface::handleCmdParam(PersonalizationExport::ModuleType type, const QString &cmdParam)\n{\n    // parse cmd param\n    QMap<QString, QString> paramMap;\n    QStringList paramPairs = cmdParam.split('&');\n\n    for (const auto &paramPair : paramPairs) {\n        QStringList keyValue = paramPair.split('=');\n\n        if (keyValue.size() == 2) {\n            QString key = keyValue[0].trimmed();\n            QString value = keyValue[1].trimmed();\n            paramMap.insert(key, value);\n        }\n    }\n\n    // handle cmd param\n    if (type == PersonalizationExport::Theme) {\n        QString operatorType;\n        QString value;\n        operatorType = paramMap.value(\"type\");\n        value = paramMap.value(\"value\");\n\n        if (operatorType == \"themeType\") {\n            bool keepAuto = paramMap.value(\"keepAuto\") == \"true\";\n            if (value == \"light\") {\n                m_work->setAppearanceTheme(\".light\", keepAuto);\n            } else if (value == \"dark\") {\n                m_work->setAppearanceTheme(\".dark\", keepAuto);\n            } else if (value == \"auto\") {\n                m_work->setAppearanceTheme(\"\", keepAuto);\n            }\n        }\n    } else if (type == PersonalizationExport::Wallpaper) {\n        QString url;\n        QString type;\n        QString monitor;\n        url = paramMap.value(\"url\");\n        if (!isURI(url) && QFile::exists(url)) {\n            url = QUrl::fromLocalFile(url).toString();\n        }\n        type = paramMap.value(\"type\");\n        monitor = paramMap.value(\"monitor\");\n        if (monitor.isEmpty()) {\n            monitor = m_model->getCurrentSelectScreen();\n        }\n        if (url.isEmpty()) {\n            return;\n        }\n        if (type == \"lock\") {\n            m_work->setLockBackForMonitor(monitor, url, true);\n        } else if (type == \"desktop\") {\n            m_work->setBackgroundForMonitor(monitor, url, true);\n        } else if (type.isEmpty()) {\n            m_work->setLockBackForMonitor(monitor, url, true);\n            m_work->setBackgroundForMonitor(monitor, url, true);\n        }\n    }\n}\n\nbool PersonalizationInterface::checkPickerService()\n{\n    QDBusConnectionInterface *interface = QDBusConnection::sessionBus().interface();\n    if (!interface) {\n        return false;\n    }\n\n    if (interface->isServiceRegistered(PICKER_SERVICE)) {\n        return true;\n    }\n\n    QStringList activatableServices = interface->activatableServiceNames();\n    return activatableServices.contains(PICKER_SERVICE);\n}\n\nvoid PersonalizationInterface::startPicker()\n{\n    if (!m_pickerAvailable) {\n        qWarning() << \"Picker service is not available\";\n        Q_EMIT pickerError(tr(\"Picker service is not available\"));\n        return;\n    }\n\n    QDBusMessage msg = QDBusMessage::createMethodCall(PICKER_SERVICE, PICKER_PATH,\n                                                      PICKER_SERVICE, \"StartPick\");\n    msg.setArguments({QVariant::fromValue(m_pickerId)});\n    QDBusConnection::sessionBus().asyncCall(msg, 5);\n\n    qDebug() << \"Picker service called with ID:\" << m_pickerId;\n}\n\nvoid PersonalizationInterface::onPickerColorPicked(const QString &uuid, const QString &colorName)\n{\n    if (uuid != m_pickerId)\n        return;\n\n    qDebug() << \"Picked color:\" << colorName << \"for session:\" << uuid;\n\n    QColor color(colorName);\n    if (color.isValid()) {\n        Q_EMIT colorPicked(color.name());\n    } else {\n        Q_EMIT pickerError(tr(\"Invalid color format: %1\").arg(colorName));\n    }\n}\n\nDCC_FACTORY_CLASS(PersonalizationInterface)\n\n#include \"personalizationinterface.moc\"\n"
  },
  {
    "path": "src/plugin-personalization/operation/personalizationinterface.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef PERSIONALIZATIONINTERFACE_H\n#define PERSIONALIZATIONINTERFACE_H\n\n#include <QAbstractItemModel>\n\n#include \"personalizationworker.h\"\n#include \"personalizationmodel.h\"\n#include \"imagehelper.h\"\n\nclass ThemeVieweModel : public QAbstractItemModel\n{\npublic:\n    enum UserDataRole {\n        IdRole = Qt::UserRole + 0x101,\n        NameRole,\n        PicRole\n    };\n    explicit ThemeVieweModel(QObject *parent = nullptr);\n    ~ThemeVieweModel() { }\n\n    void setThemeModel(ThemeModel *model);\n    // Basic functionality:\n    QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;\n    QModelIndex parent(const QModelIndex &index) const override;\n\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n    int columnCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n\nprotected:\n    QHash<int, QByteArray> roleNames() const override;\n\nprivate:\n    void updateData();\n\nprivate:\n    ThemeModel *m_themeModel;\n    QStringList m_keys;\n};\n\nclass PersonalizationInterface : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(ThemeVieweModel *globalThemeModel MEMBER m_globalThemeViewModel CONSTANT)\n    Q_PROPERTY(ThemeVieweModel *iconThemeViewModel MEMBER m_iconThemeViewModel CONSTANT)\n    Q_PROPERTY(ThemeVieweModel *cursorThemeViewModel MEMBER m_cursorThemeViewModel CONSTANT)\n    Q_PROPERTY(PersonalizationModel *model MEMBER m_model CONSTANT)\n    Q_PROPERTY(PersonalizationWorker *worker MEMBER m_work CONSTANT)\n    Q_PROPERTY(ImageHelper *imageHelper MEMBER m_imageHelper CONSTANT)\n    Q_PROPERTY(QVariantList appearanceSwitchModel MEMBER m_appearanceSwitchModel NOTIFY appearanceSwitchModelChanged)\n    Q_PROPERTY(QString currentAppearance MEMBER m_currentAppearance NOTIFY currentAppearanceChanged)\n    Q_PROPERTY(bool pickerAvailable READ isPickerAvailable CONSTANT)\n\npublic:\n    explicit PersonalizationInterface(QObject *parent = nullptr);\n\n    QString getCurrentAppearance() const { return m_currentAppearance; };\n    bool isPickerAvailable() const { return m_pickerAvailable; }\n    Q_INVOKABLE QString platformName();\n    Q_INVOKABLE void handleCmdParam(PersonalizationExport::ModuleType type, const QString &cmdParam);\n    Q_INVOKABLE void startPicker();\n\nprivate:\n    void initAppearanceSwitchModel();\n    bool checkPickerService();\n\nprivate Q_SLOTS:\n    void onPickerColorPicked(const QString &uuid, const QString &colorName);\n\nsignals:\n    void currentAppearanceChanged(const QString &appearance);\n    void appearanceSwitchModelChanged(const QVariantList &model);\n    void colorPicked(const QString &color);\n    void pickerError(const QString &error);\n\nprivate:\n    PersonalizationModel *m_model;\n    PersonalizationWorker *m_work;\n    ImageHelper *m_imageHelper;\n    ThemeVieweModel *m_globalThemeViewModel;\n    ThemeVieweModel *m_iconThemeViewModel;\n    ThemeVieweModel *m_cursorThemeViewModel;\n\n    QVariantList m_appearanceSwitchModel;\n    QString m_currentAppearance;\n    QString m_pickerId;\n    bool m_pickerAvailable;\n};\n\n#endif // PERSIONALIZATIONINTERFACE_H\n"
  },
  {
    "path": "src/plugin-personalization/operation/personalizationmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"personalizationmodel.h\"\n#include \"model/thememodel.h\"\n#include \"model/fontmodel.h\"\n#include \"model/fontsizemodel.h\"\n#include \"model/wallpapermodel.h\"\n\nPersonalizationModel::PersonalizationModel(QObject *parent)\n    : QObject(parent)\n{\n    m_windowModel    = new ThemeModel(this);\n    m_iconModel      = new ThemeModel(this);\n    m_mouseModel     = new ThemeModel(this);\n    m_globalThemeModel = new ThemeModel(this);\n    m_standFontModel = new FontModel(this);\n    m_monoFontModel  = new FontModel(this);\n    m_fontSizeModel  = new FontSizeModel(this);\n\n    m_customWallpaperSortModel = new WallpaperSortModel(this);\n    m_sysWallpaperSortModel = new WallpaperSortModel(this);\n    m_solidWallpaperSortModel = new WallpaperSortModel(this);\n    m_screenSaverSortModel = new WallpaperSortModel(this);\n    m_picScreenSaverSortModel = new WallpaperSortModel(this);\n\n    m_customWallpaperModel = new WallpaperModel(this);\n    m_sysWallpaperModel = new WallpaperModel(this);\n    m_solidWallpaperModel = new WallpaperModel(this);\n    m_screenSaverModel = new WallpaperModel(this);\n    m_picScreenSaverModel = new WallpaperModel(this);\n\n    m_customWallpaperSortModel->setSourceModel(m_customWallpaperModel);\n    m_sysWallpaperSortModel->setSourceModel(m_sysWallpaperModel);\n    m_solidWallpaperSortModel->setSourceModel(m_solidWallpaperModel);\n    m_screenSaverSortModel->setSourceModel(m_screenSaverModel);\n    m_picScreenSaverSortModel->setSourceModel(m_picScreenSaverModel);\n    m_miniEffect = 0;\n    m_currentScreenSaverPicMode = \"default\";\n}\n\nPersonalizationModel::~PersonalizationModel()\n{\n\n}\n\nvoid PersonalizationModel::setWindowRadius(int radius)\n{\n    if (m_windowRadius != radius)\n        m_windowRadius = radius;\n\n    Q_EMIT  windowRadiusChanged(radius);\n}\n\nint PersonalizationModel::windowRadius()\n{\n    return m_windowRadius;\n}\n\nvoid PersonalizationModel::setOpacity(double opacity)\n{\n    if (m_opacity == opacity) return;\n\n    m_opacity = opacity;\n\n    Q_EMIT opacityChanged(opacity);\n}\n\nvoid PersonalizationModel::setMiniEffect(const int &effect)\n{\n    if(m_miniEffect == effect) return;\n\n    m_miniEffect=effect;\n\n    Q_EMIT miniEffectChanged(effect);\n}\n\nvoid PersonalizationModel::setActiveColor(const QString &color)\n{\n    if (m_activeColor == color)\n        return;\n\n    m_activeColor = color;\n\n    Q_EMIT onActiveColorChanged(color);\n}\n\nvoid PersonalizationModel::setCompactDisplay(bool value)\n{\n    if (m_compactDisplay == value)\n        return;\n    m_compactDisplay = value;\n\n    Q_EMIT compactDisplayChanged(value);\n}\n\n\nvoid PersonalizationModel::setScrollBarPolicy(int policy)\n{\n    if (m_scrollBarPolicy != policy) {\n        m_scrollBarPolicy = policy;\n        Q_EMIT scrollBarPolicyChanged(m_scrollBarPolicy);\n    }\n}\n\nvoid PersonalizationModel::setTitleBarHeight(int titleBarHeight)\n{\n    if (m_titleBarHeight == titleBarHeight)\n        return;\n    m_titleBarHeight = titleBarHeight;\n    Q_EMIT titleBarHeightChanged(titleBarHeight);\n}\n\nvoid PersonalizationModel::setIsMoveWindow(bool value)\n{\n    if (m_isMoveWindow != value) {\n        m_isMoveWindow = value;\n        Q_EMIT moveWindowChanged(value);\n    }\n}\n\nvoid PersonalizationModel::setWindowEffectType(int windowEffectType)\n{\n    if (m_windowEffectType == windowEffectType)\n        return;\n    m_windowEffectType = windowEffectType;\n    Q_EMIT  windowEffectTypeChanged(windowEffectType);\n}\n\nvoid PersonalizationModel::setScrollBarPolicyConfig(const QString &value)\n{\n    if (m_scrollBarPolicyConfig == value)\n        return;\n    m_scrollBarPolicyConfig = value;\n    Q_EMIT scrollBarPolicyConfigChanged(value);\n}\n\nvoid PersonalizationModel::setCompactDisplayConfig(const QString &value)\n{\n    if (m_compactDisplayConfig == value)\n        return;\n    m_compactDisplayConfig = value;\n    Q_EMIT compactDisplayConfigChanged(value);\n}\n\nvoid PersonalizationModel::setWallpaperMap(const QVariantMap &map)\n{\n    if (m_wallpaperMap == map)\n        return;\n    m_wallpaperMap = map;\n}\n\nvoid PersonalizationModel::setWallpaperSlideShowMap(const QVariantMap &map)\n{\n    if (m_wallpaperSlideShowMap == map)\n        return;\n    m_wallpaperSlideShowMap = map;\n    Q_EMIT wallpaperSlideShowMapChanged(map);\n}\n\nvoid PersonalizationModel::setCurrentSelectScreen(const QString &screenName)\n{\n    if (m_currentSelectScreen == screenName)\n        return;\n    m_currentSelectScreen = screenName;\n    Q_EMIT currentSelectScreenChanged(screenName);\n}\n\nvoid PersonalizationModel::setCurrentScreenSaver(const QString &currentScreenSaver)\n{\n    if (m_currentScreenSaver == currentScreenSaver)\n        return;\n    m_currentScreenSaver = currentScreenSaver;\n    Q_EMIT currentScreenSaverChanged(currentScreenSaver);\n}\n\nvoid PersonalizationModel::setScreens(const QStringList &screens)\n{\n    if (m_screens == screens)\n        return;\n    m_screens = screens;\n    if (m_currentSelectScreen.isEmpty() && !m_screens.isEmpty())\n        setCurrentSelectScreen(m_screens.first());\n    Q_EMIT screensChanged(screens);\n}\n\nvoid PersonalizationModel::setLockScreenAtAwake(bool value)\n{\n    if (m_lockScreenAtAwake == value)\n        return;\n    m_lockScreenAtAwake = value;\n    Q_EMIT lockScreenAtAwakeChanged(value);\n}\n\nvoid PersonalizationModel::setLinePowerScreenSaverIdleTime(int value)\n{\n    if (m_linePowerScreenSaverIdleTime == value)\n        return;\n\n    m_linePowerScreenSaverIdleTime = value;\n    qWarning() << \"model: setLinePowerScreenSaverIdleTime\" << value << m_linePowerScreenSaverIdleTime;\n    Q_EMIT linePowerScreenSaverIdleTimeChanged(value);\n}\n\nvoid PersonalizationModel::setBatteryScreenSaverIdleTime(int value)\n{\n    if (m_batteryScreenSaverIdleTime == value)\n        return;\n    m_batteryScreenSaverIdleTime = value;\n    Q_EMIT batteryScreenSaverIdleTimeChanged(value);\n}\n\nvoid PersonalizationModel::setCurrentScreenSaverPicMode(const QString &value)\n{\n    if (m_currentScreenSaverPicMode == value)\n        return;\n    m_currentScreenSaverPicMode = value;\n    Q_EMIT currentScreenSaverPicModeChanged(value);\n}\n\nvoid PersonalizationModel::setOnBattery(bool value)\n{\n    if (m_onBattery == value)\n        return;\n\n    m_onBattery = value;\n    Q_EMIT onBatteryChanged(value);\n}\n\nvoid PersonalizationModel::setSupportEffects(const QStringList &value)\n{\n    if (m_supportEffects == value)\n        return;\n\n    m_supportEffects = value;\n    Q_EMIT supportEffectsChanged(value);\n}\n"
  },
  {
    "path": "src/plugin-personalization/operation/personalizationmodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef PERSONALIZATIONMODEL_H\n#define PERSONALIZATIONMODEL_H\n\n#include <QObject>\n#include <QDebug>\n\nclass ThemeModel;\nclass FontModel;\nclass FontSizeModel;\nclass WallpaperModel;\nclass WallpaperSortModel;\nclass PersonalizationModel : public QObject\n{\n    Q_OBJECT\n    friend class MouseWorker;\n\n    Q_PROPERTY(int miniEffect READ miniEffect WRITE setMiniEffect NOTIFY miniEffectChanged)\n    Q_PROPERTY(double opacity READ opacity WRITE setOpacity NOTIFY opacityChanged)\n    Q_PROPERTY(int windowRadius READ windowRadius WRITE setWindowRadius NOTIFY windowRadiusChanged)\n    Q_PROPERTY(bool compactDisplay READ getCompactDisplay WRITE setCompactDisplay NOTIFY compactDisplayChanged)\n    Q_PROPERTY(int scrollBarPolicy READ getScrollBarPolicy WRITE setScrollBarPolicy NOTIFY scrollBarPolicyChanged)\n    Q_PROPERTY(int titleBarHeight READ getTitleBarHeight WRITE setTitleBarHeight NOTIFY titleBarHeightChanged)\n    Q_PROPERTY(bool isMoveWindow READ getIsMoveWindow WRITE setIsMoveWindow NOTIFY moveWindowChanged)\n    Q_PROPERTY(int windowEffectType READ windowEffectType WRITE setWindowEffectType NOTIFY windowEffectTypeChanged)\n    Q_PROPERTY(QString activeColor READ getActiveColor WRITE setActiveColor NOTIFY onActiveColorChanged)\n    Q_PROPERTY(QString scrollBarPolicyConfig READ getScrollBarPolicyConfig WRITE setScrollBarPolicyConfig NOTIFY scrollBarPolicyConfigChanged)\n    Q_PROPERTY(QString compactDisplayConfig READ getCompactDisplayConfig WRITE setCompactDisplayConfig NOTIFY compactDisplayConfigChanged)\n    Q_PROPERTY(QVariantMap wallpaperMap READ getWallpaperMap WRITE setWallpaperMap NOTIFY wallpaperMapChanged)\n    Q_PROPERTY(QString currentScreenSaver READ getCurrentScreenSaver WRITE setCurrentScreenSaver NOTIFY currentScreenSaverChanged)\n    Q_PROPERTY(QString currentSelectScreen READ getCurrentSelectScreen WRITE setCurrentSelectScreen NOTIFY currentSelectScreenChanged)\n    Q_PROPERTY(QStringList screens READ getScreens WRITE setScreens NOTIFY screensChanged)\n    Q_PROPERTY(bool lockScreenAtAwake WRITE setLockScreenAtAwake READ getLockScreenAtAwake NOTIFY lockScreenAtAwakeChanged)\n    Q_PROPERTY(int linePowerScreenSaverIdleTime WRITE setLinePowerScreenSaverIdleTime READ getLinePowerScreenSaverIdleTime NOTIFY linePowerScreenSaverIdleTimeChanged)\n    Q_PROPERTY(int batteryScreenSaverIdleTime WRITE setBatteryScreenSaverIdleTime READ getBatteryScreenSaverIdleTime NOTIFY batteryScreenSaverIdleTimeChanged)\n    Q_PROPERTY(QString currentScreenSaverPicMode WRITE setCurrentScreenSaverPicMode READ getCurrentScreenSaverPicMode NOTIFY currentScreenSaverPicModeChanged)\n    Q_PROPERTY(QVariantMap wallpaperSlideShowMap WRITE setWallpaperSlideShowMap READ getWallpaperSlideShowMap NOTIFY wallpaperSlideShowMapChanged)\n    Q_PROPERTY(bool onBattery READ getOnBattery WRITE setOnBattery NOTIFY onBatteryChanged)\n    Q_PROPERTY(QStringList supportEffects READ supportEffects WRITE setSupportEffects NOTIFY supportEffectsChanged)\n\n    Q_PROPERTY(FontSizeModel *fontSizeModel MEMBER m_fontSizeModel CONSTANT)\n    Q_PROPERTY(FontModel *standardFontModel MEMBER m_standFontModel CONSTANT)\n    Q_PROPERTY(FontModel *monoFontModel MEMBER m_monoFontModel CONSTANT)\n\n    Q_PROPERTY(ThemeModel *iconModel MEMBER m_iconModel CONSTANT)\n    Q_PROPERTY(ThemeModel *cursorModel MEMBER m_mouseModel CONSTANT)\n\n    Q_PROPERTY(WallpaperSortModel *customWallpaperModel MEMBER m_customWallpaperSortModel CONSTANT)\n    Q_PROPERTY(WallpaperSortModel *sysWallpaperModel MEMBER m_sysWallpaperSortModel CONSTANT)\n    Q_PROPERTY(WallpaperSortModel *solidWallpaperModel MEMBER m_solidWallpaperSortModel CONSTANT)\n\n    Q_PROPERTY(WallpaperSortModel *screenSaverModel MEMBER m_screenSaverSortModel CONSTANT)\n    Q_PROPERTY(WallpaperSortModel *picScreenSaverModel MEMBER m_picScreenSaverSortModel CONSTANT)\n\npublic:\n    explicit PersonalizationModel(QObject *parent = nullptr);\n    ~PersonalizationModel();\n    inline ThemeModel *getWindowModel() const { return m_windowModel; }\n    inline ThemeModel *getIconModel() const { return m_iconModel; }\n    inline ThemeModel *getMouseModel() const { return m_mouseModel; }\n    inline ThemeModel *getGlobalThemeModel() const { return m_globalThemeModel; }\n    inline FontModel *getStandFontModel() const { return m_standFontModel; }\n    inline FontModel *getMonoFontModel() const { return m_monoFontModel; }\n    inline FontSizeModel *getFontSizeModel() const { return m_fontSizeModel; }\n\n    inline WallpaperModel *getCustomWallpaperModel() const { return m_customWallpaperModel; }\n    inline WallpaperModel *getSysWallpaperModel() const { return m_sysWallpaperModel; }\n    inline WallpaperModel *getSolidWallpaperModel() const { return m_solidWallpaperModel; }\n    inline WallpaperModel *getScreenSaverModel() const { return m_screenSaverModel; }\n    inline WallpaperModel *getPicScreenSaverModel() const { return m_picScreenSaverModel; }\n\n    void setWindowRadius(int radius);\n    int windowRadius();\n\n    void setWindowEffectType(int windowEffectType);\n    inline int windowEffectType() const { return m_windowEffectType; }\n\n    inline double opacity() const { return m_opacity; }\n    void setOpacity(double opacity);\n\n    inline int miniEffect() const { return m_miniEffect; }\n    void setMiniEffect(const int &effect);\n\n    inline QString getActiveColor() { return m_activeColor; }\n    void setActiveColor(const QString &color);\n\n    inline bool getCompactDisplay() { return m_compactDisplay; }\n    void setCompactDisplay(bool value);\n\n    inline int getScrollBarPolicy() const { return m_scrollBarPolicy;}\n    void setScrollBarPolicy(int policy);\n\n    inline int getTitleBarHeight() const { return m_titleBarHeight; }\n    void setTitleBarHeight(int titleBarHeight);\n\n    void setIsMoveWindow(const bool isMoveWindow);\n    bool getIsMoveWindow() const { return m_isMoveWindow; };\n\n    inline QString getScrollBarPolicyConfig() const { return m_scrollBarPolicyConfig; }\n    void setScrollBarPolicyConfig(const QString &config);\n\n    inline QString getCompactDisplayConfig() const { return m_compactDisplayConfig; }\n    void setCompactDisplayConfig(const QString &config);\n\n    inline QVariantMap getWallpaperMap() const { return m_wallpaperMap; }\n    void setWallpaperMap(const QVariantMap &map);\n\n    inline QVariantMap getWallpaperSlideShowMap() const { return m_wallpaperSlideShowMap; }\n    void setWallpaperSlideShowMap(const QVariantMap &map);\n\n    inline QString getCurrentSelectScreen() const { return m_currentSelectScreen; }\n    void setCurrentSelectScreen(const QString &screen);\n\n    inline QString getCurrentScreenSaver() const { return m_currentScreenSaver; }\n    void setCurrentScreenSaver(const QString &currentScreenSaver);\n\n    inline QStringList getScreens() const { return m_screens; }\n    void setScreens(const QStringList &screens);\n\n    inline bool getLockScreenAtAwake() const { return m_lockScreenAtAwake; }\n    void setLockScreenAtAwake(bool value);\n\n    inline int getLinePowerScreenSaverIdleTime() const { return m_linePowerScreenSaverIdleTime; };\n    void setLinePowerScreenSaverIdleTime(int value);\n\n    inline int getBatteryScreenSaverIdleTime() const { return m_batteryScreenSaverIdleTime; };\n    void setBatteryScreenSaverIdleTime(int value);\n\n    inline QString getCurrentScreenSaverPicMode() const { return m_currentScreenSaverPicMode; }\n    void setCurrentScreenSaverPicMode(const QString &mode);\n\n    inline bool getOnBattery() const { return m_onBattery; }\n    void setOnBattery(bool value);\n\n    inline QStringList supportEffects() const { return m_supportEffects; }\n    void setSupportEffects(const QStringList &value);\n\nQ_SIGNALS:\n    void wmChanged(const bool is3d);\n    void opacityChanged(double opacity);\n    void miniEffectChanged(int effect);\n    void onActiveColorChanged(const QString &color);\n    void onCompositingAllowSwitch(bool value);\n    void windowRadiusChanged(int radius);\n    void onSaveWindowRadiusChanged(int radius);\n    void compactDisplayChanged(bool value);\n    void scrollBarPolicyChanged(int policy);\n    void titleBarHeightChanged(int titleBarHeight);\n    void moveWindowChanged(const bool isMoveWindow);\n    void windowEffectTypeChanged(int windowEffectType);\n    void scrollBarPolicyConfigChanged(const QString &config);\n    void compactDisplayConfigChanged(const QString &config);\n    void wallpaperMapChanged(const QVariantMap &map);\n    void currentSelectScreenChanged(const QString &screen);\n    void currentScreenSaverChanged(const QString &current);\n    void screensChanged(const QStringList &screens);\n    void lockScreenAtAwakeChanged(bool value);\n    void linePowerScreenSaverIdleTimeChanged(int value);\n    void batteryScreenSaverIdleTimeChanged(int value);\n    void currentScreenSaverPicModeChanged(const QString &value);\n    void wallpaperSlideShowMapChanged(const QVariantMap &value);\n    void onBatteryChanged(bool value);\n    void miniEffectChanged(bool value);\n    void supportEffectsChanged(const QStringList &value);\nprivate:\n    ThemeModel *m_windowModel;\n    ThemeModel *m_iconModel;\n    ThemeModel *m_mouseModel;\n    ThemeModel *m_globalThemeModel;\n    FontModel *m_standFontModel;\n    FontModel *m_monoFontModel;\n    FontSizeModel *m_fontSizeModel;\n\n    WallpaperSortModel *m_customWallpaperSortModel;\n    WallpaperSortModel *m_sysWallpaperSortModel;\n    WallpaperSortModel *m_solidWallpaperSortModel;\n    WallpaperSortModel *m_screenSaverSortModel;\n    WallpaperSortModel *m_picScreenSaverSortModel;\n\n    WallpaperModel *m_customWallpaperModel;\n    WallpaperModel *m_sysWallpaperModel;\n    WallpaperModel *m_solidWallpaperModel;\n    WallpaperModel *m_screenSaverModel;\n    WallpaperModel *m_picScreenSaverModel;\n\n    bool m_isMoveWindow;\n    double m_opacity;\n    int m_miniEffect;\n    QString m_activeColor;\n    int m_windowRadius;\n    bool m_compactDisplay;\n    int m_scrollBarPolicy;\n    int m_titleBarHeight;\n    int m_windowEffectType;\n\n    QString m_scrollBarPolicyConfig;\n    QString m_compactDisplayConfig;\n\n    QVariantMap m_wallpaperMap;\n    QVariantMap m_wallpaperSlideShowMap;\n    QString m_currentSelectScreen;\n    QString m_currentScreenSaver;\n    QStringList m_screens;\n    bool m_lockScreenAtAwake;\n    int m_linePowerScreenSaverIdleTime;\n    int m_batteryScreenSaverIdleTime;\n    QString m_currentScreenSaverPicMode;\n    bool m_onBattery;\n    QStringList m_supportEffects;\n};\n#endif // PERSONALIZATIONMODEL_H\n"
  },
  {
    "path": "src/plugin-personalization/operation/personalizationworker.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"personalizationworker.h\"\n#include \"operation/personalizationexport.hpp\"\n#include \"operation/screensaverprovider.h\"\n#include \"operation/wallpaperprovider.h\"\n#include \"personalizationdbusproxy.h\"\n#include \"model/thememodel.h\"\n#include \"model/fontmodel.h\"\n#include \"model/fontsizemodel.h\"\n#include \"operation/personalizationmodel.h\"\n#include \"utils.hpp\"\n\n#include <QGuiApplication>\n#include <QScreen>\n#include <QDebug>\n#include <QJsonArray>\n#include <QCollator>\n#include <QJsonDocument>\n#include <QDBusError>\n#include <QLoggingCategory>\n#include <QTimer>\n#include <QDir>\n#include <QTemporaryFile>\n\n#include <DConfig>\n#include <DDBusSender>\n#include <DGuiApplicationHelper>\n\nDCORE_USE_NAMESPACE\nQ_LOGGING_CATEGORY(DdcPersonalWorker, \"dcc-personal-worker\")\n\n#define SOLID_PREFIX \"solid::\"\n\nstatic const std::vector<int> OPACITY_SLIDER{ 0, 25, 40, 55, 70, 85, 100 };\n\nconst QList<int> FontSizeList{ 11, 12, 13, 14, 15, 16, 18, 20 };\n\nconstexpr auto ORG_DEEPIN_CONTROL_CENTER = \"org.deepin.dde.control-center\";\nconstexpr auto CONTROL_CENTER_PERSONALIZATION = \"org.deepin.dde.control-center.personalization\";\nconstexpr auto DTK_PREFERENCE_NAME = \"org.deepin.dtk.preference\";\nconstexpr auto SCROLLBAR_POLICY_CONFIG_KEY = \"scrollbarPolicyStatus\";\nconstexpr auto COMPACT_MODE_DISPLAY_KEY = \"compactDisplayStatus\";\nconstexpr auto TITLE_BAR_HEIGHT_SUPPORT_COMPACT_DISPLAY = \"titleBarHeightSupportCompactDisplay\";\nconstexpr auto SIZE_MODE_KEY = \"sizeMode\";\nconstexpr auto SCROLLBAR_POLICY_KEY = \"scrollBarPolicy\";\n\nPersonalizationWorker::PersonalizationWorker(PersonalizationModel *model, QObject *parent)\n    : QObject(parent)\n    , m_model(model)\n    , m_personalizationDBusProxy(new PersonalizationDBusProxy(this))\n    , m_wallpaperWorker(new WallpaperProvider(m_personalizationDBusProxy, m_model, this))\n    , m_personalizationConfig(DConfig::create(ORG_DEEPIN_CONTROL_CENTER, CONTROL_CENTER_PERSONALIZATION, \"\", this))\n    , m_dtkConfig(DConfig::createGeneric(DTK_PREFERENCE_NAME, \"\", this))\n    {\n    if (!Dtk::Gui::DGuiApplicationHelper::testAttribute(Dtk::Gui::DGuiApplicationHelper::IsWaylandPlatform)) {\n        m_screenSaverProvider = new ScreensaverProvider(m_personalizationDBusProxy, m_model, this);\n    }\n    ThemeModel *cursorTheme = m_model->getMouseModel();\n    ThemeModel *windowTheme = m_model->getWindowModel();\n    ThemeModel *iconTheme = m_model->getIconModel();\n    ThemeModel *globalTheme = m_model->getGlobalThemeModel();\n    FontModel *fontMono = m_model->getMonoFontModel();\n    FontModel *fontStand = m_model->getStandFontModel();\n\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::GtkThemeChanged, windowTheme, &ThemeModel::setDefault);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::CursorThemeChanged, cursorTheme, &ThemeModel::setDefault);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::IconThemeChanged, iconTheme, &ThemeModel::setDefault);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::GlobalThemeChanged, globalTheme, &ThemeModel::setDefault);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::MonospaceFontChanged, fontMono, &FontModel::setFontName);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::StandardFontChanged, fontStand, &FontModel::setFontName);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::FontSizeChanged, this, &PersonalizationWorker::FontSizeChanged);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::Refreshed, this, &PersonalizationWorker::onRefreshedChanged);\n\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::OpacityChanged, this, &PersonalizationWorker::refreshOpacity);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::QtActiveColorChanged, this, &PersonalizationWorker::refreshActiveColor);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::WindowRadiusChanged, this, &PersonalizationWorker::onWindowRadiusChanged);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::WallpaperURlsChanged, this, &PersonalizationWorker::onWallpaperUrlsChanged);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::currentScreenSaverChanged, this, &PersonalizationWorker::onCurrentScreenSaverChanged);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::lockScreenAtAwakeChanged, this, &PersonalizationWorker::onLockScreenAtAwakeChanged);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::linePowerScreenSaverTimeoutChanged, this, &PersonalizationWorker::onLinePowerScreenSaverTimeoutChanged);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::batteryScreenSaverTimeoutChanged, this, &PersonalizationWorker::onBatteryScreenSaverTimeoutChanged);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::WallpaperSlideShowChanged, this, &PersonalizationWorker::onWallpaperSlideShowChanged);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::OnBatteryChanged, m_model, &PersonalizationModel::setOnBattery);\n\n    connect(m_wallpaperWorker, &WallpaperProvider::fetchFinish, this, &PersonalizationWorker::updateWallpaperSelected);\n\n    connect(qApp, &QGuiApplication::screenAdded, this, &PersonalizationWorker::onScreensChanged);\n    connect(qApp, &QGuiApplication::screenRemoved, this, &PersonalizationWorker::onScreensChanged);\n    connect(m_personalizationDBusProxy, &PersonalizationDBusProxy::Changed, this, [this](const QString &propertyName, const QString &value) {\n        qCDebug(DdcPersonalWorker) << \"ChangeProperty is \" << propertyName << \"; value is\" << value;\n        if (propertyName == \"globaltheme\") {\n            refreshTheme();\n        }\n    });\n\n    connect(m_personalizationConfig, &DConfig::valueChanged, this, &PersonalizationWorker::onPersonalizationConfigChanged);\n    connect(m_dtkConfig, &DConfig::valueChanged, this, &PersonalizationWorker::onDTKConfigChanged);\n\n    m_themeModels[\"gtk\"] = windowTheme;\n    m_themeModels[\"icon\"] = iconTheme;\n    m_themeModels[\"cursor\"] = cursorTheme;\n    m_themeModels[\"globaltheme\"] = globalTheme;\n    m_fontModels[\"standardfont\"] = fontStand;\n    m_fontModels[\"monospacefont\"] = fontMono;\n}\n\nvoid PersonalizationWorker::active()\n{\n    m_personalizationDBusProxy->blockSignals(false);\n\n    m_wallpaperWorker->fetchData();\n\n    if (m_screenSaverProvider)\n        m_screenSaverProvider->fecthData();\n\n    refreshOpacity(m_personalizationDBusProxy->opacity());\n    refreshActiveColor(m_personalizationDBusProxy->qtActiveColor());\n    onWallpaperUrlsChanged();\n    onScreensChanged();\n    onWallpaperSlideShowChanged();\n\n    m_model->setCurrentSelectScreen(qApp->primaryScreen()->name());\n    m_model->getWindowModel()->setDefault(m_personalizationDBusProxy->gtkTheme());\n    m_model->getIconModel()->setDefault(m_personalizationDBusProxy->iconTheme());\n    m_model->getMouseModel()->setDefault(m_personalizationDBusProxy->cursorTheme());\n    m_model->getGlobalThemeModel()->setDefault(m_personalizationDBusProxy->globalTheme());\n    m_model->getMonoFontModel()->setFontName(m_personalizationDBusProxy->monospaceFont());\n    m_model->getStandFontModel()->setFontName(m_personalizationDBusProxy->standardFont());\n    m_model->setWindowRadius(m_personalizationDBusProxy->windowRadius());\n    m_model->getFontSizeModel()->setFontSize(ptToPx(m_personalizationDBusProxy->fontSize()));\n    m_model->setCompactDisplay(m_personalizationDBusProxy->getDTKSizeMode());\n\n    m_model->setScrollBarPolicy(m_dtkConfig->value(SCROLLBAR_POLICY_KEY).toInt());\n    m_model->setCompactDisplay(m_dtkConfig->value(SIZE_MODE_KEY).toInt());\n\n    m_model->setCurrentScreenSaver(m_personalizationDBusProxy->getCurrentScreenSaver());\n    if (m_model->getCurrentScreenSaver() == DEEPIN_CUSTOM_SCREENSAVER) {\n        m_model->setCurrentScreenSaverPicMode(\"default\");\n    } else {\n        m_model->setCurrentScreenSaverPicMode(\"\");\n    }\n\n    m_model->setLockScreenAtAwake(m_personalizationDBusProxy->getLockScreenAtAwake());\n    m_model->setOnBattery(m_personalizationDBusProxy->OnBattery());\n    m_model->setBatteryScreenSaverIdleTime(m_personalizationDBusProxy->getBatteryScreenSaverTimeout());\n    m_model->setLinePowerScreenSaverIdleTime(m_personalizationDBusProxy->getLinePowerScreenSaverTimeout());\n\n    QString scrollbarConfig = m_personalizationConfig->value(SCROLLBAR_POLICY_CONFIG_KEY).toString();\n    m_model->setScrollBarPolicyConfig(scrollbarConfig);\n    QString compactDisplayConfig = m_personalizationConfig->value(COMPACT_MODE_DISPLAY_KEY).toString();\n    m_model->setCompactDisplayConfig(compactDisplayConfig);\n}\n\nvoid PersonalizationWorker::deactive()\n{\n    m_personalizationDBusProxy->blockSignals(true);\n}\n\nQList<QJsonObject> PersonalizationWorker::converToList(const QString &type, const QJsonArray &array)\n{\n    QList<QJsonObject> list;\n    for (int i = 0; i != array.size(); i++) {\n        QJsonObject object = array.at(i).toObject();\n        object.insert(\"type\", QJsonValue(type));\n        list.append(object);\n    }\n    return list;\n}\n\nvoid PersonalizationWorker::addList(ThemeModel *model, const QString &type, const QJsonArray &array)\n{\n    QList<QString> list;\n    QList<QJsonObject> objList;\n    QScopedPointer<DConfig> personalizationConfig(DConfig::create(\"org.deepin.dde.control-center\", QStringLiteral(\"org.deepin.dde.control-center.personalization\"), QString(), this));\n    auto hideIconThemeList = personalizationConfig->value(\"hideIconThemes\").toStringList();\n    for (int i = 0; i != array.size(); i++) {\n        QJsonObject object = array.at(i).toObject();\n        if (type == \"icon\" && hideIconThemeList.contains(object[\"Name\"].toString())) {\n            continue;\n        }\n        object.insert(\"type\", QJsonValue(type));\n        if (object[\"Name\"].toString() == \"Custom\") {\n            object[\"Name\"] = tr(\"Custom\");\n        }\n        objList << object;\n        list.append(object[\"Id\"].toString());\n\n        PersonalizationWatcher *watcher = new PersonalizationWatcher(this);\n        watcher->setProperty(\"category\", type);\n        watcher->setProperty(\"id\", object[\"Id\"].toString());\n        m_personalizationDBusProxy->Thumbnail(type, object[\"Id\"].toString(), watcher, SLOT(onThumbnail(const QString &)), SLOT(errorSlot(const QDBusError &)));\n    }\n\n    for (const QJsonObject &obj : objList) {\n        model->addItem(obj[\"Id\"].toString(), obj);\n    }\n\n    for (const QString &id : model->getList().keys()) {\n        if (!list.contains(id)) {\n            model->removeItem(id);\n        }\n    }\n}\n\nvoid PersonalizationWorker::FontSizeChanged(const double value) const\n{\n    FontSizeModel *fontSizeModel = m_model->getFontSizeModel();\n    int px = static_cast<int>(ptToPx(value));\n    fontSizeModel->setFontSize(px);\n}\n\nvoid PersonalizationWorker::onGetFontFinished(const QString &category, const QString &json)\n{\n    setFontList(m_fontModels[category], category, json);\n}\n\nvoid PersonalizationWorker::onGetThemeFinished(const QString &category, const QString &json)\n{\n    const QJsonArray &array = QJsonDocument::fromJson(json.toUtf8()).array();\n    addList(m_themeModels[category], category, array);\n    if (category == \"cursor\") {\n        m_themeModels[category]->setDefault(m_personalizationDBusProxy->cursorTheme());\n    } else if (category == \"icon\") {\n        m_themeModels[category]->setDefault(m_personalizationDBusProxy->iconTheme());\n    }\n}\n\nvoid PersonalizationWorker::onGetPicFinished(const QString &category, const QString &id, const QString &json)\n{\n    m_themeModels[category]->addPic(id, json);\n}\n\nvoid PersonalizationWorker::onRefreshedChanged(const QString &type)\n{\n    if (m_themeModels.keys().contains(type)) {\n        refreshThemeByType(type);\n    }\n\n    if (m_fontModels.keys().contains(type)) {\n        refreshFontByType(type);\n    }\n}\n\nvoid PersonalizationWorker::onWindowRadiusChanged(int value)\n{\n    m_model->setWindowRadius(value);\n}\n\nvoid PersonalizationWorker::onCompactDisplayChanged(int value)\n{\n    m_model->setCompactDisplay(value);\n}\n\nvoid PersonalizationWorker::onWindowEffectChanged(int value)\n{\n    m_model->setWindowEffectType(value);\n}\n\nvoid PersonalizationWorker::onScreensChanged()\n{\n    bool isMirror = true;\n    QRect geometry = qApp->primaryScreen()->availableGeometry();\n    for (const auto screen : qApp->screens()) {\n        if (geometry != screen->availableGeometry()) {\n            isMirror = false;\n            break;\n        }\n    }\n\n    for (const auto screen : qApp->screens()) {\n        connect(screen, &QScreen::geometryChanged, this, &PersonalizationWorker::onScreensChanged, Qt::UniqueConnection);\n    }\n\n    if (isMirror) {\n        m_model->setScreens({qApp->primaryScreen()->name()});\n        m_model->setCurrentSelectScreen(qApp->primaryScreen()->name());\n        return;\n    } else {\n        QStringList screenNameList{};\n        for (const auto &screen : qApp->screens()) {\n            screenNameList << screen->name();\n        }\n        m_model->setScreens(screenNameList);\n    };\n}\n\nvoid PersonalizationWorker::onCurrentScreenSaverChanged(const QString &value)\n{\n    m_model->setCurrentScreenSaver(value);\n}\n\nvoid PersonalizationWorker::onLockScreenAtAwakeChanged(bool value)\n{\n    m_model->setLockScreenAtAwake(value);\n}\n\nvoid PersonalizationWorker::onLinePowerScreenSaverTimeoutChanged(int value)\n{\n    m_model->setLinePowerScreenSaverIdleTime(value);\n}\n\nvoid PersonalizationWorker::onBatteryScreenSaverTimeoutChanged(int value)\n{\n    m_model->setBatteryScreenSaverIdleTime(value);\n}\n\nvoid PersonalizationWorker::onWallpaperSlideShowChanged()\n{\n    QVariantMap wallpaperSlideShowMap;\n    QStringList screenNameList;\n    for (const auto screen : qApp->screens()) {\n        screenNameList << screen->name();\n    }\n    for (const auto &screenName : screenNameList) {\n        QString slideShow = m_personalizationDBusProxy->wallpaperSlideShow(screenName);\n        wallpaperSlideShowMap.insert(screenName, slideShow);\n    }\n    if (!wallpaperSlideShowMap.isEmpty()) {\n        m_model->setWallpaperSlideShowMap(wallpaperSlideShowMap);\n    }\n}\n\nvoid PersonalizationWorker::updateWallpaperSelected()\n{\n    QStringList wallpaperList;\n    auto wallpaperMap = m_model->getWallpaperMap();\n    for (auto it = wallpaperMap.cbegin(); it != wallpaperMap.cend(); ++it) {\n        wallpaperList << it.value().toString();\n    }\n\n    m_model->getSysWallpaperModel()->updateSelected(wallpaperList);\n    m_model->getSolidWallpaperModel()->updateSelected(wallpaperList);\n    m_model->getCustomWallpaperModel()->updateSelected(wallpaperList);\n    // 等待model更新完成后再发出wallpaperMapChanged信号,避免qml中读取到旧的数据\n    Q_EMIT m_model->wallpaperMapChanged(m_model->getWallpaperMap());\n}\n\nvoid PersonalizationWorker::onWallpaperUrlsChanged()\n{\n    // wallpaperUrls 存储着每个工作区和每个屏幕的壁纸, 若其改变, 需要刷新当前屏幕壁纸\n    QVariantMap wallpaperMap;\n    QStringList screenNameList;\n    for (const auto screen : qApp->screens()) {\n        screenNameList << screen->name();\n    }\n    for (const auto &screenName : screenNameList) {\n        QString url = m_personalizationDBusProxy->getCurrentWorkSpaceBackgroundForMonitor(screenName);\n        if (!url.isEmpty()) {\n            wallpaperMap.insert(screenName, url);\n        }\n    }\n    if (!wallpaperMap.isEmpty()) {\n        m_model->setWallpaperMap(wallpaperMap);\n    }\n\n    updateWallpaperSelected();\n}\n\nvoid PersonalizationWorker::setFontList(FontModel *model, const QString &type, const QString &list)\n{\n    QJsonArray array = QJsonDocument::fromJson(list.toLocal8Bit().data()).array();\n\n    QStringList l;\n\n    for (int i = 0; i != array.size(); i++)\n        l << array.at(i).toString();\n\n    PersonalizationWatcher *watcher = new PersonalizationWatcher(this);\n    watcher->setProperty(\"type\", type);\n    watcher->setProperty(\"FontModel\", QVariant::fromValue(static_cast<void *>(model)));\n    m_personalizationDBusProxy->Show(type, l, watcher, SLOT(onShow(const QString &)));\n}\n\nvoid PersonalizationWorker::setTitleBarHeight(int)\n{\n\n}\n\nvoid PersonalizationWorker::setDiabledCompactToTitleHeight()\n{\n    if (m_personalizationConfig->value(TITLE_BAR_HEIGHT_SUPPORT_COMPACT_DISPLAY).toBool()) {\n        m_personalizationConfig->setValue(TITLE_BAR_HEIGHT_SUPPORT_COMPACT_DISPLAY, false);\n    }\n}\n\nvoid PersonalizationWorker::refreshTheme()\n{\n    for (QMap<QString, ThemeModel *>::ConstIterator it = m_themeModels.begin(); it != m_themeModels.end(); it++) {\n        refreshThemeByType(it.key());\n    }\n}\n\nvoid PersonalizationWorker::refreshThemeByType(const QString &type)\n{\n    PersonalizationWatcher *watcher = new PersonalizationWatcher(this);\n    watcher->setProperty(\"category\", type);\n    m_personalizationDBusProxy->List(type, watcher, SLOT(onList(const QString &)), SLOT(errorSlot(const QDBusError &)));\n}\n\nvoid PersonalizationWorker::refreshFont()\n{\n    for (QMap<QString, FontModel *>::const_iterator it = m_fontModels.begin(); it != m_fontModels.end(); it++) {\n        refreshFontByType(it.key());\n    }\n\n    FontSizeChanged(m_personalizationDBusProxy->fontSize());\n}\n\nbool PersonalizationWorker::checkWallpaperLockStatus()\n{\n    if (QFileInfo::exists(\"/var/lib/deepin/permission-manager/wallpaper_locked\")) {\n        QDBusInterface notify(\"org.freedesktop.Notifications\", \"/org/freedesktop/Notifications\", \"org.freedesktop.Notifications\");\n        notify.asyncCall(QString(\"Notify\"),\n                         QString(\"dde-control-center\"),   // title\n                         static_cast<uint>(0),\n                         QString(\"preferences-system\"),   // icon\n                         QObject::tr(\"This system wallpaper is locked. Please contact your admin.\"),\n                         QString(), QStringList(), QVariantMap(), 5000);\n        qCInfo(DdcPersonalWorker) << \"wallpaper is locked..\";\n        return true;\n    }\n    return false;\n}\n\nvoid PersonalizationWorker::refreshFontByType(const QString &type)\n{\n    PersonalizationWatcher *watcher = new PersonalizationWatcher(this);\n    watcher->setProperty(\"category\", type);\n    m_personalizationDBusProxy->List(type, watcher, SLOT(onGetFont(const QString &)), SLOT(errorSlot(const QDBusError &)));\n}\n\nvoid PersonalizationWorker::refreshActiveColor(const QString &color)\n{\n    m_model->setActiveColor(color);\n}\n\nvoid PersonalizationWorker::refreshOpacity(double opacity)\n{\n    qCDebug(DdcPersonalWorker) << QString(\"opacity: %1\").arg(opacity);\n    m_model->setOpacity(opacity);\n}\n\n\ndouble PersonalizationWorker::sliderValutToOpacity(const int value) const\n{\n    return static_cast<double>(value) / static_cast<double>(100);\n}\n\nvoid PersonalizationWorker::setDefaultByType(const QString &type, const QString &value)\n{\n    m_personalizationDBusProxy->Set(type, value);\n}\n\nvoid PersonalizationWorker::setDefault(const QJsonObject &value)\n{\n    //使用type去调用\n    m_personalizationDBusProxy->Set(value[\"type\"].toString(), value[\"Id\"].toString());\n}\n\nvoid PersonalizationWorker::setFontSize(const int pixelSize)\n{\n    m_personalizationDBusProxy->setFontSize(pxToPt(pixelSize));\n}\n\nvoid PersonalizationWorker::setWindowEffect(int)\n{\n\n}\n\nvoid PersonalizationWorker::setMovedWindowOpacity(bool)\n{\n\n}\n\nvoid PersonalizationWorker::setOpacity(int opacity)\n{\n    m_personalizationDBusProxy->setOpacity(sliderValutToOpacity(opacity));\n}\n\nvoid PersonalizationWorker::setMiniEffect(int)\n{\n\n}\n\nvoid PersonalizationWorker::setActiveColor(const QString &hexColor)\n{\n    m_personalizationDBusProxy->setQtActiveColor(hexColor);\n}\n\nvoid PersonalizationWorker::setActiveColors(const QString &activeColors)\n{\n    m_personalizationDBusProxy->setActiveColors(activeColors);\n}\n\nvoid PersonalizationWorker::addCustomWallpaper(const QString &url)\n{\n    QString lastHashPath;\n    if (isURI(url)) {\n        lastHashPath = m_personalizationDBusProxy->saveCustomWallpaper(currentUserName(), QUrl(url).toLocalFile());\n    } else {\n        lastHashPath = m_personalizationDBusProxy->saveCustomWallpaper(currentUserName(), url);\n    }\n    setWallpaperForMonitor(m_model->getCurrentSelectScreen(), lastHashPath, false, PersonalizationExport::Option_All);\n}\n\nvoid PersonalizationWorker::addSolidWallpaper(const QColor &color)\n{\n    QString path = QDir::tempPath() + QString(\"/XXXXXX-solid-color-%0%1%2.jpg\").arg(QString::number(color.red(), 16))\n                                                          .arg(QString::number(color.green(), 16))\n                                                          .arg(QString::number(color.blue(), 16));\n    // create img\n    QImage img(1920, 1080, QImage::Format_ARGB32);\n    img.fill(color);\n    QTemporaryFile file(path);\n    file.setAutoRemove(false); // 将临时文件设置为不自动删除\n    if (!file.open()) {\n        qCWarning(DdcPersonalWorker) << \"fail to save image\" << file.fileName();\n        return;\n    }\n\n    img.save(&file, \"JPG\");\n\n    //set to dde, and prefix solid:: to tell dde this is a solid color wallpaper.\n    const QString &hashPath = m_personalizationDBusProxy->saveCustomWallpaper(currentUserName(), SOLID_PREFIX + file.fileName());\n    setWallpaperForMonitor(m_model->getCurrentSelectScreen(), hashPath, false, PersonalizationExport::Option_All);\n}\n\nvoid PersonalizationWorker::deleteWallpaper(const QString &str)\n{\n    qCWarning(DdcPersonalWorker) << \"delete wallpaper\" << str;\n    if (isURI(str)) {\n        m_personalizationDBusProxy->deleteCustomWallpaper(currentUserName(), QUrl(str).toLocalFile());\n    } else {\n        m_personalizationDBusProxy->deleteCustomWallpaper(currentUserName(), str);\n    }\n}\n\nvoid PersonalizationWorker::setScreenSaver(const QString &value)\n{\n    m_personalizationDBusProxy->setCurrentScreenSaver(value);\n    onCurrentScreenSaverChanged(value);\n}\n\nvoid PersonalizationWorker::setWallpaperSlideShow(const QString &monitorName, const QString &sliderShow)\n{\n    m_personalizationDBusProxy->setWallpaperSlideShow(monitorName, sliderShow);\n}\n\nvoid PersonalizationWorker::setCurrentScreenSaverPicMode(const QString &mode)\n{\n    m_model->setCurrentScreenSaverPicMode(mode);\n}\n\nvoid PersonalizationWorker::requestScreenSaverConfig(const QString &name)\n{\n    m_personalizationDBusProxy->requestScreenSaverConfig(name);\n}\n\nvoid PersonalizationWorker::startScreenSaverPreview()\n{\n    m_personalizationDBusProxy->preview(m_model->getCurrentScreenSaver());\n}\n\nvoid PersonalizationWorker::setLockScreenAtAwake(bool value)\n{\n    m_personalizationDBusProxy->setLockScreenAtAwake(value);\n}\n\nvoid PersonalizationWorker::setScreenSaverIdleTime(int value)\n{\n    m_personalizationDBusProxy->setLinePowerScreenSaverTimeout(value);\n    m_personalizationDBusProxy->setBatteryScreenSaverTimeout(value);\n}\n\nvoid PersonalizationWorker::setWindowRadius(int radius)\n{\n    m_personalizationDBusProxy->setWindowRadius(radius);\n}\n\nvoid PersonalizationWorker::setCompactDisplay(bool value)\n{\n    // 如果标题栏高度支持紧凑模式，则开/关紧凑模式需要与标题栏高度联动, 应与前端数值保持一致\n    static const QVector<uint8_t> TitleHeightList = {24, 32, 40, 50};\n    bool isTitleBarHeightSupported = m_personalizationConfig->value(TITLE_BAR_HEIGHT_SUPPORT_COMPACT_DISPLAY).toBool();\n\n    if (isTitleBarHeightSupported) {\n        int index = TitleHeightList.indexOf(m_model->getTitleBarHeight());\n        int tarHeight = value ? TitleHeightList.value(index - 1) : TitleHeightList.value(index + 1);\n        if (TitleHeightList.contains(tarHeight)) {\n            setTitleBarHeight(tarHeight);\n        } \n    }\n\n    m_dtkConfig->setValue(SIZE_MODE_KEY, value);\n    // TODO delete\n    m_personalizationDBusProxy->setDTKSizeMode(int(value));\n}\n\n\nvoid PersonalizationWorker::setScrollBarPolicy(int policy)\n{\n    m_dtkConfig->setValue(SCROLLBAR_POLICY_KEY, policy);\n    // TODO delete\n    m_personalizationDBusProxy->setScrollBarPolicy( policy);\n}\n\nvoid PersonalizationWorker::goDownloadTheme()\n{\n    DDBusSender().interface(\"com.home.appstore.client\")\n    .path(\"/com/home/appstore/client\")\n    .service(\"com.home.appstore.client\")\n    .method(\"openBusinessUri\")\n    .arg(QString(\"searchApp?keyword=theme\")).call();\n}\n\ntemplate<typename T>\nT PersonalizationWorker::toSliderValue(std::vector<T> list, T value)\n{\n    for (auto it = list.cbegin(); it != list.cend(); ++it) {\n        if (value < *it) {\n            return (--it) - list.begin();\n        }\n    }\n\n    return list.end() - list.begin();\n}\n\nvoid PersonalizationWorker::onPersonalizationConfigChanged(const QString &key)\n{\n    if (key == SCROLLBAR_POLICY_CONFIG_KEY) {\n        QString value = m_personalizationConfig->value(key).toString();\n        m_model->setScrollBarPolicyConfig(value);\n    } else if (key == COMPACT_MODE_DISPLAY_KEY) {\n        QString value = m_personalizationConfig->value(key).toString();\n        m_model->setCompactDisplayConfig(value);\n    }\n}\n\nvoid PersonalizationWorker::onDTKConfigChanged(const QString &key)\n{\n    qCDebug(DdcPersonalWorker) << \"PersonalizationWorker::onDTKConfigChanged\" << key << m_dtkConfig->value(key);\n    if (key == SIZE_MODE_KEY) {\n        m_model->setCompactDisplay(m_dtkConfig->value(key).toBool());\n    } else if (key == SCROLLBAR_POLICY_KEY) {\n        m_model->setScrollBarPolicy(m_dtkConfig->value(key).toInt());\n    }\n}\n\nvoid PersonalizationWorker::setGlobalTheme(const QString &themeId)\n{\n    qDebug() << \"applied global theme\" << themeId;\n    ThemeModel *globalTheme = m_model->getGlobalThemeModel();\n    QString mode;\n    (void)getGlobalThemeId(globalTheme->getDefault(), mode);\n\n    const QMap<QString, QJsonObject> &itemList = globalTheme->getList();\n    if (itemList.contains(themeId))\n        setDefaultByType(itemList.value(themeId)[\"type\"].toString(), themeId + mode);\n}\n\nvoid PersonalizationWorker::setAppearanceTheme(const QString &id, bool keepAuto)\n{\n    Q_UNUSED(keepAuto)\n    ThemeModel *globalTheme = m_model->getGlobalThemeModel();\n    QString mode;\n    QString themeId = getGlobalThemeId(globalTheme->getDefault(), mode);\n    const QMap<QString, QJsonObject> &itemList = globalTheme->getList();\n    if (itemList.contains(themeId)) {\n        setDefaultByType(itemList.value(themeId)[\"type\"].toString(),\n                                    themeId + id);\n    }\n}\n\nvoid PersonalizationWorker::setIconTheme(const QString &id)\n{\n    for (auto &object : m_model->getIconModel()->getList()) {\n        if (object.value(\"Id\").toString() == id) {\n            setDefault(object);\n            return;\n        }\n    }\n}\nvoid PersonalizationWorker::setCursorTheme(const QString &id)\n{\n    for (auto &object : m_model->getMouseModel()->getList()) {\n        if (object.value(\"Id\").toString() == id) {\n            setDefault(object);\n            return;\n        }\n    }\n}\n\nvoid PersonalizationWorker::setWallpaperForMonitor(const QString &screen, const QString &url, bool isDark, PersonalizationExport::WallpaperSetOption option)\n{\n    if (option == PersonalizationExport::Option_Desktop) {\n        setBackgroundForMonitor(screen, url, isDark);\n    } else if (option == PersonalizationExport::Option_Lock) {\n        setLockBackForMonitor(screen, url, isDark);\n    } else if (option == PersonalizationExport::Option_All) {\n        setBackgroundForMonitor(screen, url, isDark);\n        setLockBackForMonitor(screen, url, isDark);\n    }\n}\n\nvoid PersonalizationWorker::setBackgroundForMonitor(const QString &, const QString &, bool )\n{\n\n}\n\nvoid PersonalizationWorker::setLockBackForMonitor(const QString &, const QString &, bool)\n{\n\n}\n\nPersonalizationWatcher::PersonalizationWatcher(PersonalizationWorker *work)\n    : QObject(work)\n    , m_work(work)\n{\n}\n\nvoid PersonalizationWatcher::onShow(const QString &json)\n{\n    deleteLater();\n    QJsonArray arrayValue = QJsonDocument::fromJson(json.toLocal8Bit().data()).array();\n\n    QList<QJsonObject> list = m_work->converToList(property(\"type\").toString(), arrayValue);\n    // sort for display name\n    std::sort(list.begin(), list.end(), [=](const QJsonObject &obj1, const QJsonObject &obj2) {\n        QCollator qc;\n        return qc.compare(obj1[\"Name\"].toString(), obj2[\"Name\"].toString()) < 0;\n    });\n    FontModel *model = static_cast<FontModel *>(property(\"FontModel\").value<void *>());\n    model->setFontList(list);\n}\n\nvoid PersonalizationWatcher::onList(const QString &json)\n{\n    m_work->onGetThemeFinished(property(\"category\").toString(), json);\n    deleteLater();\n}\n\nvoid PersonalizationWatcher::onGetFont(const QString &json)\n{\n    m_work->onGetFontFinished(property(\"category\").toString(), json);\n    deleteLater();\n}\n\nvoid PersonalizationWatcher::onThumbnail(const QString &json)\n{\n    m_work->onGetPicFinished(property(\"category\").toString(), property(\"id\").toString(), json);\n    deleteLater();\n}\n\nvoid PersonalizationWatcher::errorSlot(const QDBusError &err)\n{\n    qCInfo(DdcPersonalWorker) << err;\n    deleteLater();\n}\n"
  },
  {
    "path": "src/plugin-personalization/operation/personalizationworker.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef PERSONALIZATIONWORKER_H\n#define PERSONALIZATIONWORKER_H\n\n#include \"operation/personalizationexport.hpp\"\n#include \"operation/screensaverprovider.h\"\n#include \"operation/wallpaperprovider.h\"\n#include \"personalizationmodel.h\"\n\n#include <QObject>\n#include <QDebug>\n#include <QStringList>\n#include <QMap>\n#include <QString>\n#include <QJsonObject>\n\n#include <DConfig>\n#include <QScreen>\n\nclass PersonalizationDBusProxy;\nclass ThemeModel;\nclass PersonalizationWorker : public QObject\n{\n    Q_OBJECT\npublic:\n    PersonalizationWorker(PersonalizationModel *model, QObject *parent = nullptr);\n    virtual void active();\n    void deactive();\n    void onGetList();\n    void refreshTheme();\n    void refreshFont();\n    bool checkWallpaperLockStatus();\n\npublic Q_SLOTS:\n    void setDiabledCompactToTitleHeight();\n    void setScrollBarPolicy(int policy);\n    void setCompactDisplay(bool value);\n    void goDownloadTheme();\n\n    // 设置给Appearance分别在深色和浅色下的活动色\n    void setActiveColors(const QString &activeColors);\n    void addCustomWallpaper(const QString &url);\n    void addSolidWallpaper(const QColor &color);\n    void deleteWallpaper(const QString &str);\n    void setScreenSaver(const QString &value);\n    void setWallpaperSlideShow(const QString &monitorName, const QString &sliderShow);\n\n    void startScreenSaverPreview();\n    void setLockScreenAtAwake(bool value);\n    void setScreenSaverIdleTime(int value);\n    void setCurrentScreenSaverPicMode(const QString &mode);\n    void requestScreenSaverConfig(const QString &name);\n\n    virtual void setDefaultByType(const QString &type, const QString &value);\n    virtual void setDefault(const QJsonObject &value);\n    virtual void setFontSize(const int pixelSize);\n    virtual void setOpacity(int opcaity);\n    virtual void setWindowEffect(int value);\n    virtual void setMiniEffect(int effect);\n    virtual void setMovedWindowOpacity(bool value);\n    virtual void setActiveColor(const QString &hexColor);\n    virtual void setWindowRadius(int radius);\n    virtual void setTitleBarHeight(int value);\n    virtual void setGlobalTheme(const QString &themeId);\n    virtual void setAppearanceTheme(const QString &id, bool keepAuto = false);\n    virtual void setIconTheme(const QString &id);\n    virtual void setCursorTheme(const QString &id);\n    virtual void setWallpaperForMonitor(const QString &screen, const QString &url, bool isDark, PersonalizationExport::WallpaperSetOption option);\n    virtual void setBackgroundForMonitor(const QString &screenName, const QString &url, bool isDark);\n    virtual void setLockBackForMonitor(const QString &screenName, const QString &url, bool isDark);\n\nsignals:\n    void personalizationChanged(const QString &propertyName, const QString &value);\n\nprivate Q_SLOTS:\n    void FontSizeChanged(const double value) const;\n    void onGetFontFinished(const QString &category, const QString &json);\n    void onGetThemeFinished(const QString &category, const QString &json);\n    void onGetPicFinished(const QString &category, const QString &id, const QString &json);\n    void onRefreshedChanged(const QString &type);\n    void setFontList(FontModel *model, const QString &type, const QString &list);\n    void onWindowRadiusChanged(int value);\n    void onCompactDisplayChanged(int value);\n    void onWindowEffectChanged(int value);\n    void onScreensChanged();\n    void onCurrentScreenSaverChanged(const QString &value);\n    void onLockScreenAtAwakeChanged(bool value);\n    void onLinePowerScreenSaverTimeoutChanged(int value);\n    void onBatteryScreenSaverTimeoutChanged(int value);\n    void onWallpaperSlideShowChanged();\n    void updateWallpaperSelected();\n\nprotected:\n    virtual void onWallpaperUrlsChanged();\n\nprivate:\n    double sliderValutToOpacity(const int value) const;\n    QList<QJsonObject> converToList(const QString &type, const QJsonArray &array);\n    void addList(ThemeModel *model, const QString &type, const QJsonArray &array);\n    void refreshThemeByType(const QString &type);\n    void refreshFontByType(const QString &type);\n    void refreshOpacity(double opacity);\n    void refreshActiveColor(const QString &color);\n    void onPersonalizationConfigChanged(const QString &key);\n    void onDTKConfigChanged(const QString &key);\n\n    template<typename T>\n    T toSliderValue(std::vector<T> list, T value);\n\nprotected:\n    PersonalizationModel *m_model;\n    PersonalizationDBusProxy *m_personalizationDBusProxy;\n\nprivate:\n    WallpaperProvider *m_wallpaperWorker = nullptr;\n    ScreensaverProvider *m_screenSaverProvider = nullptr;\n    Dtk::Core::DConfig *m_personalizationConfig = nullptr;\n    Dtk::Core::DConfig *m_dtkConfig = nullptr;\n\n    QMap<QString, ThemeModel *> m_themeModels;\n    QMap<QString, FontModel *> m_fontModels;\n    friend class PersonalizationWatcher;\n};\n\nclass QDBusError;\nclass PersonalizationWatcher : public QObject\n{\n    Q_OBJECT\npublic:\n    PersonalizationWatcher(PersonalizationWorker *work);\n\nprivate Q_SLOTS:\n    void onShow(const QString &json);\n    void onList(const QString &json);\n    void onGetFont(const QString &json);\n    void onThumbnail(const QString &json);\n    void errorSlot(const QDBusError &err);\n\nprivate:\n    PersonalizationWorker *m_work = nullptr;\n};\n\n#endif // PERSONALIZATIONWORKER_H\n"
  },
  {
    "path": "src/plugin-personalization/operation/qrc/personalization.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_personalization_42px.svg</file>\n        <file>icons/dcc_nav_personalization_84px.svg</file>\n        <file>texts/fontsize_decrease_16px.svg</file>\n        <file>texts/fontsize_increase_16px.svg</file>\n        <file>texts/transparency_high_16px.svg</file>\n        <file>texts/transparency_low_16px.svg</file>\n        <file>texts/round_high_16px.svg</file>\n        <file>texts/round_low_16px.svg</file>\n        <file>texts/help_16px.svg</file>\n\n        <file>dark/icons/corner_none_108px.svg</file>\n        <file>dark/icons/corner_small_108px.svg</file>\n        <file>dark/icons/corner_middle_108px.svg</file>\n        <file>dark/icons/corner_big_108px.svg</file>\n        <file>light/icons/corner_none_108px.svg</file>\n        <file>light/icons/corner_small_108px.svg</file>\n        <file>light/icons/corner_middle_108px.svg</file>\n        <file>light/icons/corner_big_108px.svg</file>\n    </qresource>\n\n    <qresource prefix=\"/\">\n        <file>icons/download_more_light.png</file>\n        <file>icons/download_more_dark.png</file>\n        <file>icons/slideshow_default_preview.webp</file>\n        <file>icons/slideshow_default.png</file>\n    </qresource>\n\n    <qresource prefix=\"/dsg\">\n        <file>icons/balance.dci</file>\n        <file>icons/best_vision.dci</file>\n        <file>icons/optimum_performance.dci</file>\n        <file>icons/appearance.dci</file>\n        <file>icons/font_size.dci</file>\n        <file>icons/icon_cursor.dci</file>\n        <file>icons/taskbar.dci</file>\n        <file>icons/dcc_wallpaper.dci</file>\n        <file>icons/screensaver.dci</file>\n        <file>icons/window_effect.dci</file>\n        <file>icons/theme_icon.dci</file>\n        <file>icons/topic_cursor.dci</file>\n        <file>icons/color_extractor.dci</file>\n\t    <file>icons/close.dci</file>\n        <file>icons/arrow_left.dci</file>\n        <file>icons/arrow_right.dci</file>\n        <file>icons/wallpaper_add.dci</file>\n        <file>icons/wallpaper_addcolor.dci</file>\n        <file>icons/wallpaper_add_bg.dci</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-personalization/operation/screensaverprovider.cpp",
    "content": "// SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"screensaverprovider.h\"\n#include \"operation/model/wallpapermodel.h\"\n#include \"operation/personalizationdbusproxy.h\"\n#include \"utils.hpp\"\n\n#include <QThread>\n#include <QSet>\n#include <QScreen>\n#include <QImageReader>\n#include <QPainter>\n#include <QMap>\n\nScreensaverWorker::ScreensaverWorker(PersonalizationDBusProxy *proxy, QObject *parent)\n    : QObject(parent)\n    , m_proxy(proxy)\n{\n    \n}\n\nvoid ScreensaverWorker::terminate()\n{\n    running = false;\n}\n\nvoid ScreensaverWorker::list()\n{\n    running = true;\n    QStringList saverNameList = m_proxy->getAllscreensaver();\n    QStringList configurable = m_proxy->ConfigurableItems();\n\n    // Supports parameter setting for multiple screensavers\n\n    int deepin = 0;\n    for (const QString &name : saverNameList) {\n        // The screensaver with the parameter configuration is placed first\n        if (name == DEEPIN_CUSTOM_SCREENSAVER) {\n            saverNameList.move(saverNameList.indexOf(name), deepin);\n            deepin++;\n        }\n    }\n\n    if (!running)\n        return;\n\n    QList<WallpaperItemPtr> items;\n    QMap<QString, QString> imgs;\n\n    for (const QString &name : saverNameList) {\n        // remove\n        if (\"flurry\" == name || DEEPIN_CUSTOM_SCREENSAVER == name)\n            continue;\n\n        if (!running)\n            return;\n\n        auto temp = WallpaperItemPtr(new WallpaperItem);\n        items.append(temp);\n\n        QString coverPath = m_proxy->GetScreenSaverCover(name);\n        const QString &thumbnail = QUrl::fromLocalFile(coverPath).toString();\n        temp->url = name;\n        temp->configurable = configurable.contains(name);\n        temp->deleteAble = false;\n        temp->picPath = coverPath;\n        temp->thumbnail = thumbnail;\n\n        imgs.insert(name, coverPath);\n    }\n\n    emit pushScreensaver(items);\n    running = false;\n}\n\nvoid ScreensaverProvider::setScreensaver(const QList<WallpaperItemPtr> &items)\n{\n    qDebug() << \"get screensaver list\" << items.size() << \"current thread\" << QThread::currentThread() << \"main:\" << qApp->thread();\n    m_model->getScreenSaverModel()->resetData(items);}\n\nScreensaverProvider::ScreensaverProvider(PersonalizationDBusProxy *proxy, PersonalizationModel *model, QObject *parent)\n    : QObject(parent)\n    , m_model(model)\n    , m_proxy(proxy)\n{\n    workThread = new QThread(this);\n    worker = new ScreensaverWorker(proxy);\n    worker->moveToThread(workThread);\n    workThread->start();\n\n    const static QMap<QString, QMap<QString, QString>> picScreenSaverModesMap {\n        {\"default\", {{\"picPath\", \"qrc:///icons/slideshow_default_preview.webp\"}, {\"thumbnail\", \"qrc:///icons/slideshow_default.png\"}}},\n    };\n    QList<WallpaperItemPtr> items;\n\n    for (auto it = picScreenSaverModesMap.constBegin(); it != picScreenSaverModesMap.constEnd(); ++it) {\n        auto temp = WallpaperItemPtr(new WallpaperItem);\n        items.append(temp);\n        temp->picPath = it.value()[\"picPath\"];\n        temp->url = it.key();\n        temp->deleteAble = false;\n        temp->thumbnail = it.value()[\"thumbnail\"];\n    }\n\n    m_model->getPicScreenSaverModel()->resetData(items);\n\n    connect(worker, &ScreensaverWorker::pushScreensaver, this, &ScreensaverProvider::setScreensaver, Qt::QueuedConnection);\n}\n\nScreensaverProvider::~ScreensaverProvider()\n{\n    worker->terminate();\n    workThread->quit();\n    workThread->wait(1000);\n\n    if (workThread->isRunning())\n        workThread->terminate();\n\n    delete worker;\n    worker = nullptr;\n}\n\nvoid ScreensaverProvider::fecthData()\n{\n    QMetaObject::invokeMethod(worker, \"list\", Qt::QueuedConnection);\n}\n"
  },
  {
    "path": "src/plugin-personalization/operation/screensaverprovider.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include \"operation/model/wallpapermodel.h\"\n#include \"personalizationdbusproxy.h\"\n#include \"personalizationmodel.h\"\n\nclass ScreensaverWorker : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit ScreensaverWorker(PersonalizationDBusProxy *proxy, QObject *parent = nullptr);\n    void terminate();\nsignals:\n    void pushScreensaver(const QList<WallpaperItemPtr> &items);\npublic slots:\n    void list();\nprivate:\n    PersonalizationDBusProxy *m_proxy = nullptr;\n    volatile bool running = false;\n};\n\nclass ScreensaverProvider : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit ScreensaverProvider(PersonalizationDBusProxy *proxy, PersonalizationModel *model, QObject *parent = nullptr);\n    ~ScreensaverProvider() override;\n    void fecthData();\n\nprivate slots:\n    void setScreensaver(const QList<WallpaperItemPtr> &items);\nprivate:\n    QThread *workThread = nullptr;\n    ScreensaverWorker *worker = nullptr;\n    PersonalizationModel *m_model = nullptr;\n    PersonalizationDBusProxy *m_proxy = nullptr;\n};\n"
  },
  {
    "path": "src/plugin-personalization/operation/treelandworker.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include <QtWaylandClient/private/qwaylandsurface_p.h>\n#include <QtWaylandClient/private/qwaylandwindow_p.h>\n#include <QGuiApplication>\n#include <QFile>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QJsonArray>\n#include <QLoggingCategory>\n#include <QDebug>\n#include <QDir>\n#include \"utils.hpp\"\n\n#include <private/qguiapplication_p.h>\n#include <private/qwaylandintegration_p.h>\n#include <private/qwaylandwindow_p.h>\n#include \"treelandworker.h\"\n#include \"operation/personalizationworker.h\"\n#include \"operation/model/thememodel.h\"\n\n#define TYPEWALLPAPER           \"wallpaper\"\n#define TYPEGREETERBACKGROUND   \"greeterbackground\"\n#define TYPEWINDOWOPACITY       \"windowopacity\"\n#define TYPEWINDOWRADIUS         \"windowradius\"\n#define TYPEICON                \"icon\"\n#define TYPECURSOR              \"cursor\"\n#define TYPEGTK                 \"gtk\"\n#define TYPEFONTSIZE            \"fontsize\"\n#define TYPEACTIVECOLOR         \"activecolor\"\n#define TYPESTANDARDFONT        \"standardfont\"\n#define TYPEMONOSPACEFONT       \"monospacefont\"\n\nQ_LOGGING_CATEGORY(DdcPersonnalizationTreelandWorker, \"dcc-personalization-treeland-woker\")\n\nTreeLandWorker::TreeLandWorker(PersonalizationModel *model, QObject *parent)\n: PersonalizationWorker(model, parent)\n{\n\n}\n\n#ifdef Enable_Treeland\n\nvoid TreeLandWorker::setWallpaperForMonitor(const QString &screen, const QString &url, bool isDark, PersonalizationExport::WallpaperSetOption option)\n{\n    if (checkWallpaperLockStatus()) {\n        return;\n    }\n\n    if (option == PersonalizationExport::Option_Desktop) {\n        setBackgroundForMonitor(screen, url, isDark);\n    } else if (option == PersonalizationExport::Option_Lock) {\n        setLockBackForMonitor(screen, url, isDark);\n    } else if (option == PersonalizationExport::Option_All) {\n        setBackgroundForMonitor(screen, url, isDark);\n        setLockBackForMonitor(screen, url, isDark);\n    }\n}\n\nvoid TreeLandWorker::setBackgroundForMonitor(const QString &monitorName, const QString &url, bool isDark)\n{\n    setWallpaper(monitorName, url, isDark, PersonalizationWallpaperContext::options_background);\n}\n\nQString TreeLandWorker::getBackgroundForMonitor(const QString &monitorName)\n{\n    if (m_wallpapers.contains(monitorName)) {\n        return m_wallpapers.value(monitorName)->url;\n    }\n    return QString();\n}\n\nvoid TreeLandWorker::setLockBackForMonitor(const QString &monitorName, const QString &url, bool isDark)\n{\n    setWallpaper(monitorName, url, isDark, PersonalizationWallpaperContext::options_lockscreen);\n}\n\nQString TreeLandWorker::getLockBackForMonitor(const QString &monitorName)\n{\n    if (m_lockWallpapers.contains(monitorName)) {\n        return m_lockWallpapers.value(monitorName)->url;\n    }\n    return QString();\n}\n\nvoid TreeLandWorker::setDefault(const QJsonObject &value)\n{\n    const QString key = value.value(\"type\").toString();\n    const QString id = value.value(\"Id\").toString();\n    if (key == \"standardfont\") {\n        setFontName(id);\n    } else if (key == \"monospacefont\") {\n        setMonoFontName(id);\n    }\n    PersonalizationWorker::setDefault(value);\n}\n\nvoid TreeLandWorker::setAppearanceTheme(const QString &id, bool keepAuto)\n{\n    qCDebug(DdcPersonnalizationTreelandWorker) << \"setAppearanceTheme:\" << id;\n    if (!keepAuto) {\n        PersonalizationWorker::setAppearanceTheme(id);\n    }\n    if (id == \".light\" && m_appearanceTheme != PersonalizationAppearanceContext::theme_type::theme_type_light) {\n        m_appearanceTheme = PersonalizationAppearanceContext::theme_type::theme_type_light;\n        m_appearanceContext->set_window_theme_type(PersonalizationAppearanceContext::theme_type::theme_type_light);\n    } else if (id == \".dark\" && m_appearanceTheme != PersonalizationAppearanceContext::theme_type::theme_type_dark) {\n        m_appearanceTheme = PersonalizationAppearanceContext::theme_type::theme_type_dark;\n        m_appearanceContext->set_window_theme_type(PersonalizationAppearanceContext::theme_type::theme_type_dark);\n    } else if (id.isEmpty() && m_appearanceTheme != PersonalizationAppearanceContext::theme_type::theme_type_auto) {\n        m_appearanceTheme = PersonalizationAppearanceContext::theme_type::theme_type_auto;\n        m_appearanceContext->set_window_theme_type(PersonalizationAppearanceContext::theme_type::theme_type_auto);\n    } else {\n        qWarning() << \"error id\" << id;\n    }\n}\n\nvoid TreeLandWorker::setFontName(const QString& fontName)\n{\n    qCDebug(DdcPersonnalizationTreelandWorker) << \"setFontName:\" << fontName;\n    if (m_fontName == fontName) {\n        return;\n    }\n    m_fontName = fontName;\n    m_fontContext->set_font(fontName);\n}\n\nvoid TreeLandWorker::setMonoFontName(const QString& monoFontName)\n{\n    qCDebug(DdcPersonnalizationTreelandWorker) << \"setMonoFontName:\" << monoFontName;\n    if (m_monoFontName == monoFontName) {\n        return;\n    }\n    m_monoFontName = monoFontName;\n    m_fontContext->set_monospace_font(monoFontName);\n}\n\nvoid TreeLandWorker::setIconTheme(const QString &id)\n{\n    qCDebug(DdcPersonnalizationTreelandWorker) << \"setIconTheme:\" << id;\n    if (m_iconTheme == id) {\n        return;\n    }\n    m_iconTheme = id;\n    PersonalizationWorker::setIconTheme(id);\n    m_appearanceContext->set_icon_theme(id);\n}\n\nvoid TreeLandWorker::setCursorTheme(const QString &id)\n{\n    qCDebug(DdcPersonnalizationTreelandWorker) << \"setIconTheme:\" << id;\n    if (m_cursorTheme == id) {\n        return;\n    }\n    m_cursorTheme = id;\n    PersonalizationWorker::setCursorTheme(id);\n    m_cursorContext->set_theme(id);\n    m_cursorContext->commit();\n}\n\nvoid TreeLandWorker::setActiveColor(const QString &hexColor)\n{\n    qCDebug(DdcPersonnalizationTreelandWorker) << \"setActiveColor:\" << hexColor;\n    if (m_activeColor == hexColor) {\n        return;\n    }\n    m_activeColor = hexColor;\n    PersonalizationWorker::setActiveColor(hexColor);\n    m_appearanceContext->set_active_color(hexColor);\n}\n\nvoid TreeLandWorker::setFontSize(const int pixelSize) \n{\n    qCDebug(DdcPersonnalizationTreelandWorker) << \"setFontSize:\" << pixelSize;\n    if (m_fontSize == pixelSize) {\n        return;\n    }\n    m_fontSize = pixelSize;\n    PersonalizationWorker::setFontSize(pixelSize);\n    m_fontContext->set_font_size(pxToPt(pixelSize) * 10);\n}\n\nvoid TreeLandWorker::setTitleBarHeight(int value)\n{\n    qCDebug(DdcPersonnalizationTreelandWorker) << \"setTitleBarHeight:\" << value;\n    if (m_titleBarHeight == value) {\n        return;\n    }\n    m_titleBarHeight = value;\n    PersonalizationWorker::setTitleBarHeight(value);\n    m_appearanceContext->set_window_titlebar_height(value);\n}\n\nvoid TreeLandWorker::setWindowRadius(int value)\n{\n    qCDebug(DdcPersonnalizationTreelandWorker) << \"setWindowRadius:\" << value;\n    if (m_windowRadius == value) {\n        return;\n    }\n    m_windowRadius = value;\n    PersonalizationWorker::setWindowRadius(value);\n    m_appearanceContext->set_round_corner_radius(value);\n}\n\nvoid TreeLandWorker::setOpacity(int value)\n{\n    qCDebug(DdcPersonnalizationTreelandWorker) << \"setOpacity:\" << value;\n    if (m_opacity == value) {\n        return;\n    }\n    m_opacity = value;\n    PersonalizationWorker::setOpacity(value);\n    m_appearanceContext->set_window_opacity(value);\n}\n\nvoid TreeLandWorker::setGlobalTheme(const QString &themeId)\n{\n    qCDebug(DdcPersonnalizationTreelandWorker) << \"setGlobalTheme:\" << themeId;\n    if (m_globalTheme == themeId) {\n        return;\n    }\n    m_globalTheme = themeId;\n    handleGlobalTheme(themeId);\n    PersonalizationWorker::setGlobalTheme(themeId);\n}\n\nvoid TreeLandWorker::onWallpaperUrlsChanged()\n{\n    QVariantMap wallpaperMap;\n\n    for (auto it = m_wallpapers.begin(); it != m_wallpapers.end(); ++it) {\n        wallpaperMap.insert(it.key(), it.value()->url);\n    }\n\n    if (!wallpaperMap.isEmpty()) {\n        m_model->setWallpaperMap(wallpaperMap);\n    }\n}\n\nvoid TreeLandWorker::init()\n{\n    if (m_wallpaperContext.isNull()) {\n        m_wallpaperContext.reset(new PersonalizationWallpaperContext(m_personalizationManager->get_wallpaper_context()));\n        connect(m_wallpaperContext.get(),\n            &PersonalizationWallpaperContext::metadataChanged,\n            this,\n            &TreeLandWorker::wallpaperMetaDataChanged);\n        m_wallpaperContext->get_metadata();\n    }\n    if (m_appearanceContext.isNull()) { \n        m_appearanceContext.reset(new PersonalizationAppearanceContext(m_personalizationManager->get_appearance_context(), this->m_model));\n    }\n    if (m_cursorContext.isNull()) {\n        m_cursorContext.reset(new PersonalizationCursorContext(m_personalizationManager->get_cursor_context(), this->m_model));\n    }\n    if (m_fontContext.isNull()) {\n        m_fontContext.reset(new PersonalizationFontContext(m_personalizationManager->get_font_context(), this->m_model));\n    }\n}\n\nvoid TreeLandWorker::wallpaperMetaDataChanged(const QString &data)\n{\n    QJsonDocument json_doc = QJsonDocument::fromJson(data.toLocal8Bit());\n\n    if (!json_doc.isNull()) {\n        QJsonObject json = json_doc.object();\n\n        for (auto it = json.begin(); it != json.end(); ++it) {\n            QJsonObject context = it.value().toObject();\n            if (context.isEmpty())\n                continue;\n\n            WallpaperMetaData *wallpaper = nullptr;\n            if (m_wallpapers.contains(it.key())) {\n                wallpaper = m_wallpapers.value(it.key());\n            } else {\n                wallpaper = new WallpaperMetaData();\n                m_wallpapers.insert(it.key(), wallpaper);\n            }\n            wallpaper->isDark = context[\"isDark\"].toBool();\n            wallpaper->url = context[\"url\"].toString();\n            wallpaper->monitorName = context[\"monitorName\"].toString();\n        }\n    }\n\n    onWallpaperUrlsChanged();\n}\n\nvoid TreeLandWorker::setWallpaper(const QString &monitorName, const QString &url, bool isDark, uint32_t option)\n{\n    qCDebug(DdcPersonnalizationTreelandWorker) << \"setWallpaper:\" << monitorName << \"url:\" << url << \"isDark:\" << isDark << \"option:\" << option;\n\n    if (checkWallpaperLockStatus()) {\n        return;\n    }\n\n    if (!m_wallpaperContext)\n        return;\n\n    QString dest;\n    if (QFile::exists(url)) {\n        dest = url;\n    } else {\n        QUrl destUrl(url);\n        dest = destUrl.toLocalFile();\n    }\n\n    if (dest.isEmpty())\n        return;\n\n    QFile file(dest);\n    if (file.open(QIODevice::ReadOnly)) {\n\n        QMap<QString, WallpaperMetaData *> wallpapers;\n\n        if (option == PersonalizationWallpaperContext::options_background) {\n            wallpapers = m_wallpapers;\n        } else {\n            wallpapers = m_lockWallpapers;\n        }\n\n        if (!m_wallpapers.contains(monitorName)) {\n            m_wallpapers.insert(monitorName, new WallpaperMetaData);\n        }\n\n        auto meta_data = m_wallpapers.value(monitorName);\n\n        if (meta_data != nullptr) {\n            meta_data->isDark = isDark;\n            meta_data->url = url;\n            meta_data->monitorName = monitorName;\n\n            m_wallpaperContext->set_on(PersonalizationWallpaperContext::options(option));\n            m_wallpaperContext->set_isdark(isDark);\n\n            QMapIterator<QString, WallpaperMetaData *> it(m_wallpapers);\n\n            QJsonObject json;\n            while (it.hasNext()) {\n                it.next();\n                QJsonObject content;\n                content.insert(\"isDark\", it.value()->isDark);\n                content.insert(\"url\", it.value()->url);\n                content.insert(\"monitorName\", it.value()->monitorName);\n\n                json[it.key()] = content;\n            }\n\n            QJsonDocument json_doc(json);\n\n            m_wallpaperContext->set_fd(file.handle(), json_doc.toJson(QJsonDocument::Compact));\n            m_wallpaperContext->set_output(monitorName);\n            m_wallpaperContext->commit();\n\n            if (option == PersonalizationWallpaperContext::options_background) {\n                onWallpaperUrlsChanged();\n            }\n        }\n\n        file.close();\n    }\n}\n\nvoid TreeLandWorker::handleGlobalTheme(const QString &themeId)\n{\n    uint8_t mode = m_appearanceTheme;\n    ThemeModel *globalTheme = m_model->getGlobalThemeModel();\n\n    const QMap<QString, QJsonObject> &itemList = globalTheme->getList();\n    if (itemList.contains(themeId)) {\n        const QString &themePath = itemList.value(themeId).value(\"Path\").toString();\n        KeyFile theme(',');\n        theme.loadFile(themePath + QDir::separator() + QStringLiteral(\"index.theme\"));\n        QString defaultTheme = theme.getStr(\"Deepin Theme\", \"DefaultTheme\");\n\n        if (defaultTheme.isEmpty())\n            return;\n        QString darkTheme = theme.getStr(\"Deepin Theme\", \"DarkTheme\");\n        if (darkTheme.isEmpty())\n            mode = PersonalizationAppearanceContext::theme_type_light;\n\n        switch (mode) {\n        case PersonalizationAppearanceContext::theme_type_light:\n            applyGlobalTheme(theme, defaultTheme, defaultTheme, themePath);\n            break;\n        case PersonalizationAppearanceContext::theme_type_dark: {\n            if (darkTheme.isEmpty())\n                return;\n            applyGlobalTheme(theme, darkTheme, defaultTheme, themePath);\n            break;\n        }\n        case PersonalizationAppearanceContext::theme_type_auto: {\n            applyGlobalTheme(theme, defaultTheme, defaultTheme, themePath);\n            break;\n        }\n        }\n    }\n}\n\nvoid TreeLandWorker::applyGlobalTheme(KeyFile &theme, const QString &themeName, const QString &defaultTheme, const QString &themePath)\n{\n    QString defTheme = (defaultTheme.isEmpty() || defaultTheme == themeName) ? QString() : defaultTheme;\n    // 设置globlaTheme的一项，先从themeName中找对应项，若没有则从defTheme中找对应项，最后调用doSetByType实现功能\n    auto setGlobalItem = [&theme, &themeName, &defTheme, this](const QString &key, const QString &type) {\n        QString themeValue = theme.getStr(themeName, key);\n        if (themeValue.isEmpty() && !defTheme.isEmpty())\n            themeValue = theme.getStr(defTheme, key);\n        if (!themeValue.isEmpty())\n            doSetByType(type, themeValue);\n    };\n    auto setGlobalFile = [&theme, &themeName, &defTheme, &themePath, this](const QString &key, const QString &type) {\n        QString themeValue = theme.getStr(themeName, key);\n        // 如果是用户自定义的桌面壁纸, 切换主题的外观时, 不重新设置壁纸\n        // if (isSkipSetWallpaper(themePath) && type == TYPEWALLPAPER) {\n        //     return;\n        // }\n        if (themeValue.isEmpty() && !defTheme.isEmpty()) {\n            themeValue = theme.getStr(defTheme, key);\n        }\n\n        if (!QFile::exists(themeValue)) {\n            QString newPath = themePath + QDir::separator() + themeValue;\n            bool isExist = QFile::exists(newPath);\n            if (isExist) {\n                themeValue = newPath;\n            }\n        }\n\n        if (!themeValue.isEmpty()) {\n            doSetByType(type, themeValue);\n        }\n    };\n\n    // 如果是用户自定义主题, 切换外观时只单独更新外观选项\n    if (themePath.endsWith(\"custom\")) {\n        return setGlobalItem(\"AppTheme\", TYPEGTK);\n    }\n\n    setGlobalFile(\"Wallpaper\", TYPEWALLPAPER);\n    setGlobalFile(\"LockBackground\", TYPEGREETERBACKGROUND);\n    setGlobalItem(\"IconTheme\", TYPEICON);\n    setGlobalItem(\"CursorTheme\", TYPECURSOR);\n    setGlobalItem(\"AppTheme\", TYPEGTK);\n    setGlobalItem(\"StandardFont\", TYPESTANDARDFONT);\n    setGlobalItem(\"MonospaceFont\", TYPEMONOSPACEFONT);\n    setGlobalItem(\"FontSize\", TYPEFONTSIZE);\n    setGlobalItem(\"ActiveColor\", TYPEACTIVECOLOR);\n    setGlobalItem(\"WindowRadius\", TYPEWINDOWRADIUS);\n    setGlobalItem(\"WindowOpacity\", TYPEWINDOWOPACITY);\n}\n\nvoid TreeLandWorker::doSetByType(const QString &type, const QString &value)\n{\n    if (type == TYPEWALLPAPER) {\n        auto screens = qApp->screens();\n        for (const auto screen : screens) {\n            setWallpaper(screen->name(), value, false, PersonalizationWallpaperContext::options_background);\n        }\n    } else if(type == TYPEICON) {\n        setIconTheme(value);\n    } else if (type == TYPECURSOR) {\n        setCursorTheme(value);\n    } else if (type == TYPESTANDARDFONT) {\n        setFontName(value);\n    } else if (type == TYPEMONOSPACEFONT) {\n        setMonoFontName(value);\n    } else if (type == TYPEFONTSIZE) {\n        double pointSize = value.toDouble();\n        if (pointSize > 0) {\n            setFontSize(ptToPx(pointSize));\n        }\n    } else if (type == TYPEACTIVECOLOR) {\n        setActiveColor(value);\n    } else if (type == TYPEWINDOWRADIUS) {\n        setWindowRadius(value.toInt());\n    } else if (type == TYPEWINDOWOPACITY) {\n        setOpacity(value.toDouble());\n    } \n}\n\nvoid TreeLandWorker::active()\n{\n    if (m_personalizationManager.isNull()) {\n        m_personalizationManager.reset(new PersonalizationManager(this));\n        connect(m_personalizationManager.get(), &PersonalizationManager::activeChanged, this, [this]() {\n            if (m_personalizationManager->isActive()) {\n                init();\n            } else {\n                // clear();\n            }\n        });\n    }\n    PersonalizationWorker::active();\n}\n\nPersonalizationManager::PersonalizationManager(QObject *parent)\n    : QWaylandClientExtensionTemplate<PersonalizationManager>(1)\n{\n    if (QGuiApplication::platformName() == QLatin1String(\"wayland\")) {\n        QtWaylandClient::QWaylandIntegration *waylandIntegration = static_cast<QtWaylandClient::QWaylandIntegration *>(QGuiApplicationPrivate::platformIntegration());\n        if (!waylandIntegration) {\n            qWarning() << \"waylandIntegration is nullptr!!!\";\n            return;\n        }\n        m_waylandDisplay = waylandIntegration->display();\n        if (!m_waylandDisplay) {\n            qWarning() << \"waylandDisplay is nullptr!!!\";\n            return;\n        }\n\n        addListener();\n    }\n    setParent(parent);\n}\n\nvoid PersonalizationManager::addListener()\n{\n    if (!m_waylandDisplay) {\n        qWarning() << \"waylandDisplay is nullptr!, skip addListener\";\n        return;\n    }\n    m_waylandDisplay->addRegistryListener(&handleListenerGlobal, this);\n}\n\nvoid PersonalizationManager::removeListener()\n{\n    if (!m_waylandDisplay) {\n        qWarning() << \"waylandDisplay is nullptr!, skip removeListener\";\n        return;\n    }\n    m_waylandDisplay->removeListener(&handleListenerGlobal, this);\n}\n\nvoid PersonalizationManager::handleListenerGlobal(void *data, wl_registry *registry, uint32_t id, const QString &interface, uint32_t version)\n{\n    if (interface == treeland_personalization_manager_v1_interface.name) {\n        PersonalizationManager *integration = static_cast<PersonalizationManager *>(data);\n        if (!integration) {\n            qWarning() << \"integration is nullptr!!!\";\n            return;\n        }\n\n        integration->init(registry, id, version);\n    }\n}\n\nPersonalizationAppearanceContext::PersonalizationAppearanceContext(struct ::treeland_personalization_appearance_context_v1 *context, PersonalizationModel *worker)\n    : QWaylandClientExtensionTemplate<PersonalizationAppearanceContext>(1)\n    , QtWayland::treeland_personalization_appearance_context_v1(context)\n    , m_model(worker)\n{\n    get_round_corner_radius();\n    get_icon_theme();\n    get_active_color();\n    get_window_opacity();\n    get_window_theme_type();\n    get_window_titlebar_height();\n}\n\nvoid PersonalizationAppearanceContext::treeland_personalization_appearance_context_v1_round_corner_radius(int32_t radius)\n{\n    m_model->setWindowRadius(radius);\n}\n\nvoid PersonalizationAppearanceContext::treeland_personalization_appearance_context_v1_icon_theme(const QString &)\n{\n\n}\n\nvoid PersonalizationAppearanceContext::treeland_personalization_appearance_context_v1_active_color(const QString &active_color)\n{\n    m_model->setActiveColor(active_color);\n}\n\nvoid PersonalizationAppearanceContext::treeland_personalization_appearance_context_v1_window_opacity(uint32_t opacity)\n{\n    Q_UNUSED(opacity)\n    // Using the value of the appearance module, this is an invalid value\n    // m_model->setOpacity(opacity / 100.0);\n}\n\nvoid PersonalizationAppearanceContext::treeland_personalization_appearance_context_v1_window_theme_type(uint32_t)\n{\n    // Using the value of the appearance module, this is an invalid value\n}\n\nvoid PersonalizationAppearanceContext::treeland_personalization_appearance_context_v1_window_titlebar_height(uint32_t height)\n{\n    m_model->setTitleBarHeight(height);\n}\n\nPersonalizationWallpaperContext::PersonalizationWallpaperContext(struct ::treeland_personalization_wallpaper_context_v1 *context)\n    : QWaylandClientExtensionTemplate<PersonalizationWallpaperContext>(1)\n    , QtWayland::treeland_personalization_wallpaper_context_v1(context)\n{\n\n}\n\nvoid PersonalizationWallpaperContext::treeland_personalization_wallpaper_context_v1_metadata(\n    const QString &metadata)\n{\n    Q_EMIT metadataChanged(metadata);\n}\n\nPersonalizationCursorContext::PersonalizationCursorContext(struct ::treeland_personalization_cursor_context_v1 *context, PersonalizationModel *model)\n    : QWaylandClientExtensionTemplate<PersonalizationCursorContext>(1)\n    , QtWayland::treeland_personalization_cursor_context_v1(context)\n    , m_model(model)\n{\n    get_theme();\n}\n\nvoid PersonalizationCursorContext::treeland_personalization_cursor_context_v1_theme(const QString &)\n{\n\n}\n\nPersonalizationFontContext::PersonalizationFontContext(struct ::treeland_personalization_font_context_v1 *context, PersonalizationModel *model)\n    : QWaylandClientExtensionTemplate<PersonalizationFontContext>(1)\n    , QtWayland::treeland_personalization_font_context_v1(context)\n    , m_model(model)\n{\n    get_font();\n    get_monospace_font();\n    get_font_size();\n}\n\nvoid PersonalizationFontContext::treeland_personalization_font_context_v1_font(const QString &)\n{\n\n}\n\nvoid PersonalizationFontContext::treeland_personalization_font_context_v1_monospace_font(const QString &)\n{\n\n}\n\nvoid PersonalizationFontContext::treeland_personalization_font_context_v1_font_size(uint32_t)\n{\n\n}\n\n#endif"
  },
  {
    "path": "src/plugin-personalization/operation/treelandworker.h",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QtWaylandClient/QWaylandClientExtension>\n#include <QWaylandClientExtension>\n#include <dtkgui_global.h>\n\n#include <private/qwaylanddisplay_p.h>\n\n#include \"operation/personalizationmodel.h\"\n#include \"personalizationworker.h\"\n\n#ifdef Enable_Treeland\n#include \"wayland-treeland-personalization-manager-v1-client-protocol.h\"\n#include \"qwayland-treeland-personalization-manager-v1.h\"\n#include \"keyfile.h\"\n#endif\n\nclass PersonalizationManager;\nclass PersonalizationAppearanceContext;\nclass PersonalizationWallpaperContext;\nclass PersonalizationCursorContext;\nclass PersonalizationFontContext;\n\nclass TreeLandWorker : public PersonalizationWorker\n{\nQ_OBJECT\npublic:\n    struct WallpaperMetaData\n    {\n        bool isDark;\n        QString url;\n        QString monitorName;\n    };\n\n    TreeLandWorker(PersonalizationModel *model, QObject *parent = nullptr);\n\n#ifdef Enable_Treeland\n    void setWallpaperForMonitor(const QString &screen, const QString &url, bool isDark, PersonalizationExport::WallpaperSetOption option) override;\n    void setBackgroundForMonitor(const QString &monitorName, const QString &url, bool isDark) override;\n    QString getBackgroundForMonitor(const QString &monitorName);\n\n    void setLockBackForMonitor(const QString &monitorName, const QString &url, bool isDark) override;\n    QString getLockBackForMonitor(const QString &monitorName);\n\n    void setDefault(const QJsonObject &value) override;\n\n    void setAppearanceTheme(const QString &id, bool keepAuto = false) override;\n    uint32_t appearanceTheme() const { return m_appearanceTheme; }\n\n    void setFontName(const QString& fontName);\n    QString fontName() const { return m_fontName; }\n\n    void setMonoFontName(const QString& monoFontName);\n    QString monoFontName() const { return m_monoFontName; }\n\n    void setIconTheme(const QString &id) override;\n    QString iconTheme() const { return m_iconTheme; }\n\n    void setCursorTheme(const QString &id) override;\n    QString cursorTheme() const { return m_cursorTheme; }\n\n    void setActiveColor(const QString &hexColor) override;\n    QString activeColor() const { return m_activeColor; }\n\n    void setFontSize(const int pixelSize) override;\n    int fontSize() const { return m_fontSize; }\n\n    void setTitleBarHeight(int value) override;\n    int titleBarHeight() const { return m_titleBarHeight; }\n\n    void setWindowRadius(int radius) override;\n    int windowRadius() const { return m_windowRadius; }\n\n    void setOpacity(const int value) override;\n    int opacity() const { return m_opacity; }\n\n    void setGlobalTheme(const QString &themeId) override;\n    QString globalTheme()const { return m_globalTheme;}\n\n    void active() override;\n    void init();\n\npublic slots:\n    void onWallpaperUrlsChanged() override;\n\nsignals:\n    void wallpaperChanged();\n    void ApppearanceThemeChanged(const QString &id);\n    void IconThemeChanged(const QString &id);\n    void CursorThemeChanged(const QString &id);\n\nprivate:\n    void wallpaperMetaDataChanged(const QString &data);\n    void setWallpaper(const QString &monitorName, const QString &url, bool isDark, uint32_t type);\n    void handleGlobalTheme(const QString &themeId);\n    void applyGlobalTheme(KeyFile &theme, const QString &themeName, const QString &defaultTheme, const QString &themePath);\n    void doSetByType(const QString &type, const QString &value);\n\nprivate:\n    QScopedPointer<PersonalizationManager> m_personalizationManager;\n    QScopedPointer<PersonalizationAppearanceContext> m_appearanceContext;\n    QScopedPointer<PersonalizationWallpaperContext> m_wallpaperContext;\n    QScopedPointer<PersonalizationCursorContext> m_cursorContext;\n    QScopedPointer<PersonalizationFontContext> m_fontContext;\n\n    QMap<QString, WallpaperMetaData *> m_wallpapers;\n    QMap<QString, WallpaperMetaData *> m_lockWallpapers;\n    uint8_t m_appearanceTheme;\n    QString m_fontName;\n    QString m_monoFontName;\n    QString m_iconTheme;\n    QString m_cursorTheme;\n    QString m_activeColor;\n    int m_fontSize;\n    int m_titleBarHeight;\n    int m_windowRadius;\n    int m_opacity;\n    QString m_globalTheme;\n    bool m_compactDisplay;\n#endif\n};\n\n#ifdef Enable_Treeland\n\nclass PersonalizationManager: public QWaylandClientExtensionTemplate<PersonalizationManager>,\n                              public QtWayland::treeland_personalization_manager_v1\n{\n    Q_OBJECT\npublic:\n    explicit PersonalizationManager(QObject *parent = nullptr);\n\nprivate:\n    void addListener();\n    void removeListener();\n\n    static void handleListenerGlobal(void *data, wl_registry *registry, uint32_t id, const QString &interface, uint32_t version);\n\nprivate:\n    QtWaylandClient::QWaylandDisplay *m_waylandDisplay = nullptr;\n};\n\nclass PersonalizationAppearanceContext : public QWaylandClientExtensionTemplate<PersonalizationAppearanceContext>,\n                                         public QtWayland::treeland_personalization_appearance_context_v1\n{\n    Q_OBJECT\n\npublic:\n    explicit PersonalizationAppearanceContext(struct ::treeland_personalization_appearance_context_v1 *context, PersonalizationModel *model);\n\nprotected:\n    void treeland_personalization_appearance_context_v1_round_corner_radius(int32_t radius) override;\n    void treeland_personalization_appearance_context_v1_icon_theme(const QString &theme_name) override;\n    void treeland_personalization_appearance_context_v1_active_color(const QString &active_color) override;\n    void treeland_personalization_appearance_context_v1_window_opacity(uint32_t opacity) override;\n    void treeland_personalization_appearance_context_v1_window_theme_type(uint32_t type) override;\n    void treeland_personalization_appearance_context_v1_window_titlebar_height(uint32_t height) override;\nprivate:\n    PersonalizationModel *m_model;\n};\n\nclass PersonalizationWallpaperContext : public QWaylandClientExtensionTemplate<PersonalizationWallpaperContext>,\n                                        public QtWayland::treeland_personalization_wallpaper_context_v1\n{\n    Q_OBJECT\npublic:\n    explicit PersonalizationWallpaperContext(struct ::treeland_personalization_wallpaper_context_v1 *context);\n\nQ_SIGNALS:\n    void metadataChanged(const QString &meta);\n\nprotected:\n    void treeland_personalization_wallpaper_context_v1_metadata(const QString &metadata) override;\n};\n\nclass PersonalizationCursorContext : public QWaylandClientExtensionTemplate<PersonalizationCursorContext>,\n                                     public QtWayland::treeland_personalization_cursor_context_v1\n{\n    Q_OBJECT\npublic:\n    explicit PersonalizationCursorContext(struct ::treeland_personalization_cursor_context_v1 *context, PersonalizationModel *model);\n\nprotected:\n    void treeland_personalization_cursor_context_v1_theme(const QString &name) override;\n\nprivate:\n    PersonalizationModel *m_model;\n};\n\nclass PersonalizationFontContext : public QWaylandClientExtensionTemplate<PersonalizationFontContext>,\n                                   public QtWayland::treeland_personalization_font_context_v1\n{\n    Q_OBJECT\npublic:\n    explicit PersonalizationFontContext(struct ::treeland_personalization_font_context_v1 *context, PersonalizationModel *model);\n\nprotected:\n    void treeland_personalization_font_context_v1_font(const QString &font_name) override;\n    void treeland_personalization_font_context_v1_monospace_font(const QString &font_name) override;\n    void treeland_personalization_font_context_v1_font_size(uint32_t font_size) override;\n\nprivate:\n    PersonalizationModel *m_model;\n};\n#endif"
  },
  {
    "path": "src/plugin-personalization/operation/utils.hpp",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef UTILS_H\n#define UTILS_H\n\n#include <QObject>\n#include <QUrl>\n#include <QBuffer>\n#include <QImage>\n#include <QPixmap>\n\nconst int RENDER_DPI = 72;\nconst double DPI = 96;\nconst int THUMBNAIL_ICON_WIDTH = 84;\nconst int THUMBNAIL_ICON_HEIGHT = 54;\n\n#define DEEPIN_CUSTOM_SCREENSAVER \"deepin-custom-screensaver\"\n\ninline QString getGlobalThemeId(const QString &themeId, QString &mode)\n{\n    QString id = themeId;\n    mode.clear();\n    if (id.endsWith(\".light\")) {\n        id.chop(6);\n        mode = \".light\";\n    } else if (id.endsWith(\".dark\")) {\n        id.chop(5);\n        mode = \".dark\";\n    }\n    return id;\n}\n\ninline double ptToPx(double pt)\n{\n    double px = pt / RENDER_DPI * DPI + 0.5;\n    return px;\n}\n\ninline double pxToPt(double px)\n{\n    double pt = px * RENDER_DPI / DPI;\n    return pt;\n}\n\ninline bool isURI(QString uri)\n{\n    if (uri.indexOf(\"://\") != -1)\n        return true;\n\n    return false;\n}\n\n\ninline QString deCodeURI(QString uri)\n{\n    QString path;\n    if (isURI(uri)) {\n        QUrl Url(uri);\n        path = Url.path();\n    } else {\n        path = uri;\n    }\n\n    return path;\n}\n\ninline QString enCodeURI(QString content, QString scheme)\n{\n    QString path;\n    if (isURI(content)) {\n        path = deCodeURI(content);\n    } else {\n        path = content;\n    }\n    return scheme + path;\n}\n\ninline static QString currentUserName()\n{\n    static QString cutName = qgetenv(\"USER\");\n    return cutName;\n}\n\n#endif // UTILS_H\n"
  },
  {
    "path": "src/plugin-personalization/operation/wallpaperprovider.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include <QThread>\n#include <QScreen>\n#include <QImageReader>\n#include <QPainter>\n#include <QJsonDocument>\n#include <QJsonArray>\n#include <QImage>\n#include <QLoggingCategory>\n#include <QUrl>\n#include <QDir>\n#include <QHash>\n#include <QtConcurrent/QtConcurrent>\n#include <algorithm>\n\n#include \"wallpaperprovider.h\"\n#include \"operation/personalizationdbusproxy.h\"\n#include \"utils.hpp\"\n\nQ_LOGGING_CATEGORY(DdcPersonalizationWallpaperWorker, \"dcc-personalization-wallpaper-worker\")\n\n#define SYS_WALLPAPER_DIR \"/usr/share/wallpapers/deepin\"\n#define SYS_SOLIDE_WALLPAPER_DIR \"/usr/share/wallpapers/deepin-solidwallpapers\"\n#define CUSTOM_SOLIDE_WALLPAPER_DIR \"/var/cache/wallpapers/custom-solidwallpapers\"\n#define CUSTOM_WALLPAPER_DIR \"/var/cache/wallpapers/custom-wallpapers\"\n\n#define CHECK_RETURN_RUNNING \\\n    if (Q_UNLIKELY(!m_running.load(std::memory_order_acquire))) \\\n        return;\n\n// Solid color sort order: 从浅到深、从暖到冷 (light to dark, warm to cold)\nstatic int solidColorSortOrder(const QString &path)\n{\n    const QString fileName = QFileInfo(QUrl(path).toLocalFile().isEmpty() ? path : QUrl(path).toLocalFile()).baseName().toLower();\n    // Exact filename stem matching, ordered light-to-dark then warm-to-cold\n    const QList<QString> order = {\n        \"mono-orange\",\n        \"mono-dark-red\",\n        \"mono-orange-red\",\n        \"mono-rose-red\",\n        \"mono-light-green\",\n        \"mono-blue\",\n        \"mono-blue-green\",\n        \"mono-dark-green\",\n        \"mono-blue-purple\",\n        \"mono-black\"\n    };\n    int idx = order.indexOf(fileName);\n    return (idx >= 0) ? idx : order.size();\n}\n\nWallpaperProvider::WallpaperProvider(PersonalizationDBusProxy *PersonalizationDBusProxy, PersonalizationModel *model, QObject *parent) : QObject(parent)\n{\n    m_workThread = new QThread(this);\n\n    m_personalizationProxy = PersonalizationDBusProxy;\n    m_worker = new InterfaceWorker(PersonalizationDBusProxy);\n    m_model = model;\n    m_worker->moveToThread(m_workThread);\n    m_workThread->start();\n\n    connect(m_worker, &InterfaceWorker::pushBackground, this, &WallpaperProvider::setWallpaper, Qt::QueuedConnection);\n    connect(m_worker, &InterfaceWorker::pushOneBackground, this, &WallpaperProvider::pushWallpaper, Qt::QueuedConnection);\n    connect(m_worker, &InterfaceWorker::listFinished, this, &WallpaperProvider::fetchFinish);\n\n    connect(m_personalizationProxy, &PersonalizationDBusProxy::WallpaperChanged, this, &WallpaperProvider::onWallpaperChangedFromDaemon);\n}\n\nWallpaperProvider::~WallpaperProvider()\n{\n    m_worker->terminate();\n    m_workThread->quit();\n    m_workThread->wait(5000);\n\n    if (m_workThread->isRunning()) {\n        m_workThread->terminate();\n    }\n\n    delete m_worker;\n    m_worker = nullptr;\n}\n\nvoid WallpaperProvider::fetchData(WallpaperType type)\n{\n\n    QMetaObject::invokeMethod(m_worker, \"startListBackground\", Qt::QueuedConnection, Q_ARG(WallpaperType, type));\n}\n\nbool WallpaperProvider::isColor(const QString &path)\n{\n    // these dirs save solid color wallpapers.\n    return path.startsWith(CUSTOM_SOLIDE_WALLPAPER_DIR)\n            || path.startsWith(SYS_SOLIDE_WALLPAPER_DIR);\n}\n\nvoid WallpaperProvider::setWallpaper(const QList<WallpaperItemPtr> &items, WallpaperType type)\n{\n    qCDebug(DdcPersonalizationWallpaperWorker) << \"get wallpaper list\" << items.size() << \"type:\" << type;\n\n    switch (type) {\n        case WallpaperType::Wallpaper_Sys:\n            m_wallpaperList[WallpaperType::Wallpaper_Sys] = items;\n            m_model->getSysWallpaperModel()->resetData(items);\n            break;\n        case WallpaperType::Wallpaper_Custom:\n            m_wallpaperList[WallpaperType::Wallpaper_Custom] = items;\n            m_model->getCustomWallpaperModel()->resetData(items);\n            break;\n        case WallpaperType::Wallpaper_Solid:\n            m_wallpaperList[WallpaperType::Wallpaper_Solid] = items;\n            m_model->getSolidWallpaperModel()->resetData(items);\n            break;\n        default:\n            break;\n    }\n}\n\nvoid WallpaperProvider::pushWallpaper(WallpaperItemPtr item, WallpaperType type)\n{\n    qCDebug(DdcPersonalizationWallpaperWorker) << \"push wallpaper\" << item->url<< \"type:\" << type;\n\n    switch (type) {\n        case WallpaperType::Wallpaper_Sys:\n            m_wallpaperList[WallpaperType::Wallpaper_Sys].append(item);\n            m_model->getSysWallpaperModel()->appendItem(item);\n            break;\n        case WallpaperType::Wallpaper_Custom:\n            m_wallpaperList[WallpaperType::Wallpaper_Custom].append(item);\n            m_model->getCustomWallpaperModel()->appendItem(item);\n            break;\n        case WallpaperType::Wallpaper_Solid:\n            m_wallpaperList[WallpaperType::Wallpaper_Solid].append(item);\n            m_model->getSolidWallpaperModel()->appendItem(item);\n            break;\n        default:\n            break;\n    }\n    emit fetchFinish();\n}\n\nWallpaperType WallpaperProvider::getWallpaperType(const QString &path)\n{\n    for(auto iter = m_wallpaperList.begin(); iter != m_wallpaperList.end(); ++iter) {\n        for (const auto &item : iter.value()) {\n            if (item->url == path) {\n                return iter.key();\n            }\n        }\n    }\n\n    if (path.startsWith(SYS_WALLPAPER_DIR)) {\n        return WallpaperType::Wallpaper_Sys;\n    } else if (path.startsWith(CUSTOM_WALLPAPER_DIR)) {\n        return WallpaperType::Wallpaper_Custom;\n    } else if (path.startsWith(CUSTOM_SOLIDE_WALLPAPER_DIR)) {\n        return WallpaperType::Wallpaper_Solid;\n    } else if (path.startsWith(SYS_SOLIDE_WALLPAPER_DIR)) {\n        return WallpaperType::Wallpaper_Solid;\n    }\n\n    return WallpaperType::Wallpaper_Unknown;\n}\n\nvoid WallpaperProvider::removeWallpaper(const QString &url)\n{\n    qCDebug(DdcPersonalizationWallpaperWorker) << \"remove wallpaper\" << url;\n\n    auto type = getWallpaperType(url);\n\n    WallpaperItemPtr removeItem = nullptr;\n    for(auto iter = m_wallpaperList.begin(); iter!= m_wallpaperList.end(); ++iter) {\n        for (const auto &item : iter.value()) {\n            if (item->url == url) {\n                removeItem = item;\n                break;\n            }\n        }\n    }\n\n    if (!removeItem) {\n        return;\n    }\n\n    switch (type) {\n        case WallpaperType::Wallpaper_Sys:\n            m_model->getSysWallpaperModel()->removeItem(removeItem);\n            m_wallpaperList[WallpaperType::Wallpaper_Sys].removeAll(removeItem);\n            break;\n        case WallpaperType::Wallpaper_Custom:\n            m_model->getCustomWallpaperModel()->removeItem(removeItem);\n            m_wallpaperList[WallpaperType::Wallpaper_Custom].removeAll(removeItem);\n            break;\n        case WallpaperType::Wallpaper_Solid:\n            m_model->getSolidWallpaperModel()->removeItem(removeItem);\n            m_wallpaperList[WallpaperType::Wallpaper_Solid].removeAll(removeItem);\n            break;\n        default:\n            break;\n    }\n}\n\nvoid WallpaperProvider::addWallpaper(const QString &url)\n{\n    qCDebug(DdcPersonalizationWallpaperWorker) << \"add wallpaper\" << url;\n\n    const auto path = deCodeURI(url);\n    WallpaperType type = getWallpaperType(path);\n    if (type == WallpaperType::Wallpaper_Unknown) {\n        qCWarning(DdcPersonalizationWallpaperWorker) << \"add wallpaper type unknown\" << path;\n        return;\n    }\n    QMetaObject::invokeMethod(m_worker, \"startListOne\", Qt::QueuedConnection, Q_ARG(QString, path), Q_ARG(WallpaperType, type));\n}\n\nvoid WallpaperProvider::onWallpaperChangedFromDaemon(const QString &user, uint mode, const QStringList &paths)\n{\n    if (user != currentUserName()) {\n        return;\n    }\n\n    if (mode == 0) { // remove wallpaper\n        for (const auto &path : paths) {\n            removeWallpaper(enCodeURI(path, \"file://\"));\n        }\n    } else if (mode == 1) { // add wallpaper\n        for (const auto &path : paths) {\n            addWallpaper(enCodeURI(path, \"file://\"));\n        }\n    }\n}\n\nWallpaperItemPtr InterfaceWorker::createItem(const QString &path, bool del, WallpaperType type)\n{\n    Q_UNUSED(type)\n    if (path.isEmpty())\n        return {};\n\n    QUrl url(path);\n\n    QFileInfo fileInfo;\n\n    if (isURI(path)) {\n        fileInfo = QFileInfo(url.toLocalFile());\n    } else {\n        url = QUrl::fromLocalFile(path);\n        fileInfo = QFileInfo(path);\n    }\n    const QString &thumbnail = url.toString();\n    \n    auto ptr =  WallpaperItemPtr(new WallpaperItem{url.toString(), url.toString()\n        , thumbnail, del, fileInfo.lastModified().toMSecsSinceEpoch(), false, false});\n\n    return ptr;\n}\n\nInterfaceWorker::InterfaceWorker(PersonalizationDBusProxy *proxy, QObject *parent)\n    : QObject(parent)\n    , m_proxy(proxy)\n    , m_running(true)\n{\n\n}\n\nvoid InterfaceWorker::terminate()\n{\n    m_running.store(false, std::memory_order_release);\n}\n\nvoid InterfaceWorker::startListBackground(WallpaperType type)\n{\n    m_running.store(true, std::memory_order_release);\n    CHECK_RETURN_RUNNING\n    switch (type) {\n        case WallpaperType::Wallpaper_all:\n            getCustomBackground();\n            getSysBackground();\n            getSolodBackground();\n            break;\n        case WallpaperType::Wallpaper_Sys:\n            getSysBackground();\n            break;\n        case WallpaperType::Wallpaper_Custom:\n            getCustomBackground();\n            break;\n        case WallpaperType::Wallpaper_Solid:\n            getSolodBackground();\n            break;\n        default:\n            break;\n    }\n    Q_EMIT listFinished();\n}\n\nvoid InterfaceWorker::startListOne(const QString &path, WallpaperType type)\n{\n    CHECK_RETURN_RUNNING\n    bool canDel = type == WallpaperType::Wallpaper_Custom;\n    if (type == WallpaperType::Wallpaper_Solid) {\n        canDel = path.startsWith(CUSTOM_SOLIDE_WALLPAPER_DIR);\n    }\n\n    WallpaperItemPtr ptr = createItem(path, canDel, type);\n    if (ptr) {\n        Q_EMIT pushOneBackground(ptr, type);\n    }\n}\n\nvoid InterfaceWorker::getSysBackground()\n{\n    CHECK_RETURN_RUNNING\n    QList<WallpaperItemPtr> wallpapers;\n    auto list = fetchWallpaper(SYS_WALLPAPER_DIR);\n    for (const auto &path : list) {\n        CHECK_RETURN_RUNNING\n        WallpaperItemPtr ptr = createItem(path, false, WallpaperType::Wallpaper_Sys);\n        if (ptr)\n            wallpapers.append(ptr);\n    }\n    Q_EMIT pushBackground(wallpapers, WallpaperType::Wallpaper_Sys);\n}\n\nvoid InterfaceWorker::getCustomBackground()\n{\n    CHECK_RETURN_RUNNING\n    QList<WallpaperItemPtr> wallpapers;\n    auto customList = m_proxy->getCustomWallpaper(currentUserName());\n    for (const auto &path : customList) {\n        CHECK_RETURN_RUNNING\n        if (WallpaperProvider::isColor(path)) {\n            continue;\n        }\n        WallpaperItemPtr ptr = createItem(path, true, WallpaperType::Wallpaper_Custom);\n        if (ptr)\n            wallpapers.append(ptr);\n    }\n    Q_EMIT pushBackground(wallpapers, WallpaperType::Wallpaper_Custom);\n}\n\nvoid InterfaceWorker::getSolodBackground()\n{\n    CHECK_RETURN_RUNNING\n    QList<WallpaperItemPtr> wallpapers;\n    auto customList = m_proxy->getCustomWallpaper(currentUserName());\n    for (const auto &path : customList) {\n        CHECK_RETURN_RUNNING\n        if (!WallpaperProvider::isColor(path)) {\n            continue;\n        }\n\n        WallpaperItemPtr ptr = createItem(path, true, WallpaperType::Wallpaper_Solid);\n        if (ptr)\n            wallpapers.append(ptr);\n    }\n    auto list = fetchWallpaper(SYS_SOLIDE_WALLPAPER_DIR);\n    for (const auto &path : list) {\n        WallpaperItemPtr ptr = createItem(path, false, WallpaperType::Wallpaper_Solid);\n        if (ptr)\n            wallpapers.append(ptr);\n    }\n    // Sort: 从浅到深、从暖到冷 (light to dark, warm to cold)\n    std::stable_sort(wallpapers.begin(), wallpapers.end(), [](const WallpaperItemPtr &a, const WallpaperItemPtr &b) {\n        return solidColorSortOrder(a->url) < solidColorSortOrder(b->url);\n    });\n    for (int i = 0; i < wallpapers.size(); ++i) {\n        wallpapers[i]->lastModifiedTime = wallpapers.size() - i;\n    }\n    Q_EMIT pushBackground(wallpapers, WallpaperType::Wallpaper_Solid);\n}\n\nQStringList InterfaceWorker::fetchWallpaper(const QString &dir)\n{\n    QStringList walls;\n\n    QDir qdir(dir);\n    if (!qdir.exists())\n        return walls;\n\n    QFileInfoList fileInfoList = qdir.entryInfoList(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files);\n    for (auto file : fileInfoList) {\n        QImageReader reader(file.filePath());\n        if (!reader.canRead()) {\n            continue;\n        }\n        walls.append(file.filePath());\n    }\n\n    return walls;\n}\n"
  },
  {
    "path": "src/plugin-personalization/operation/wallpaperprovider.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n\n#ifndef WALLPAPERPROVIDER_H\n#define WALLPAPERPROVIDER_H\n\n#include <QObject>\n#include <QPixmap>\n#include <QHash>\n\n#include \"operation/personalizationdbusproxy.h\"\n#include \"personalizationmodel.h\"\n#include \"model/wallpapermodel.h\"\n\nenum WallpaperType{\n    Wallpaper_all = 0,\n    Wallpaper_Sys,\n    Wallpaper_Custom,\n    Wallpaper_Solid,\n    Wallpaper_Unknown\n};\n\nclass InterfaceWorker : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit InterfaceWorker(PersonalizationDBusProxy *proxy, QObject *parent = nullptr);\n    void terminate();\n\n    void getSysBackground();\n    void getCustomBackground();\n    void getSolodBackground();\n    QStringList fetchWallpaper(const QString &dir);\n\nsignals:\n    void pushBackground(const QList<WallpaperItemPtr> &items, WallpaperType type = WallpaperType::Wallpaper_Sys);\n    void pushOneBackground(const WallpaperItemPtr items, WallpaperType type = WallpaperType::Wallpaper_Sys);\n    void listFinished();\npublic slots:\n    void startListBackground(WallpaperType type = WallpaperType::Wallpaper_all);\n    void startListOne(const QString &path, WallpaperType type = WallpaperType::Wallpaper_all);\nprivate:\n    WallpaperItemPtr createItem(const QString &path, bool del, WallpaperType type);\nprivate:\n    PersonalizationDBusProxy *m_proxy = nullptr;\n    std::atomic_bool m_running = false;\n};\n\nclass WallpaperProvider : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit WallpaperProvider(PersonalizationDBusProxy *personalizationProxy, PersonalizationModel *model, QObject *parent = nullptr);\n    ~WallpaperProvider();\n    void fetchData(WallpaperType type = WallpaperType::Wallpaper_all);\n    static bool isColor(const QString &path);\n    WallpaperType getWallpaperType(const QString &path);\n    void removeWallpaper(const QString &url);\n    void addWallpaper(const QString &url);\n\nsignals:\n    void fetchFinish();\n\nprivate slots:\n    void setWallpaper(const QList<WallpaperItemPtr> &items, WallpaperType type = WallpaperType::Wallpaper_Sys);\n    void pushWallpaper(WallpaperItemPtr item, WallpaperType type = WallpaperType::Wallpaper_Sys);\n    void onWallpaperChangedFromDaemon(const QString &user, uint mode, const QStringList &paths);\n\nprivate:\n    QThread *m_workThread = nullptr;\n    InterfaceWorker *m_worker = nullptr;\n    PersonalizationModel *m_model = nullptr;\n    PersonalizationDBusProxy *m_personalizationProxy = nullptr;\n\n    QHash<WallpaperType, QList<WallpaperItemPtr>> m_wallpaperList;\n};\n\n#endif // WALLPAPERPROVIDER_H\n"
  },
  {
    "path": "src/plugin-personalization/operation/x11worker.cpp",
    "content": "//SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"x11worker.h\"\n#include \"operation/personalizationworker.h\"\n\n#include <QLoggingCategory>\n#include <QTimer>\n#include <DConfig>\n\nDCORE_USE_NAMESPACE\nQ_LOGGING_CATEGORY(DdcPersonnalizationX11Worker, \"dcc-personalization-X11-woker\")\n\nconstexpr auto ORG_KDE_KWIN_DECORATION = \"org.kde.kwin.decoration\";\nconstexpr auto ORG_KDE_KWIN_DECORATION_TITLEBAR = \"org.kde.kwin.decoration.titlebar\";\nconstexpr auto TITLE_BAR_HEIGHT_KEY = \"titlebarHeight\";\nconstexpr auto DEFAULT_TITLE_BAR_HEIGHT_KEY = \"defaultTitlebarHeight\";\nconstexpr auto WINDOW_EFFECT_TYPE_KEY = \"user_type\";\nconstexpr auto ORG_KDE_KWIN = \"org.kde.kwin\";\nconstexpr auto ORG_KDE_KWIN_COMPOSITING = \"org.kde.kwin.compositing\";\nconstexpr auto EffectMoveWindowArg = \"kwin4_effect_translucency\";\nconstexpr auto EffectMiniLampArg = \"magiclamp\";\nconstexpr auto EffectMiniScaleArg = \"kwin4_effect_scale\";\n\nX11Worker::X11Worker(PersonalizationModel *model, QObject *parent)\n    : PersonalizationWorker(model, parent)\n    , m_kwinTitleBarConfig(DConfig::create(ORG_KDE_KWIN_DECORATION, ORG_KDE_KWIN_DECORATION_TITLEBAR, \"\", this))\n    , m_kwinCompositingConfig(DConfig::create(ORG_KDE_KWIN, ORG_KDE_KWIN_COMPOSITING, \"\", this))\n\n{\n    connect(m_kwinTitleBarConfig, &DConfig::valueChanged, this, &X11Worker::onKWinConfigChanged);\n    connect(m_kwinCompositingConfig, &DConfig::valueChanged, this, &X11Worker::onKWinConfigChanged);\n}\n\nvoid X11Worker::active()\n{\n    PersonalizationWorker::active();\n    onTitleHeightChanged();\n    int windowEffectType = m_kwinCompositingConfig->value(WINDOW_EFFECT_TYPE_KEY).toInt();\n    m_model->setWindowEffectType(windowEffectType);\n    m_personalizationDBusProxy->isEffectLoaded(EffectMiniLampArg, this, SLOT(onMiniEffectChanged(bool)));\n    m_model->setIsMoveWindow(m_personalizationDBusProxy->isEffectLoaded(EffectMoveWindowArg));\n\n    QStringList supportEffects;\n    if (m_personalizationDBusProxy->isEffectSupported(EffectMiniLampArg)) {\n        supportEffects.append(EffectMiniLampArg);\n    }\n    if (m_personalizationDBusProxy->isEffectSupported(EffectMiniScaleArg)) {\n        supportEffects.append(EffectMiniScaleArg);\n    }\n    if (m_personalizationDBusProxy->isEffectSupported(EffectMoveWindowArg)) {\n        supportEffects.append(EffectMoveWindowArg);\n    }\n    m_model->setSupportEffects(supportEffects);\n}\n\nvoid X11Worker::setTitleBarHeight(int value)\n{\n    if (m_kwinTitleBarConfig->value(TITLE_BAR_HEIGHT_KEY).toInt() != value) {\n        m_kwinTitleBarConfig->setValue(TITLE_BAR_HEIGHT_KEY, value);\n    }\n}\n\nvoid X11Worker::setWindowEffect(int value)\n{\n    qCDebug(DdcPersonnalizationX11Worker) << \"windowSwitchWM switch to: \" << value;\n    m_kwinCompositingConfig->setValue(WINDOW_EFFECT_TYPE_KEY, value);\n}\n\nvoid X11Worker::onKWinConfigChanged(const QString &key)\n{\n    if (key == TITLE_BAR_HEIGHT_KEY) {\n        onTitleHeightChanged();\n    } else if (key == WINDOW_EFFECT_TYPE_KEY) {\n        int value = m_kwinCompositingConfig->value(key).toInt();\n        m_model->setWindowEffectType(value);\n    }\n}\n\nvoid X11Worker::onTitleHeightChanged()\n{\n    int titleBarHight = m_kwinTitleBarConfig->value(TITLE_BAR_HEIGHT_KEY).toInt();\n    if (titleBarHight < 24 || titleBarHight > 50) {\n        titleBarHight = m_kwinTitleBarConfig->value(DEFAULT_TITLE_BAR_HEIGHT_KEY).toInt();\n    }\n    m_model->setTitleBarHeight(titleBarHight);\n}\n\nvoid X11Worker::onMiniEffectChanged(bool value)\n{\n    m_model->setMiniEffect(value ? 1 : 0);\n}\n\nvoid X11Worker::setMovedWindowOpacity(bool value)\n{\n    if (value) {\n        m_personalizationDBusProxy->loadEffect(EffectMoveWindowArg);\n    } else {\n        m_personalizationDBusProxy->unloadEffect(EffectMoveWindowArg);\n    }\n\n    //设置kwin接口后, 等待55ms给kwin反应，根据isEffectLoaded返回值确定真实状态\n    QTimer::singleShot(55, this, [this] {\n        bool isLoaded =  m_personalizationDBusProxy->isEffectLoaded(EffectMoveWindowArg);\n        qCDebug(DdcPersonnalizationX11Worker) << \"Moved window switch WM, load effect translucency: \" << isLoaded;\n        m_model->setIsMoveWindow(isLoaded);\n    });\n}\n\nvoid X11Worker::setMiniEffect(int effect)\n{\n    switch (effect) {\n    case 0:\n        qCDebug(DdcPersonnalizationX11Worker) << EffectMiniScaleArg;\n        m_personalizationDBusProxy->unloadEffect(EffectMiniLampArg);\n        m_model->setMiniEffect(effect);\n        break;\n    case 1:\n        qCDebug(DdcPersonnalizationX11Worker) << EffectMiniLampArg;\n        m_personalizationDBusProxy->loadEffect(EffectMiniLampArg);\n        m_model->setMiniEffect(effect);\n        break;\n    default:\n        break;\n    }\n}\n\nvoid X11Worker::setWallpaperForMonitor(const QString &screen, const QString &url, bool isDark, PersonalizationExport::WallpaperSetOption option)\n{\n    if (checkWallpaperLockStatus()) {\n        return;\n    }\n\n    if (option == PersonalizationExport::Option_Desktop) {\n        setBackgroundForMonitor(screen, url, isDark);\n    } else if (option == PersonalizationExport::Option_Lock) {\n        setLockBackForMonitor(screen, url, isDark);\n    } else if (option == PersonalizationExport::Option_All) {\n        setBackgroundForMonitor(screen, url, isDark);\n        setLockBackForMonitor(screen, url, isDark);\n    }\n}\n\nvoid X11Worker::setBackgroundForMonitor(const QString &screenName, const QString &url, bool isDark)\n{\n    Q_UNUSED(isDark)\n    qCDebug(DdcPersonnalizationX11Worker) << \"setMonitorBackground \" << screenName << url;\n    if (screenName.isEmpty() || url.isEmpty())\n        return;\n\n    m_personalizationDBusProxy->SetCurrentWorkspaceBackgroundForMonitor(url, screenName);\n}\n\nvoid X11Worker::setLockBackForMonitor(const QString &screenName, const QString &url, bool isDark)\n{\n    Q_UNUSED(isDark)\n    qCDebug(DdcPersonnalizationX11Worker) << \"setGreeterBackground \" << screenName << url;\n    if (screenName.isEmpty() || url.isEmpty())\n        return;\n\n    m_personalizationDBusProxy->SetGreeterBackground(url);\n}\n"
  },
  {
    "path": "src/plugin-personalization/operation/x11worker.h",
    "content": "//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include \"operation/personalizationworker.h\"\n\nclass X11Worker : public PersonalizationWorker\n{\n    Q_OBJECT\npublic:\n    X11Worker(PersonalizationModel *model, QObject *parent = nullptr);\n    void active() override;\n\npublic Q_SLOTS:\n    void setTitleBarHeight(int value) override;\n    void setWindowEffect(int value) override;\n    void setMovedWindowOpacity(bool value) override;\n    void setMiniEffect(int effect) override;\n    virtual void setWallpaperForMonitor(const QString &screen, const QString &url, bool isDark, PersonalizationExport::WallpaperSetOption option) override;\n    void setBackgroundForMonitor(const QString &screenName, const QString &url, bool isDark) override;\n    void setLockBackForMonitor(const QString &screenName, const QString &url, bool isDark) override;\n\nprivate Q_SLOTS:\n    void onMiniEffectChanged(bool value);\n\nprivate:\n    void onKWinConfigChanged(const QString &key);\n    void onTitleHeightChanged();\n\nprivate:\n    Dtk::Core::DConfig *m_kwinTitleBarConfig = nullptr;\n    Dtk::Core::DConfig *m_kwinCompositingConfig = nullptr;\n};\n"
  },
  {
    "path": "src/plugin-personalization/qml/ColorAndIcons.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\nimport QtQuick.Dialogs\nimport Qt5Compat.GraphicalEffects\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    DccTitleObject {\n        name: \"accentColorTitle\"\n        weight: 10\n        parentName: \"personalization/colorAndIcons\"\n        displayName: qsTr(\"Accent Color\")\n    }\n\n    DccObject {\n        name: \"accentColor\"\n        parentName: \"personalization/colorAndIcons\"\n        weight: 100\n        pageType: DccObject.Item\n        backgroundType: DccObject.Normal\n        page: ListView {\n            id: listview\n            readonly property var colors: [\"#DF4187\", \"#EA691F\", \"#F3B517\", \"#49B125\", \"#00A48A\", \"#1F6EE7\", \"#402FDB\", \"#7724B1\", \"#757575\", \"CUSTOM\"]\n            readonly property var darkColors: [\"#A82B62\", \"#CC4D03\", \"#D09C00\", \"#459F29\", \"#188876\", \"#024CCA\", \"#443BBA\", \"#6A2487\", \"#868686\", \"CUSTOM\"]\n            property var cutColors: dccData.currentAppearance === \".dark\" ? darkColors : colors\n            implicitHeight: 60\n            leftMargin: 10\n            clip: true\n            model: cutColors.length\n            orientation: ListView.Horizontal\n            layoutDirection: Qt.LeftToRight\n            spacing: 12\n\n            delegate: Item {\n                anchors.verticalCenter: parent.verticalCenter\n                property string activeColor: dccData.model.activeColor\n                property string currentColor: listview.cutColors[index]\n                width: 30\n                height: 30\n                Rectangle {\n                    anchors.fill: parent\n                    border.width: 2\n                    color: \"transparent\"\n                    visible: activeColor === currentColor || (currentColor == \"CUSTOM\" && listview.cutColors.indexOf(activeColor) === -1)\n                    border.color: currentColor == \"CUSTOM\" ? activeColor : currentColor\n                    radius: width / 2\n                }\n\n                Rectangle {\n                    id: colorImg\n                    anchors.fill: parent\n                    anchors.margins: 4\n                    radius: width / 2\n                    color: listview.cutColors[index] === \"CUSTOM\" ? \"transparent\" : listview.cutColors[index]\n                    anchors.centerIn: parent\n\n                    Canvas {\n                        anchors.fill: parent\n                        visible: listview.cutColors[index] === \"CUSTOM\"\n                        onPaint: {\n                            var ctx = getContext(\"2d\");\n                            ctx.clearRect(0, 0, width, height);\n\n                            var centerX = width / 2;\n                            var centerY = height / 2;\n                            var radius = Math.min(width, height) / 2;\n\n                            var gradient = ctx.createConicalGradient(centerX, centerY, 0, centerX, centerY, radius);\n\n                            gradient.addColorStop(0.0, \"red\");\n                            gradient.addColorStop(0.167, \"yellow\");\n                            gradient.addColorStop(0.333, \"green\");\n                            gradient.addColorStop(0.5, \"cyan\");\n                            gradient.addColorStop(0.667, \"blue\");\n                            gradient.addColorStop(0.833, \"magenta\");\n                            gradient.addColorStop(1.0, \"red\");\n\n                            ctx.fillStyle = gradient;\n                            ctx.beginPath();\n                            ctx.arc(centerX, centerY, radius, 0, 2 * Math.PI);\n                            ctx.closePath();\n                            ctx.fill();\n                        }\n                    }\n\n                    MouseArea {\n                        anchors.fill: parent\n                        onClicked: {\n                            if (listview.cutColors[index] === \"CUSTOM\") {\n                                colorDialog.color = dccData.model.activeColor\n                                colorDialog.open()\n                            } else {\n                                dccData.worker.setActiveColors(listview.colors[index] + \",\" + listview.darkColors[index])\n                                dccData.worker.setActiveColor(listview.cutColors[index])\n                            }\n                        }\n                    }\n                }\n\n                InnerShadow {\n                    anchors.fill: colorImg\n                    radius: 0\n                    samples: 24\n                    spread: 0\n                    horizontalOffset: 0\n                    verticalOffset: -1\n                    color: Qt.rgba(0, 0, 0, 0.1)\n                    source: colorImg\n                }\n            }\n            DccColorDialog {\n                id: colorDialog\n                anchors.centerIn: Overlay.overlay\n                popupType: Popup.Item\n                width: 274\n                height: 322\n                onAccepted: {\n                    dccData.worker.setActiveColors(colorDialog.color + \",\" + colorDialog.color)\n                    dccData.worker.setActiveColor(colorDialog.color)\n                }\n            }\n        }\n    }\n\n    DccTitleObject {\n        name: \"iconSettingsTitle\"\n        parentName: \"personalization/colorAndIcons\"\n        displayName: qsTr(\"Icon Settings\")\n        weight: 200\n    }\n\n    DccObject {\n        name: \"iconTheme\"\n        parentName: \"personalization/colorAndIcons\"\n        displayName: qsTr(\"Icon Theme\")\n        description: qsTr(\"Customize your theme icon\")\n        icon: \"theme_icon\"\n        weight: 300\n        backgroundType: DccObject.Normal\n        pageType: DccObject.MenuEditor\n        page: Label {\n            text: dccData.model.iconModel.currentThemeName\n        }\n\n        DccObject {\n            name: \"iconThemeSelect\"\n            parentName: \"personalization/colorAndIcons/iconTheme\"\n            weight: 1\n            DccObject {\n                name: \"cursorThemeSelect\"\n                parentName: \"personalization/colorAndIcons/iconTheme/iconThemeSelect\"\n                weight: 1\n                pageType: DccObject.Item\n                page: IconThemeGridView {\n                    model: dccData.iconThemeViewModel\n                    onRequsetSetTheme: (id)=> {\n                                           dccData.worker.setIconTheme(id)\n                                       }\n                }\n            }\n        }\n    }\n    DccObject {\n        name: \"cursorTheme\"\n        parentName: \"personalization/colorAndIcons\"\n        displayName: qsTr(\"Cursor Theme\")\n        description: qsTr(\"Customize your theme cursor\")\n        icon: \"topic_cursor\"\n        weight: 400\n        backgroundType: DccObject.Normal\n        pageType: DccObject.MenuEditor\n        page: Label {\n            text: dccData.model.cursorModel.currentThemeName\n        }\n\n        DccObject {\n            name: \"cursorThemeSelect\"\n            parentName: \"personalization/colorAndIcons/cursorTheme\"\n            weight: 1\n            DccObject {\n                name: \"cursorThemeSelect\"\n                parentName: \"personalization/colorAndIcons/cursorTheme/cursorThemeSelect\"\n                weight: 1\n                pageType: DccObject.Item\n                page: IconThemeGridView {\n                    model: dccData.cursorThemeViewModel\n                    onRequsetSetTheme: (id)=> {\n                                           dccData.worker.setCursorTheme(id)\n                                       }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/CustomComboBox.qml",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nD.ComboBox {\n    id: control\n    flat: true\n    property string visibleRole\n    property string enableRole\n\n    delegate: D.MenuItem {\n        id: menuItem\n        useIndicatorPadding: true\n        text: control.textRole ? (Array.isArray(control.model) ? modelData[control.textRole] : (model[control.textRole] === undefined ? modelData[control.textRole] : model[control.textRole])) : modelData\n        icon.name: control.iconNameRole ? ((model[control.iconNameRole] !== undefined ? model[control.iconNameRole] : modelData[control.iconNameRole])) : null\n        highlighted: control.isInteractingWithContent ? control.highlightedIndex === index : false\n        hoverEnabled: control.hoverEnabled\n        autoExclusive: true\n        checked: control.currentIndex === index\n        enabled: control.enableRole ? ((model[control.enableRole] !== undefined ? model[control.enableRole] : modelData[control.enableRole])) : true\n        visible: control.visibleRole ? ((model[control.visibleRole] !== undefined ? model[control.visibleRole] : modelData[control.visibleRole])) : true\n        implicitHeight: visible ? DS.Style.control.implicitHeight(menuItem) : 0\n    }\n\n    // To replace function: indexOfValue\n    function indexByValue(value) {\n        for (var i = 0; i < model.count; i++) {\n            if (model.get(i).value === value) {\n                return i;\n            }\n        }\n        return -1;\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/DccColorDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls\nimport QtQuick.Controls.impl\nimport QtQuick.Dialogs\nimport QtQuick.Dialogs.quickimpl\nimport QtQuick.Layouts\nimport QtQuick.Templates as T\n\nimport org.deepin.dtk as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc.personalization 1.0\nimport org.deepin.dcc 1.0\n\nColorDialogImpl {\n    id: control\n\n    implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,\n                            contentWidth + leftPadding + rightPadding,\n                            implicitHeaderWidth,\n                            implicitFooterWidth)\n    implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,\n                             contentHeight + topPadding + bottomPadding\n                             + (implicitHeaderHeight > 0 ? implicitHeaderHeight + spacing : 0)\n                             + (implicitFooterHeight > 0 ? implicitFooterHeight + spacing : 0))\n\n    topPadding: 10\n    leftPadding: 10\n    rightPadding: 10\n    bottomPadding: 10\n\n    background: Loader {\n        sourceComponent: D.FloatingPanel {\n            radius: DS.Style.floatingPanel.radius\n            blurMultiplier: 8.0\n            backgroundColor: DS.Style.floatingPanel.background\n            backgroundNoBlurColor: DS.Style.floatingPanel.backgroundNoBlur\n        }\n    }\n\n    // ensure set sucessfully, default is 0\n    Component.onCompleted: {\n        alpha = 1.0\n    }\n\n    Connections {\n        target: dccData\n        function onColorPicked(color) {\n            control.color = color\n        }\n        function onPickerError(error) {\n            console.warn(\"deepin-picker error:\", error)\n        }\n    }\n\n    // Use deepin-picker if available, otherwise fallback to Qt's built-in eyeDropper\n    ColorDialogImpl.eyeDropperButton: dccData.pickerAvailable ? null : eyeDropperButton\n    ColorDialogImpl.colorPicker: colorPicker\n\n    contentItem: ColumnLayout {\n        DccSaturationLightnessPicker {\n            id: colorPicker\n            color: control.color\n            Layout.fillWidth: true\n            Layout.fillHeight: true\n        }\n\n        RowLayout {\n            Layout.fillWidth: true\n            Layout.preferredHeight: 20\n            Layout.topMargin: 2\n            Layout.bottomMargin: 2\n\n            D.IconButton {\n                id: eyeDropperButton\n                icon.name: \"color_extractor\"\n                icon.width: 20\n                textColor: D.Palette {\n                    normal: Qt.rgba(0, 0, 0, 1)\n                    normalDark: Qt.rgba(1, 1, 1, 1)\n                }\n                \n                flat: true\n                visible: true\n                Layout.preferredWidth: 22\n                Layout.preferredHeight: 22\n                opacity: 0.6\n\n                background: Rectangle {\n                    implicitWidth: 22\n                    implicitHeight: 22\n                    radius: 4\n                    visible: eyeDropperButton.hovered\n                    color: eyeDropperButton.palette.windowText\n                    opacity: 0.1\n                }\n\n                onClicked: {\n                    // Use deepin-picker if available, Qt's eyeDropper will handle it otherwise\n                    if (dccData.pickerAvailable) {\n                        dccData.startPicker()\n                    }\n                }\n            }\n\n            Slider {\n                id: hueSlider\n                orientation: Qt.Horizontal\n                value: control.hue\n                implicitHeight: 16\n                onMoved: function() { control.hue = value; }\n                handle: Rectangle {\n                    implicitWidth: 6\n                    height: hueSlider.height\n                    border.color: Qt.rgba(0, 0, 0, 0.2)\n                    x: hueSlider.leftPadding + (hueSlider.horizontal\n                                                ? hueSlider.visualPosition * (hueSlider.availableWidth - width)\n                                                : (hueSlider.availableWidth - width) / 2)\n                    y: hueSlider.topPadding + (hueSlider.horizontal\n                                               ? (hueSlider.availableHeight - height) / 2\n                                               : hueSlider.visualPosition * (hueSlider.availableHeight - height))\n                }\n                background: Item {\n                    anchors.fill: parent\n                    anchors.leftMargin: hueSlider.handle.width / 2\n                    anchors.rightMargin: hueSlider.handle.width / 2\n                    Rectangle {\n                        anchors.fill: parent\n                        anchors.topMargin: 3\n                        anchors.bottomMargin: 3\n                        radius: 2\n                        gradient: HueGradient {\n                            orientation: Gradient.Horizontal\n                        }\n                    }\n                }\n\n                Layout.fillWidth: true\n            }\n        }\n\n        GridLayout {\n            Layout.fillWidth: true\n            Layout.preferredHeight: 24\n            Layout.topMargin: 2\n            Layout.bottomMargin: 2\n            columns: 5\n            rows: 2\n\n            Rectangle {\n                Layout.preferredHeight: 28\n                Layout.preferredWidth: 28\n                color: control.color\n                border.width: 1\n                border.color: Qt.rgba(0, 0, 0, 0.1)\n                radius: 3\n            }\n\n            D.TextField {\n                text: control.color.toString().substring(1).toUpperCase()\n                Layout.preferredWidth: 74\n                Layout.preferredHeight: 28\n                horizontalAlignment: Text.AlignHCenter\n                verticalAlignment: Text.AlignVCenter\n                font {\n                    family: D.DTK.fontManager.t8.family\n                    pointSize: D.DTK.fontManager.t8.pointSize\n                    weight: Font.Medium\n                }\n                validator: RegularExpressionValidator {\n                    regularExpression: /^[0-9a-fA-F]{6}$/\n                }\n                onEditingFinished: {\n                    control.color = \"#\" + text.toUpperCase()\n                }\n            }\n\n            Repeater {\n                model: [control.red, control.green, control.blue]\n                D.TextField {\n                    text: modelData\n                    Layout.fillWidth: true\n                    Layout.preferredWidth: 44\n                    Layout.preferredHeight: 28\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    inputMethodHints: Qt.ImhDigitsOnly\n                    validator: IntValidator { bottom: 0; top: 255 }\n                    font {\n                        family: D.DTK.fontManager.t8.family\n                        pointSize: D.DTK.fontManager.t8.pointSize\n                        weight: Font.Medium\n                    }\n\n                    onEditingFinished: {\n                        if (text !== \"\") {\n                            if (modelData === control.red) {\n                                control.red = text;\n                            } else if (modelData === control.green) {\n                                control.green = text;\n                            } else if (modelData === control.blue) {\n                                control.blue = text;\n                            }\n                        }\n                    }\n                }\n            }\n\n            Item { }\n\n            Repeater {\n                model: [\"Hex\", \"R\", \"G\", \"B\"]\n                Label {\n                    Layout.fillWidth: true\n                    horizontalAlignment: Text.AlignHCenter\n                    verticalAlignment: Text.AlignVCenter\n                    font {\n                        family: D.DTK.fontManager.t8.family\n                        pointSize: D.DTK.fontManager.t8.pointSize\n                        weight: Font.Medium\n                    }\n                    text: modelData\n                }\n            }\n        }\n    }\n\n    footer: ColumnLayout {\n        spacing: 10\n        Rectangle {\n            id: line\n            Layout.leftMargin: 10\n            Layout.rightMargin: 10\n            color: Qt.rgba(0, 0, 0, 0.08)\n            height: 1\n            Layout.fillWidth: true\n            Layout.alignment: Qt.AlignVCenter\n        }\n        RowLayout {\n            Layout.leftMargin: 10\n            Layout.rightMargin: 10\n            Layout.bottomMargin: 10\n            spacing: 9\n            D.Button {\n                text: qsTr(\"Cancel\")\n                Layout.fillWidth: true\n                background: Rectangle {\n                    color: Qt.rgba(0, 0, 0, 0.15)\n                    radius: 6\n                }\n                onClicked: {\n                    control.reject()\n                }\n            }\n            D.Button {\n                text: qsTr(\"Save\")\n                Layout.fillWidth: true\n                background: Rectangle {\n                    color: Qt.rgba(0, 0, 0, 0.15)\n                    radius: 6\n                }\n                textColor: D.Palette {\n                    normal {\n                    common: D.DTK.makeColor(D.Color.Highlight)\n                    }\n                    normalDark: normal\n                    hovered {\n                        common: D.DTK.makeColor(D.Color.Highlight).lightness(+10)\n                    }\n                    hoveredDark: hovered\n                }\n                onClicked: {\n                    control.accept()\n                }\n            }\n        }   \n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/DccSaturationLightnessPicker.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Dialogs\nimport QtQuick.Dialogs.quickimpl\n\nimport org.deepin.dtk as D\n\nSaturationLightnessPickerImpl {\n    id: control\n    clip: true\n\n    implicitWidth: Math.max(background ? background.implicitWidth : 0, contentItem.implicitWidth)\n    implicitHeight: Math.max(background ? background.implicitHeight : 0, contentItem.implicitHeight)\n\n    contentItem: Item {\n\n        ShaderEffect {\n            id: effect\n            scale: contentItem.width / width\n            anchors.fill: parent\n            property alias hue: control.hue\n            fragmentShader: \"qrc:/qt-project.org/imports/QtQuick/Dialogs/quickimpl/shaders/SaturationLightness.frag.qsb\"\n        }\n\n        D.ItemViewport {\n            radius: 8\n            sourceItem: effect\n            hideSource: true\n            anchors.fill: parent\n            fixed: true\n            antialiasing: true\n        }\n    }\n\n    handle: Rectangle {\n        implicitWidth: 12\n        implicitHeight: 12\n        radius: 6\n        color: \"transparent\"\n        border.color: Qt.rgba(0, 0, 0, 0.2)\n        border.width: 1\n        x: control.leftPadding + control.lightness * control.availableWidth - width / 2\n        y: control.topPadding + (1.0 - control.saturation) * control.availableHeight - height / 2\n        z: 1\n\n        Rectangle {\n            x: 1\n            y: 1\n            width: 10\n            height: 10\n            radius: 5\n            color: control.color\n            border.color: \"white\"\n            border.width: 2\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/FontCombobox.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nD.ComboBox {\n    id: control\n    flat: true\n    property string visibleRole\n\n    displayText: {\n        if (currentIndex < 0 || currentIndex >= model.count) {\n            return \"\"\n        } else {\n            return model[currentIndex][textRole]\n        }\n    }\n\n    delegate: D.MenuItem {\n        id: menuItem\n        useIndicatorPadding: true\n        width: parent.width\n        text: control.textRole ? (Array.isArray(control.model) ? modelData[control.textRole] : (model[control.textRole] === undefined ? modelData[control.textRole] : model[control.textRole])) : modelData\n        font.family: text\n        icon.name: (control.iconNameRole && model[control.iconNameRole] !== undefined) ? model[control.iconNameRole] : null\n        highlighted: control.isInteractingWithContent ? control.highlightedIndex === index : false\n        hoverEnabled: control.hoverEnabled\n        autoExclusive: true\n        checked: control.currentIndex === index\n        enabled: (control.enableRole && model[control.enableRole] !== undefined) ? model[control.enableRole] : true\n        visible: (control.visibleRole && model[control.visibleRole] !== undefined) ? model[control.visibleRole] : true\n        implicitHeight: visible ? DS.Style.control.implicitHeight(menuItem) : 0\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/FontSizePage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\nimport QtQuick.Dialogs\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    DccObject {\n        name: \"fontSize\"\n        parentName: \"personalization/font\"\n        displayName: qsTr(\"Size\")\n        backgroundType: DccObject.Normal\n        weight: 10\n        pageType: DccObject.Item\n        page: ColumnLayout {\n            Layout.fillHeight: true\n            Label {\n                Layout.topMargin: 10\n                font: D.DTK.fontManager.t6\n                text: dccObj.displayName\n                Layout.leftMargin: 14\n            }\n            D.TipsSlider {\n                id: fontSizeSlider\n                readonly property var fontSizeModel: [11, 12, 13, 14, 15, 16, 18, 20]\n                Layout.preferredHeight: 90\n                Layout.alignment: Qt.AlignCenter\n                Layout.margins: 10\n                Layout.fillWidth: true\n                tickDirection: D.TipsSlider.TickDirection.Back\n                slider.handleType: Slider.HandleType.ArrowBottom\n                slider.from: 0\n                slider.to: fontSizeModel.length - 1\n                slider.live: true\n                slider.stepSize: 1\n                slider.snapMode: Slider.SnapAlways\n                ticks: [\n                    D.SliderTipItem {text: fontSizeSlider.fontSizeModel[0]; highlight: fontSizeSlider.slider.value === 0},\n                    D.SliderTipItem {text: fontSizeSlider.fontSizeModel[1]; highlight: fontSizeSlider.slider.value === 1},\n                    D.SliderTipItem {text: fontSizeSlider.fontSizeModel[2]; highlight: fontSizeSlider.slider.value === 2},\n                    D.SliderTipItem {text: fontSizeSlider.fontSizeModel[3]; highlight: fontSizeSlider.slider.value === 3},\n                    D.SliderTipItem {text: fontSizeSlider.fontSizeModel[4]; highlight: fontSizeSlider.slider.value === 4},\n                    D.SliderTipItem {text: fontSizeSlider.fontSizeModel[5]; highlight: fontSizeSlider.slider.value === 5},\n                    D.SliderTipItem {text: fontSizeSlider.fontSizeModel[6]; highlight: fontSizeSlider.slider.value === 6},\n                    D.SliderTipItem {text: fontSizeSlider.fontSizeModel[7]; highlight: fontSizeSlider.slider.value === 7}\n                ]\n                slider.onValueChanged: {\n                    dccData.worker.setFontSize(fontSizeSlider.fontSizeModel[fontSizeSlider.slider.value])\n                }\n\n                Component.onCompleted: {\n                    slider.value = fontSizeModel.indexOf(dccData.model.fontSizeModel.size)\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"standardFont\"\n        parentName: \"personalization/font\"\n        displayName: qsTr(\"Standard Font\")\n        weight: 100\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Editor\n        page: FontCombobox {\n            flat: true\n            model: dccData.model.standardFontModel.fontList\n            textRole: \"Name\"\n            valueRole: \"Id\"\n            currentIndex: indexOfValue(dccData.model.standardFontModel.fontName)\n            onCurrentIndexChanged: {\n                dccData.worker.setDefault(model[currentIndex]);\n            }\n\n            function indexOfValue(value) {\n                for (var i = 0; i < model.length; i++) {\n                    if (model[i][valueRole] === value) {\n                        return i\n                    }\n                }\n                return -1\n            }\n        }\n    }\n\n    DccObject {\n        name: \"monoFont\"\n        parentName: \"personalization/font\"\n        displayName: qsTr(\"Monospaced Font\")\n        weight: 200\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Editor\n        page: FontCombobox {\n            flat: true\n            model: dccData.model.monoFontModel.fontList\n            textRole: \"Name\"\n            valueRole: \"Id\"\n            currentIndex: indexOfValue(dccData.model.monoFontModel.fontName)\n            onCurrentIndexChanged: {\n                dccData.worker.setDefault(model[currentIndex]);\n            }\n\n            function indexOfValue(value) {\n                for (var i = 0; i < model.length; i++) {\n                    if (model[i][valueRole] === value) {\n                        return i\n                    }\n                }\n                return -1\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/IconThemeGridView.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\nimport QtQuick.Dialogs\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nColumnLayout {\n    id: root\n    property alias model: repeater.model\n    readonly property int itemWidth: 245\n    readonly property int itemHeight: 97\n    readonly property int itemSpacing: 10\n    \n    signal requsetSetTheme(string id)\n    Item {\n        Layout.fillWidth: true\n        Layout.preferredHeight: flow.height\n        Flow {\n            id: flow\n            property int lineCount: Math.floor((parent.width + root.itemSpacing) / (root.itemWidth + root.itemSpacing))\n            width: lineCount * (root.itemWidth + root.itemSpacing) - root.itemSpacing\n            spacing: 10\n            anchors.horizontalCenter: parent.horizontalCenter\n            Repeater {\n                id: repeater\n                Rectangle {\n                    id: rect\n                    width: root.itemWidth\n                    height: root.itemHeight\n                    radius: 8\n                    color: this.palette.base\n                    ColumnLayout {\n                        anchors.fill: parent\n                        anchors.margins: 10\n                        spacing: 6\n                        RowLayout {\n                            Layout.fillWidth: true\n                            Text {\n                                text: model.name\n                                color: this.palette.windowText\n                            }\n\n                            Item {\n                                Layout.fillWidth: true\n                            }\n\n                            DccCheckIcon {\n                                visible: model.checked\n                            }\n                        }\n\n                        Rectangle {\n                            Layout.preferredHeight: 2\n                            Layout.fillWidth: true\n                            color: this.palette.window\n                        }\n\n                        Rectangle {\n                            Layout.fillWidth: true\n                            Layout.fillHeight: true\n                            color: \"transparent\"\n                            Image {\n                                anchors.fill: parent\n                                fillMode: Image.PreserveAspectFit\n                                mipmap: true\n                                source: model.pic\n                                asynchronous: true\n                            }\n                        }\n                    }\n                    MouseArea {\n                        anchors.fill: parent\n                        onClicked: {\n                            if (!model.checked) {\n                                root.requsetSetTheme(model.id);\n                            }\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/InterfaceEffectListview.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\n\nimport org.deepin.dcc 1.0\n\nDccRepeater {\n    enum WindowEffectType {\n        Default = 0,\n        Best,\n        Better,\n        Good,\n        Normal,\n        Compatible\n    }\n\n    delegate: DccObject {\n        name: \"effectItem_\" + modelData.value\n        parentName: \"interfaceAndEffect\"\n        pageType: DccObject.Editor\n        weight: 10 + index\n        icon: modelData.icon\n        displayName: modelData.title\n        description: modelData.description\n        backgroundType: DccObject.ClickStyle\n        page: DccCheckIcon {\n            visible: modelData.value === dccData.model.windowEffectType\n        }\n        onActive: function (cmd) {\n            if (cmd === \"\") {\n                dccData.worker.setWindowEffect(modelData.value)\n            }\n        }\n    }\n    model: [{\n            \"value\": InterfaceEffectListview.WindowEffectType.Normal,\n            \"title\": qsTr(\"Optimal Performance\"),\n            \"icon\": \"optimum_performance\",\n            \"description\": qsTr(\"Disable all interface and window effects for efficient system performance.\")\n        }, {\n            \"value\": InterfaceEffectListview.WindowEffectType.Better,\n            \"title\": qsTr(\"Balance\"),\n            \"icon\": \"balance\",\n            \"description\": qsTr(\"Limit some window effects for excellent visuals while maintaining smooth system performance.\")\n        }, {\n            \"value\": InterfaceEffectListview.WindowEffectType.Best,\n            \"title\": qsTr(\"Best Visuals\"),\n            \"icon\": \"best_vision\",\n            \"description\": qsTr(\"Enable all interface and window effects for the best visual experience.\")\n        }]\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/Personalization.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport org.deepin.dcc 1.0\n\nDccObject {\n    name: \"personalization\"\n    parentName: \"root\"\n    displayName: qsTr(\"Personalization\")\n    icon: \"personalization\"\n    weight: 30\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/PersonalizationMain.qml",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc.personalization 1.0\n\nDccObject {\n    DccObject {\n        name: \"themeRoot\"\n        parentName: \"personalization\"\n        weight: 10\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        onActive: function (cmdParam) {\n            dccData.handleCmdParam(PersonalizationData.Theme, cmdParam)\n        }\n\n        DccObject {\n            name: \"themeTitle\"\n            parentName: \"personalization/themeRoot\"\n            displayName: qsTr(\"Theme\")\n            weight: 1\n            pageType: DccObject.Item\n            onParentItemChanged: item => { if (item) item.activeFocusOnTab = false }\n            page: ColumnLayout {\n                Layout.fillHeight: true\n                Layout.margins: 10\n                RowLayout {\n                    Layout.fillWidth: true\n                    spacing: 10\n                    Layout.topMargin: 10\n                    Layout.rightMargin: 10\n                    Label {\n                        font: D.DTK.fontManager.t6\n                        text: dccObj.displayName\n                        Layout.leftMargin: 10\n                    }\n\n                    Item {\n                        Layout.fillWidth: true\n                        Layout.fillHeight: true\n                    }\n\n                    D.IconButton {\n                        flat: true\n                        enabled: themeSelectView.currentIndex !== 0\n                        icon.name: \"arrow_left\"\n                        icon.width: 16\n                        icon.height: 16\n                        implicitWidth: 16\n                        implicitHeight: 16\n                        onClicked: {\n                            themeSelectView.decrementCurrentIndex()\n                        }\n                        background: null\n                        Component.onCompleted: {\n                            if (contentItem) {\n                                contentItem.smooth = false\n                            }\n                        }\n                    }\n                    D.IconButton {\n                        flat: true\n                        enabled: themeSelectView.currentIndex !== themeSelectView.count - 1\n                        icon.name: \"arrow_right\"\n                        icon.width: 16\n                        icon.height: 16\n                        implicitWidth: 16\n                        implicitHeight: 16\n                        onClicked: {\n                            themeSelectView.incrementCurrentIndex()\n                        }\n                        background: null\n                        Component.onCompleted: {\n                            if (contentItem) {\n                                contentItem.smooth = false\n                            }\n                        }\n                    }\n                }\n                ThemeSelectView {\n                    id: themeSelectView\n                    Layout.fillWidth: true\n                    Layout.preferredHeight: 240\n                    Layout.bottomMargin: 15\n                }\n            }\n        }\n\n        DccObject {\n            name: \"appearance\"\n            parentName: \"personalization/themeRoot\"\n            displayName: qsTr(\"Appearance\")\n            description: qsTr(\"Select light, dark or automatic theme appearance\")\n            weight: 2\n            pageType: DccObject.Editor\n            icon: \"appearance\"\n            page: D.ComboBox {\n                flat: true\n                textRole: \"text\"\n                model: dccData.appearanceSwitchModel\n                currentIndex: {\n                    for (var i = 0; i < model.length; ++i) {\n                        if (model[i].value === dccData.currentAppearance) {\n                            return i;\n                        }\n                    }\n                    return 0\n                }\n\n                enabled: model.length > 1\n                onCurrentIndexChanged: {\n                    if (dccData.currentAppearance !== model[currentIndex].value) {\n                        dccData.worker.setAppearanceTheme(model[currentIndex].value)\n                    }\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"windowEffect\"\n        parentName: \"personalization\"\n        displayName: qsTr(\"Window effect\")\n        description: qsTr(\"Interface and effects, rounded corners\")\n        icon: \"window_effect\"\n        weight: 200\n        WindowEffectPage {}\n    }\n    DccObject {\n        name: \"wallpaper\"\n        parentName: \"personalization\"\n        displayName: qsTr(\"Wallpaper\")\n        description: qsTr(\"Personalize your wallpaper and screensaver\")\n        icon: \"dcc_wallpaper\"\n        weight: 300\n        onActive: function (cmdParam) {\n            dccData.handleCmdParam(PersonalizationData.Wallpaper, cmdParam)\n        }\n        WallpaperPage {}\n    }\n    DccObject {\n        name: \"screenSaver\"\n        parentName: \"personalization\"\n        displayName: qsTr(\"Screensaver\")\n        description: qsTr(\"Personalize your wallpaper and screensaver\")\n        icon: \"screensaver\"\n        weight: 400\n        visible: !DccApp.isTreeland()\n        ScreenSaverPage {}\n    }\n    DccObject {\n        name: \"colorAndIcons\"\n        parentName: \"personalization\"\n        displayName: qsTr(\"Colors and icons\")\n        description: qsTr(\"Adjust accent color and theme icons\")\n        icon: \"icon_cursor\"\n        weight: 500\n        ColorAndIcons {}\n    }\n    DccObject {\n        name: \"font\"\n        parentName: \"personalization\"\n        displayName: qsTr(\"Font and font size\")\n        description: qsTr(\"Change system font and size\")\n        icon: \"font_size\"\n        weight: 600\n        FontSizePage {}\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/ScreenIndicator.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport org.deepin.dcc 1.0\n\nWindow {\n    id: root\n    flags: Qt.CoverWindow | Qt.WindowStaysOnTopHint | Qt.SplashScreen | Qt.FramelessWindowHint | Qt.X11BypassWindowManagerHint\n    color: \"#2ca7f8\"\n    x: screen.virtualX\n    y: screen.virtualY\n    width: screen.width\n    height: 10\n    onClosing: destroy(10)\n    Timer {\n        interval: 1000\n        running: root.visible\n        onTriggered: root.close()\n    }\n    Window {\n        flags: Qt.CoverWindow | Qt.WindowStaysOnTopHint | Qt.SplashScreen | Qt.FramelessWindowHint | Qt.X11BypassWindowManagerHint\n        visible: root.visible\n        color: root.color\n        screen: root.screen\n        x: screen.virtualX\n        y: screen.virtualY + screen.height - 10\n        width: screen.width\n        height: 10\n    }\n    Window {\n        flags: Qt.CoverWindow | Qt.WindowStaysOnTopHint | Qt.SplashScreen | Qt.FramelessWindowHint | Qt.X11BypassWindowManagerHint\n        visible: root.visible\n        color: root.color\n        screen: root.screen\n        x: screen.virtualX\n        y: screen.virtualY\n        width: 10\n        height: screen.height\n    }\n    Window {\n        flags: Qt.CoverWindow | Qt.WindowStaysOnTopHint | Qt.SplashScreen | Qt.FramelessWindowHint | Qt.X11BypassWindowManagerHint\n        visible: root.visible\n        color: root.color\n        screen: root.screen\n        x: screen.virtualX + screen.width - 10\n        y: screen.virtualY\n        width: 10\n        height: screen.height\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/ScreenSaverPage.qml",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\nimport QtQuick.Dialogs\nimport Qt5Compat.GraphicalEffects\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dtk.private 1.0 as P\n\nDccObject {\n    DccTitleObject {\n        name: \"screenSaverTitle\"\n        weight: 10\n        parentName: \"personalization/screenSaver\"\n        displayName: qsTr(\"Screensaver\")\n    }\n    DccObject {\n        name: \"screenSaverStatusGroup\"\n        parentName: \"personalization/screenSaver\"\n        weight: 100\n        pageType: DccObject.Item\n        page: DccRowView { }\n        DccObject {\n            name: \"screenSaverDisplayArea\"\n            parentName: \"personalization/screenSaver/screenSaverStatusGroup\"\n            weight: 200\n            pageType: DccObject.Item\n            page: RowLayout {\n                Item {\n                    implicitWidth: 197\n                    implicitHeight: 108\n\n                    AnimatedImage {\n                        id: image\n                        anchors.fill: parent\n                        source: dccData.model.currentScreenSaverPicMode === \"\" ? dccData.model.screenSaverModel.getPicPathByUrl(dccData.model.currentScreenSaver) : dccData.model.picScreenSaverModel.getPicPathByUrl(dccData.model.currentScreenSaverPicMode)\n                        sourceSize: Qt.size(width, height)\n                        playing: true\n                        mipmap: true\n                        visible: false\n                        fillMode: Image.PreserveAspectCrop\n                        asynchronous: true\n                        onSourceChanged: {\n                            playing = false\n                            playing = true\n                        }\n                    }\n\n                    OpacityMask {\n                        anchors.fill: parent\n                        source: image\n                        maskSource: Rectangle {\n                            implicitWidth: image.width\n                            implicitHeight: image.height\n                            radius: 6\n                        }\n                    }\n\n                    Rectangle {\n                        anchors.fill: parent\n                        radius: 6\n                        color: \"transparent\"\n                        border.color: D.DTK.themeType === D.ApplicationHelper.LightType ?\n                                        Qt.rgba(0, 0, 0, 0.1) : Qt.rgba(1, 1, 1, 0.1)\n                        border.width: 1\n                    }\n\n                    D.Button {\n                        id: previewBtn\n                        anchors.bottom: parent.bottom\n                        anchors.bottomMargin: 15\n                        anchors.horizontalCenter: parent.horizontalCenter\n                        implicitWidth: {\n                            font.pixelSize\n                            return previewFm.advanceWidth(text) + leftPadding + rightPadding\n                        }\n                        implicitHeight: 24\n                        visible: hoverHandler.hovered\n                        text: qsTr(\"preview\")\n                        FontMetrics {\n                            id: previewFm\n                            font: previewBtn.font\n                        }\n                        background: P.ButtonPanel {\n                            property D.Palette background1: D.Palette {\n                                normal {\n                                    common: (\"#f7f7f7\")\n                                    crystal: Qt.rgba(0, 0, 0, 0.1)\n                                }\n                                normalDark {\n                                    common: Qt.rgba(0, 0, 0, 1)\n                                    crystal: Qt.rgba(0, 0, 0, 1)\n                                }\n                                hovered {\n                                    common: (\"#e1e1e1\")\n                                    crystal:  Qt.rgba(16.0 / 255, 16.0 / 255, 16.0 / 255, 0.2)\n                                }\n                                pressed {\n                                    common: (\"#bcc4d0\")\n                                    crystal: Qt.rgba(16.0 / 255, 16.0 / 255, 16.0 / 255, 0.15)\n                                }\n                            }\n\n                            property D.Palette background2: D.Palette {\n                                normal {\n                                    common: (\"#f0f0f0\")\n                                    crystal: Qt.rgba(0, 0, 0, 0.1)\n                                }\n                                normalDark {\n                                    common: Qt.rgba(0, 0, 0, 1)\n                                    crystal: Qt.rgba(0, 0, 0, 1)\n                                }\n                                hovered {\n                                    common: (\"#d2d2d2\")\n                                    crystal: Qt.rgba(16.0 / 255, 16.0 / 255, 16.0 / 255, 0.2)\n                                }\n                                pressed {\n                                    common: (\"#cdd6e0\")\n                                    crystal: Qt.rgba(16.0 / 255, 16.0 / 255, 16.0 / 255, 0.15)\n                                }\n                            }\n                            color1: selectValue(background1, DS.Style.checkedButton.background, background1)\n                            color2: selectValue(background2, DS.Style.checkedButton.background, background2)\n                            implicitWidth: DS.Style.button.width\n                            implicitHeight: DS.Style.button.height\n                            button: previewBtn\n                            opacity: 0.6\n                        }\n                        onClicked: {\n                            dccData.worker.startScreenSaverPreview()\n                        }\n                    }\n\n                    HoverHandler {\n                        id: hoverHandler\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"screenSaverSetGroup\"\n            parentName: \"personalization/screenSaver/screenSaverStatusGroup\"\n            weight: 300\n            pageType: DccObject.Item\n            page: DccGroupView {\n                Layout.alignment: Qt.AlignTop\n            }\n\n            DccObject {\n                name: \"personalizedScreensaver\"\n                parentName: \"personalization/screenSaver/screenSaverStatusGroup/screenSaverSetGroup\"\n                displayName: qsTr(\"Personalized screensaver\")\n                weight: 10\n                pageType: DccObject.Editor\n                enabled: dccData.model.screenSaverModel.getConfigAbleByUrl(dccData.model.currentScreenSaver) || dccData.model.currentScreenSaver === \"deepin-custom-screensaver\"\n                page: D.Button {\n                    id: settingBtn\n                    implicitWidth: {\n                        font.pixelSize\n                        return fm.advanceWidth(text) + leftPadding + rightPadding\n                    }\n                    implicitHeight: 24\n                    FontMetrics {\n                        id: fm\n                        font: settingBtn.font\n                    }\n                    text: qsTr(\"setting\")\n                    font {\n                        pixelSize: D.DTK.fontManager.t7.pixelSize\n                        letterSpacing: 2\n                    }\n                    onClicked: {\n                        dccData.worker.requestScreenSaverConfig(dccData.model.currentScreenSaver)\n                    }\n                }\n                onParentItemChanged: {\n                    if (parentItem)\n                        parentItem.implicitHeight = 36\n                }\n            }\n\n            DccObject {\n                name: \"idleTime\"\n                parentName: \"personalization/screenSaver/screenSaverStatusGroup/screenSaverSetGroup\"\n                displayName: qsTr(\"idle time\")\n                weight: 20\n                pageType: DccObject.Editor\n                page: CustomComboBox {\n                    flat: true\n                    textRole: \"text\"\n                    currentIndex: {\n                        let value = dccData.model.onBattery ? dccData.model.batteryScreenSaverIdleTime : dccData.model.linePowerScreenSaverIdleTime\n                        return indexByValue(value)\n                    }\n                    model: ListModel {\n                        ListElement { text: qsTr(\"1 minute\"); value: 60 }\n                        ListElement { text: qsTr(\"5 minute\"); value: 300 }\n                        ListElement { text: qsTr(\"10 minute\"); value: 600 }\n                        ListElement { text: qsTr(\"15 minute\"); value: 900 }\n                        ListElement { text: qsTr(\"30 minute\"); value: 1800 }\n                        ListElement { text: qsTr(\"1 hour\"); value: 3600 }\n                        ListElement { text: qsTr(\"never\"); value: 0 }\n                    }\n                    onCurrentIndexChanged: {\n                        let value = dccData.model.onBattery ? dccData.model.batteryScreenSaverIdleTime : dccData.model.linePowerScreenSaverIdleTime\n                        if (value !== model.get(currentIndex).value) {\n                            dccData.worker.setScreenSaverIdleTime(model.get(currentIndex).value)\n                        }\n                    }\n                }\n                onParentItemChanged: {\n                    if (parentItem) {\n                        parentItem.implicitHeight = 36\n                        parentItem.rightItemTopMargin = 0\n                        parentItem.rightItemBottomMargin = 0\n                    }\n                }\n            }\n\n            DccObject {\n                name: \"lockScreenAtAwake\"\n                parentName: \"personalization/screenSaver/screenSaverStatusGroup/screenSaverSetGroup\"\n                displayName: qsTr(\"Password required for recovery\")\n                weight: 30\n                pageType: DccObject.Editor\n                page: D.Switch {\n                    checked: dccData.model.lockScreenAtAwake\n                    onCheckedChanged: {\n                        if (checked != dccData.model.lockScreenAtAwake) {\n                            dccData.worker.setLockScreenAtAwake(checked)\n                        }\n                    }\n                }\n                onParentItemChanged: {\n                    if (parentItem)\n                        parentItem.implicitHeight = 36\n                }\n            }\n        }\n    }\n    DccObject {\n        name: \"screenSaverPicobj\"\n        parentName: \"personalization/screenSaver\"\n        displayName: qsTr(\"Picture slideshow screensaver\")\n        weight: 400\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: WallpaperSelectView {\n            model: dccData.model.picScreenSaverModel\n            currentItem: dccData.model.currentScreenSaverPicMode\n            enableContextMenu: false\n            onWallpaperSelected: (url, isDark, isLock) => {\n                                    // 防止调用两次\n                                    if (isLock) {\n                                        dccData.worker.setCurrentScreenSaverPicMode(url)\n                                        dccData.worker.setScreenSaver(\"deepin-custom-screensaver\")\n                                    }\n                                 }\n        }\n    }\n\n    DccObject {\n        name: \"screenSaverListObj\"\n        parentName: \"personalization/screenSaver\"\n        displayName: qsTr(\"System screensaver\")\n        weight: 500\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: WallpaperSelectView {\n            model: dccData.model.screenSaverModel\n            currentItem: dccData.model.currentScreenSaver\n            enableContextMenu: false\n            onWallpaperSelected: (url, isDark, isLock) => {\n                                    // 防止调用两次\n                                    if (isLock) {\n                                        dccData.worker.setScreenSaver(url)\n                                        if (url === \"deepin-custom-screensaver\") {\n                                            dccData.worker.setCurrentScreenSaverPicMode(\"default\")\n                                        } else {\n                                            dccData.worker.setCurrentScreenSaverPicMode(\"\")\n                                        }\n                                    }\n                                 }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/ScreenTab.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc 1.0\n\nItem {\n    id: root\n    property var screen\n    property alias model: repeater.model\n\n    implicitHeight: 30\n    RowLayout {\n        Repeater {\n            id: repeater\n            delegate: Rectangle {\n                property bool isSelect: modelData === screen\n                property alias hovered: mouseArea.containsMouse\n                implicitWidth: nameLabel.implicitWidth + 20\n                implicitHeight: 30\n                radius: 8\n                color: isSelect ? (D.DTK.themeType == D.ApplicationHelper.LightType ? Qt.rgba(0, 0, 0, 0.1) : Qt.rgba(1, 1, 1, 0.1)) : \"transparent\"\n                Label {\n                    id: nameLabel\n                    anchors.centerIn: parent\n                    text: modelData\n                    color: hovered ? this.palette.link : (isSelect ? this.palette.highlight : this.palette.text)\n                }\n                MouseArea {\n                    id: mouseArea\n                    anchors.fill: parent\n                    hoverEnabled: true\n                    onClicked: {\n                        if (!isSelect) {\n                            screen = modelData\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/ThemeSelectView.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nFocusScope {\n    id: root\n    activeFocusOnTab: true\n\n    property alias currentIndex: listview.currentIndex\n    property alias count: listview.count\n\n    function incrementCurrentIndex() {\n        listview.incrementCurrentIndex()\n    }\n\n    function decrementCurrentIndex() {\n        listview.decrementCurrentIndex()\n    }\n\n    property int focusedThemeIndex: 0\n    // 记录上次的模型数量，用于判断是否真正需要重置焦点\n    property int lastModelCount: dccData.globalThemeModel ? dccData.globalThemeModel.rowCount() : 0\n    property bool hadLostFocus: false\n\n    onActiveFocusChanged: {\n        if (activeFocus) {\n            if (hadLostFocus) {\n                focusedThemeIndex = 0\n                hadLostFocus = false\n            }\n        } else {\n            hadLostFocus = true\n        }\n    }\n\n    Keys.onLeftPressed: {\n        if (focusedThemeIndex > 0) {\n            focusedThemeIndex--\n            var pageIndex = Math.floor(focusedThemeIndex / (listview.gridMaxColumns * listview.gridMaxRows))\n            if (pageIndex !== listview.currentIndex) {\n                listview.currentIndex = pageIndex\n            }\n        }\n    }\n\n    Keys.onRightPressed: {\n        // +1 for \"More Wallpapers\"\n        var totalCount = dccData.globalThemeModel.rowCount() + 1\n        if (focusedThemeIndex < totalCount - 1) {\n            focusedThemeIndex++\n            var pageIndex = Math.floor(focusedThemeIndex / (listview.gridMaxColumns * listview.gridMaxRows))\n            if (pageIndex !== listview.currentIndex) {\n                listview.currentIndex = pageIndex\n            }\n        }\n    }\n\n    Keys.onUpPressed: {\n        if (focusedThemeIndex >= listview.gridMaxColumns) {\n            focusedThemeIndex -= listview.gridMaxColumns\n        }\n    }\n\n    Keys.onDownPressed: {\n        var totalCount = dccData.globalThemeModel.rowCount() + 1\n        if (focusedThemeIndex + listview.gridMaxColumns < totalCount) {\n            focusedThemeIndex += listview.gridMaxColumns\n        }\n    }\n\n    Keys.onReturnPressed: activateCurrentItem()\n    Keys.onEnterPressed: activateCurrentItem()\n    Keys.onSpacePressed: activateCurrentItem()\n\n    // IdRole value from ThemeVieweModel::UserDataRole (Qt::UserRole + 0x101 = 0x201)\n    readonly property int themeIdRole: 0x201\n\n    function activateCurrentItem() {\n        var totalThemes = dccData.globalThemeModel.rowCount()\n        if (focusedThemeIndex < totalThemes) {\n            var themeId = dccData.globalThemeModel.data(dccData.globalThemeModel.index(focusedThemeIndex, 0), themeIdRole)\n            listview.selectTheme = themeId\n            dccData.worker.setGlobalTheme(themeId)\n        } else {\n            // \"More Wallpapers\" button\n            dccData.worker.goDownloadTheme()\n        }\n    }\n\n    // 使用Item容器，支持触控板手势和鼠标拖拽翻页\n    // MouseArea处理wheel事件，ListView处理拖拽\n    Item {\n        anchors.fill: parent\n\n        // ListView放在前面（底层），处理鼠标拖拽翻页\n        ListView {\n            id: listview\n            anchors.fill: parent\n\n            // 启用交互性以支持鼠标拖拽翻页\n            interactive: true\n            focus: true\n\n            // 132 = 130 + itemBorderWidth\n            readonly property int itemWidth: 132\n            readonly property int itemHeight: 100\n            readonly property int itemBorderWidth: 2\n            readonly property int itemSpacing: 18\n            readonly property int imageRectH: 86\n            readonly property int imageRectW: itemWidth\n\n            property int gridMaxColumns: Math.floor(listview.width / (itemWidth + itemSpacing))\n            property int gridMaxRows: 2\n\n            property string selectTheme: \"\"\n            model: Math.ceil((dccData.globalThemeModel.rowCount()  + 1) / (2 * gridMaxColumns))\n            spacing: 0\n            clip: true\n            orientation: ListView.Horizontal\n            layoutDirection: Qt.LeftToRight\n            snapMode: ListView.SnapOneItem\n            boundsBehavior: Flickable.StopAtBounds\n            highlightRangeMode: ListView.StrictlyEnforceRange\n            highlightFollowsCurrentItem: true\n            highlightMoveDuration: 200\n            highlightMoveVelocity: -1\n\n            Connections {\n                target: dccData.globalThemeModel\n                function onModelReset() {\n                    var newCount = dccData.globalThemeModel.rowCount()\n                    // 只有当模型数量真正发生变化时才重置焦点\n                    if (newCount !== root.lastModelCount) {\n                        listview.selectTheme = \"\"\n                        root.focusedThemeIndex = 0\n                        root.lastModelCount = newCount\n                    }\n                }\n            }\n\n            delegate: Item {\n                width: listview.width\n                height: listview.height\n                D.SortFilterModel {\n                    id: sortedModel\n                    model: dccData.globalThemeModel\n                    property int pageIndex: index\n                    property int maxCount: listview.gridMaxColumns * listview.gridMaxRows\n                    lessThan: function(left, right) {\n                        return left.index < right.index\n                    }\n                    filterAcceptsItem: function(item) {\n                        return item.index >= index * maxCount && item.index < (index + 1) * maxCount\n                    }\n                    onMaxCountChanged: {\n                        sortedModel.update()\n                    }\n\n                    delegate: Rectangle {\n                        id: delegateRoot\n                        Layout.fillHeight: true\n                        Layout.fillWidth: true\n                        color: \"transparent\"\n                        ToolTip.visible: mouseArea.containsMouse && model.toolTip !== \"\"\n                        ToolTip.text: model.toolTip\n                        ToolTip.delay: 300\n                        property bool isCurrent: listview.selectTheme === \"\" ? model.checked : listview.selectTheme === model.id\n                        property bool isFocused: root.activeFocus && root.focusedThemeIndex === model.index\n\n                        ColumnLayout {\n                            width: listview.itemWidth\n                            height: listview.itemHeight\n                            anchors.centerIn: parent\n\n                            Rectangle {\n                                Layout.preferredHeight: listview.imageRectH\n                                Layout.preferredWidth: listview.imageRectW\n                                border.width: 2\n                                border.color: delegateRoot.isCurrent || delegateRoot.isFocused ? D.DTK.platformTheme.activeColor : \"transparent\"\n                                color: \"transparent\"\n                                radius: 8\n\n                                Image {\n                                    anchors.fill: parent\n                                    anchors.margins: 4\n                                    mipmap: true\n                                    source: model.pic\n                                    sourceSize: Qt.size(width, height)\n                                    asynchronous: true\n                                }\n                            }\n\n                            Item {\n                                Layout.fillWidth: true\n                                Layout.fillHeight: true\n                            }\n\n                            Text {\n                                Layout.fillWidth: true\n                                Layout.fillHeight: true\n                                text: model.name\n                                horizontalAlignment: Text.AlignHCenter\n                                verticalAlignment: Text.AlignVCenter\n                                font: D.DTK.fontManager.t9\n                                color: delegateRoot.isCurrent ? D.DTK.platformTheme.activeColor : this.palette.windowText\n                            }\n                        }\n                        MouseArea {\n                            id: mouseArea\n                            anchors.fill: parent\n                            hoverEnabled: true\n                            onClicked: {\n                                root.focusedThemeIndex = model.index\n                                listview.selectTheme = model.id\n                                dccData.worker.setGlobalTheme(model.id)\n                            }\n                        }\n                    }\n                }\n                GridLayout {\n                    id: gridLayout\n                    anchors.left: parent.left\n                    property int contentCount: repeater.count + 1\n                    width: contentCount < columns ? contentCount * (listview.itemWidth + listview.itemSpacing) : parent.width\n                    height: contentCount <= columns ? parent.height / 2 : parent.height\n                    rowSpacing: 0\n                    columnSpacing: 0\n                    rows: listview.gridMaxRows\n                    columns: listview.gridMaxColumns\n                    Repeater {\n                        id: repeater\n                        model: sortedModel\n                    }\n\n                    Rectangle {\n                        id: moreWallpapersItem\n                        Layout.fillHeight: true\n                        Layout.fillWidth: true\n                        visible: index === listview.model - 1\n                        color: \"transparent\"\n                        property int itemGlobalIndex: dccData.globalThemeModel.rowCount()\n                        property bool isFocused: root.activeFocus && root.focusedThemeIndex === itemGlobalIndex\n\n                        ColumnLayout {\n                            width: listview.itemWidth\n                            height: listview.itemHeight\n                            anchors.centerIn: parent\n\n                            Item {\n                                Layout.preferredHeight: listview.imageRectH\n                                Layout.preferredWidth: listview.imageRectW\n\n                                Rectangle {\n                                    anchors.fill: parent\n                                    anchors.margins: listview.itemBorderWidth + 1\n                                    color: \"transparent\"\n                                    radius: 8\n                                    border.width: moreWallpapersItem.isFocused ? 2 : 0\n                                    border.color: moreWallpapersItem.isFocused ? D.DTK.platformTheme.activeColor : \"transparent\"\n\n                                    Image {\n                                        anchors.fill: parent\n                                        anchors.margins: moreWallpapersItem.isFocused ? 2 : 0\n                                        mipmap: true\n                                        source: D.DTK.themeType === D.ApplicationHelper.LightType ?\n                                            \"qrc:/icons/download_more_light.png\" : \"qrc:/icons/download_more_dark.png\"\n                                    }\n                                }\n                            }\n\n                            Item {\n                                Layout.fillWidth: true\n                                Layout.fillHeight: true\n                            }\n\n                            Text {\n                                Layout.fillWidth: true\n                                Layout.fillHeight: true\n                                text: qsTr(\"More Wallpapers\")\n                                horizontalAlignment: Text.AlignHCenter\n                                verticalAlignment: Text.AlignVCenter\n                                color: this.palette.windowText\n                                font: D.DTK.fontManager.t9\n                            }\n                        }\n                        MouseArea {\n                            anchors.fill: parent\n                            onClicked: {\n                                dccData.worker.goDownloadTheme()\n                            }\n                        }\n                    }\n                }\n            }\n        }\n\n        // MouseArea放在后面（上层），处理wheel事件\n        // acceptedButtons: Qt.NoButton 让鼠标按钮事件穿透到ListView\n        MouseArea {\n            anchors.fill: parent\n            scrollGestureEnabled: false\n            acceptedButtons: Qt.NoButton\n\n            onWheel: function(wheel) {\n                // 使用angleDelta判断滚动方向（单位：1/8度）\n                var xDelta = wheel.angleDelta.x / 8\n                var yDelta = wheel.angleDelta.y / 8\n\n                // 判断滚动方向：水平翻页，垂直传递给父组件\n                if (Math.abs(xDelta) > Math.abs(yDelta)) {\n                    // 水平滚动 - 双指左右滑动或鼠标滚轮，翻页\n                    var toPage = (xDelta > 0) ? -1 : 1\n                    if (toPage < 0 && listview.currentIndex > 0) {\n                        listview.decrementCurrentIndex()\n                    } else if (toPage > 0 && listview.currentIndex < listview.count - 1) {\n                        listview.incrementCurrentIndex()\n                    }\n                    wheel.accepted = true  // 拦截事件\n                } else {\n                    // 垂直滚动 - 双指上下滑动或鼠标滚轮，传递给父组件\n                    wheel.accepted = false  // 不拦截，让父组件处理\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/WallpaperPage.qml",
    "content": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick\nimport QtQuick.Window\nimport QtQuick.Controls\nimport QtQuick.Layouts\nimport QtQuick.Dialogs\nimport Qt5Compat.GraphicalEffects\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc.personalization 1.0\n\nDccObject {\n    DccTitleObject {\n        name: \"wallpaperTitle\"\n        weight: 10\n        parentName: \"personalization/wallpaper\"\n        displayName: qsTr(\"wallpaper\")\n    }\n\n\n    DccObject {\n        name: \"screenTab\"\n        parentName: \"personalization/wallpaper\"\n        weight: 50\n        pageType: DccObject.Item\n        visible: dccData.model.screens.length > 1\n        page: ScreenTab {\n            id: screemTab\n            model: dccData.model.screens\n            screen: dccData.model.currentSelectScreen\n            onScreenChanged: {\n                if (screen !== dccData.model.currentSelectScreen) {\n                    dccData.model.currentSelectScreen = screen\n                    if (true) {\n                        indicator.createObject(this, {\n                                                \"screen\": getQtScreen(screemTab.screen)\n                                            }).show()\n                    }\n                }\n            }\n\n            Component {\n                id: indicator\n                ScreenIndicator {}\n            }\n\n            function getQtScreen(screenName) {\n                for (var s of Qt.application.screens) {\n                    if (screenName === s.name) {\n                        return s\n                    }\n                }\n                return null\n            }\n        }\n    }\n\n    DccObject {\n        name: \"wallpaperStatusGroup\"\n        parentName: \"personalization/wallpaper\"\n        weight: 100\n        pageType: DccObject.Item\n        page: DccRowView { }\n        DccObject {\n            name: \"wallpaparDisplayArea\"\n            parentName: \"personalization/wallpaper/wallpaperStatusGroup\"\n            weight: 200\n            pageType: DccObject.Item\n            page: RowLayout {\n                Item {\n                    implicitWidth: 197\n                    implicitHeight: 110\n\n                    Image {\n                        id: image\n                        anchors.fill: parent\n                        source: \"image://DccImage/\" + dccData.model.wallpaperMap[dccData.model.currentSelectScreen]\n                        sourceSize: Qt.size(197, 110)\n                        mipmap: true\n                        visible: false\n                        fillMode: Image.PreserveAspectCrop\n                        asynchronous: true\n                        retainWhileLoading: true\n                    }\n\n                    OpacityMask {\n                        anchors.fill: parent\n                        source: image\n                        maskSource: Rectangle {\n                            implicitWidth: image.width\n                            implicitHeight: image.height\n                            radius: 6\n                        }\n                    }\n\n                    Rectangle {\n                        anchors.fill: parent\n                        radius: 6\n                        color: \"transparent\"\n                        border.color: D.DTK.themeType === D.ApplicationHelper.LightType ?\n                                        Qt.rgba(0, 0, 0, 0.1) : Qt.rgba(1, 1, 1, 0.1)\n                        border.width: 1\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"wallpaperSetGroup\"\n            parentName: \"personalization/wallpaper/wallpaperStatusGroup\"\n            weight: 300\n            pageType: DccObject.Item\n            page: DccGroupView {\n                Layout.alignment: Qt.AlignTop\n            }\n\n            DccObject {\n                name: \"wallpaperType\"\n                parentName: \"personalization/wallpaper/wallpaperStatusGroup/wallpaperSetGroup\"\n                displayName: {\n                    let cutUrl = dccData.model.wallpaperMap[dccData.model.currentSelectScreen]\n                    if (dccData.model.customWallpaperModel.hasWallpaper(cutUrl)) {\n                        return qsTr(\"My pictures\")\n                    } else if (dccData.model.sysWallpaperModel.hasWallpaper(cutUrl)) {\n                        return qsTr(\"System Wallpaper\")\n                    } else if (dccData.model.solidWallpaperModel.hasWallpaper(cutUrl)) {\n                        return qsTr(\"Solid color wallpaper\")\n                    } else {\n                        return qsTr(\"Customizable wallpapers\")\n                    }\n                }\n                canSearch: false\n                pageType: DccObject.Editor\n                weight: 10\n                onParentItemChanged: {\n                    if (parentItem)\n                        parentItem.implicitHeight = 36\n                }\n            }\n            DccObject {\n                name: \"fillStyle\"\n                parentName: \"personalization/wallpaper/wallpaperStatusGroup/wallpaperSetGroup\"\n                displayName: qsTr(\"fill style\")\n                visible: false\n                weight: 100\n                pageType: DccObject.Editor\n                page: D.ComboBox {\n                    flat: true\n                    model: [\"adapt\"]\n                }\n\n                onParentItemChanged: {\n                    if (parentItem)\n                        parentItem.implicitHeight = 36\n                }\n            }\n            DccObject {\n                name: \"automaticWallpaper\"\n                parentName: \"personalization/wallpaper/wallpaperStatusGroup/wallpaperSetGroup\"\n                displayName: qsTr(\"Automatic wallpaper change\")\n                weight: 200\n                pageType: DccObject.Editor\n                page: CustomComboBox {\n                    flat: true\n                    textRole: \"text\"\n                    currentIndex: indexByValue(dccData.model.wallpaperSlideShowMap[dccData.model.currentSelectScreen])\n                    model: ListModel {\n                        ListElement { text: qsTr(\"never\"); value: \"\" }\n                        ListElement { text: qsTr(\"30 second\"); value: \"30\" }\n                        ListElement { text: qsTr(\"1 minute\"); value: \"60\" }\n                        ListElement { text: qsTr(\"5 minute\"); value: \"300\" }\n                        ListElement { text: qsTr(\"10 minute\"); value: \"600\" }\n                        ListElement { text: qsTr(\"15 minute\"); value: \"900\" }\n                        ListElement { text: qsTr(\"30 minute\"); value: \"1800\" }\n                        ListElement { text: qsTr(\"1 hour\"); value: \"3600\" }\n                        ListElement { text: qsTr(\"login\"); value: \"login\" }\n                        ListElement { text: qsTr(\"wake up\"); value: \"wakeup\" }\n                    }\n                    onCurrentIndexChanged: {\n                        if (indexByValue(dccData.model.wallpaperSlideShowMap[dccData.model.currentSelectScreen]) !== currentIndex) {\n                            dccData.worker.setWallpaperSlideShow(dccData.model.currentSelectScreen, model.get(currentIndex).value)\n                        }\n                    }\n                }\n                onParentItemChanged: {\n                    if (parentItem) {\n                        parentItem.implicitHeight = 36\n                        parentItem.rightItemTopMargin = 0\n                        parentItem.rightItemBottomMargin = 0\n                    }\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"myPictures\"\n        parentName: \"personalization/wallpaper\"\n        displayName: qsTr(\"My pictures\")\n        weight: 400\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: WallpaperSelectView {\n            firstItemImgSource: \"wallpaper_add_bg\"\n            firstItemTopIconName: \"wallpaper_add\"\n            model: dccData.model.customWallpaperModel\n            currentItem: dccData.model.wallpaperMap[dccData.model.currentSelectScreen]\n            onFirstItemClicked: {\n                customWallpaperFileDialog.open()\n            }\n            onWallpaperSelected: (url, isDark, option) => {\n                                    dccData.worker.setWallpaperForMonitor(dccData.model.currentSelectScreen, url, isDark, option)\n                                 }\n            \n            onWallpaperDeleteClicked: (url) => {\n                dccData.worker.deleteWallpaper(url)\n            }\n\n            FileDialog {\n                id: customWallpaperFileDialog\n                title: \"Choose an Image File\"\n                nameFilters: [\"Image files (*.png *.jpg *.jpeg *.bmp *.tiff)\", \"All files (*)\"]\n                fileMode: FileDialog.OpenFile\n                onAccepted: {\n                    dccData.worker.addCustomWallpaper(customWallpaperFileDialog.selectedFile)\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"systemWallapers\"\n        parentName: \"personalization/wallpaper\"\n        displayName: qsTr(\"System Wallpapers\")\n        weight: 500\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: WallpaperSelectView {\n            model: dccData.model.sysWallpaperModel\n            currentItem: dccData.model.wallpaperMap[dccData.model.currentSelectScreen]\n            onWallpaperSelected: (url, isDark, option) => {\n                                    dccData.worker.setWallpaperForMonitor(dccData.model.currentSelectScreen, url, isDark, option)\n                                 }\n        }\n    }\n\n    DccObject {\n        name: \"liveWallpaper\"\n        parentName: \"personalization/wallpaper\"\n        visible: false\n        displayName: qsTr(\"Live Wallpaper\")\n        weight: 600\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: WallpaperSelectView {\n            // model: dccData.model.wallpaperModel\n        }\n    }\n\n    DccObject {\n        name: \"solidColor\"\n        parentName: \"personalization/wallpaper\"\n        displayName: qsTr(\"Solid color wallpaper\")\n        weight: 600\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: WallpaperSelectView {\n            firstItemImgSource: \"wallpaper_addcolor\"\n            model: dccData.model.solidWallpaperModel\n            currentItem: dccData.model.wallpaperMap[dccData.model.currentSelectScreen]\n            onWallpaperSelected: (url, isDark, option) => {\n                                    dccData.worker.setWallpaperForMonitor(dccData.model.currentSelectScreen, url, isDark, option)\n                                 }\n            onFirstItemClicked: {\n                colorDialog.open()\n            }\n            onWallpaperDeleteClicked: (url) => {\n                dccData.worker.deleteWallpaper(url)\n            }\n            DccColorDialog {\n                id: colorDialog\n                anchors.centerIn: Overlay.overlay\n                popupType: Popup.Item\n                width: 274\n                height: 322\n                onAccepted: {\n                    dccData.worker.addSolidWallpaper(colorDialog.color)\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/WallpaperSelectView.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport QtQuick.Controls\nimport QtQuick.Layouts\nimport QtQuick.Dialogs\nimport Qt5Compat.GraphicalEffects\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dtk.private as P\nimport org.deepin.dcc.personalization 1.0\n\nColumnLayout {\n    id: root\n    spacing: 0\n    readonly property int imageBorder: 2\n    // 1 is the distance between the border and the image\n    readonly property int imageSpacing: 4\n    readonly property int imageMargin: imageBorder + 1\n\n    // base size for layout calculation (fixed 84x54)\n    property int baseImageRectW: 84\n    property int baseImageRectH: 54\n    // scaling factor applied to thumbnails when window is resized\n    property real scaleFactor: 1.0\n    property int imageRectW: baseImageRectW * scaleFactor\n    property int imageRectH: baseImageRectH * scaleFactor\n    property int baseItemWidth: baseImageRectW + imageBorder * 2 + 1\n    property int baseItemHeight: baseImageRectH + imageBorder * 2 + 1\n    property int itemWidth: baseItemWidth * scaleFactor\n    property int itemHeight: baseItemHeight * scaleFactor\n\n    property var model\n    property bool isExpand: false\n    property var currentItem\n    property string firstItemImgSource: \"\"\n    property bool firstItemVisible: firstItemImgSource !== \"\"\n    property string firstItemTopIconName: \"\"\n    property bool enableContextMenu: true\n\n    signal wallpaperSelected(var url, bool isDark, var option)\n    signal firstItemClicked()\n    signal wallpaperDeleteClicked(var url)\n\n    onIsExpandChanged: {\n        sortedModel.update()\n    }\n\n    onFirstItemVisibleChanged: {\n        layout.updateLayout()\n    }\n\n    Component.onCompleted: {\n        layout.updateLayout()\n    }\n\n    RowLayout {\n        id: titleLayout\n        Layout.fillWidth: true\n        Layout.preferredHeight: Math.max(titleLabel.implicitHeight, titleLoolButton.implicitHeight)\n        Layout.topMargin: 6\n        Layout.bottomMargin: 0\n\n        Label {\n            id: titleLabel\n            Layout.leftMargin: 10\n            font: D.DTK.fontManager.t6\n            text: dccObj.displayName\n        }\n        Item {\n            Layout.fillWidth: true\n        }\n        D.ToolButton {\n            id: titleLoolButton\n            font: D.DTK.fontManager.t7\n            visible: layout.lineCount * 2 < root.model.count + root.firstItemVisible ? 1 : 0\n            textColor: D.Palette {\n                normal {\n                    common: D.DTK.makeColor(D.Color.Highlight)\n                }\n                normalDark: normal\n                hovered {\n                    common: D.DTK.makeColor(D.Color.Highlight).lightness(+30)\n                }\n                hoveredDark: hovered\n            }\n            text: root.isExpand ? qsTr(\"unfold\") : qsTr(\"show all - %1 items\").arg(root.model.count)\n            onClicked: {\n                root.isExpand = !root.isExpand\n            }\n            background: Item {}\n        }\n    }\n\n    Item {\n        Layout.fillWidth: true\n        Layout.preferredHeight: containter.height\n        Layout.leftMargin: 8\n        Layout.rightMargin: 8\n\n        // animation used\n        Rectangle {\n            id: containter\n            width: parent.width\n            height: layout.height\n            color: \"transparent\"\n            Behavior on height {\n                NumberAnimation {\n                    duration: 300\n                    easing.type: Easing.OutQuart\n                }\n            }\n        }\n\n        Flow {\n            id: layout\n            property int lineCount: 0\n            width: parent.width\n            spacing: root.imageSpacing\n            bottomPadding: 12\n\n            function updateLayout() {\n                var modelCount = root.model ? root.model.count : 0\n                var totalItems = (root.firstItemVisible ? 1 : 0) + modelCount\n\n                if (totalItems <= 0 || parent.width <= 0) {\n                    lineCount = 0\n                    root.scaleFactor = 1.0\n                    return\n                }\n\n                var availableWidth = parent.width\n                var spacing = root.imageSpacing\n                var baseItemTotal = root.baseItemWidth + spacing\n\n                // theoretical columns based purely on base width 84 and spacing\n                var columns = Math.max(1, Math.floor((availableWidth + spacing) / baseItemTotal))\n\n                // distribute the remaining width across columns to get a scale factor\n                var usedWidth = columns * baseItemTotal - spacing\n                var extra = availableWidth - usedWidth\n\n                var actualItemWidth = root.baseItemWidth\n                var scale = 1.0\n\n                if (columns > 0) {\n                    var delta = extra / columns\n                    actualItemWidth = root.baseItemWidth + delta\n                    scale = actualItemWidth / root.baseItemWidth\n                }\n\n                lineCount = columns\n                root.scaleFactor = scale\n            }\n\n            onWidthChanged: updateLayout()\n\n            move: Transition {\n            }\n\n            Loader {\n                active: root.firstItemVisible\n                sourceComponent: Item {\n                    width: root.itemWidth\n                    height: root.itemHeight\n\n                    Control {\n                        id: iconControl\n                        anchors.fill: parent                        \n                        contentItem: D.DciIcon {\n                            id: firstItemImage\n                            anchors.fill: parent\n                            visible: false\n                            sourceSize: Qt.size(168, 108)\n                            name: root.firstItemImgSource\n                            asynchronous: true\n                            theme: iconControl.D.ColorSelector.controlTheme\n                        }\n                    }\n\n                    OpacityMask {\n                        anchors.fill: parent\n                        anchors.margins: root.imageMargin\n                        source: firstItemImage\n                        maskSource: Rectangle {\n                            anchors.fill: parent\n                            implicitWidth: firstItemImage.width\n                            implicitHeight: firstItemImage.height\n                            radius: 6\n                        }\n                    }\n\n                    Item {\n                        id: firstItemTopIconContainer\n                        anchors.fill: parent\n                        anchors.margins: root.imageMargin\n\n                        Column {\n                            anchors.centerIn: parent\n                            spacing: 4\n\n                            D.DciIcon {\n                                id: firstItemTopIcon\n                                anchors.horizontalCenter: parent.horizontalCenter\n                                width: 18\n                                height: 18\n                                sourceSize: Qt.size(18, 18)\n                                theme: firstItemImage.theme\n                                name: root.firstItemTopIconName\n                                visible: root.firstItemTopIconName !== \"\"\n                                asynchronous: true\n                            }\n\n                            Label {\n                                anchors.horizontalCenter: parent.horizontalCenter\n                                text: qsTr(\"Add Picture\")\n                                font: D.DTK.fontManager.t10\n                                opacity: 0.7\n                                visible: root.firstItemTopIconName !== \"\"\n                            }\n                        }\n                    }\n\n                    MouseArea {\n                        anchors.fill: parent\n                        onClicked: {\n                            root.firstItemClicked()\n                        }\n                    }\n                }\n            }\n\n            Repeater {\n                model: sortedModel\n            }\n        }\n\n        Timer {\n            id: updateTimer\n            interval: 20\n            running: false\n            repeat: false\n            onTriggered: {\n                sortedModel.update()\n            }\n        }\n\n        D.SortFilterModel {\n            id: sortedModel\n            model: root.model\n            property int maxCount: layout.lineCount * 2 - (root.firstItemVisible ? 1 : 0)\n            property int lastMaxCount: 0\n            lessThan: function(left, right) {\n                return left.index < right.index\n            }\n            filterAcceptsItem: function(item) {\n                return root.isExpand ? true : item.index < maxCount\n            }\n            onMaxCountChanged: {\n                if ((Math.abs(maxCount - lastMaxCount)) > 5) {\n                    updateTimer.start()\n                } else {\n                    sortedModel.update()\n                }\n                lastMaxCount = maxCount\n            }\n\n            delegate: Control {\n                id: control\n                width: root.itemWidth\n                height: root.itemHeight\n                hoverEnabled: true\n\n                contentItem: Item {\n                    id: wallpaperItem\n                    function requestSetWallpaper(option) {\n                        img2x2.grabToImage(function(result) {\n                            const isDarkType = dccData.imageHelper.isDarkType(result.image)\n                            root.wallpaperSelected(model.url, isDarkType, option)\n                        }, Qt.size(2, 2))\n                    }\n\n                    Image {\n                        id: img2x2\n                        property bool isDarktype: true\n                        anchors.centerIn : parent\n                        width: 2\n                        height: 2\n                        source: \"image://DccImage/\" + model.thumbnail\n                        fillMode: Image.Stretch\n                        asynchronous: true\n                    }\n\n                    Image {\n                        id: image\n                        anchors.centerIn: parent\n                        width: root.imageRectW\n                        height: root.imageRectH\n                        sourceSize: Qt.size(width, height)\n                        source: \"image://DccImage/\" + model.thumbnail\n                        mipmap: false\n                        visible: false\n                        fillMode: Image.PreserveAspectCrop\n                        asynchronous: true\n                        retainWhileLoading: true\n                    }\n\n                    OpacityMask {\n                        anchors.fill: parent\n                        anchors.margins: root.imageMargin\n                        source: image\n                        maskSource: Rectangle {\n                            anchors.fill: parent\n                            implicitWidth: image.width\n                            implicitHeight: image.height\n                            radius: 6\n                        }\n                    }\n\n                    D.InsideBoxBorder {\n                        anchors.fill: image\n                        visible: !borderRect.visible\n                        color: Qt.rgba(0, 0, 0, 0.1)\n                        radius: 6\n                    }\n\n                    Rectangle {\n                        id: borderRect\n                        anchors.fill: parent\n                        visible: model.url !== undefined && model.url === root.currentItem\n                        color: \"transparent\"\n                        border.width: 2\n                        border.color: D.DTK.platformTheme.activeColor\n                        radius: 8\n                    }\n\n                    MouseArea {\n                        anchors.fill: parent\n                        hoverEnabled: true\n                        acceptedButtons: Qt.LeftButton | Qt.RightButton\n                        onClicked: function(mouse) {\n                            if (mouse.button === Qt.LeftButton) {\n                                wallpaperItem.requestSetWallpaper(PersonalizationExport.Option_All)\n                            } else if (mouse.button === Qt.RightButton && root.enableContextMenu && !DccApp.isTreeland()) {\n                                contextMenu.x = mouse.x\n                                contextMenu.y = mouse.y\n                                contextMenu.open()\n                            }\n                        }\n                    }\n\n                    Control {\n                        anchors.right: parent.right\n                        anchors.top: parent.top\n                        anchors.topMargin: - height / 2 + root.imageMargin\n                        anchors.rightMargin: - width / 2 + root.imageMargin + 2\n                        hoverEnabled: true\n                        z: 999\n                        contentItem: D.ActionButton {\n                            icon.name: \"close\"\n                            implicitWidth: 20\n                            implicitHeight: 20\n                            icon.width: 14\n                            icon.height: 14\n                            visible: (control.hovered || parent.hovered) && model.deleteAble && !model.selected\n                            background: D.BoxPanel {\n                                radius: width / 2\n                                enableBoxShadow: true\n                                boxShadowBlur: 10\n                                boxShadowOffsetY: 4\n                                color1: D.Palette {\n                                    normal {\n                                        common: Qt.rgba(240 / 255.0, 240 / 255.0, 240 / 255.0, 0.9)\n                                        // TODO crystal: Qt.rgba(240 / 255.0, 240 / 255.0, 240 / 255.0, 0.5)\n                                        crystal: Qt.rgba(240 / 255.0, 240 / 255.0, 240 / 255.0, 1.0)\n                                    }\n                                    normalDark {\n                                        common: Qt.rgba(24 / 255.0, 24 / 255.0, 24 / 255.0, 0.8)\n                                        // TODO crystal: Qt.rgba(240 / 255.0, 240 / 255.0, 240 / 255.0, 0.5)\n                                        crystal: Qt.rgba(24 / 255.0, 24 / 255.0, 24 / 255.0, 1.0)\n                                    }\n                                    hovered {\n                                        common: Qt.rgba(220 / 255.0, 220 / 255.0, 220 / 255.0, 0.95)\n                                        crystal: Qt.rgba(220 / 255.0, 220 / 255.0, 220 / 255.0, 1.0)\n                                    }\n                                    hoveredDark {\n                                        common: Qt.rgba(44 / 255.0, 44 / 255.0, 44 / 255.0, 0.9)\n                                        crystal: Qt.rgba(44 / 255.0, 44 / 255.0, 44 / 255.0, 1.0)\n                                    }\n                                }\n\n                                color2: color1\n                                insideBorderColor: null\n                                outsideBorderColor: null\n                            }\n                            onClicked: {\n                                root.wallpaperDeleteClicked(model.url)\n                            }\n                            scale: visible ? 1 : 0\n                            Behavior on scale {\n                                NumberAnimation {\n                                    duration: 300\n                                    easing.type: Easing.OutExpo\n                                }\n                            }\n                        }\n                    }\n\n                    D.Menu {\n                        id: contextMenu\n                        MenuItem {\n                            text: qsTr(\"Set lock screen\")\n                            onTriggered: {\n                                wallpaperItem.requestSetWallpaper(PersonalizationExport.Option_Lock)\n                            }\n                        }\n                        MenuItem {\n                            text: qsTr(\"Set desktop\")\n                            onTriggered: {\n                                wallpaperItem.requestSetWallpaper(PersonalizationExport.Option_Desktop)\n                            }\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/WindowEffectPage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    DccTitleObject {\n        name: \"interfaceAndEffectTitle\"\n        parentName: \"personalization/windowEffect\"\n        displayName: qsTr(\"Interface and Effects\")\n        visible: dccData.platformName() !== \"wayland\"\n        weight: 10\n    }\n\n    DccObject {\n        name: \"interfaceAndEffect\"\n        parentName: \"personalization/windowEffect\"\n        weight: 100\n        pageType: DccObject.Item\n        visible: dccData.platformName() !== \"wayland\"\n        page: DccGroupView {}\n        InterfaceEffectListview {}\n    }\n\n    DccTitleObject {\n        name: \"windowSettingsTitle\"\n        parentName: \"personalization/windowEffect\"\n        displayName: qsTr(\"Window Settings\")\n        weight: 200\n    }\n\n    DccObject {\n        name: \"windowSettingsGroup\"\n        parentName: \"personalization/windowEffect\"\n        weight: 300\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"roundedEffect\"\n            parentName: \"personalization/windowEffect/windowSettingsGroup\"\n            displayName: qsTr(\"Window rounded corners\")\n            visible: dccData.model.windowEffectType < InterfaceEffectListview.WindowEffectType.Normal || dccData.platformName() === \"wayland\"\n            weight: 1\n            pageType: DccObject.Item\n            page: ColumnLayout {\n                anchors.fill: parent\n                Label {\n                    id: speedText\n                    Layout.topMargin: 10\n                    text: dccObj.displayName\n                    Layout.leftMargin: 14\n                }\n\n                Flow {\n                    id: listview\n                    Layout.fillWidth: true\n                    Layout.bottomMargin: 10\n                    Layout.leftMargin: 10\n                    property var tips: [qsTr(\"None\"), qsTr(\"Small\"), qsTr(\"Medium\", \"describe size of window rounded corners\"), qsTr(\"Large\")]\n                    property var icons: [\"corner_none\", \"corner_small\", \"corner_middle\", \"corner_big\"]\n                    spacing: 8\n                    Repeater {\n                        model: listview.tips.length\n                        ColumnLayout {\n                            id: layout\n                            property bool checked: dccData.model.windowRadius === 6 * index\n                            width: 112\n                            height: 104\n                            Item {\n                                Layout.preferredHeight: 78\n                                Layout.fillWidth: true\n\n                                Rectangle {\n                                    anchors.fill: parent\n                                    color: \"transparent\"\n                                    border.width: 2\n                                    border.color: layout.checked ? D.DTK.platformTheme.activeColor : \"transparent\"\n                                    radius: 7\n                                    Control {\n                                        id: iconControl\n                                        anchors.fill: parent\n                                        anchors.margins: 4\n\n                                        contentItem: D.DciIcon {\n                                            palette: D.DTK.makeIconPalette(iconControl.palette)\n                                            theme: iconControl.D.ColorSelector.controlTheme\n                                            sourceSize: Qt.size(width, height)\n                                            name: listview.icons[index]\n                                        }\n                                    }\n                                }\n                                MouseArea {\n                                    anchors.fill: parent\n                                    onClicked: {\n                                        dccData.worker.setWindowRadius(6 * index)\n                                    }\n                                }\n                            }\n\n                            Text {\n                                Layout.fillWidth: true\n                                Layout.fillHeight: true\n                                text: listview.tips[index]\n                                horizontalAlignment: Text.AlignHCenter\n                                verticalAlignment: Text.AlignVCenter\n                                color: layout.checked ? D.DTK.platformTheme.activeColor : this.palette.windowText\n                            }\n                        }\n                    }\n                }\n            }\n        }\n\n        DccObject {\n            name: \"enableTransparentWhenMoveWindow\"\n            parentName: \"personalization/windowEffect/windowSettingsGroup\"\n            displayName: qsTr(\"Enable transparent effects when moving windows\")\n            visible: dccData.model.windowEffectType < InterfaceEffectListview.WindowEffectType.Normal \n                    && dccData.platformName() !== \"wayland\" \n                    && dccData.model.supportEffects.indexOf(\"kwin4_effect_translucency\") !== -1\n            weight: 2\n            pageType: DccObject.Editor\n            page: D.Switch {\n                checked: dccData.model.isMoveWindow\n                onCheckedChanged: {\n                    dccData.worker.setMovedWindowOpacity(checked)\n                }\n            }\n        }\n\n        DccObject {\n            id: minimizeEffectObject\n            property var supportEffects: dccData.model.supportEffects\n            name: \"minimizeEffect\"\n            parentName: \"personalization/windowEffect/windowSettingsGroup\"\n            displayName: qsTr(\"Window Minimize Effect\")\n            visible: dccData.model.windowEffectType <= InterfaceEffectListview.WindowEffectType.Best \n                    && dccData.platformName() !== \"wayland\"\n                    && (supportEffects.indexOf(\"kwin4_effect_scale\") !== -1 || supportEffects.indexOf(\"magiclamp\") !== -1)\n            weight: 3\n            pageType: DccObject.Editor\n            page: CustomComboBox {\n                flat: true\n                currentIndex: dccData.model.miniEffect\n                textRole: \"text\"\n                visibleRole: \"support\"\n\n                model: [\n                    {text: qsTr(\"Scale\"), support: minimizeEffectObject.supportEffects.indexOf(\"kwin4_effect_scale\") !== -1}, \n                    {text: qsTr(\"Magic Lamp\"), support: minimizeEffectObject.supportEffects.indexOf(\"magiclamp\") !== -1}\n                ]\n                onCurrentIndexChanged: {\n                    dccData.worker.setMiniEffect(currentIndex)\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"computerSuspendsAfter\"\n        parentName: \"personalization/windowEffect\"\n        displayName: qsTr(\"Opacity\")\n        weight: 600\n        visible: dccData.model.windowEffectType < InterfaceEffectListview.WindowEffectType.Normal || dccData.platformName() === \"wayland\"\n        pageType: DccObject.Item\n        backgroundType: DccObject.Normal\n        page: ColumnLayout {\n            Layout.fillHeight: true\n            Label {\n                Layout.topMargin: 10\n                font: D.DTK.fontManager.t6\n                text: dccObj.displayName\n                Layout.leftMargin: 14\n            }\n\n            D.TipsSlider {\n                Layout.alignment: Qt.AlignCenter\n                Layout.margins: 10\n                Layout.fillWidth: true\n                tickDirection: D.TipsSlider.TickDirection.Back\n                slider.handleType: Slider.HandleType.ArrowBottom\n                slider.from: 25\n                slider.to: 100\n                slider.value: 25\n                slider.live: true\n                slider.stepSize: 1\n                slider.snapMode: Slider.SnapAlways\n                ticks: [\n                    D.SliderTipItem {\n                        text: qsTr(\"Low\")\n                    },\n                    D.SliderTipItem {\n                        text: \"\"\n                    },\n                    D.SliderTipItem {\n                        text: qsTr(\"High\")\n                    }\n                ]\n                slider.onValueChanged: {\n                    dccData.worker.setOpacity(slider.value)\n                }\n\n                Component.onCompleted: {\n                    slider.value = dccData.model.opacity * 100\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"titleBarHeight\"\n        parentName: \"personalization/windowEffect\"\n        displayName: qsTr(\"Title Bar Height\")\n        description: qsTr(\"Only suitable for application window title bars drawn by the window manager.\")\n        weight: 700\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Editor\n        page: D.ComboBox {\n            flat: true\n            currentIndex: indexOfValue(dccData.model.titleBarHeight)\n            model: [\n                {\n                    text: qsTr(\"Extremely small\"),\n                    value: 24\n                },\n                {\n                    text: qsTr(\"Small\"),\n                    value: 32\n                },\n                {\n                    text: qsTr(\"Medium\", \"describe height of window title bar\"),\n                    value: 40\n                },\n                {\n                    text: qsTr(\"Large\"),\n                    value: 50\n                }\n            ]\n\n            textRole: \"text\"\n            valueRole: \"value\"\n\n            onCurrentIndexChanged: {\n                var selectedValue = model[currentIndex][valueRole]\n                dccData.worker.setDiabledCompactToTitleHeight()\n                dccData.worker.setTitleBarHeight(selectedValue)\n            }\n\n            function indexOfValue(value) {\n                for (var i = 0; i < model.length; i++) {\n                    if (model[i][valueRole] === value) {\n                        return i\n                    }\n                }\n                return -1\n            }\n        }\n    }\n\n    DccObject {\n        id: scrollBarObject\n        name: \"scrollBar\"\n        property bool hasDBusProperty: false\n        parentName: \"personalization/windowEffect\"\n        displayName: qsTr(\"Scroll Bars\")\n        visible: dccData.model.scrollBarPolicyConfig !== \"Hidden\"\n        weight: 800\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Editor\n        page: D.ComboBox {\n            flat: true\n            enabled: dccData.model.scrollBarPolicyConfig !== \"Disabled\"\n            model: [qsTr(\"Show on scrolling\"), qsTr(\"Keep shown\")]\n            currentIndex: {\n                let policy = dccData.model.scrollBarPolicy\n                if (policy === Qt.ScrollBarAsNeeded) {\n                    return 0\n                } else {\n                    return 1\n                }\n            }\n\n            onCurrentIndexChanged: {\n                if (currentIndex === 0) {\n                    dccData.worker.setScrollBarPolicy(Qt.ScrollBarAsNeeded)\n                } else if (currentIndex === 1) {\n                    dccData.worker.setScrollBarPolicy(Qt.ScrollBarAlwaysOn)\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"compact\"\n        parentName: \"personalization/windowEffect\"\n        displayName: qsTr(\"Compact Display\")\n        description: qsTr(\"If enabled, more content is displayed in the window.\")\n        visible: false && dccData.model.compactDisplayConfig !== \"Hidden\"\n        weight: 900\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Editor\n        page: D.Switch {\n            enabled: dccData.model.compactDisplayConfig !== \"Disabled\"\n            checked: dccData.model.compactDisplay\n            onCheckedChanged: {\n                dccData.worker.setCompactDisplay(checked)\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-personalization/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-power/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\nset(Power_Name power)\nfile(GLOB_RECURSE power_SRCS\n    \"operation/*.cpp\"\n    \"operation/*.h\"\n    \"operation/qrc/power.qrc\"\n)\n\nadd_library(${Power_Name} MODULE\n    ${power_SRCS}\n)\n\nset(Power_Libraries\n    ${DCC_FRAME_Library}\n    ${DTK_NS}::Gui\n    ${QT_NS}::DBus\n    ${QT_NS}::Concurrent\n)\n\ntarget_link_libraries(${Power_Name} PRIVATE\n    ${Power_Libraries}\n)\n\ndcc_install_plugin(NAME ${Power_Name} TARGET ${Power_Name})\n"
  },
  {
    "path": "src/plugin-power/operation/powerdbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"powerdbusproxy.h\"\n\n#include <QMetaObject>\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusPendingReply>\n#include <QDBusReply>\n#include <QFile>\n#include <QVariant>\n\n#include <unistd.h>\n\nconst QString PowerService = QStringLiteral(\"org.deepin.dde.Power1\");\nconst QString PowerPath = QStringLiteral(\"/org/deepin/dde/Power1\");\nconst QString PowerInterface = QStringLiteral(\"org.deepin.dde.Power1\");\n\nconst QString SysPowerService = QStringLiteral(\"org.deepin.dde.Power1\");\nconst QString SysPowerPath = QStringLiteral(\"/org/deepin/dde/Power1\");\nconst QString SysPowerInterface = QStringLiteral(\"org.deepin.dde.Power1\");\n\nconst QString Login1ManagerService = QStringLiteral(\"org.freedesktop.login1\");\nconst QString Login1ManagerPath = QStringLiteral(\"/org/freedesktop/login1\");\nconst QString Login1ManagerInterface = QStringLiteral(\"org.freedesktop.login1.Manager\");\n\nconst QString UPowerService = QStringLiteral(\"org.freedesktop.UPower\");\nconst QString UPowerPath = QStringLiteral(\"/org/freedesktop/UPower\");\nconst QString UPowerInterface = QStringLiteral(\"org.freedesktop.UPower\");\n\nconst QString accountsService = QStringLiteral(\"org.deepin.dde.Accounts1\");\nconst QString defaultAccountsPath = QStringLiteral(\"/org/deepin/dde/Accounts1\");\nconst QString accountsInterface = QStringLiteral(\"org.deepin.dde.Accounts1\");\n\nconst QString accountsUserInterface = QStringLiteral(\"org.deepin.dde.Accounts1.User\");\n\nconst QString timeDateService = QStringLiteral(\"org.deepin.dde.Timedate1\");\nconst QString timeDatePath = QStringLiteral(\"/org/deepin/dde/Timedate1\");\nconst QString timeDateInterface = QStringLiteral(\"org.deepin.dde.Timedate1\");\n\nconst QString PropertiesInterface = QStringLiteral(\"org.freedesktop.DBus.Properties\");\nconst QString PropertiesChanged = QStringLiteral(\"PropertiesChanged\");\n\nPowerDBusProxy::PowerDBusProxy(QObject *parent)\n    : QObject(parent)\n    , m_accountRootInter(new DDBusInterface(accountsService, defaultAccountsPath, accountsInterface, QDBusConnection::systemBus(), this))\n    , m_currentAccountInter(nullptr)\n    , m_powerInter(new DDBusInterface(PowerService, PowerPath, PowerInterface, QDBusConnection::sessionBus(), this))\n    , m_sysPowerInter(new DDBusInterface(SysPowerService, SysPowerPath, SysPowerInterface, QDBusConnection::systemBus(), this))\n    , m_login1ManagerInter(new DDBusInterface(Login1ManagerService, Login1ManagerPath, Login1ManagerInterface, QDBusConnection::systemBus(), this))\n    , m_upowerInter(new DDBusInterface(UPowerService, UPowerPath, UPowerInterface, QDBusConnection::systemBus(), this))\n\n{\n}\n\nstd::optional<QString> PowerDBusProxy::findUserById()\n{\n    int id = getuid();\n    QDBusReply<QString> reply = m_accountRootInter->callWithArgumentList(QDBus::CallMode::Block, \"FindUserById\", {QString::number(id)});\n    if (reply.isValid()) {\n        return reply.value();\n    }\n    return std::nullopt;\n}\n\nbool PowerDBusProxy::noPasswdLogin()\n{\n    if (!m_currentAccountInter) {\n        auto path = findUserById();\n        if (!path.has_value()) {\n            return false;\n        }\n        m_currentAccountInter = new DDBusInterface(accountsInterface, path.value(), accountsUserInterface, QDBusConnection::systemBus(), this);\n    }\n    return qvariant_cast<bool>(m_currentAccountInter->property(\"NoPasswdLogin\"));\n}\n\n// power\nbool PowerDBusProxy::screenBlackLock()\n{\n    return qvariant_cast<bool>(m_powerInter->property(\"ScreenBlackLock\"));\n}\n\nvoid PowerDBusProxy::setScreenBlackLock(bool value)\n{\n    m_powerInter->setProperty(\"ScreenBlackLock\", QVariant::fromValue(value));\n}\n\nbool PowerDBusProxy::sleepLock()\n{\n    return qvariant_cast<bool>(m_powerInter->property(\"SleepLock\"));\n}\n\nvoid PowerDBusProxy::setSleepLock(bool value)\n{\n    m_powerInter->setProperty(\"SleepLock\", QVariant::fromValue(value));\n}\n\nbool PowerDBusProxy::lidIsPresent()\n{\n    return qvariant_cast<bool>(m_powerInter->property(\"LidIsPresent\"));\n}\n\nbool PowerDBusProxy::lidClosedSleep()\n{\n    return qvariant_cast<bool>(m_powerInter->property(\"LidClosedSleep\"));\n}\n\nvoid PowerDBusProxy::setLidClosedSleep(bool value)\n{\n    m_powerInter->setProperty(\"LidClosedSleep\", QVariant::fromValue(value));\n}\n\nbool PowerDBusProxy::lowPowerNotifyEnable()\n{\n    return qvariant_cast<bool>(m_powerInter->property(\"LowPowerNotifyEnable\"));\n}\n\nvoid PowerDBusProxy::setLowPowerNotifyEnable(bool value)\n{\n    m_powerInter->setProperty(\"LowPowerNotifyEnable\", QVariant::fromValue(value));\n}\n\nint PowerDBusProxy::lowPowerAutoSleepThreshold()\n{\n    return qvariant_cast<int>(m_powerInter->property(\"LowPowerAutoSleepThreshold\"));\n}\n\nvoid PowerDBusProxy::setLowPowerAutoSleepThreshold(int value)\n{\n    m_powerInter->setProperty(\"LowPowerAutoSleepThreshold\", QVariant::fromValue(value));\n}\n\nvoid PowerDBusProxy::setLowPowerAction(int action)\n{\n    m_powerInter->setProperty(\"LowPowerAction\", QVariant::fromValue(action));\n}\n\nint PowerDBusProxy::lowPowerAction()\n{\n    return qvariant_cast<int>(m_powerInter->property(\"LowPowerAction\"));\n}\n\nint PowerDBusProxy::lowPowerNotifyThreshold()\n{\n    return qvariant_cast<int>(m_powerInter->property(\"LowPowerNotifyThreshold\"));\n}\n\nvoid PowerDBusProxy::setLowPowerNotifyThreshold(int value)\n{\n    m_powerInter->setProperty(\"LowPowerNotifyThreshold\", QVariant::fromValue(value));\n}\n\nint PowerDBusProxy::linePowerPressPowerBtnAction()\n{\n    return qvariant_cast<int>(m_powerInter->property(\"LinePowerPressPowerBtnAction\"));\n}\n\nvoid PowerDBusProxy::setLinePowerPressPowerBtnAction(int value)\n{\n    m_powerInter->setProperty(\"LinePowerPressPowerBtnAction\", QVariant::fromValue(value));\n}\n\nint PowerDBusProxy::linePowerLidClosedAction()\n{\n    return qvariant_cast<int>(m_powerInter->property(\"LinePowerLidClosedAction\"));\n}\n\nvoid PowerDBusProxy::setLinePowerLidClosedAction(int value)\n{\n    m_powerInter->setProperty(\"LinePowerLidClosedAction\", QVariant::fromValue(value));\n}\n\nint PowerDBusProxy::batteryPressPowerBtnAction()\n{\n    return qvariant_cast<int>(m_powerInter->property(\"BatteryPressPowerBtnAction\"));\n}\n\nvoid PowerDBusProxy::setBatteryPressPowerBtnAction(int value)\n{\n    m_powerInter->setProperty(\"BatteryPressPowerBtnAction\", QVariant::fromValue(value));\n}\n\nint PowerDBusProxy::batteryLidClosedAction()\n{\n    return qvariant_cast<int>(m_powerInter->property(\"BatteryLidClosedAction\"));\n}\n\nvoid PowerDBusProxy::setBatteryLidClosedAction(int value)\n{\n    m_powerInter->setProperty(\"BatteryLidClosedAction\", QVariant::fromValue(value));\n}\n\nbool PowerDBusProxy::isHighPerformanceSupported()\n{\n    return qvariant_cast<bool>(m_powerInter->property(\"IsHighPerformanceSupported\"));\n}\n\nbool PowerDBusProxy::isBalancePerformanceSupported()\n{\n    return qvariant_cast<bool>(m_sysPowerInter->property(\"IsBalancePerformanceSupported\"));\n}\n\nint PowerDBusProxy::linePowerScreenBlackDelay()\n{\n    return qvariant_cast<int>(m_powerInter->property(\"LinePowerScreenBlackDelay\"));\n}\n\nvoid PowerDBusProxy::setLinePowerScreenBlackDelay(int value)\n{\n    m_powerInter->setProperty(\"LinePowerScreenBlackDelay\", QVariant::fromValue(value));\n}\n\nint PowerDBusProxy::linePowerSleepDelay()\n{\n    return qvariant_cast<int>(m_powerInter->property(\"LinePowerSleepDelay\"));\n}\n\nvoid PowerDBusProxy::setLinePowerSleepDelay(int value)\n{\n    m_powerInter->setProperty(\"LinePowerSleepDelay\", QVariant::fromValue(value));\n}\n\nint PowerDBusProxy::batteryScreenBlackDelay()\n{\n    return qvariant_cast<int>(m_powerInter->property(\"BatteryScreenBlackDelay\"));\n}\n\nvoid PowerDBusProxy::setBatteryScreenBlackDelay(int value)\n{\n    m_powerInter->setProperty(\"BatteryScreenBlackDelay\", QVariant::fromValue(value));\n}\n\nint PowerDBusProxy::batterySleepDelay()\n{\n    return qvariant_cast<int>(m_powerInter->property(\"BatterySleepDelay\"));\n}\n\nvoid PowerDBusProxy::setBatterySleepDelay(int value)\n{\n    m_powerInter->setProperty(\"BatterySleepDelay\", QVariant::fromValue(value));\n}\n\nint PowerDBusProxy::batteryLockDelay()\n{\n    return qvariant_cast<int>(m_powerInter->property(\"BatteryLockDelay\"));\n}\n\nvoid PowerDBusProxy::setBatteryLockDelay(int value)\n{\n    m_powerInter->setProperty(\"BatteryLockDelay\", QVariant::fromValue(value));\n}\n\nint PowerDBusProxy::linePowerLockDelay()\n{\n    return qvariant_cast<int>(m_powerInter->property(\"LinePowerLockDelay\"));\n}\n\nvoid PowerDBusProxy::setLinePowerLockDelay(int value)\n{\n    m_powerInter->setProperty(\"LinePowerLockDelay\", QVariant::fromValue(value));\n}\n// sysPower\nbool PowerDBusProxy::hasBattery()\n{\n    return qvariant_cast<bool>(m_sysPowerInter->property(\"HasBattery\"));\n}\n\nbool PowerDBusProxy::powerSavingModeAutoWhenBatteryLow()\n{\n    return qvariant_cast<bool>(m_sysPowerInter->property(\"PowerSavingModeAutoWhenBatteryLow\"));\n}\n\nvoid PowerDBusProxy::setPowerSavingModeAutoWhenBatteryLow(bool value)\n{\n    m_sysPowerInter->setProperty(\"PowerSavingModeAutoWhenBatteryLow\", QVariant::fromValue(value));\n}\n\nuint PowerDBusProxy::powerSavingModeBrightnessDropPercent()\n{\n    return qvariant_cast<uint>(m_sysPowerInter->property(\"PowerSavingModeBrightnessDropPercent\"));\n}\n\nvoid PowerDBusProxy::setPowerSavingModeBrightnessDropPercent(uint value)\n{\n    m_sysPowerInter->setProperty(\"PowerSavingModeBrightnessDropPercent\", QVariant::fromValue(value));\n}\n\nuint PowerDBusProxy::powerSavingModeAutoBatteryPercent()\n{\n    return qvariant_cast<uint>(m_sysPowerInter->property(\"PowerSavingModeAutoBatteryPercent\"));\n}\n\nvoid PowerDBusProxy::setPowerSavingModeAutoBatteryPercent(uint value)\n{\n    m_sysPowerInter->setProperty(\"PowerSavingModeAutoBatteryPercent\", QVariant::fromValue(value));\n}\n\nQString PowerDBusProxy::mode()\n{\n    return qvariant_cast<QString>(m_sysPowerInter->property(\"Mode\"));\n}\n\nbool PowerDBusProxy::powerSavingModeAuto()\n{\n    return qvariant_cast<bool>(m_sysPowerInter->property(\"PowerSavingModeAuto\"));\n}\n\nvoid PowerDBusProxy::setPowerSavingModeAuto(bool value)\n{\n    m_sysPowerInter->setProperty(\"PowerSavingModeAuto\", QVariant::fromValue(value));\n}\n\nbool PowerDBusProxy::powerSavingModeEnabled()\n{\n    return qvariant_cast<bool>(m_sysPowerInter->property(\"PowerSavingModeEnabled\"));\n}\n\nvoid PowerDBusProxy::setPowerSavingModeEnabled(bool value)\n{\n    m_sysPowerInter->setProperty(\"PowerSavingModeEnabled\", QVariant::fromValue(value));\n}\n\ndouble PowerDBusProxy::batteryCapacity()\n{\n    return qvariant_cast<double>(m_sysPowerInter->property(\"BatteryCapacity\"));\n}\n\nint PowerDBusProxy::maxBacklightBrightness()\n{\n    QDBusInterface Interface(\"org.deepin.dde.Display1\",\n                             \"/org/deepin/dde/Display1\",\n                             \"org.deepin.dde.Display1\",\n                             QDBusConnection::sessionBus());\n    return Interface.property(\"MaxBacklightBrightness\").toInt();\n}\n\nvoid PowerDBusProxy::SetMode(const QString &mode)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(mode);\n    m_sysPowerInter->asyncCallWithArgumentList(QStringLiteral(\"SetMode\"), argumentList);\n}\n\nbool PowerDBusProxy::CanSuspend()\n{\n    if (!QFile(\"/sys/power/mem_sleep\").exists())\n        return false;\n\n    return login1ManagerCanSuspend();\n}\n\nbool PowerDBusProxy::CanHibernate()\n{\n    return login1ManagerCanHibernate();\n}\n\nbool PowerDBusProxy::login1ManagerCanSuspend()\n{\n    /* return true; */\n    QList<QVariant> argumentList;\n    QDBusPendingReply<QString> reply = m_login1ManagerInter->callWithArgumentList(QDBus::BlockWithGui, QStringLiteral(\"CanSuspend\"), argumentList);\n    return reply.value().contains(\"yes\");\n}\n\nbool PowerDBusProxy::login1ManagerCanHibernate()\n{\n    /* return true; */\n    QList<QVariant> argumentList;\n    QDBusPendingReply<QString> reply = m_login1ManagerInter->callWithArgumentList(QDBus::BlockWithGui, QStringLiteral(\"CanHibernate\"), argumentList);\n    return reply.value().contains(\"yes\");\n}\n\nvoid PowerDBusProxy::setScheduledShutdownState(bool value)\n{\n    m_powerInter->setProperty(\"ScheduledShutdownState\", QVariant(value));\n}\n\nbool PowerDBusProxy::scheduledShutdownState()\n{\n    return qvariant_cast<bool>(m_powerInter->property(\"ScheduledShutdownState\"));\n}\n\nvoid PowerDBusProxy::setShutdownTime(const QString &time)\n{\n    m_powerInter->setProperty(\"ShutdownTime\", QVariant(time));\n}\n\nQString PowerDBusProxy::shutdownTime()\n{\n    return qvariant_cast<QString>(m_powerInter->property(\"ShutdownTime\"));\n}\n\nvoid PowerDBusProxy::setShutdownRepetition(int repetition)\n{\n    m_powerInter->setProperty(\"ShutdownRepetition\", QVariant::fromValue<int>(repetition));\n}\n\nint PowerDBusProxy::shutdownRepetition()\n{\n    return qvariant_cast<int>(m_powerInter->property(\"ShutdownRepetition\"));\n}\n\nvoid PowerDBusProxy::setCustomShutdownWeekDays(const QByteArray &weekdays)\n{\n    m_powerInter->setProperty(\"CustomShutdownWeekDays\", weekdays);\n}\n\nQByteArray PowerDBusProxy::customShutdownWeekDays()\n{\n    return qvariant_cast<QByteArray>(m_powerInter->property(\"CustomShutdownWeekDays\"));\n}\n"
  },
  {
    "path": "src/plugin-power/operation/powerdbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef POWERDBUSPROXY_H\n#define POWERDBUSPROXY_H\n\n#include <QObject>\n#include <DDBusInterface>\n#include <optional>\nclass QDBusInterface;\nclass QDBusMessage;\nusing Dtk::Core::DDBusInterface;\nclass PowerDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit PowerDBusProxy(QObject *parent = nullptr);\n\n    // Power\n    Q_PROPERTY(bool ScreenBlackLock READ screenBlackLock WRITE setScreenBlackLock NOTIFY ScreenBlackLockChanged)\n    bool screenBlackLock();\n    void setScreenBlackLock(bool value);\n    Q_PROPERTY(bool SleepLock READ sleepLock WRITE setSleepLock NOTIFY SleepLockChanged)\n    bool sleepLock();\n    void setSleepLock(bool value);\n    Q_PROPERTY(bool LidIsPresent READ lidIsPresent NOTIFY LidIsPresentChanged)\n    bool lidIsPresent();\n    Q_PROPERTY(bool LidClosedSleep READ lidClosedSleep WRITE setLidClosedSleep NOTIFY LidClosedSleepChanged)\n    bool lidClosedSleep();\n    void setLidClosedSleep(bool value);\n    Q_PROPERTY(bool LowPowerNotifyEnable READ lowPowerNotifyEnable WRITE setLowPowerNotifyEnable NOTIFY LowPowerNotifyEnableChanged)\n    bool lowPowerNotifyEnable();\n    void setLowPowerNotifyEnable(bool value);\n    Q_PROPERTY(int LowPowerAutoSleepThreshold READ lowPowerAutoSleepThreshold WRITE setLowPowerAutoSleepThreshold NOTIFY LowPowerAutoSleepThresholdChanged)\n    int lowPowerAutoSleepThreshold();\n    void setLowPowerAutoSleepThreshold(int value);\n    Q_PROPERTY(int LowPowerNotifyThreshold READ lowPowerNotifyThreshold WRITE setLowPowerNotifyThreshold NOTIFY LowPowerNotifyThresholdChanged)\n    int lowPowerNotifyThreshold();\n    void setLowPowerNotifyThreshold(int value);\n    Q_PROPERTY(int LinePowerPressPowerBtnAction READ linePowerPressPowerBtnAction WRITE setLinePowerPressPowerBtnAction NOTIFY LinePowerPressPowerBtnActionChanged)\n    int linePowerPressPowerBtnAction();\n    void setLinePowerPressPowerBtnAction(int value);\n    Q_PROPERTY(int LinePowerLidClosedAction READ linePowerLidClosedAction WRITE setLinePowerLidClosedAction NOTIFY LinePowerLidClosedActionChanged)\n    int linePowerLidClosedAction();\n    void setLinePowerLidClosedAction(int value);\n    Q_PROPERTY(int BatteryPressPowerBtnAction READ batteryPressPowerBtnAction WRITE setBatteryPressPowerBtnAction NOTIFY BatteryPressPowerBtnActionChanged)\n    int batteryPressPowerBtnAction();\n    void setBatteryPressPowerBtnAction(int value);\n    Q_PROPERTY(int BatteryLidClosedAction READ batteryLidClosedAction WRITE setBatteryLidClosedAction NOTIFY BatteryLidClosedActionChanged)\n    int batteryLidClosedAction();\n    void setBatteryLidClosedAction(int value);\n    Q_PROPERTY(bool IsHighPerformanceSupported READ isHighPerformanceSupported NOTIFY IsHighPerformanceSupportedChanged)\n    bool isHighPerformanceSupported();\n    Q_PROPERTY(bool IsBalancePerformanceSupported READ isBalancePerformanceSupported NOTIFY IsBalancePerformanceSupportedChanged)\n    bool isBalancePerformanceSupported();\n    Q_PROPERTY(int LinePowerScreenBlackDelay READ linePowerScreenBlackDelay WRITE setLinePowerScreenBlackDelay NOTIFY LinePowerScreenBlackDelayChanged)\n    int linePowerScreenBlackDelay();\n    void setLinePowerScreenBlackDelay(int value);\n    Q_PROPERTY(int LinePowerSleepDelay READ linePowerSleepDelay WRITE setLinePowerSleepDelay NOTIFY LinePowerSleepDelayChanged)\n    int linePowerSleepDelay();\n    void setLinePowerSleepDelay(int value);\n    Q_PROPERTY(int BatteryScreenBlackDelay READ batteryScreenBlackDelay WRITE setBatteryScreenBlackDelay NOTIFY BatteryScreenBlackDelayChanged)\n    int batteryScreenBlackDelay();\n    void setBatteryScreenBlackDelay(int value);\n    Q_PROPERTY(int BatterySleepDelay READ batterySleepDelay WRITE setBatterySleepDelay NOTIFY BatterySleepDelayChanged)\n    int batterySleepDelay();\n    void setBatterySleepDelay(int value);\n    Q_PROPERTY(int BatteryLockDelay READ batteryLockDelay WRITE setBatteryLockDelay NOTIFY BatteryLockDelayChanged)\n    int batteryLockDelay();\n    void setBatteryLockDelay(int value);\n    Q_PROPERTY(int LinePowerLockDelay READ linePowerLockDelay WRITE setLinePowerLockDelay NOTIFY LinePowerLockDelayChanged)\n    int linePowerLockDelay();\n    void setLinePowerLockDelay(int value);\n    // SystemPower\n    Q_PROPERTY(bool HasBattery READ hasBattery NOTIFY HasBatteryChanged)\n    bool hasBattery();\n    Q_PROPERTY(bool PowerSavingModeAutoWhenBatteryLow READ powerSavingModeAutoWhenBatteryLow WRITE setPowerSavingModeAutoWhenBatteryLow NOTIFY PowerSavingModeAutoWhenBatteryLowChanged)\n    bool powerSavingModeAutoWhenBatteryLow();\n    void setPowerSavingModeAutoWhenBatteryLow(bool value);\n\n    Q_PROPERTY(uint PowerSavingModeBrightnessDropPercent READ powerSavingModeBrightnessDropPercent WRITE setPowerSavingModeBrightnessDropPercent NOTIFY PowerSavingModeBrightnessDropPercentChanged)\n    uint powerSavingModeBrightnessDropPercent();\n    void setPowerSavingModeBrightnessDropPercent(uint value);\n\n    Q_PROPERTY(uint PowerSavingModeAutoBatteryPercent READ powerSavingModeAutoBatteryPercent WRITE setPowerSavingModeAutoBatteryPercent NOTIFY PowerSavingModeAutoBatteryPercentChanged)\n    uint powerSavingModeAutoBatteryPercent();\n    void setPowerSavingModeAutoBatteryPercent(uint value);\n\n    Q_PROPERTY(QString Mode READ mode NOTIFY ModeChanged)\n    QString mode();\n    Q_PROPERTY(bool PowerSavingModeAuto READ powerSavingModeAuto WRITE setPowerSavingModeAuto NOTIFY PowerSavingModeAutoChanged)\n    bool powerSavingModeAuto();\n    void setPowerSavingModeAuto(bool value);\n    Q_PROPERTY(bool PowerSavingModeEnabled READ powerSavingModeEnabled WRITE setPowerSavingModeEnabled NOTIFY PowerSavingModeEnabledChanged)\n    bool powerSavingModeEnabled();\n    void setPowerSavingModeEnabled(bool value);\n    Q_PROPERTY(double BatteryCapacity READ batteryCapacity NOTIFY BatteryCapacityChanged)\n    double batteryCapacity();\n    Q_PROPERTY(int MaxBacklightBrightness READ maxBacklightBrightness)\n    int maxBacklightBrightness();\n\n    // USER\n    Q_PROPERTY(bool NoPasswdLogin READ noPasswdLogin NOTIFY noPasswdLoginChanged)\n    bool noPasswdLogin();\n\n    Q_PROPERTY(bool ScheduledShutdownState READ scheduledShutdownState WRITE setScheduledShutdownState NOTIFY ScheduledShutdownStateChanged)\n    void setScheduledShutdownState(bool value);\n    bool scheduledShutdownState();\n\n    Q_PROPERTY(QString ShutdownTime READ shutdownTime WRITE setShutdownTime NOTIFY ShutdownTimeChanged)\n    void setShutdownTime(const QString &time);\n    QString shutdownTime();\n\n    Q_PROPERTY(int ShutdownRepetition READ shutdownRepetition WRITE setShutdownRepetition NOTIFY ShutdownRepetitionChanged)\n    void setShutdownRepetition(int repetition);\n    int shutdownRepetition();\n\n    Q_PROPERTY(QByteArray CustomShutdownWeekDays READ customShutdownWeekDays WRITE setCustomShutdownWeekDays NOTIFY CustomShutdownWeekDaysChanged)\n    void setCustomShutdownWeekDays(const QByteArray &weekdays);\n    QByteArray customShutdownWeekDays();\n\n    Q_PROPERTY(int LowPowerAction READ lowPowerAction WRITE setLowPowerAction NOTIFY LowPowerActionChanged)\n    void setLowPowerAction(int action);\n    int lowPowerAction();\n\n    std::optional<QString> findUserById();\n\nsignals:\n    // Power\n    void ScreenBlackLockChanged(bool value) const;\n    void SleepLockChanged(bool value) const;\n    void LidIsPresentChanged(bool value) const;\n    void LidClosedSleepChanged(bool value) const;\n    void LinePowerScreenBlackDelayChanged(int value) const;\n    void LinePowerSleepDelayChanged(int value) const;\n    void BatteryScreenBlackDelayChanged(int value) const;\n    void BatterySleepDelayChanged(int value) const;\n    void BatteryLockDelayChanged(int value) const;\n    void LinePowerLockDelayChanged(int value) const;\n    void IsHighPerformanceSupportedChanged(bool value) const;\n    void IsBalancePerformanceSupportedChanged(bool value) const;\n    void LinePowerPressPowerBtnActionChanged(int value) const;\n    void LinePowerLidClosedActionChanged(int value) const;\n    void BatteryPressPowerBtnActionChanged(int value) const;\n    void BatteryLidClosedActionChanged(int value) const;\n    void LowPowerNotifyEnableChanged(bool value) const;\n    void LowPowerNotifyThresholdChanged(int value) const;\n    void LowPowerAutoSleepThresholdChanged(int value) const;\n    void ShutdownTimeChanged(const QString &time);\n    // SystemPower\n    void PowerSavingModeAutoChanged(bool value) const;\n    void PowerSavingModeEnabledChanged(bool value) const;\n    void HasBatteryChanged(bool value) const;\n    void BatteryPercentageChanged(double value) const;\n    void PowerSavingModeAutoWhenBatteryLowChanged(bool value) const;\n    void PowerSavingModeBrightnessDropPercentChanged(uint value) const;\n    void PowerSavingModeAutoBatteryPercentChanged(uint value) const;\n    void ModeChanged(const QString &value) const;\n    void BatteryCapacityChanged(double value) const;\n    void noPasswdLoginChanged(bool value);\n    void ScheduledShutdownStateChanged(bool value);\n    void ShutdownRepetitionChanged(int repetition);\n    void CustomShutdownWeekDaysChanged(const QByteArray &value);\n    void LowPowerActionChanged(int action);\n\npublic slots:\n    // SystemPower\n    void SetMode(const QString &mode);\n    // PowerManager\n    bool CanSuspend();\n    bool CanHibernate();\n    // login1Manager\n    bool login1ManagerCanSuspend();\n    bool login1ManagerCanHibernate();\n\nprivate:\n    DDBusInterface *m_accountRootInter;\n    DDBusInterface *m_currentAccountInter;\n    DDBusInterface *m_powerInter;\n    DDBusInterface *m_sysPowerInter;\n    DDBusInterface *m_login1ManagerInter;\n    DDBusInterface *m_upowerInter;\n};\n\n#endif // POWERDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-power/operation/powerinterface.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"powerinterface.h\"\n#include \"powermodel.h\"\n#include \"dccfactory.h\"\n#include \"poweroperatormodel.h\"\n#include <QGuiApplication>\n#include <QLoggingCategory>\n#include \"utils.h\"\n\nQ_LOGGING_CATEGORY(DdcPowerInterface, \"dcc-power-interface\")\n\nPowerInterface::PowerInterface(QObject *parent) \n: QObject(parent)\n, m_model(new PowerModel(this))\n, m_worker(new PowerWorker(m_model, this))\n, m_powerLidClosedOperatorModel(new PowerOperatorModel(this))\n, m_powerPressedOperatorModel(new PowerOperatorModel(this))\n, m_batteryLidClosedOperatorModel(new PowerOperatorModel(this))\n, m_batteryPressedOperatorModel(new PowerOperatorModel(this))\n{\n    setPowerActionsVisible({m_powerLidClosedOperatorModel, m_batteryLidClosedOperatorModel}, \n        {POT_ShutDown, POT_ShowShutDownInter}, false);\n\n    setPowerActionsVisible(\n            {m_powerLidClosedOperatorModel, m_powerPressedOperatorModel, m_batteryLidClosedOperatorModel, m_batteryPressedOperatorModel},\n            {POT_Suspend}, m_model->canSuspend() && m_model->getSuspend() &&!isVirtualEnvironment());\n    setPowerActionsVisible(\n            {m_powerLidClosedOperatorModel, m_powerPressedOperatorModel, m_batteryLidClosedOperatorModel, m_batteryPressedOperatorModel},\n            {POT_Hibernate}, m_model->canHibernate() && m_model->getHibernate() &&!isVirtualEnvironment());\n    connect(m_model, &PowerModel::canHibernateChanged, this, [this](bool value){\n        setPowerActionsVisible(\n            {m_powerLidClosedOperatorModel, m_powerPressedOperatorModel, m_batteryLidClosedOperatorModel, m_batteryPressedOperatorModel},\n            {POT_Hibernate}, value && m_model->getHibernate() &&!isVirtualEnvironment());\n    });\n    connect(m_model, &PowerModel::canSuspendChanged, this, [this](bool value){\n        setPowerActionsVisible(\n            {m_powerLidClosedOperatorModel, m_powerPressedOperatorModel, m_batteryLidClosedOperatorModel, m_batteryPressedOperatorModel},\n            {POT_Suspend}, value && m_model->getSuspend() &&!isVirtualEnvironment());\n    });\n    connect(m_model, &PowerModel::hibernateChanged, this, [this](bool value){\n        setPowerActionsVisible(\n            {m_powerLidClosedOperatorModel, m_powerPressedOperatorModel, m_batteryLidClosedOperatorModel, m_batteryPressedOperatorModel},\n            {POT_Hibernate}, value && m_model->canHibernate() &&!isVirtualEnvironment());\n    });\n    connect(m_model, &PowerModel::suspendChanged, this, [this](bool value){\n        setPowerActionsVisible(\n            {m_powerLidClosedOperatorModel, m_powerPressedOperatorModel, m_batteryLidClosedOperatorModel, m_batteryPressedOperatorModel},\n            {POT_Suspend}, value && m_model->canSuspend() &&!isVirtualEnvironment());\n    });\n    connect(m_model, &PowerModel::shutdownChanged, this, [this](bool value){\n        setPowerActionsVisible(\n            {m_powerPressedOperatorModel, m_batteryPressedOperatorModel},\n            {POT_ShutDown}, value);\n    });\n\n    if (isVirtualEnvironment()) {\n        qCInfo(DdcPowerInterface) << \"virtual environment, disable suspend and hibernate\";\n        setPowerActionsVisible(\n            {m_powerLidClosedOperatorModel, m_powerPressedOperatorModel, m_batteryLidClosedOperatorModel, m_batteryPressedOperatorModel},\n            {POT_Hibernate, POT_Suspend}, false);\n    }\n\n    m_worker->active();\n}\n\nint PowerInterface::indexByValueOnModel(QAbstractListModel *model, int targetValue)\n{\n    if (!model) return -1;\n\n    QHash<int, QByteArray> roles = model->roleNames();\n    int valueRole = -1;\n\n    for (auto it = roles.constBegin(); it != roles.constEnd(); ++it) {\n        if (it.value() == \"value\") {\n            valueRole = it.key();\n            break;\n        }\n    }\n\n    if (valueRole == -1) {\n        return -1;\n    }\n\n    for (int i = 0; i < model->rowCount(); i++) {\n        QModelIndex index = model->index(i, 0);\n        QVariant value = model->data(index, valueRole);\n\n        if (value.toInt() == targetValue) {\n            return i;\n        }\n    }\n\n    return -1;\n}\n\nint PowerInterface::indexByValueOnMap(const QVariantList& dataMap, int targetValue)\n{\n    for (int i = 0; i < dataMap.size(); i++) {\n        QVariantMap map = dataMap.at(i).toMap();\n        if (map.value(\"value\").toInt() == targetValue) {\n            return i;\n        }\n    }\n\n    return -1;\n}\n\nQString PowerInterface::platformName()\n{\n    return qApp->platformName();\n}\n\nvoid PowerInterface::setPowerActionsVisible(QList<PowerOperatorModel*> actionModels, QList<PowerOperatorType> type,  bool visible)\n{\n    for (auto model : actionModels) {\n        if (!model) {\n            continue;\n        }\n        for (auto t : type) {\n            model->setVisible(t, visible);\n        }\n    }\n}\n\nDCC_FACTORY_CLASS(PowerInterface)\n\n#include \"powerinterface.moc\"\n"
  },
  {
    "path": "src/plugin-power/operation/powerinterface.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef POWERINTERFACE_H\n#define POWERINTERFACE_H\n\n#include \"powermodel.h\"\n#include \"powerworker.h\"\n#include \"poweroperatormodel.h\"\n\nclass PowerInterface : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(PowerModel *model READ getModel NOTIFY powerModelChanged)\n    Q_PROPERTY(PowerWorker *worker READ getWorker NOTIFY powerWorkerChanged)\n\n    Q_PROPERTY(PowerOperatorModel *powerLidModel MEMBER m_powerLidClosedOperatorModel CONSTANT)\n    Q_PROPERTY(PowerOperatorModel *powerPressModel MEMBER m_powerPressedOperatorModel CONSTANT)\n    Q_PROPERTY(PowerOperatorModel *batteryLidModel MEMBER m_batteryLidClosedOperatorModel CONSTANT)\n    Q_PROPERTY(PowerOperatorModel *batteryPressModel MEMBER m_batteryPressedOperatorModel CONSTANT)\npublic:\n    explicit PowerInterface(QObject *parent = nullptr);\n    PowerModel *getModel() const { return m_model; };\n    PowerWorker *getWorker() const { return m_worker; };\n\n    Q_INVOKABLE int indexByValueOnModel(QAbstractListModel *model, int targetValue);\n    Q_INVOKABLE int indexByValueOnMap(const QVariantList& dataMap, int targetValue);\n    Q_INVOKABLE QString platformName();\n\nprivate:\n    void setPowerActionsVisible(QList<PowerOperatorModel*> actionModels, QList<PowerOperatorType> type,  bool visible);\n\nsignals:\n    void powerModelChanged(PowerModel *model);\n    void powerWorkerChanged(PowerWorker *worker);\n\nprivate:\n    PowerModel *m_model;\n    PowerWorker *m_worker;\n\n    PowerOperatorModel *m_powerLidClosedOperatorModel;\n    PowerOperatorModel *m_powerPressedOperatorModel;\n    PowerOperatorModel *m_batteryLidClosedOperatorModel;\n    PowerOperatorModel *m_batteryPressedOperatorModel;\n};\n\n#endif // POWERINTERFACE_H"
  },
  {
    "path": "src/plugin-power/operation/powermodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"powermodel.h\"\n#include \"utils.h\"\n\n#include <QDebug>\n\nconst double EPSINON = 1e-6;\n\nPowerModel::PowerModel(QObject *parent)\n    : QObject(parent)\n    , m_lidPresent(false)\n    , m_sleepOnLidOnPowerClose(false)\n    , m_sleepOnLidOnBatteryClose(false)\n    , m_screenBlackLock(false)\n    , m_sleepLock(false)\n    , m_canSuspend(true)\n    , m_canHibernate(false)\n    , m_screenBlackDelayOnPower(0)\n    , m_sleepDelayOnPower(0)\n    , m_screenBlackDelayOnBattery(0)\n    , m_sleepDelayOnBattery(0)\n    , m_haveBettary(false)\n    , m_batteryLockScreenDelay(0)\n    , m_powerLockScreenDelay(0)\n    , m_bPowerSavingModeAutoWhenQuantifyLow(0)\n    , m_bPowerSavingModeAuto(false)\n    , m_dPowerSavingModeLowerBrightnessThreshold(0)\n    , m_dPowerSavingModeAutoBatteryPercentage(0)\n    , m_nLinePowerPressPowerBtnAction(0)\n    , m_nLinePowerLidClosedAction(0)\n    , m_nBatteryPressPowerBtnAction(0)\n    , m_nBatteryLidClosedAction(0)\n    , m_bLowPowerNotifyEnable(false)\n    , m_dLowPowerNotifyThreshold(0)\n    , m_dLowPowerAutoSleepThreshold(0)\n    , m_isSuspend(true)\n    , m_isHibernate(true)\n    , m_isShutdown(true)\n    , m_powerPlan(\"\")\n    , m_isHighPerformanceSupported(false)\n    , m_isBalancePerformanceSupported(false)\n{\n}\n\nvoid PowerModel::setScreenBlackLock(const bool lock)\n{\n    if (lock != m_screenBlackLock) {\n        m_screenBlackLock = lock;\n\n        Q_EMIT screenBlackLockChanged(lock);\n    }\n}\n\nvoid PowerModel::setLidPresent(bool lidPresent)\n{\n    if (lidPresent != m_lidPresent) {\n        m_lidPresent = lidPresent;\n\n        Q_EMIT lidPresentChanged(lidPresent);\n    }\n}\n\nvoid PowerModel::setScreenBlackDelayOnPower(const int screenBlackDelayOnPower)\n{\n    if (screenBlackDelayOnPower != m_screenBlackDelayOnPower) {\n        m_screenBlackDelayOnPower = screenBlackDelayOnPower;\n\n        Q_EMIT screenBlackDelayChangedOnPower(screenBlackDelayOnPower);\n    }\n}\n\nvoid PowerModel::setSleepDelayOnPower(const int sleepDelayOnPower)\n{\n    if (sleepDelayOnPower != m_sleepDelayOnPower) {\n        m_sleepDelayOnPower = sleepDelayOnPower;\n\n        Q_EMIT sleepDelayChangedOnPower(sleepDelayOnPower);\n    }\n}\n\nvoid PowerModel::setScreenBlackDelayOnBattery(const int screenBlackDelayOnBattery)\n{\n    if (screenBlackDelayOnBattery != m_screenBlackDelayOnBattery) {\n        m_screenBlackDelayOnBattery = screenBlackDelayOnBattery;\n\n        Q_EMIT screenBlackDelayChangedOnBattery(screenBlackDelayOnBattery);\n    }\n}\n\nvoid PowerModel::setSleepDelayOnBattery(const int sleepDelayOnBattery)\n{\n    if (sleepDelayOnBattery != m_sleepDelayOnBattery) {\n        m_sleepDelayOnBattery = sleepDelayOnBattery;\n\n        Q_EMIT sleepDelayChangedOnBattery(sleepDelayOnBattery);\n    }\n}\n\nvoid PowerModel::setSleepOnLidOnPowerClose(bool sleepOnLidClose)\n{\n    if (sleepOnLidClose != m_sleepOnLidOnPowerClose) {\n        m_sleepOnLidOnPowerClose = sleepOnLidClose;\n\n        Q_EMIT sleepOnLidOnPowerCloseChanged(sleepOnLidClose);\n    }\n}\n\nvoid PowerModel::setSleepOnLidOnBatteryClose(bool sleepOnLidOnBatteryClose)\n{\n    if (sleepOnLidOnBatteryClose != m_sleepOnLidOnBatteryClose) {\n        m_sleepOnLidOnBatteryClose = sleepOnLidOnBatteryClose;\n\n        Q_EMIT sleepOnLidOnBatteryCloseChanged(sleepOnLidOnBatteryClose);\n    }\n}\n\nvoid PowerModel::setBatteryLockScreenDelay(const int value)\n{\n    if (value != m_batteryLockScreenDelay) {\n        m_batteryLockScreenDelay = value;\n\n        Q_EMIT batteryLockScreenDelayChanged(value);\n    }\n}\n\nvoid PowerModel::setPowerLockScreenDelay(const int value)\n{\n    if (value != m_powerLockScreenDelay) {\n        m_powerLockScreenDelay = value;\n\n        Q_EMIT powerLockScreenDelayChanged(value);\n    }\n}\n\nvoid PowerModel::setAutoPowerSaveMode(bool autoPowerSavingMode)\n{\n    if (m_autoPowerSaveMode == autoPowerSavingMode)\n        return;\n\n    m_autoPowerSaveMode = autoPowerSavingMode;\n\n    Q_EMIT autoPowerSavingModeChanged(autoPowerSavingMode);\n}\n\nvoid PowerModel::setPowerSaveMode(bool powerSaveMode)\n{\n    if (m_powerSaveMode == powerSaveMode)\n        return;\n\n    m_powerSaveMode = powerSaveMode;\n\n    Q_EMIT powerSaveModeChanged(powerSaveMode);\n}\n\nvoid PowerModel::setHaveBettary(bool haveBettary)\n{\n    if (haveBettary == m_haveBettary)\n        return;\n\n    m_haveBettary = haveBettary;\n\n    Q_EMIT haveBettaryChanged(haveBettary);\n}\n\nbool PowerModel::getDoubleCompare(const double value1, const double value2)\n{\n    return ((value1 - value2 >= -EPSINON) && (value1 - value2 <= EPSINON));\n}\n\nvoid PowerModel::setPowerSavingModeAutoWhenQuantifyLow(bool bLowBatteryAutoIntoSaveEnergyMode)\n{\n    if (bLowBatteryAutoIntoSaveEnergyMode != m_bPowerSavingModeAutoWhenQuantifyLow) {\n        m_bPowerSavingModeAutoWhenQuantifyLow = bLowBatteryAutoIntoSaveEnergyMode;\n\n        Q_EMIT powerSavingModeAutoWhenQuantifyLowChanged(bLowBatteryAutoIntoSaveEnergyMode);\n    }\n}\n\nvoid PowerModel::setPowerSavingModeAuto(bool bAutoIntoSaveEnergyMode)\n{\n    if (bAutoIntoSaveEnergyMode != m_bPowerSavingModeAuto) {\n        m_bPowerSavingModeAuto = bAutoIntoSaveEnergyMode;\n\n        Q_EMIT powerSavingModeAutoChanged(bAutoIntoSaveEnergyMode);\n    }\n}\n\nvoid PowerModel::setPowerSavingModeLowerBrightnessThreshold(uint dPowerSavingModeLowerBrightnessThreshold)\n{\n    if (dPowerSavingModeLowerBrightnessThreshold != m_dPowerSavingModeLowerBrightnessThreshold) {\n        m_dPowerSavingModeLowerBrightnessThreshold = dPowerSavingModeLowerBrightnessThreshold;\n\n        Q_EMIT powerSavingModeLowerBrightnessThresholdChanged(dPowerSavingModeLowerBrightnessThreshold);\n    }\n}\n\nvoid PowerModel::setPowerSavingModeAutoBatteryPercentage(uint dPowerSavingModeAutoBatteryPercentage)\n{\n    if (dPowerSavingModeAutoBatteryPercentage != m_dPowerSavingModeAutoBatteryPercentage) {\n        m_dPowerSavingModeAutoBatteryPercentage = dPowerSavingModeAutoBatteryPercentage;\n\n        Q_EMIT powerSavingModeAutoBatteryPercentageChanged(dPowerSavingModeAutoBatteryPercentage);\n    }\n}\n\nvoid PowerModel::setLinePowerPressPowerBtnAction(int nLinePowerPressPowerBtnAction)\n{\n    if (nLinePowerPressPowerBtnAction != m_nLinePowerPressPowerBtnAction) {\n        m_nLinePowerPressPowerBtnAction = nLinePowerPressPowerBtnAction;\n\n        Q_EMIT linePowerPressPowerBtnActionChanged(nLinePowerPressPowerBtnAction);\n    }\n}\n\nvoid PowerModel::setLinePowerLidClosedAction(int nLinePowerLidClosedAction)\n{\n    if (nLinePowerLidClosedAction != m_nLinePowerLidClosedAction) {\n        m_nLinePowerLidClosedAction = nLinePowerLidClosedAction;\n\n        Q_EMIT linePowerLidClosedActionChanged(nLinePowerLidClosedAction);\n    }\n}\n\nvoid PowerModel::setBatteryPressPowerBtnAction(int nBatteryPressPowerBtnAction)\n{\n    if (nBatteryPressPowerBtnAction != m_nBatteryPressPowerBtnAction) {\n        m_nBatteryPressPowerBtnAction = nBatteryPressPowerBtnAction;\n\n        Q_EMIT batteryPressPowerBtnActionChanged(nBatteryPressPowerBtnAction);\n    }\n}\n\nvoid PowerModel::setBatteryLidClosedAction(int nBatteryLidClosedAction)\n{\n    if (nBatteryLidClosedAction != m_nBatteryLidClosedAction) {\n        m_nBatteryLidClosedAction = nBatteryLidClosedAction;\n\n        Q_EMIT batteryLidClosedActionChanged(nBatteryLidClosedAction);\n    }\n}\n\nvoid PowerModel::setLowPowerNotifyEnable(bool bLowPowerNotifyEnable)\n{\n    if (bLowPowerNotifyEnable != m_bLowPowerNotifyEnable) {\n        m_bLowPowerNotifyEnable = bLowPowerNotifyEnable;\n\n        Q_EMIT lowPowerNotifyEnableChanged(bLowPowerNotifyEnable);\n    }\n}\n\nvoid PowerModel::setLowPowerNotifyThreshold(int dLowPowerNotifyThreshold)\n{\n    if (dLowPowerNotifyThreshold != m_dLowPowerNotifyThreshold) {\n        m_dLowPowerNotifyThreshold = dLowPowerNotifyThreshold;\n\n        Q_EMIT lowPowerNotifyThresholdChanged(dLowPowerNotifyThreshold);\n    }\n}\n\nvoid PowerModel::setLowPowerAutoSleepThreshold(int dLowPowerAutoSleepThreshold)\n{\n    if (dLowPowerAutoSleepThreshold != m_dLowPowerAutoSleepThreshold) {\n        m_dLowPowerAutoSleepThreshold = dLowPowerAutoSleepThreshold;\n\n        Q_EMIT lowPowerAutoSleepThresholdChanged(dLowPowerAutoSleepThreshold);\n    }\n}\n\nvoid PowerModel::setLowPowerAction(int action)\n{\n    if (m_lowPowerAction != action) {\n        m_lowPowerAction = action;\n\n        Q_EMIT lowPowerActionChanged(action);\n    }\n}\n\nvoid PowerModel::setSleepLock(bool sleepLock)\n{\n    if (sleepLock != m_sleepLock) {\n        m_sleepLock = sleepLock;\n\n        Q_EMIT sleepLockChanged(sleepLock);\n    }\n}\n\nvoid PowerModel::setCanSuspend(bool canSuspend)\n{\n    if (canSuspend != m_canSuspend) {\n        m_canSuspend = canSuspend;\n\n        Q_EMIT canSuspendChanged(canSuspend);\n    }\n}\n\nvoid PowerModel::setCanHibernate(bool value)\n{\n    if (m_canHibernate != value) {\n        m_canHibernate = value;\n\n        Q_EMIT canHibernateChanged(value);\n    }\n}\n\nvoid PowerModel::setPowerPlan(const QString &powerPlan)\n{\n    if (m_powerPlan != powerPlan) {\n        m_powerPlan = powerPlan;\n\n        Q_EMIT powerPlanChanged(m_powerPlan);\n    }\n}\n\nvoid PowerModel::setHighPerformanceSupported(bool isHighSupport)\n{\n    if (m_isHighPerformanceSupported == isHighSupport)\n        return;\n    m_isHighPerformanceSupported = isHighSupport;\n    Q_EMIT highPerformaceSupportChanged(isHighSupport);\n}\n\nvoid PowerModel::setBalancePerformanceSupported(bool isBalancePerformanceSupported)\n{\n    if (m_isBalancePerformanceSupported == isBalancePerformanceSupported)\n        return;\n    m_isBalancePerformanceSupported = isBalancePerformanceSupported;\n    Q_EMIT highPerformaceSupportChanged(isBalancePerformanceSupported);\n}\n\nvoid PowerModel::setSuspend(bool suspend)\n{\n    bool enable = !IsServerSystem && suspend;\n    if (m_isSuspend != enable) {\n        m_isSuspend = enable;\n\n        Q_EMIT suspendChanged(enable);\n    }\n}\n\nvoid PowerModel::setHibernate(bool hibernate)\n{\n    bool enable = !IsServerSystem && hibernate;\n    if (m_isHibernate != enable) {\n        m_isHibernate = enable;\n\n        Q_EMIT hibernateChanged(enable);\n    }\n}\n\nvoid PowerModel::setShutdown(bool shutdown)\n{\n    if (m_isShutdown != shutdown) {\n        m_isShutdown = shutdown;\n\n        Q_EMIT shutdownChanged(shutdown);\n    }\n}\n\nvoid PowerModel::setNoPasswdLogin(bool value)\n{\n    if (value != m_noPasswdLogin) {\n        m_noPasswdLogin = value;\n\n        Q_EMIT noPasswdLoginChanged(value);\n    }\n}\n\nvoid PowerModel::setBatteryCapacity(int value)\n{\n    if (m_batteryCapacity != value) {\n        m_batteryCapacity = value;\n\n        Q_EMIT batteryCapacityChanged(value);\n    }\n}\n\nvoid PowerModel::setShowBatteryTimeToFull(bool value)\n{\n    if (m_showBatteryTimeToFull != value) {\n        m_showBatteryTimeToFull = value;\n\n        Q_EMIT showBatteryTimeToFullChanged(value);\n    }\n}\n\nvoid PowerModel::setScheduledShutdownState(bool value)\n{\n    if (m_scheduledShutdownState != value) {\n        m_scheduledShutdownState = value;\n\n        Q_EMIT scheduledShutdownStateChanged(value);\n    }\n}\n\nvoid PowerModel::setShutdownTime(const QString &time)\n{\n    if (m_shutdownTime != time) {\n        m_shutdownTime = time;\n\n        Q_EMIT shutdownTimeChanged(time);\n    }\n}\n\nvoid PowerModel::setShutdownRepetition(int repetition)\n{\n    if (m_shutdownRepetition != repetition) {\n        m_shutdownRepetition = repetition;\n\n        Q_EMIT shutdownRepetitionChanged(repetition);\n    }\n}\n\nvoid PowerModel::setWeekBegins(int value)\n{\n    if (m_weekBegins != value) {\n        m_weekBegins = value;\n\n        Q_EMIT weekBeginsChanged(value);\n    }\n}\n\nvoid PowerModel::setCustomShutdownWeekDays(const QVariantList &value)\n{\n    if (m_customShutdownWeekDays != value) {\n        m_customShutdownWeekDays = value;\n\n        Q_EMIT customShutdownWeekDaysChanged(value);\n    }\n}\n\nvoid PowerModel::setBatteryLockDelayModel(const QVariantList &value)\n{\n    if (m_batteryLockDelayModel != value) {\n        m_batteryLockDelayModel = value;\n\n        Q_EMIT batteryLockDelayModelChanged(value);\n    }\n}\n\nvoid PowerModel::setBatteryScreenBlackDelayModel(const QVariantList &value)\n{\n    if (m_batteryScreenBlackDelayModel != value) {\n        m_batteryScreenBlackDelayModel = value;\n\n        Q_EMIT batteryScreenBlackDelayModelChanged(value);\n    }\n}\n\nvoid PowerModel::setBatterySleepDelayModel(const QVariantList &value)\n{\n    if (m_batterySleepDelayModel != value) {\n        m_batterySleepDelayModel = value;\n\n        Q_EMIT batterySleepDelayModelChanged(value);\n    }\n}\n\nvoid PowerModel::setLinePowerLockDelayModel(const QVariantList &value)\n{\n    if (m_linePowerLockDelayModel != value) {\n        m_linePowerLockDelayModel = value;\n\n        Q_EMIT linePowerLockDelayModelChanged(value);\n    }\n}\n\nvoid PowerModel::setLinePowerScreenBlackDelayModel(const QVariantList &value)\n{\n    if (m_linePowerScreenBlackDelayModel != value) {\n        m_linePowerScreenBlackDelayModel = value;\n\n        Q_EMIT linePowerScreenBlackDelayModelChanged(value);\n    }\n}\n\nvoid PowerModel::setLinePowerSleepDelayModel(const QVariantList &value)\n{\n    if (m_linePowerSleepDelayModel != value) {\n        m_linePowerSleepDelayModel = value;\n\n        Q_EMIT linePowerSleepDelayModelChanged(value);\n    }\n}\n\nvoid PowerModel::setEnableScheduledShutdown(const QString &value)\n{\n    if (m_enableScheduledShutdown != value) {\n        m_enableScheduledShutdown = value;\n\n        Q_EMIT enableScheduledShutdownChanged(value);\n    }\n}\n\nvoid PowerModel::setIsVirtualEnvironment(bool isVirtualEnvironment)\n{\n    if (m_isVirtualEnvironment != isVirtualEnvironment) {\n        m_isVirtualEnvironment = isVirtualEnvironment;\n\n        Q_EMIT isVirtualEnvironmentChanged(isVirtualEnvironment);\n    }\n}\n"
  },
  {
    "path": "src/plugin-power/operation/powermodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef POWERMODEL_H\n#define POWERMODEL_H\n\n#include <QObject>\n\nclass PowerWorker;\nclass PowerModel : public QObject\n{\n    Q_OBJECT\n\n    Q_PROPERTY(bool lidPresent READ lidPresent WRITE setLidPresent NOTIFY lidPresentChanged)\n    Q_PROPERTY(bool sleepOnLidOnPowerClose READ sleepOnLidOnPowerClose WRITE setSleepOnLidOnPowerClose NOTIFY sleepOnLidOnPowerCloseChanged)\n    Q_PROPERTY(bool sleepOnLidOnBatteryClose READ sleepOnLidOnBatteryClose WRITE setSleepOnLidOnBatteryClose NOTIFY sleepOnLidOnBatteryCloseChanged)\n    Q_PROPERTY(bool screenBlackLock READ screenBlackLock WRITE setScreenBlackLock NOTIFY screenBlackLockChanged)\n    Q_PROPERTY(bool sleepLock READ sleepLock WRITE setSleepLock NOTIFY sleepLockChanged)\n    Q_PROPERTY(bool canSuspend READ canSuspend WRITE setCanSuspend NOTIFY suspendChanged)\n    Q_PROPERTY(bool canHibernate READ canHibernate WRITE setCanHibernate NOTIFY canHibernateChanged)\n    Q_PROPERTY(int screenBlackDelayOnPower READ screenBlackDelayOnPower WRITE setScreenBlackDelayOnPower NOTIFY screenBlackDelayChangedOnPower)\n    Q_PROPERTY(int sleepDelayOnPower READ sleepDelayOnPower WRITE setSleepDelayOnPower NOTIFY sleepDelayChangedOnPower)\n    Q_PROPERTY(int screenBlackDelayOnBattery READ screenBlackDelayOnBattery WRITE setScreenBlackDelayOnBattery NOTIFY screenBlackDelayChangedOnBattery)\n    Q_PROPERTY(int sleepDelayOnBattery READ sleepDelayOnBattery WRITE setSleepDelayOnBattery NOTIFY sleepDelayChangedOnBattery)\n    Q_PROPERTY(bool autoPowerSaveMode READ autoPowerSaveMode WRITE setAutoPowerSaveMode NOTIFY autoPowerSavingModeChanged)\n    Q_PROPERTY(bool powerSaveMode READ powerSaveMode WRITE setPowerSaveMode NOTIFY powerSaveModeChanged)\n    Q_PROPERTY(bool haveBettary READ haveBettary WRITE setHaveBettary NOTIFY haveBettaryChanged)\n    Q_PROPERTY(int batteryLockScreenDelay READ getBatteryLockScreenDelay WRITE setBatteryLockScreenDelay NOTIFY batteryLockScreenDelayChanged)\n    Q_PROPERTY(int powerLockScreenDelay READ getPowerLockScreenDelay WRITE setPowerLockScreenDelay NOTIFY powerLockScreenDelayChanged)\n    Q_PROPERTY(bool powerSavingModeAutoWhenQuantifyLow READ powerSavingModeAutoWhenQuantifyLow WRITE setPowerSavingModeAutoWhenQuantifyLow NOTIFY powerSavingModeAutoWhenQuantifyLowChanged)\n    Q_PROPERTY(bool powerSavingModeAuto READ powerSavingModeAuto WRITE setPowerSavingModeAuto NOTIFY powerSavingModeAutoChanged)\n    Q_PROPERTY(uint powerSavingModeLowerBrightnessThreshold READ powerSavingModeLowerBrightnessThreshold WRITE setPowerSavingModeLowerBrightnessThreshold NOTIFY powerSavingModeLowerBrightnessThresholdChanged)\n    Q_PROPERTY(uint powerSavingModeAutoBatteryPercentage READ powerSavingModeAutoBatteryPercentage WRITE setPowerSavingModeAutoBatteryPercentage NOTIFY powerSavingModeAutoBatteryPercentageChanged)\n    Q_PROPERTY(int linePowerPressPowerBtnAction READ linePowerPressPowerBtnAction WRITE setLinePowerPressPowerBtnAction NOTIFY linePowerPressPowerBtnActionChanged)\n    Q_PROPERTY(int linePowerLidClosedAction READ linePowerLidClosedAction WRITE setLinePowerLidClosedAction NOTIFY linePowerLidClosedActionChanged)\n    Q_PROPERTY(int batteryPressPowerBtnAction READ batteryPressPowerBtnAction WRITE setBatteryPressPowerBtnAction NOTIFY batteryPressPowerBtnActionChanged)\n    Q_PROPERTY(int batteryLidClosedAction READ batteryLidClosedAction WRITE setBatteryLidClosedAction NOTIFY batteryLidClosedActionChanged)\n    Q_PROPERTY(bool lowPowerNotifyEnable READ lowPowerNotifyEnable WRITE setLowPowerNotifyEnable NOTIFY lowPowerNotifyEnableChanged)\n    Q_PROPERTY(int lowPowerNotifyThreshold READ lowPowerNotifyThreshold WRITE setLowPowerNotifyThreshold NOTIFY lowPowerNotifyThresholdChanged)\n    Q_PROPERTY(int lowPowerAutoSleepThreshold READ lowPowerAutoSleepThreshold WRITE setLowPowerAutoSleepThreshold NOTIFY lowPowerAutoSleepThresholdChanged)\n    Q_PROPERTY(bool isSuspend READ getSuspend WRITE setSuspend NOTIFY suspendChanged)\n    Q_PROPERTY(bool isHibernate READ getHibernate WRITE setHibernate NOTIFY hibernateChanged)\n    Q_PROPERTY(bool isShutdown READ getShutdown WRITE setShutdown NOTIFY shutdownChanged)\n    Q_PROPERTY(QString powerPlan READ getPowerPlan WRITE setPowerPlan NOTIFY powerPlanChanged)\n    Q_PROPERTY(bool isHighPerformanceSupported READ isHighPerformanceSupported WRITE setHighPerformanceSupported NOTIFY highPerformaceSupportChanged)\n    Q_PROPERTY(bool isBalancePerformanceSupported READ isBalancePerformanceSupported WRITE setBalancePerformanceSupported NOTIFY highPerformaceSupportChanged)\n    Q_PROPERTY(bool isNoPasswdLogin READ isNoPasswdLogin WRITE setNoPasswdLogin NOTIFY noPasswdLoginChanged)\n    Q_PROPERTY(int batteryCapacity READ batteryCapacity WRITE setBatteryCapacity NOTIFY batteryCapacityChanged)\n    Q_PROPERTY(bool showBatteryTimeToFull READ showBatteryTimeToFull WRITE setShowBatteryTimeToFull NOTIFY showBatteryTimeToFullChanged)\n    Q_PROPERTY(bool scheduledShutdownState READ scheduledShutdownState WRITE setScheduledShutdownState NOTIFY scheduledShutdownStateChanged)\n    Q_PROPERTY(QString shutdownTime READ shutdownTime WRITE setShutdownTime NOTIFY shutdownTimeChanged)\n    Q_PROPERTY(int shutdownRepetition READ shutdownRepetition WRITE setShutdownRepetition NOTIFY shutdownRepetitionChanged)\n    Q_PROPERTY(int weekBegins READ weekBegins WRITE setWeekBegins NOTIFY weekBeginsChanged)\n    Q_PROPERTY(int lowPowerAction READ lowPowerAction WRITE setLowPowerAction NOTIFY lowPowerActionChanged)\n    Q_PROPERTY(QVariantList customShutdownWeekDays READ customShutdownWeekDays WRITE setCustomShutdownWeekDays NOTIFY customShutdownWeekDaysChanged)\n    Q_PROPERTY(bool isVirtualEnvironment READ isVirtualEnvironment WRITE setIsVirtualEnvironment NOTIFY isVirtualEnvironmentChanged)\n\n    Q_PROPERTY(QVariantList batteryLockDelayModel READ batteryLockDelayModel WRITE setBatteryLockDelayModel NOTIFY batteryLockDelayModelChanged)\n    Q_PROPERTY(QVariantList batteryScreenBlackDelayModel READ batteryScreenBlackDelayModel WRITE setBatteryScreenBlackDelayModel NOTIFY batteryScreenBlackDelayModelChanged)\n    Q_PROPERTY(QVariantList batterySleepDelayModel READ batterySleepDelayModel WRITE setBatterySleepDelayModel NOTIFY batterySleepDelayModelChanged)\n    Q_PROPERTY(QVariantList linePowerLockDelayModel READ linePowerLockDelayModel WRITE setLinePowerLockDelayModel NOTIFY linePowerLockDelayModelChanged)\n    Q_PROPERTY(QVariantList linePowerScreenBlackDelayModel READ linePowerScreenBlackDelayModel WRITE setLinePowerScreenBlackDelayModel NOTIFY linePowerScreenBlackDelayModelChanged)\n    Q_PROPERTY(QVariantList linePowerSleepDelayModel READ linePowerSleepDelayModel WRITE setLinePowerSleepDelayModel NOTIFY linePowerSleepDelayModelChanged)\n    Q_PROPERTY(QString enableScheduledShutdown READ enableScheduledShutdown WRITE setEnableScheduledShutdown NOTIFY enableScheduledShutdownChanged)\n\n    friend class PowerWorker;\n\npublic:\n    explicit PowerModel(QObject *parent = 0);\n\n    inline bool screenBlackLock() const { return m_screenBlackLock; }\n    void setScreenBlackLock(const bool lock);\n\n    inline bool sleepLock() const { return m_sleepLock; }\n    void setSleepLock(bool sleepLock);\n\n    inline bool canSuspend() const { return m_canSuspend; }\n    void setCanSuspend(bool canSuspend);\n\n    inline bool lidPresent() const { return m_lidPresent; }\n    void setLidPresent(bool lidPresent);\n\n    inline int screenBlackDelayOnPower() const { return m_screenBlackDelayOnPower; }\n    void setScreenBlackDelayOnPower(const int screenBlackDelayOnPower);\n\n    inline int sleepDelayOnPower() const { return m_sleepDelayOnPower; }\n    void setSleepDelayOnPower(const int sleepDelayOnPower);\n\n    inline int screenBlackDelayOnBattery() const { return m_screenBlackDelayOnBattery; }\n    void setScreenBlackDelayOnBattery(const int screenBlackDelayOnBattery);\n\n    inline int sleepDelayOnBattery() const { return m_sleepDelayOnBattery; }\n    void setSleepDelayOnBattery(const int sleepDelayOnBattery);\n\n    inline bool sleepOnLidOnPowerClose() const { return m_sleepOnLidOnPowerClose; }\n    void setSleepOnLidOnPowerClose(bool sleepOnLidClose);\n\n    inline bool sleepOnLidOnBatteryClose() const { return m_sleepOnLidOnBatteryClose; }\n    void setSleepOnLidOnBatteryClose(bool sleepOnLidOnBatteryClose);\n\n    inline int getBatteryLockScreenDelay() const { return m_batteryLockScreenDelay; }\n    void setBatteryLockScreenDelay(const int value);\n\n    inline int getPowerLockScreenDelay() const { return m_powerLockScreenDelay; }\n    void setPowerLockScreenDelay(const int value);\n\n    inline bool autoPowerSaveMode() const { return m_autoPowerSaveMode; }\n    void setAutoPowerSaveMode(bool autoPowerSavingMode);\n\n    inline bool powerSaveMode() const { return m_powerSaveMode; }\n    void setPowerSaveMode(bool powerSaveMode);\n\n    inline bool haveBettary() const\n    {\n        return m_haveBettary;\n    }\n    void setHaveBettary(bool haveBettary);\n\n    bool getDoubleCompare(const double value1, const double value2);\n\n    //--------------sp2 add---------------------------\n    inline bool powerSavingModeAutoWhenQuantifyLow() const { return m_bPowerSavingModeAutoWhenQuantifyLow; }\n    void setPowerSavingModeAutoWhenQuantifyLow(bool bLowBatteryAutoIntoSaveEnergyMode);\n\n    inline bool powerSavingModeAuto() const { return m_bPowerSavingModeAuto; }\n    void setPowerSavingModeAuto(bool bAutoIntoSaveEnergyMode);\n\n    inline int powerSavingModeLowerBrightnessThreshold() const { return m_dPowerSavingModeLowerBrightnessThreshold; }\n    void setPowerSavingModeLowerBrightnessThreshold(uint dPowerSavingModeLowerBrightnessThreshold);\n\n    inline int powerSavingModeAutoBatteryPercentage() const { return m_dPowerSavingModeAutoBatteryPercentage; }\n    void setPowerSavingModeAutoBatteryPercentage(uint dPowerSavingModeAutoBatteryPercentage);\n\n    inline int linePowerPressPowerBtnAction() const { return m_nLinePowerPressPowerBtnAction; }\n    void setLinePowerPressPowerBtnAction(int nLinePowerPressPowerBtnAction);\n\n    inline int linePowerLidClosedAction() const { return m_nLinePowerLidClosedAction; }\n    void setLinePowerLidClosedAction(int nLinePowerLidClosedAction);\n\n    inline int batteryPressPowerBtnAction() const { return m_nBatteryPressPowerBtnAction; }\n    void setBatteryPressPowerBtnAction(int nBatteryPressPowerBtnAction);\n\n    inline int batteryLidClosedAction() const { return m_nBatteryLidClosedAction; }\n    void setBatteryLidClosedAction(int nBatteryLidClosedAction);\n\n    inline bool lowPowerNotifyEnable() const { return m_bLowPowerNotifyEnable; }\n    void setLowPowerNotifyEnable(bool bLowPowerNotifyEnable);\n\n    inline int lowPowerNotifyThreshold() const { return m_dLowPowerNotifyThreshold; }\n    void setLowPowerNotifyThreshold(int dLowPowerNotifyThreshold);\n\n    inline int lowPowerAutoSleepThreshold() const { return m_dLowPowerAutoSleepThreshold; }\n    void setLowPowerAutoSleepThreshold(int dLowPowerAutoSleepThreshold);\n\n    void setLowPowerAction(int action);\n    int lowPowerAction() const { return m_lowPowerAction; }\n\n    //-----------------------------------------------\n    inline bool getSuspend() const { return m_isSuspend; }\n    void setSuspend(bool suspend);\n\n    inline bool canHibernate() const { return m_canHibernate; }\n    void setCanHibernate(bool value);\n\n    inline bool getHibernate() const { return m_isHibernate; }\n    void setHibernate(bool hibernate);\n\n    inline bool getShutdown() const { return m_isShutdown; }\n    void setShutdown(bool shutdown);\n\n    inline QString getPowerPlan() const { return m_powerPlan; }\n    void setPowerPlan(const QString &powerPlan);\n\n    inline bool isHighPerformanceSupported() const { return m_isHighPerformanceSupported; }\n    void setHighPerformanceSupported(bool isHighSupport);\n\n    inline bool isBalancePerformanceSupported() const { return m_isBalancePerformanceSupported; }\n    void setBalancePerformanceSupported(bool isBalancePerformanceSupported);\n    // ----\n    inline bool isNoPasswdLogin() const { return m_noPasswdLogin; }\n\n    void setNoPasswdLogin(bool value);\n\n    inline int batteryCapacity() const { return m_batteryCapacity; }\n    void setBatteryCapacity(int batterCapacity);\n\n    inline bool showBatteryTimeToFull() const { return m_showBatteryTimeToFull; }\n    void setShowBatteryTimeToFull(bool showBatteryTimeToFull);\n\n    inline bool scheduledShutdownState() const { return m_scheduledShutdownState; }\n    void setScheduledShutdownState(bool value);\n\n    inline QString shutdownTime() const { return m_shutdownTime; }\n    void setShutdownTime(const QString &time);\n\n    inline int shutdownRepetition() const { return m_shutdownRepetition; }\n    void setShutdownRepetition(int repetition);\n    Q_INVOKABLE void refreshShutdownRepetition() { Q_EMIT shutdownRepetitionChanged(m_shutdownRepetition); }\n\n    inline int weekBegins() const { return m_weekBegins; }\n    void setWeekBegins(int value);\n\n    inline QVariantList customShutdownWeekDays() const { return m_customShutdownWeekDays; }\n    void setCustomShutdownWeekDays(const QVariantList &value);\n\n    inline QVariantList batteryLockDelayModel() const { return m_batteryLockDelayModel; };\n    void setBatteryLockDelayModel(const QVariantList &value);\n\n    inline QVariantList batteryScreenBlackDelayModel() const { return m_batteryScreenBlackDelayModel; };\n    void setBatteryScreenBlackDelayModel(const QVariantList& value);\n\n    inline QVariantList batterySleepDelayModel() const { return m_batterySleepDelayModel; };\n    void setBatterySleepDelayModel(const QVariantList &value);\n\n    inline QVariantList linePowerLockDelayModel() const { return m_linePowerLockDelayModel; };\n    void setLinePowerLockDelayModel(const QVariantList &value);\n\n    inline QVariantList linePowerScreenBlackDelayModel() const { return m_linePowerScreenBlackDelayModel; };\n    void setLinePowerScreenBlackDelayModel(const QVariantList &value);\n\n    inline QVariantList linePowerSleepDelayModel() const { return m_linePowerSleepDelayModel; };\n    void setLinePowerSleepDelayModel(const QVariantList &value);\n\n    inline QString enableScheduledShutdown() const { return m_enableScheduledShutdown; };\n    void setEnableScheduledShutdown(const QString &value);\n\n    inline bool isVirtualEnvironment() const { return m_isVirtualEnvironment; }\n    void setIsVirtualEnvironment(bool isVirtualEnvironment);\n\nQ_SIGNALS:\n    void sleepLockChanged(const bool sleepLock);\n    void canSuspendChanged(const bool canSuspend);\n    void screenBlackLockChanged(const bool screenBlackLock);\n    void lidPresentChanged(const bool lidPresent);\n    void sleepOnLidOnPowerCloseChanged(const bool sleepOnLidClose);\n    void sleepOnLidOnBatteryCloseChanged(const bool sleepOnLidClose);\n    void screenBlackDelayChangedOnPower(const int screenBlackDelay);\n    void sleepDelayChangedOnPower(const int sleepDelay);\n    void screenBlackDelayChangedOnBattery(const int screenBlackDelay);\n    void sleepDelayChangedOnBattery(const int sleepDelay);\n    void canHibernateChanged(const bool canHibernate);\n    void hibernateChanged(const bool hibernate);\n    void shutdownChanged(const bool shutdown);\n\n    void autoPowerSavingModeChanged(bool autoPowerSaveMode);\n    void powerSaveModeChanged(bool powerSaveMode);\n\n    void haveBettaryChanged(bool haveBettary);\n    void batteryLockScreenDelayChanged(const int batteryLockScreenTime);\n    void powerLockScreenDelayChanged(const int powerLockScreenTime);\n    //------------------------sp2 add-------------------------------\n    void powerSavingModeAutoWhenQuantifyLowChanged(const bool state);\n    void powerSavingModeAutoChanged(const bool state);\n    void powerSavingModeLowerBrightnessThresholdChanged(const uint level);\n    void powerSavingModeAutoBatteryPercentageChanged(const uint level);\n    //electric\n    void linePowerPressPowerBtnActionChanged(const int reply);\n    void linePowerLidClosedActionChanged(const int reply);\n    //battery\n    void batteryPressPowerBtnActionChanged(const int reply);\n    void batteryLidClosedActionChanged(const int reply);\n    void lowPowerNotifyEnableChanged(const bool state);\n    void lowPowerNotifyThresholdChanged(const int value);\n    void lowPowerAutoSleepThresholdChanged(const int value);\n    //--------------------------------------------------------------\n    void suspendChanged(bool suspendState);\n    void powerPlanChanged(const QString &value);\n    void highPerformaceSupportChanged(bool value);\n\n    void noPasswdLoginChanged(bool value);\n\n    void batteryCapacityChanged(double value);\n    void showBatteryTimeToFullChanged(bool value);\n\n    void scheduledShutdownStateChanged(bool value);\n    void shutdownTimeChanged(const QString &time);\n    void shutdownRepetitionChanged(int repetition);\n    void weekBeginsChanged(int value);\n    void customShutdownWeekDaysChanged(const QVariantList &value);\n    void isVirtualEnvironmentChanged(bool isVirtualEnvironment);\n\n    void batteryLockDelayModelChanged(const QVariantList &value);\n    void batteryScreenBlackDelayModelChanged(const QVariantList &value);\n    void batterySleepDelayModelChanged(const QVariantList &value);\n    void linePowerLockDelayModelChanged(const QVariantList &value);\n    void linePowerScreenBlackDelayModelChanged(const QVariantList &value);\n    void linePowerSleepDelayModelChanged(const QVariantList &value);\n    void lowPowerActionChanged(int action);\n    void enableScheduledShutdownChanged(const QString &value);\n\nprivate:\n    bool m_lidPresent; //以此判断是否为笔记本\n    bool m_sleepOnLidOnPowerClose;\n    bool m_sleepOnLidOnBatteryClose;\n    bool m_screenBlackLock;\n    bool m_sleepLock;\n    bool m_canSuspend;\n    bool m_canHibernate;\n    int m_screenBlackDelayOnPower;\n    int m_sleepDelayOnPower;\n    int m_screenBlackDelayOnBattery;\n    int m_sleepDelayOnBattery;\n\n    bool m_autoPowerSaveMode { false };\n    bool m_powerSaveMode { false };\n\n    bool m_haveBettary;\n    int m_batteryLockScreenDelay;\n    int m_powerLockScreenDelay;\n    //---------------sp2 add------------------\n    bool m_bPowerSavingModeAutoWhenQuantifyLow;\n    bool m_bPowerSavingModeAuto;\n    uint m_dPowerSavingModeLowerBrightnessThreshold;\n    uint m_dPowerSavingModeAutoBatteryPercentage;\n    int m_nLinePowerPressPowerBtnAction;\n    int m_nLinePowerLidClosedAction;\n    int m_nBatteryPressPowerBtnAction;\n    int m_nBatteryLidClosedAction;\n    bool m_bLowPowerNotifyEnable;\n    int m_dLowPowerNotifyThreshold;\n    int m_dLowPowerAutoSleepThreshold;\n    //--------------------------------------\n    bool m_isSuspend;\n    bool m_isHibernate;\n    bool m_isShutdown;\n\n    QString m_powerPlan;\n    bool m_isHighPerformanceSupported;\n    bool m_isBalancePerformanceSupported;\n    bool m_isVirtualEnvironment;\n\n    // Account\n    bool m_noPasswdLogin;\n\n    double m_batteryCapacity;\n    bool m_showBatteryTimeToFull;\n\n    // scheduledShutdown\n    bool m_scheduledShutdownState;\n    QString m_shutdownTime;\n    QVariantList m_customShutdownWeekDays;\n    int m_shutdownRepetition;\n    int m_weekBegins;\n    int m_lowPowerAction;\n    QString m_enableScheduledShutdown;\n\n    QVariantList m_batteryLockDelayModel;\n    QVariantList m_batteryScreenBlackDelayModel;\n    QVariantList m_batterySleepDelayModel;\n    QVariantList m_linePowerLockDelayModel;\n    QVariantList m_linePowerScreenBlackDelayModel;\n    QVariantList m_linePowerSleepDelayModel;\n};\n\n#endif // POWERMODEL_H\n"
  },
  {
    "path": "src/plugin-power/operation/poweroperatormodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"poweroperatormodel.h\"\n\nPowerOperatorModel::PowerOperatorModel(QObject *parent)\n: QAbstractListModel(parent)\n{\n    appendRow(new PowerOperator(0, tr(\"Shut down\"), true, true));\n    appendRow(new PowerOperator(1, tr(\"Suspend\"), true, true));\n    appendRow(new PowerOperator(2, tr(\"Hibernate\"), true, true));\n    appendRow(new PowerOperator(3, tr(\"Turn off the monitor\"), true, true));\n    appendRow(new PowerOperator(4, tr(\"Show the shutdown Interface\"), true, true));\n    appendRow(new PowerOperator(5, tr(\"Do nothing\"), true, true));\n}\n\nPowerOperatorModel::~PowerOperatorModel()\n{\n    qDeleteAll(m_powerOperatorList);\n    m_powerOperatorList.resize(0);\n}\n\nint PowerOperatorModel::rowCount(const QModelIndex &parent) const\n{\n    Q_UNUSED(parent);\n    return m_powerOperatorList.size();\n}\n\nQVariant PowerOperatorModel::data(const QModelIndex &index, int role) const\n{\n    if (!index.isValid()) \n        return {};\n    if (index.row() < 0 || index.row() >= m_powerOperatorList.size())\n        return {};\n    const auto operatorItem = m_powerOperatorList[index.row()];\n    switch (role) {\n    case KeyRole:\n        return operatorItem->key;\n    case TextRole:\n        return operatorItem->text;\n    case EnableRole:\n        return operatorItem->enable;\n    case VisibleRole:\n        return operatorItem->visible;\n    }\n\n    return QVariant();\n}\n\nvoid PowerOperatorModel::appendRow(PowerOperator *powerOperator)\n{\n    beginInsertRows(QModelIndex(), rowCount(), rowCount());\n    m_powerOperatorList.append(powerOperator);\n    endInsertRows();\n}\n\nvoid PowerOperatorModel::setEnable(int index, bool enable)\n{\n    if (index >= 0 && index < m_powerOperatorList.size()) {\n        m_powerOperatorList[index]->enable = enable;\n        emit dataChanged(PowerOperatorModel::index(index, 0), PowerOperatorModel::index(index, 0));\n    }\n}\n\nvoid PowerOperatorModel::setVisible(int index, bool visible)\n{\n    if (index >= 0 && index < m_powerOperatorList.size()) {\n        m_powerOperatorList[index]->visible = visible;\n        emit dataChanged(PowerOperatorModel::index(index, 0), PowerOperatorModel::index(index, 0));\n    }\n}\n\nQHash<int, QByteArray> PowerOperatorModel::roleNames() const\n{\n    QHash<int, QByteArray> roles;\n    roles[KeyRole] = \"key\";\n    roles[TextRole] = \"text\";\n    roles[EnableRole] = \"enable\";\n    roles[VisibleRole] = \"visible\";\n    return roles;\n}\n\nquint8 PowerOperatorModel::keyOfIndex(int rowIndex) const\n{\n    if (rowIndex < 0 || rowIndex >= m_powerOperatorList.size()) {\n        return -1;\n    }\n    return m_powerOperatorList[rowIndex]->key;\n}\n\nint PowerOperatorModel::indexOfKey(quint8 key) const\n{\n    for (int i = 0; i < m_powerOperatorList.size(); i++) {\n        if (m_powerOperatorList[i]->key == key) {\n            return i;\n        }\n    }\n    return -1;\n}"
  },
  {
    "path": "src/plugin-power/operation/poweroperatormodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef POWEROPERATORMODEL_H\n#define POWEROPERATORMODEL_H\n\n#include <QtQml/qqml.h>\n#include <QAbstractListModel>\n\nenum PowerOperatorType{\n    POT_ShutDown = 0,\n    POT_Suspend,\n    POT_Hibernate,\n    POT_TurnOffMonitor,\n    POT_ShowShutDownInter,\n    POT_DoNoting\n};\n\nstruct PowerOperator\n{\n    quint8 key;\n    QString text;\n    bool visible;\n    bool enable;\n    PowerOperator(quint8 key, QString text, bool visible = true, bool enable = true)\n        : key(key), text(text), visible(visible), enable(enable) {}\n};\n\nclass PowerOperatorModel : public QAbstractListModel\n{\n    Q_OBJECT\n    QML_NAMED_ELEMENT(PowerOperatorModel)\npublic:\n\n    enum PowerOperatorRole \n    {\n        KeyRole = Qt::UserRole + 1,\n        TextRole,\n        VisibleRole,\n        EnableRole,\n    };\n    Q_ENUM(PowerOperatorRole)\n\n    PowerOperatorModel(QObject *parent = nullptr);\n    ~PowerOperatorModel();\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n    int rowCount(const QModelIndex &parent= QModelIndex()) const override;;\n    void setEnable(int index, bool enable);\n    void setVisible(int index, bool visible);\n\n    Q_INVOKABLE quint8 keyOfIndex(int rowIndex) const;\n    Q_INVOKABLE int indexOfKey(quint8 key) const;\n\nprotected:\n    QHash<int, QByteArray> roleNames() const override;\n\nprivate:\n    void appendRow(PowerOperator *info);\n\nprivate:\n    QList<PowerOperator *> m_powerOperatorList;\n};\n\n\nQ_DECLARE_METATYPE(PowerOperatorModel)\n#endif // POWEROPERATORMODEL_H"
  },
  {
    "path": "src/plugin-power/operation/powerworker.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"powerworker.h\"\n#include \"operation/powerdbusproxy.h\"\n#include \"powermodel.h\"\n#include \"utils.h\"\n\n#include <QProcessEnvironment>\n#include <QFutureWatcher>\n#include <QtConcurrent>\n#include <QRegularExpression>\n\n#define POWER_CAN_SLEEP \"POWER_CAN_SLEEP\"\n#define POWER_CAN_HIBERNATE \"POWER_CAN_HIBERNATE\"\n\n#define BATTERY_LOCKDELAY_NAME \"batteryLockDelay\"\n#define BATTERY_SLEEPDELAY_NAME \"batterySleepDelay\"\n#define BATTERY_SBDELAY_NAME \"batteryScreenBlackDelay\"\n#define LINEPOWER_LOCKDELAY_NAME \"linePowerLockDelay\"\n#define LINEPOWER_SLEEPDELAY_NAME \"linePowerSleepDelay\"\n#define LINEPOWER_SBDELAY_NAME \"linePowerScreenBlackDelay\"\n#define TIME_WEEK_START_NAME \"firstDayOfWeek\"\n#define ENABLE_SCHEDULED_SHUTDOWN \"enableScheduledShutdown\"\n\n#define SHOW_HIBERNATE_NAME \"showHibernate\"\n#define SHOW_SHUTDOWN_NAME \"showShutdown\"\n#define SHOW_SUSPEND_NAME \"showSuspend\"\n\nstatic const QStringList DCC_CONFIG_FILES {\n    \"/etc/deepin/dde-control-center.conf\",\n    \"/usr/share/dde-control-center/dde-control-center.conf\"\n};\n\nPowerWorker::PowerWorker(PowerModel *model, QObject *parent)\n    : QObject(parent)\n    , m_powerModel(model)\n    , m_powerDBusProxy(new PowerDBusProxy(this))\n    , m_cfgDock(DConfig::create(\"org.deepin.dde.tray-loader\", \"org.deepin.dde.dock.plugin.power\", QString(), this))\n    , m_cfgPower(DConfig::create(\"org.deepin.dde.control-center\", \"org.deepin.dde.control-center.power\", QString(), this))\n    , m_cfgTime(DConfig::createGeneric(\"org.deepin.region-format\", QString(), this))\n{\n    connect(m_powerDBusProxy, &PowerDBusProxy::noPasswdLoginChanged, m_powerModel, &PowerModel::setNoPasswdLogin);\n    connect(m_powerDBusProxy, &PowerDBusProxy::ScreenBlackLockChanged, m_powerModel, &PowerModel::setScreenBlackLock);\n    connect(m_powerDBusProxy, &PowerDBusProxy::SleepLockChanged, m_powerModel, &PowerModel::setSleepLock);\n    connect(m_powerDBusProxy, &PowerDBusProxy::LidIsPresentChanged, m_powerModel, &PowerModel::setLidPresent);\n    connect(m_powerDBusProxy, &PowerDBusProxy::LidClosedSleepChanged, m_powerModel, &PowerModel::setSleepOnLidOnPowerClose);\n    connect(m_powerDBusProxy, &PowerDBusProxy::LinePowerScreenBlackDelayChanged, this, &PowerWorker::setScreenBlackDelayToModelOnPower);\n    connect(m_powerDBusProxy, &PowerDBusProxy::LinePowerSleepDelayChanged, this, &PowerWorker::setSleepDelayToModelOnPower);\n    connect(m_powerDBusProxy, &PowerDBusProxy::BatteryScreenBlackDelayChanged, this, &PowerWorker::setScreenBlackDelayToModelOnBattery);\n    connect(m_powerDBusProxy, &PowerDBusProxy::BatterySleepDelayChanged, this, &PowerWorker::setSleepDelayToModelOnBattery);\n    connect(m_powerDBusProxy, &PowerDBusProxy::BatteryLockDelayChanged, this, &PowerWorker::setResponseBatteryLockScreenDelay);\n    connect(m_powerDBusProxy, &PowerDBusProxy::LinePowerLockDelayChanged, this, &PowerWorker::setResponsePowerLockScreenDelay);\n    connect(m_powerDBusProxy, &PowerDBusProxy::IsHighPerformanceSupportedChanged, this, &PowerWorker::setHighPerformanceSupported);\n\n    connect(m_powerDBusProxy, &PowerDBusProxy::PowerSavingModeAutoChanged, m_powerModel, &PowerModel::setAutoPowerSaveMode);\n    connect(m_powerDBusProxy, &PowerDBusProxy::PowerSavingModeEnabledChanged, m_powerModel, &PowerModel::setPowerSaveMode);\n\n    connect(m_powerDBusProxy, &PowerDBusProxy::HasBatteryChanged, m_powerModel, &PowerModel::setHaveBettary);\n\n    //--------------------sp2 add----------------------------\n    connect(m_powerDBusProxy, &PowerDBusProxy::PowerSavingModeAutoWhenBatteryLowChanged, m_powerModel, &PowerModel::setPowerSavingModeAutoWhenQuantifyLow);\n    connect(m_powerDBusProxy, &PowerDBusProxy::PowerSavingModeAutoChanged, m_powerModel, &PowerModel::setPowerSavingModeAuto);\n    connect(m_powerDBusProxy, &PowerDBusProxy::PowerSavingModeBrightnessDropPercentChanged, m_powerModel, &PowerModel::setPowerSavingModeLowerBrightnessThreshold);\n    connect(m_powerDBusProxy, &PowerDBusProxy::PowerSavingModeAutoBatteryPercentChanged, m_powerModel, &PowerModel::setPowerSavingModeAutoBatteryPercentage);\n    connect(m_powerDBusProxy, &PowerDBusProxy::LinePowerPressPowerBtnActionChanged, m_powerModel, &PowerModel::setLinePowerPressPowerBtnAction);\n    connect(m_powerDBusProxy, &PowerDBusProxy::LinePowerLidClosedActionChanged, m_powerModel, &PowerModel::setLinePowerLidClosedAction);\n    connect(m_powerDBusProxy, &PowerDBusProxy::BatteryPressPowerBtnActionChanged, m_powerModel, &PowerModel::setBatteryPressPowerBtnAction);\n    connect(m_powerDBusProxy, &PowerDBusProxy::BatteryLidClosedActionChanged, m_powerModel, &PowerModel::setBatteryLidClosedAction);\n    connect(m_powerDBusProxy, &PowerDBusProxy::LowPowerNotifyEnableChanged, m_powerModel, &PowerModel::setLowPowerNotifyEnable);\n    connect(m_powerDBusProxy, &PowerDBusProxy::LowPowerNotifyThresholdChanged, m_powerModel, &PowerModel::setLowPowerNotifyThreshold);\n    connect(m_powerDBusProxy, &PowerDBusProxy::LowPowerAutoSleepThresholdChanged, m_powerModel, &PowerModel::setLowPowerAutoSleepThreshold);\n    connect(m_powerDBusProxy, &PowerDBusProxy::ScheduledShutdownStateChanged, m_powerModel, &PowerModel::setScheduledShutdownState);\n    connect(m_powerDBusProxy, &PowerDBusProxy::ShutdownTimeChanged, m_powerModel, &PowerModel::setShutdownTime);\n    connect(m_powerDBusProxy, &PowerDBusProxy::ShutdownRepetitionChanged, m_powerModel, &PowerModel::setShutdownRepetition);\n    connect(m_powerDBusProxy, &PowerDBusProxy::CustomShutdownWeekDaysChanged, this, &PowerWorker::onCustomShutdownWeekDaysChanged);\n    //-------------------------------------------------------\n    connect(m_powerDBusProxy, &PowerDBusProxy::ModeChanged, m_powerModel, &PowerModel::setPowerPlan);\n    connect(m_powerDBusProxy, &PowerDBusProxy::BatteryCapacityChanged, m_powerModel, &PowerModel::setBatteryCapacity);\n    connect(m_powerDBusProxy, &PowerDBusProxy::LowPowerActionChanged, m_powerModel, &PowerModel::setLowPowerAction);\n\n    connect(m_cfgDock, &DConfig::valueChanged, [this] (const QString &key) {\n        if (\"showTimeToFull\" == key) {\n            m_powerModel->setShowBatteryTimeToFull(m_cfgDock->value(\"showTimeToFull\").toBool());\n        }\n    });\n  \n    connect(m_cfgPower, &DConfig::valueChanged, [this](const QString &key) {\n        if (key == BATTERY_LOCKDELAY_NAME) {\n            readConfig(BATTERY_LOCKDELAY_NAME,\n                std::bind(&PowerModel::setBatteryLockDelayModel, m_powerModel, std::placeholders::_1));\n        } else if (key == BATTERY_SLEEPDELAY_NAME) {\n            readConfig(BATTERY_SLEEPDELAY_NAME,\n                std::bind(&PowerModel::setBatterySleepDelayModel, m_powerModel, std::placeholders::_1));\n        } else if (key == BATTERY_SBDELAY_NAME) {\n            readConfig(BATTERY_SBDELAY_NAME,\n                std::bind(&PowerModel::setBatteryScreenBlackDelayModel, m_powerModel, std::placeholders::_1));\n        } else if (key == LINEPOWER_LOCKDELAY_NAME) {\n            readConfig(LINEPOWER_LOCKDELAY_NAME,\n                std::bind(&PowerModel::setLinePowerLockDelayModel, m_powerModel, std::placeholders::_1));\n        } else if (key == LINEPOWER_SLEEPDELAY_NAME) {\n            readConfig(LINEPOWER_SLEEPDELAY_NAME,\n                std::bind(&PowerModel::setLinePowerSleepDelayModel, m_powerModel, std::placeholders::_1));\n        } else if (key == LINEPOWER_SBDELAY_NAME) {\n            readConfig(LINEPOWER_SBDELAY_NAME,\n                std::bind(&PowerModel::setLinePowerScreenBlackDelayModel, m_powerModel, std::placeholders::_1));\n        } else if (key == SHOW_HIBERNATE_NAME) {\n            readConfig(SHOW_HIBERNATE_NAME,\n                std::bind(&PowerModel::setHibernate, m_powerModel, std::placeholders::_1));\n        } else if (key == SHOW_SHUTDOWN_NAME) {\n            readConfig(SHOW_SHUTDOWN_NAME,\n                std::bind(&PowerModel::setShutdown, m_powerModel, std::placeholders::_1));\n        } else if (key == SHOW_SUSPEND_NAME) {\n            readConfig(SHOW_SUSPEND_NAME,\n                std::bind(&PowerModel::setSuspend, m_powerModel, std::placeholders::_1));\n        } else if (key == ENABLE_SCHEDULED_SHUTDOWN) {\n            readConfig(ENABLE_SCHEDULED_SHUTDOWN,\n                std::bind(&PowerModel::setEnableScheduledShutdown, m_powerModel, std::placeholders::_1));\n        }\n    });\n\n    connect(m_cfgTime, &DConfig::valueChanged, [this](const QString &key) {\n        if (key == TIME_WEEK_START_NAME) {\n            int value = m_cfgTime->value(TIME_WEEK_START_NAME).toInt();\n            m_powerModel->setWeekBegins(value);\n        }\n    });\n\n    // init base property\n    m_powerModel->setHaveBettary(m_powerDBusProxy->hasBattery());\n}\n\nQVariantList PowerWorker::converToDataMap(const QStringList& conf)\n{\n    QVariantList dataMap;\n    for(const QString& numStr : conf) {\n        int num;\n        if (numStr.isEmpty()) {\n            qWarning() << \"Convert to num failed, config is empty\";\n            continue;\n        }\n        bool ok;\n        num = numStr.mid(0, numStr.length() - 1).toInt(&ok);\n        if (!ok) {\n            qWarning() << \"Convert to num failed, can't change num to int\";\n            num = 0;\n        }\n\n        QVariantMap map;\n        if (numStr.contains(\"m\")) {\n            num = num * 60;\n            map[\"trText\"] = numStr.chopped(1) + \" \" + tr(\"Minutes\");\n        } else if (numStr.contains(\"h\")) {\n            num = num * 3600;\n            map[\"trText\"] = numStr.chopped(1) + \" \" + tr(\"Hour\");\n        }\n\n        map[\"text\"] = numStr;\n        map[\"value\"] = num;\n        dataMap.push_back(map);\n    }\n    QVariantMap map;\n    map[\"trText\"] = tr(\"Never\");\n    map[\"text\"] = tr(\"Never\");\n    map[\"value\"] = 0;\n    dataMap.push_back(map);\n    return dataMap;\n}\n\nvoid PowerWorker::active()\n{\n    m_powerDBusProxy->blockSignals(false);\n\n    // refersh data\n    m_powerModel->setScreenBlackLock(m_powerDBusProxy->screenBlackLock());\n    m_powerModel->setSleepLock(m_powerDBusProxy->sleepLock());\n    m_powerModel->setLidPresent(m_powerDBusProxy->lidIsPresent());\n    m_powerModel->setSleepOnLidOnPowerClose(m_powerDBusProxy->lidClosedSleep());\n    m_powerModel->setHaveBettary(m_powerDBusProxy->hasBattery());\n    m_powerModel->setPowerSavingModeAutoWhenQuantifyLow(m_powerDBusProxy->powerSavingModeAutoWhenBatteryLow());\n    m_powerModel->setPowerSavingModeAutoBatteryPercentage(m_powerDBusProxy->powerSavingModeAutoBatteryPercent());\n    m_powerModel->setPowerSavingModeLowerBrightnessThreshold(m_powerDBusProxy->powerSavingModeBrightnessDropPercent());\n    m_powerModel->setLowPowerNotifyEnable(m_powerDBusProxy->lowPowerNotifyEnable());\n    m_powerModel->setLowPowerAutoSleepThreshold(m_powerDBusProxy->lowPowerAutoSleepThreshold());\n    m_powerModel->setLowPowerNotifyThreshold(m_powerDBusProxy->lowPowerNotifyThreshold());\n    m_powerModel->setLinePowerPressPowerBtnAction(m_powerDBusProxy->linePowerPressPowerBtnAction());\n    m_powerModel->setLinePowerLidClosedAction(m_powerDBusProxy->linePowerLidClosedAction());\n    m_powerModel->setBatteryPressPowerBtnAction(m_powerDBusProxy->batteryPressPowerBtnAction());\n    m_powerModel->setBatteryLidClosedAction(m_powerDBusProxy->batteryLidClosedAction());\n    m_powerModel->setPowerPlan(m_powerDBusProxy->mode());\n    m_powerModel->setBatteryCapacity(m_powerDBusProxy->batteryCapacity());\n    m_powerModel->setNoPasswdLogin(m_powerDBusProxy->noPasswdLogin());\n    m_powerModel->setShowBatteryTimeToFull(m_cfgDock->value(\"showTimeToFull\").toBool());\n    m_powerModel->setNoPasswdLogin(m_powerDBusProxy->noPasswdLogin());\n    m_powerModel->setScheduledShutdownState(m_powerDBusProxy->scheduledShutdownState());\n    m_powerModel->setShutdownTime(m_powerDBusProxy->shutdownTime());\n    m_powerModel->setShutdownRepetition(m_powerDBusProxy->shutdownRepetition());\n    m_powerModel->setWeekBegins(m_cfgTime->value(TIME_WEEK_START_NAME).toInt());\n    m_powerModel->setLowPowerAction(m_powerDBusProxy->lowPowerAction());\n\n    onCustomShutdownWeekDaysChanged(m_powerDBusProxy->customShutdownWeekDays());\n\n    setHighPerformanceSupported(m_powerDBusProxy->isHighPerformanceSupported());\n    setBalancePerformanceSupported(m_powerDBusProxy->isBalancePerformanceSupported());\n\n    setScreenBlackDelayToModelOnPower(m_powerDBusProxy->linePowerScreenBlackDelay());\n    setSleepDelayToModelOnPower(m_powerDBusProxy->linePowerSleepDelay());\n\n    setScreenBlackDelayToModelOnBattery(m_powerDBusProxy->batteryScreenBlackDelay());\n    setSleepDelayToModelOnBattery(m_powerDBusProxy->batterySleepDelay());\n\n    setResponseBatteryLockScreenDelay(m_powerDBusProxy->batteryLockDelay());\n    setResponsePowerLockScreenDelay(m_powerDBusProxy->linePowerLockDelay());\n\n    m_powerModel->setAutoPowerSaveMode(m_powerDBusProxy->powerSavingModeAuto());\n    m_powerModel->setPowerSaveMode(m_powerDBusProxy->powerSavingModeEnabled());\n    m_powerModel->setIsVirtualEnvironment(isVirtualEnvironment());\n\n    QProcessEnvironment env = QProcessEnvironment::systemEnvironment();\n    const bool confVal = valueByQSettings<bool>(DCC_CONFIG_FILES, \"Power\", \"sleep\", true);\n    const bool envVal = QVariant(env.value(POWER_CAN_SLEEP)).toBool();\n    const bool envVal_hibernate = QVariant(env.value(POWER_CAN_HIBERNATE)).toBool();\n\n    bool canSuspend = m_powerDBusProxy->login1ManagerCanSuspend();\n    bool can_suspend = env.contains(POWER_CAN_SLEEP)\n            ? envVal\n            : confVal && canSuspend;\n    m_powerModel->setCanSuspend(can_suspend);\n\n    bool canHibernate = m_powerDBusProxy->login1ManagerCanHibernate();\n    bool can_hibernate = env.contains(POWER_CAN_HIBERNATE)\n            ? envVal_hibernate\n            : canHibernate;\n    m_powerModel->setCanHibernate(can_hibernate);\n\n    readConfig(BATTERY_LOCKDELAY_NAME, std::bind(&PowerModel::setBatteryLockDelayModel, m_powerModel, std::placeholders::_1));\n    readConfig(BATTERY_SLEEPDELAY_NAME, std::bind(&PowerModel::setBatterySleepDelayModel, m_powerModel, std::placeholders::_1));\n    readConfig(BATTERY_SBDELAY_NAME, std::bind(&PowerModel::setBatteryScreenBlackDelayModel, m_powerModel, std::placeholders::_1));\n    readConfig(LINEPOWER_LOCKDELAY_NAME, std::bind(&PowerModel::setLinePowerLockDelayModel, m_powerModel, std::placeholders::_1));\n    readConfig(LINEPOWER_SLEEPDELAY_NAME, std::bind(&PowerModel::setLinePowerSleepDelayModel, m_powerModel, std::placeholders::_1));\n    readConfig(LINEPOWER_SBDELAY_NAME, std::bind(&PowerModel::setLinePowerScreenBlackDelayModel, m_powerModel, std::placeholders::_1));\n\n    readConfig(SHOW_HIBERNATE_NAME, std::bind(&PowerModel::setHibernate, m_powerModel, std::placeholders::_1));\n    readConfig(SHOW_SHUTDOWN_NAME, std::bind(&PowerModel::setShutdown, m_powerModel, std::placeholders::_1));\n    readConfig(SHOW_SUSPEND_NAME, std::bind(&PowerModel::setSuspend, m_powerModel, std::placeholders::_1));\n    readConfig(ENABLE_SCHEDULED_SHUTDOWN, std::bind(&PowerModel::setEnableScheduledShutdown, m_powerModel, std::placeholders::_1));\n\n}\n\nvoid PowerWorker::readConfig(const QString &key, std::function<void(const QVariantList &value)> callback)\n{\n    auto configList = m_cfgPower->value(key).toStringList();\n    bool isLegal = true;\n    if (configList.size() != 6) {\n        isLegal = false;\n    } else {\n        QRegularExpression re(\"^[1-9][0-9]*[mh]\");\n        for (const QString &v : configList) {\n            if (!re.match(v).hasMatch()) {\n                isLegal = false;\n                break;\n            }\n        }\n    }\n    if (!isLegal) {\n        m_cfgPower->reset(key);\n        qWarning() << \"config is illegal, reset config\";\n    }\n    auto configDataMap = converToDataMap(configList);\n    callback(configDataMap);\n}\n\nvoid PowerWorker::readConfig(const QString &key, std::function<void(const bool value)> callback)\n{\n    bool enable = m_cfgPower->value(key, true).toBool();\n    callback(enable);\n}\n\nvoid PowerWorker::readConfig(const QString &key, std::function<void(const QString &value)> callback)\n{\n    const QString &enable = m_cfgPower->value(key, true).toString();\n    callback(enable);\n}\n\nvoid PowerWorker::deactive()\n{\n    m_powerDBusProxy->blockSignals(true);\n}\n\nvoid PowerWorker::setScreenBlackLock(const bool lock)\n{\n    m_powerDBusProxy->setScreenBlackLock(lock);\n}\n\nvoid PowerWorker::setScheduledShutdownState(const bool state)\n{\n    m_powerDBusProxy->setScheduledShutdownState(state);\n}\n\nvoid PowerWorker::setShutdownTime(const QString &time)\n{\n    m_powerDBusProxy->setShutdownTime(time);\n}\n\nvoid PowerWorker::setShutdownRepetition(int repetition)\n{\n    m_powerDBusProxy->setShutdownRepetition(repetition);\n}\n\nvoid PowerWorker::setCustomShutdownWeekDays(const QString &weekdays)\n{\n    QByteArray value;\n    \n    for (const auto &num : weekdays.simplified().split(',')) {\n        bool ok = false;\n        int day = num.toInt(&ok);\n        if (ok) {\n            value.append(static_cast<char>(day));\n        }\n    }\n    m_powerDBusProxy->setCustomShutdownWeekDays(value);\n}\n\nvoid PowerWorker::setSleepLock(const bool lock)\n{\n    m_powerDBusProxy->setSleepLock(lock);\n}\n\nvoid PowerWorker::setSleepOnLidOnPowerClosed(const bool sleep)\n{\n    m_powerDBusProxy->setLidClosedSleep(sleep);\n}\n\nvoid PowerWorker::setSleepDelayOnPower(const int delay)\n{\n    qDebug() << \"m_powerDBusProxy->setLinePowerSleepDelay: \" << delay;\n    m_powerDBusProxy->setLinePowerSleepDelay(delay);\n}\n\nvoid PowerWorker::setSleepDelayOnBattery(const int delay)\n{\n    qDebug() << \"m_powerDBusProxy->setBatterySleepDelay: \" << delay;\n    m_powerDBusProxy->setBatterySleepDelay(delay);\n}\n\nvoid PowerWorker::setScreenBlackDelayOnPower(const int delay)\n{\n    qDebug() << \"m_powerDBusProxy->setLinePowerScreenBlackDelay: \" << delay;\n    m_powerDBusProxy->setLinePowerScreenBlackDelay(delay);\n}\n\nvoid PowerWorker::setScreenBlackDelayOnBattery(const int delay)\n{\n    qDebug() << \"m_powerDBusProxy->setBatteryScreenBlackDelay: \" << delay;\n    m_powerDBusProxy->setBatteryScreenBlackDelay(delay);\n}\n\nvoid PowerWorker::setSleepDelayToModelOnPower(const int delay)\n{\n    m_powerModel->setSleepDelayOnPower(delay);\n}\n\nvoid PowerWorker::setScreenBlackDelayToModelOnPower(const int delay)\n{\n    m_powerModel->setScreenBlackDelayOnPower(delay);\n}\n\nvoid PowerWorker::setSleepDelayToModelOnBattery(const int delay)\n{\n    m_powerModel->setSleepDelayOnBattery(delay);\n}\n\nvoid PowerWorker::setResponseBatteryLockScreenDelay(const int delay)\n{\n    m_powerModel->setBatteryLockScreenDelay(delay);\n}\n\nvoid PowerWorker::setResponsePowerLockScreenDelay(const int delay)\n{\n    m_powerModel->setPowerLockScreenDelay(delay);\n}\n\nvoid PowerWorker::setHighPerformanceSupported(bool state)\n{\n    m_powerModel->setHighPerformanceSupported(state);\n}\n\nvoid PowerWorker::setBalancePerformanceSupported(bool state)\n{\n    m_powerModel->setBalancePerformanceSupported(state);\n}\n\nvoid PowerWorker::setPowerSavingModeAutoWhenQuantifyLow(bool bLowBatteryAutoIntoSaveEnergyMode)\n{\n    m_powerDBusProxy->setPowerSavingModeAutoWhenBatteryLow(bLowBatteryAutoIntoSaveEnergyMode);\n}\n\nvoid PowerWorker::setPowerSavingModeAuto(bool bAutoIntoSaveEnergyMode)\n{\n    m_powerDBusProxy->setPowerSavingModeAuto(bAutoIntoSaveEnergyMode);\n}\n\nvoid PowerWorker::setPowerSavingModeLowerBrightnessThreshold(uint dPowerSavingModeLowerBrightnessThreshold)\n{\n    m_powerDBusProxy->setPowerSavingModeBrightnessDropPercent(dPowerSavingModeLowerBrightnessThreshold);\n}\n\nvoid PowerWorker::setPowerSavingModeAutoBatteryPercentage(uint dPowerSavingModeBatteryPercentage)\n{\n    m_powerDBusProxy->setPowerSavingModeAutoBatteryPercent(dPowerSavingModeBatteryPercentage);\n}\n\nvoid PowerWorker::setLinePowerPressPowerBtnAction(int nLinePowerPressPowerBtnAction)\n{\n    m_powerDBusProxy->setLinePowerPressPowerBtnAction(nLinePowerPressPowerBtnAction);\n}\n\nvoid PowerWorker::setLinePowerLidClosedAction(int nLinePowerLidClosedAction)\n{\n    m_powerDBusProxy->setLinePowerLidClosedAction(nLinePowerLidClosedAction);\n}\n\nvoid PowerWorker::setBatteryPressPowerBtnAction(int nBatteryPressPowerBtnAction)\n{\n    m_powerDBusProxy->setBatteryPressPowerBtnAction(nBatteryPressPowerBtnAction);\n}\n\nvoid PowerWorker::setBatteryLidClosedAction(int nBatteryLidClosedAction)\n{\n    m_powerDBusProxy->setBatteryLidClosedAction(nBatteryLidClosedAction);\n}\n\nvoid PowerWorker::setLowPowerNotifyEnable(bool bLowPowerNotifyEnable)\n{\n    m_powerDBusProxy->setLowPowerNotifyEnable(bLowPowerNotifyEnable);\n}\n\nvoid PowerWorker::setLowPowerNotifyThreshold(int dLowPowerNotifyThreshold)\n{\n    m_powerDBusProxy->setLowPowerNotifyThreshold(dLowPowerNotifyThreshold);\n}\n\nvoid PowerWorker::setLowPowerAutoSleepThreshold(int dLowPowerAutoSleepThreshold)\n{\n    m_powerDBusProxy->setLowPowerAutoSleepThreshold(dLowPowerAutoSleepThreshold);\n}\nvoid PowerWorker::setLowPowerAction(int action)\n{\n    m_powerDBusProxy->setLowPowerAction(action);\n}\n\n/**\n * @brief PowerWorker::setPowerPlan\n * @param powerPlan\n * 设置性能模式的dbus接口\n */\nvoid PowerWorker::setPowerPlan(const QString &powerPlan)\n{\n    m_powerDBusProxy->SetMode(powerPlan);\n}\n\nbool PowerWorker::getCurCanSuspend()\n{\n    return m_powerDBusProxy->CanSuspend();\n}\n\nbool PowerWorker::getCurCanHibernate()\n{\n    return m_powerDBusProxy->CanHibernate();\n}\n\nvoid PowerWorker::setScreenBlackDelayToModelOnBattery(const int delay)\n{\n    m_powerModel->setScreenBlackDelayOnBattery(delay);\n}\n\nvoid PowerWorker::setLockScreenDelayOnBattery(const int delay)\n{\n    qDebug() << \"m_powerDBusProxy->setBatteryLockDelay: \" << delay;\n    m_powerDBusProxy->setBatteryLockDelay(delay);\n}\n\nvoid PowerWorker::setLockScreenDelayOnPower(const int delay)\n{\n    qDebug() << \"m_powerDBusProxy->setLinePowerLockDelay: \" << delay;\n    m_powerDBusProxy->setLinePowerLockDelay(delay);\n}\n\nvoid PowerWorker::setEnablePowerSave(const bool isEnable)\n{\n    m_powerDBusProxy->setPowerSavingModeEnabled(isEnable);\n}\n\nint PowerWorker::getMaxBacklightBrightness()\n{\n    return m_powerDBusProxy->maxBacklightBrightness();\n}\n\nvoid PowerWorker::setShowBatteryTimeToFull(bool value)\n{\n    if (m_cfgDock) {\n        m_cfgDock->setValue(\"showTimeToFull\", value);\n    }\n}\n\nvoid PowerWorker::onCustomShutdownWeekDaysChanged(const QByteArray &value)\n{\n    QVariantList valueList;\n    for (auto c : value) {\n        valueList.append(static_cast<int>(c));\n    }\n    m_powerModel->setCustomShutdownWeekDays(valueList);\n}\n"
  },
  {
    "path": "src/plugin-power/operation/powerworker.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef POWERWORKER_H\n#define POWERWORKER_H\n\n#include \"powerdbusproxy.h\"\n#include <QObject>\n#include <DConfig>\n#include \"powermodel.h\"\n\nclass PowerWorker : public QObject\n{\n    Q_OBJECT\n\npublic:\n    explicit PowerWorker(PowerModel *model, QObject *parent = 0);\n\n    void active();\n    void deactive();\n\npublic Q_SLOTS:\n    void setScreenBlackLock(const bool lock);\n    void setScheduledShutdownState(const bool state);\n    void setShutdownTime(const QString &time);\n    void setShutdownRepetition(int repetition);\n    void setCustomShutdownWeekDays(const QString &weekdays);\n    void setSleepLock(const bool lock);\n    void setSleepOnLidOnPowerClosed(const bool sleep);\n    void setSleepDelayOnPower(const int delay);\n    void setSleepDelayOnBattery(const int delay);\n    void setScreenBlackDelayOnPower(const int delay);\n    void setScreenBlackDelayOnBattery(const int delay);\n    void setSleepDelayToModelOnPower(const int delay);\n    void setScreenBlackDelayToModelOnPower(const int delay);\n    void setSleepDelayToModelOnBattery(const int delay);\n    void setScreenBlackDelayToModelOnBattery(const int delay);\n    void setLockScreenDelayOnBattery(const int delay);\n    void setLockScreenDelayOnPower(const int delay);\n    void setResponseBatteryLockScreenDelay(const int delay);\n    void setResponsePowerLockScreenDelay(const int delay);\n    void setHighPerformanceSupported(bool state);\n    void setBalancePerformanceSupported(bool state);\n    //------------sp2 add-----------------------\n    void setPowerSavingModeAutoWhenQuantifyLow(bool bLowBatteryAutoIntoSaveEnergyMode);\n    void setPowerSavingModeAuto(bool bAutoIntoSaveEnergyMode);\n    void setPowerSavingModeLowerBrightnessThreshold(uint dPowerSavingModeLowerBrightnessThreshold);\n    void setPowerSavingModeAutoBatteryPercentage(uint dPowerSavingModebatteryPentage);\n    void setLinePowerPressPowerBtnAction(int nLinePowerPressPowerBtnAction);\n    void setLinePowerLidClosedAction(int nLinePowerLidClosedAction);\n    void setBatteryPressPowerBtnAction(int nBatteryPressPowerBtnAction);\n    void setBatteryLidClosedAction(int nBatteryLidClosedAction);\n    void setLowPowerNotifyEnable(bool bLowPowerNotifyEnable);\n    void setLowPowerNotifyThreshold(int dLowPowerNotifyThreshold);\n    void setLowPowerAutoSleepThreshold(int dLowPowerAutoSleepThreshold);\n    void setLowPowerAction(int action);\n    //------------------------------------------\n    void setPowerPlan(const QString &powerPlan);\n    void setShowBatteryTimeToFull(bool value);\n\n    bool getCurCanSuspend();\n    bool getCurCanHibernate();\n\n    void setEnablePowerSave(const bool isEnable);\n\n    int getMaxBacklightBrightness();\n\nprivate:\n    void readConfig(const QString &key, std::function<void(const QVariantList &value)> callback);\n    void readConfig(const QString &key, std::function<void(const bool value)> callback);\n    void readConfig(const QString &key, std::function<void(const QString &value)> callback);\n    QVariantList converToDataMap(const QStringList& conf);\nprivate slots:\n    void onCustomShutdownWeekDaysChanged(const QByteArray &value);\n\nprivate:\n    PowerModel *m_powerModel;\n    PowerDBusProxy *m_powerDBusProxy;\n\n    Dtk::Core::DConfig *m_cfgDock;\n    Dtk::Core::DConfig *m_cfgPower;\n    Dtk::Core::DConfig *m_cfgTime;\n};\n\n#endif // POWERWORKER_H\n"
  },
  {
    "path": "src/plugin-power/operation/qrc/power.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_power_42px.svg</file>\n        <file>icons/dcc_nav_power_84px.svg</file>\n        <file>actions/dcc_general_purpose_32px.svg</file>\n        <file>actions/dcc_battery_32px.svg</file>\n        <file>actions/dcc_using_electric_32px.svg</file>\n    </qresource>\n    <qresource prefix=\"/dsg\">\n        <file>icons/balanced.dci</file>\n        <file>icons/balance_performance.dci</file>\n        <file>icons/high_performance.dci</file>\n        <file>icons/power_performance.dci</file>\n        <file>icons/general.dci</file>\n        <file>icons/on_battery.dci</file>\n        <file>icons/plugged_in.dci</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-power/operation/utils.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef UTILS_H\n#define UTILS_H\n\n#include <DSysInfo>\n#include <DPlatformHandle>\n\n#include <QVariant>\n#include <QSettings>\n#include <QProcess>\n\nDCORE_USE_NAMESPACE\n\ntemplate <typename T>\nT valueByQSettings(const QStringList& configFiles,\n                   const QString&     group,\n                   const QString&     key,\n                   const QVariant&    failback)\n{\n    for (const QString& path : configFiles) {\n        QSettings settings(path, QSettings::IniFormat);\n        if (!group.isEmpty()) {\n            settings.beginGroup(group);\n        }\n\n        const QVariant& v = settings.value(key);\n        if (v.isValid()) {\n            T t = v.value<T>();\n            return t;\n        }\n    }\n\n    return failback.value<T>();\n}\n\ninline const static Dtk::Core::DSysInfo::UosType UosType = Dtk::Core::DSysInfo::uosType();\ninline const static bool IsServerSystem =\n        (Dtk::Core::DSysInfo::UosServer == UosType); // 是否是服务器版\n\ninline static bool isVirtualEnvironment()\n{\n    static bool cached = false;\n    static bool result = false;\n    \n    if (!cached) {\n        QProcess proc;\n        proc.start(\"systemd-detect-virt\");\n        proc.waitForFinished(1000);\n        QString output = proc.readAllStandardOutput();\n        result = !output.contains(\"none\");\n        cached = true;\n    }\n    \n    return result;\n}\n\n#endif // UTILS_H\n"
  },
  {
    "path": "src/plugin-power/qml/BatteryPage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    DccTitleObject {\n        name: \"screenAndSuspendTitle\"\n        parentName: \"power/onBattery\"\n        displayName: qsTr(\"Screen and Suspend\")\n        visible: dccData.platformName() !== \"wayland\"\n        weight: 10\n    }\n\n    DccObject {\n        name: \"turnOffTheMonitorAfterGroup\"\n        parentName: \"power/onBattery\"\n        weight: 100\n        pageType: DccObject.Item\n        visible: dccData.platformName() !== \"wayland\"\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"turnOffTheMonitorAfter\"\n            parentName: \"power/onBattery/turnOffTheMonitorAfterGroup\"\n            displayName: qsTr(\"Turn off the monitor after\")\n            weight: 1\n            pageType: DccObject.Item\n            page: ColumnLayout {\n                Layout.fillHeight: true\n\n                RowLayout {\n                    Layout.leftMargin: 14\n                    Layout.rightMargin: 10\n                    Layout.topMargin: 10\n                    Label {\n                        font: D.DTK.fontManager.t6\n                        text: dccObj.displayName\n                    }\n                    Item {\n                        Layout.fillWidth: true\n                    }\n                    Label {\n                        text: offMonitorSlider.dataMap[offMonitorSlider.slider.value].trText\n                        horizontalAlignment: Text.AlignRight\n                    }\n                }\n\n                CustomTipsSlider {\n                    id: offMonitorSlider\n                    dataMap: dccData.model.batteryScreenBlackDelayModel\n                    Layout.preferredHeight: 80\n                    Layout.alignment: Qt.AlignCenter\n                    Layout.margins: 10\n                    Layout.fillWidth: true\n                    slider.value: dccData.indexByValueOnMap(dataMap, dccData.model.screenBlackDelayOnBattery)\n                    slider.onValueChanged: {\n                        dccData.worker.setScreenBlackDelayOnBattery(dataMap[slider.value].value)\n                    }\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"lockScreenAfterGroup\"\n        parentName: \"power/onBattery\"\n        weight: 200\n        pageType: DccObject.Item\n        visible: dccData.platformName() !== \"wayland\"\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"lockScreenAfter\"\n            parentName: \"power/onBattery/lockScreenAfterGroup\"\n            displayName: qsTr(\"Lock screen after\")\n            weight: 1\n            pageType: DccObject.Item\n            page: ColumnLayout {\n                Layout.fillHeight: true\n\n                RowLayout {\n                    Layout.leftMargin: 14\n                    Layout.rightMargin: 10\n                    Layout.topMargin: 10\n                    Label {\n                        font: D.DTK.fontManager.t6\n                        text: dccObj.displayName\n                    }\n                    Item {\n                        Layout.fillWidth: true\n                    }\n                    Label {\n                        text: lockScreenSlider.dataMap[lockScreenSlider.slider.value].trText\n                        horizontalAlignment: Text.AlignRight\n                    }\n                }\n\n                CustomTipsSlider {\n                    id: lockScreenSlider\n                    dataMap: dccData.model.batteryLockDelayModel\n                    Layout.preferredHeight: 80\n                    Layout.alignment: Qt.AlignCenter\n                    Layout.margins: 10\n                    Layout.fillWidth: true\n                    slider.value: dccData.indexByValueOnMap(dataMap, dccData.model.batteryLockScreenDelay)\n                    slider.onValueChanged: {\n                        dccData.worker.setLockScreenDelayOnBattery(dataMap[slider.value].value)\n                    }\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"computerSuspendsAfterGroup\"\n        parentName: \"power/onBattery\"\n        weight: 300\n        pageType: DccObject.Item\n        visible: dccData.platformName() !== \"wayland\" && !dccData.model.isVirtualEnvironment && dccData.model.canSuspend\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"computerSuspendsAfter\"\n            parentName: \"power/onBattery/computerSuspendsAfterGroup\"\n            displayName: qsTr(\"Computer suspends after\")\n            weight: 1\n            pageType: DccObject.Item\n            page: ColumnLayout {\n                Layout.fillHeight: true\n\n                RowLayout {\n                    Layout.leftMargin: 14\n                    Layout.rightMargin: 10\n                    Layout.topMargin: 10\n                    Label {\n                        font: D.DTK.fontManager.t6\n                        text: dccObj.displayName\n                    }\n                    Item {\n                        Layout.fillWidth: true\n                    }\n                    Label {\n                        text: suspendsSlider.dataMap[suspendsSlider.slider.value].trText\n                        horizontalAlignment: Text.AlignRight\n                    }\n                }\n\n                CustomTipsSlider {\n                    id: suspendsSlider\n                    dataMap: dccData.model.batterySleepDelayModel\n                    Layout.preferredHeight: 80\n                    Layout.alignment: Qt.AlignCenter\n                    Layout.margins: 10\n                    Layout.fillWidth: true\n                    slider.value: dccData.indexByValueOnMap(dataMap, dccData.model.sleepDelayOnBattery)\n                    slider.onValueChanged: {\n                        dccData.worker.setSleepDelayOnBattery(dataMap[slider.value].value)\n                    }\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"powerButtonGroup\"\n        parentName: \"power/onBattery\"\n        weight: 400\n        pageType: DccObject.Item\n        visible: dccData.platformName() !== \"wayland\"\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"whenTheLidIsClosed\"\n            parentName: \"power/onBattery/powerButtonGroup\"\n            displayName: qsTr(\"When the lid is closed\")\n            visible: dccData.model.lidPresent\n            weight: 1\n            pageType: DccObject.Editor\n            page: CustomComboBox {\n                textRole: \"text\"\n                enableRole: \"enable\"\n                visibleRole: \"visible\"\n                model: dccData.batteryLidModel\n                currentIndex: model.indexOfKey(dccData.model.batteryLidClosedAction)\n\n                onCurrentIndexChanged: {\n                    dccData.worker.setBatteryLidClosedAction(model.keyOfIndex(currentIndex))\n                }\n            }\n        }\n        DccObject {\n            name: \"whenThePowerButtonIsPressed\"\n            parentName: \"power/onBattery/powerButtonGroup\"\n            displayName: qsTr(\"When the power button is pressed\")\n            weight: 2\n            pageType: DccObject.Editor\n            page: CustomComboBox {\n                textRole: \"text\"\n                enableRole: \"enable\"\n                visibleRole: \"visible\"\n                model: dccData.batteryPressModel\n                currentIndex: model.indexOfKey(dccData.model.batteryPressPowerBtnAction)\n\n                onCurrentIndexChanged: {\n                    dccData.worker.setBatteryPressPowerBtnAction(model.keyOfIndex(currentIndex))\n                }\n            }\n        }\n    }\n\n    DccTitleObject {\n        name: \"lowBatteryTitle\"\n        parentName: \"power/onBattery\"\n        displayName: qsTr(\"Low Battery\")\n        weight: 500\n    }\n\n    DccObject {\n        name: \"lowBatteryNotificationGroup\"\n        parentName: \"power/onBattery\"\n        weight: 600\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"lowBatteryNotification\"\n            parentName: \"power/onBattery/lowBatteryNotificationGroup\"\n            displayName: qsTr(\"Low battery notification\")\n            weight: 1\n            pageType: DccObject.Editor\n            page: D.ComboBox {\n                textRole: \"text\"\n                flat: true\n                currentIndex: dccData.indexByValueOnModel(model, dccData.model.lowPowerNotifyThreshold)\n                model: ListModel {\n                    ListElement { text: qsTr(\"Disable\"); value: 0 }\n                    ListElement { text: \"10%\"; value: 10 }\n                    ListElement { text: \"15%\"; value: 15 }\n                    ListElement { text: \"20%\"; value: 20 }\n                    ListElement { text: \"25%\"; value: 25 }\n                }\n\n                onCurrentIndexChanged: {\n                    var selectedValue = model.get(currentIndex).value;\n                    if (selectedValue === 0) {\n                        dccData.worker.setLowPowerNotifyEnable(false)\n                        dccData.worker.setLowPowerNotifyThreshold(selectedValue)\n                    } else {\n                        dccData.worker.setLowPowerNotifyEnable(true)\n                        dccData.worker.setLowPowerNotifyThreshold(selectedValue)\n                    }\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"lowBatteryOperatorGroup\"\n        parentName: \"power/onBattery\"\n        weight: 700\n        pageType: DccObject.Item\n        visible: dccData.platformName() !== \"wayland\" && (dccData.model.canSuspend || dccData.model.canHibernate)\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"lowBatteryOperator\"\n            parentName: \"power/onBattery/lowBatteryOperatorGroup\"\n            displayName: qsTr(\"Low battery level\")\n            weight: 1\n            pageType: DccObject.Editor\n            page: CustomComboBox {\n                textRole: \"text\"\n                valueRole: \"value\"\n                flat: true\n                currentIndex: indexByValue(dccData.model.lowPowerAction)\n                model: ListModel {\n                    ListElement { text: qsTr(\"Auto suspend\"); value: 0 }\n                    ListElement { text: qsTr(\"Auto Hibernate\"); value: 1 }\n                }\n                onCurrentIndexChanged: {\n                    var selectedValue = model.get(currentIndex).value;\n                    dccData.worker.setLowPowerAction(selectedValue)\n                }\n            }\n        }\n        DccObject {\n            name: \"lowBatteryThreshold\"\n            parentName: \"power/onBattery/lowBatteryOperatorGroup\"\n            displayName: qsTr(\"Low battery threshold\")\n            weight: 2\n            pageType: DccObject.Editor\n            page: CustomComboBox {\n                textRole: \"text\"\n                valueRole: \"value\"\n                currentIndex: indexByValue(dccData.model.lowPowerAutoSleepThreshold)\n                model: ListModel {\n                    ListElement { text: \"1%\"; value: 1 }\n                    ListElement { text: \"2%\"; value: 2 }\n                    ListElement { text: \"3%\"; value: 3 }\n                    ListElement { text: \"4%\"; value: 4 }\n                    ListElement { text: \"5%\"; value: 5 }\n                    ListElement { text: \"6%\"; value: 6 }\n                    ListElement { text: \"7%\"; value: 7 }\n                    ListElement { text: \"8%\"; value: 8 }\n                    ListElement { text: \"9%\"; value: 9 }\n                }\n                flat: true\n\n                onCurrentIndexChanged: {\n                    var selectedValue = model.get(currentIndex).value;\n                    dccData.worker.setLowPowerAutoSleepThreshold(selectedValue)\n                }\n            }\n        }\n    }\n\n    DccTitleObject {\n        name: \"batteryManagementTitle\"\n        parentName: \"power/onBattery\"\n        displayName: qsTr(\"Battery Management\")\n        weight: 800\n    }\n\n    DccObject {\n        name: \"batteryManagementGroup\"\n        parentName: \"power/onBattery\"\n        weight: 900\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"displayRemainingUsingAndChargingTime\"\n            parentName: \"power/onBattery/batteryManagementGroup\"\n            displayName: qsTr(\"Display remaining using and charging time\")\n            weight: 1\n            pageType: DccObject.Editor\n            page: D.Switch {\n                checked: dccData.model.showBatteryTimeToFull\n                onCheckedChanged: {\n                    dccData.worker.setShowBatteryTimeToFull(checked)\n                }\n            }\n        }\n        DccObject {\n            name: \"maximumCapacity\"\n            parentName: \"power/onBattery/batteryManagementGroup\"\n            displayName: qsTr(\"Maximum capacity\")\n            weight: 2\n            pageType: DccObject.Editor\n            page: Label {\n                    Layout.leftMargin: 10\n                    text: dccData.model.batteryCapacity + \"%\"\n                }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-power/qml/CustomComboBox.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nD.ComboBox {\n    id: control\n    flat: true\n    property string visibleRole\n    property string enableRole\n\n    delegate: D.MenuItem {\n        id: menuItem\n        useIndicatorPadding: true\n        width: parent.width\n        text: control.textRole ? (Array.isArray(control.model) ? modelData[control.textRole] : model[control.textRole]) : modelData\n        icon.name: (control.iconNameRole && model[control.iconNameRole] !== undefined) ? model[control.iconNameRole] : null\n        highlighted: control.isInteractingWithContent ? control.highlightedIndex === index : false\n        hoverEnabled: control.hoverEnabled\n        autoExclusive: true\n        checked: control.currentIndex === index\n        enabled: (control.enableRole && model[control.enableRole] !== undefined) ? model[control.enableRole] : true\n        visible: (control.visibleRole && model[control.visibleRole] !== undefined) ? model[control.visibleRole] : true\n        implicitHeight: visible ? DS.Style.control.implicitHeight(menuItem) : 0\n\n        readonly property real availableTextWidth: {\n            return contentItem.width - contentItem.leftPadding - contentItem.rightPadding\n        }\n\n        FontMetrics {\n            id: fontMetrics\n            font: menuItem.font\n        }\n\n        HoverHandler { id: hoverHandler }\n\n        D.ToolTip {\n            visible: hoverHandler.hovered && fontMetrics.advanceWidth(menuItem.text) > menuItem.availableTextWidth\n            text: menuItem.text\n        }\n    }\n\n    // To replace function: indexOfValue\n    function indexByValue(value) {\n        for (var i = 0; i < model.count; i++) {\n            if (model.get(i).value === value) {\n                return i;\n            }\n        }\n        return -1;\n    }\n}\n"
  },
  {
    "path": "src/plugin-power/qml/CustomTipsSlider.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc 1.0\n\nD.TipsSlider {\n    id: slider\n    property var dataMap\n    slider.handleType: D.Slider.HandleType.ArrowBottom\n    slider.from: 0\n    slider.to: dataMap.length - 1\n    slider.live: true\n    slider.stepSize: 1\n    slider.snapMode: D.Slider.SnapAlways\n    Loader {\n        Repeater {\n            model: slider.dataMap.length\n            D.SliderTipItem {\n                // TODO need to modify\n                parent: slider.children[1]\n                text: slider.dataMap[index].text\n                highlight: slider.slider.value === index\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-power/qml/GeneralPage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    DccTitleObject {\n        name: \"powerPlansTitle\"\n        parentName: \"power/general\"\n        displayName: qsTr(\"Power Plans\")\n        weight: 10\n        visible: dccData.platformName() !== \"wayland\"\n    }\n\n    DccObject {\n        name: \"powerPlans\"\n        parentName: \"power/general\"\n        weight: 100\n        pageType: DccObject.Item\n        visible: dccData.platformName() !== \"wayland\"\n        page: DccGroupView {}\n        PowerPlansListview {}\n    }\n\n    DccTitleObject {\n        name: \"powerSavingSettingsTitle\"\n        parentName: \"power/general\"\n        displayName: qsTr(\"Power Saving Settings\")\n        weight: 200\n        visible: dccData.platformName() !== \"wayland\"\n    }\n\n    DccObject {\n        name: \"powerSavingSettingsGroup\"\n        parentName: \"power/general\"\n        weight: 300\n        pageType: DccObject.Item\n        visible: dccData.platformName() !== \"wayland\"\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"autoPowerSavingOnLowBattery\"\n            parentName: \"power/general/powerSavingSettingsGroup\"\n            displayName: qsTr(\"Auto power saving on low battery\")\n            weight: 1\n            visible: dccData.model.haveBettary\n            pageType: DccObject.Editor\n            page: D.Switch {\n                checked: dccData.model.powerSavingModeAutoWhenQuantifyLow\n                onCheckedChanged: {\n                    dccData.worker.setPowerSavingModeAutoWhenQuantifyLow(checked)\n                }\n            }\n        }\n\n        DccObject {\n            name: \"lowPowerThreshold\"\n            parentName: \"power/general/powerSavingSettingsGroup\"\n            displayName: qsTr(\"Low battery threshold\")\n            weight: 2\n            visible: dccData.model.haveBettary && dccData.model.powerSavingModeAutoWhenQuantifyLow\n            pageType: DccObject.Editor\n            page: D.ComboBox {\n                model: [ \"10%\", \"20%\", \"30%\", \"40%\", \"50%\" ]\n                flat: true\n                currentIndex: dccData.model.powerSavingModeAutoBatteryPercentage / 10 - 1\n\n                onCurrentIndexChanged: {\n                    dccData.worker.setPowerSavingModeAutoBatteryPercentage((currentIndex + 1) * 10)\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"autoPowerSavingOnBattery\"\n        parentName: \"power/general\"\n        displayName: qsTr(\"Auto power saving on battery\")\n        weight: 400\n        backgroundType: DccObject.Normal\n        visible: dccData.model.haveBettary && dccData.platformName() !== \"wayland\"\n        pageType: DccObject.Editor\n        page: D.Switch {\n            checked: dccData.model.autoPowerSaveMode\n            onCheckedChanged: {\n                dccData.worker.setPowerSavingModeAuto(checked)\n            }\n        }\n    }\n\n    DccObject {\n        name: \"decreaseBrightness\"\n        parentName: \"power/general\"\n        displayName: qsTr(\"Decrease screen brightness on power saver\")\n        weight: 450\n        visible: dccData.platformName() !== \"wayland\"\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: ColumnLayout {\n            Layout.fillHeight: true\n            Label {\n                Layout.topMargin: 10\n                Layout.leftMargin: 14\n                font: D.DTK.fontManager.t6\n                text: dccObj.displayName\n            }\n\n            D.TipsSlider {\n                id: scrollSlider\n                readonly property var tips: [(\"10%\"), (\"20%\"), (\"30%\"), (\"40%\")]\n                Layout.preferredHeight: 80\n                Layout.alignment: Qt.AlignCenter\n                Layout.margins: 10\n                Layout.fillWidth: true\n                slider.handleType: Slider.HandleType.ArrowBottom\n                slider.from: 10\n                slider.to: ticks.length * 10\n                slider.live: true\n                slider.stepSize: 10\n                slider.snapMode: Slider.SnapAlways\n                slider.value: dccData.model.powerSavingModeLowerBrightnessThreshold\n                ticks: [\n                    D.SliderTipItem { text: scrollSlider.tips[0]; highlight: scrollSlider.slider.value === 10 },\n                    D.SliderTipItem { text: scrollSlider.tips[1]; highlight: scrollSlider.slider.value === 20 },\n                    D.SliderTipItem { text: scrollSlider.tips[2]; highlight: scrollSlider.slider.value === 30 },\n                    D.SliderTipItem { text: scrollSlider.tips[3]; highlight: scrollSlider.slider.value === 40 }\n                ]\n\n                slider.onValueChanged: {\n                    dccData.worker.setPowerSavingModeLowerBrightnessThreshold(slider.value)\n                }\n            }\n        }\n    }\n\n    DccTitleObject {\n        name: \"wakeupSettingsTitle\"\n        parentName: \"power/general\"\n        displayName: qsTr(\"Wakeup Settings\")\n        weight: 500\n    }\n\n    DccObject {\n        name: \"wakeupSettingsGroup\"\n        parentName: \"power/general\"\n        weight: 600\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"passwordIsRequiredToWakeUpTheComputer\"\n            parentName: \"power/general/wakeupSettingsGroup\"\n            displayName: qsTr(\"Password is required to wake up the computer\")\n            weight: 1\n            visible: dccData.model.canSuspend && dccData.model.isSuspend && !dccData.model.isVirtualEnvironment\n            pageType: DccObject.Editor\n            page: D.Switch {\n                checked: dccData.model.sleepLock\n                onCheckedChanged: {\n                    dccData.worker.setSleepLock(checked)\n                }\n            }\n        }\n\n        DccObject {\n            name: \"passwordIsRequiredToWakeUpTheMonitor\"\n            parentName: \"power/general/wakeupSettingsGroup\"\n            displayName: qsTr(\"Password is required to wake up the monitor\")\n            weight: 2\n            pageType: DccObject.Editor\n            page: D.Switch {\n                checked: dccData.model.screenBlackLock\n                onCheckedChanged: {\n                    dccData.worker.setScreenBlackLock(checked)\n                }\n            }\n        }\n    }\n\n    DccTitleObject {\n        name: \"shutdownSettingTitle\"\n        parentName: \"power/general\"\n        displayName: qsTr(\"Shutdown Settings\")\n        weight: 700\n        visible: dccData.model.enableScheduledShutdown !== \"Hidden\"\n        enabled: dccData.model.enableScheduledShutdown !== \"Disabled\"\n    }\n\n    DccObject {\n        name: \"shutdownGroup\"\n        parentName: \"power/general\"\n        weight: 800\n        pageType: DccObject.Item\n        visible: dccData.model.enableScheduledShutdown !== \"Hidden\"\n        enabled: dccData.model.enableScheduledShutdown !== \"Disabled\"\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"timedPoweroff\"\n            parentName: \"power/general/shutdownGroup\"\n            displayName: qsTr(\"Scheduled Shutdown\")\n            weight: 1\n            pageType: DccObject.Editor\n            page: D.Switch {\n                checked: dccData.model.scheduledShutdownState\n                onCheckedChanged: {\n                    if (dccData.model.scheduledShutdownState !== checked) {\n                        dccData.worker.setScheduledShutdownState(checked)\n                        Qt.callLater(function () {\n                            if (repeatDaysEditObject.visible) {\n                                DccApp.showPage(repeatDaysEditObject)\n                            } else {\n                                DccApp.showPage(\"repeatDays\")\n                            }\n                        })\n                    }\n                }\n            }\n        }\n\n        DccObject {\n            name: \"poweroffTime\"\n            parentName: \"power/general/shutdownGroup\"\n            visible: dccData.model.scheduledShutdownState\n            displayName: qsTr(\"Time\")\n            weight: 2\n            pageType: DccObject.Editor\n            page: RowLayout {\n                DccTimeRange {\n                    id: timeRange\n                    Layout.preferredWidth: 100\n                    hour: dccData.model.shutdownTime.split(':')[0]\n                    minute: dccData.model.shutdownTime.split(':')[1]\n\n                    onTimeChanged: {\n                        dccData.worker.setShutdownTime(timeRange.timeString)\n                    }\n                }\n            }\n        }\n\n        DccObject {\n            name: \"repeatDays\"\n            parentName: \"power/general/shutdownGroup\"\n            visible: dccData.model.scheduledShutdownState\n            displayName: qsTr(\"Repeat\")\n            weight: 3\n            pageType: DccObject.Editor\n            page: D.ComboBox {\n                id: shutdownRepetitionCombobox\n                model: [ qsTr(\"Once\"), qsTr(\"Every day\"), qsTr(\"Working days\"), qsTr(\"Custom Time\") ]\n                flat: true\n                currentIndex: dccData.model.shutdownRepetition\n                onCurrentIndexChanged: {\n                    if (currentIndex === model.length - 1 && dccData.model.customShutdownWeekDays.length === 0) {\n                        selectDayDialogforCombobox.show()\n                    } else {\n                        if (currentIndex === dccData.model.shutdownRepetition) {\n                            return\n                        }\n                        dccData.worker.setShutdownRepetition(currentIndex)\n                        if (currentIndex === 3) {\n                            Qt.callLater(function () {\n                                DccApp.showPage(repeatDaysEditObject)\n                            })\n                        }\n                    }\n                }\n                ScheduledShutdownDialog {\n                    id: selectDayDialogforCombobox\n\n                    onCancel: {\n                        // 通过Q_INVOKABLE方法触发信号更新，直接赋值currentIndex会导致属性绑定失效\n                        dccData.model.refreshShutdownRepetition()\n                    }\n\n                    onAccept: {\n                        if (dccData.model.shutdownRepetition === 3) {\n                            return\n                        }\n                        dccData.worker.setShutdownRepetition(3)\n                        Qt.callLater(function () {\n                            DccApp.showPage(repeatDaysEditObject)\n                        })\n                    }\n                }\n            }\n        }\n        DccObject {\n            id: repeatDaysEditObject\n            property bool forceShow: false\n            name: \"repeatDaysEdit\"\n            parentName: \"power/general/shutdownGroup\"\n            visible: (dccData.model.scheduledShutdownState && dccData.model.shutdownRepetition === 3)\n            weight: 4\n            pageType: DccObject.Item\n            page: RowLayout {\n                DccLabel {\n                    Layout.fillWidth: true\n                    Layout.preferredHeight: 40\n                    Layout.leftMargin: 14\n                    horizontalAlignment: Text.AlignRight\n                    verticalAlignment: Text.AlignVCenter\n                    text: {\n                        var str = \"\"\n                        var days = dccData.model.customShutdownWeekDays\n                        for (var i = 0; i < days.length; i++) {\n                            str += selectDayDialog.dateStr[days[i] - 1] + \", \"\n                        }\n                        if (str.length > 1) {\n                            str = str.slice(0, -2)\n                        }\n                        return str;\n                    }\n                }\n                D.ToolButton {\n                    Layout.rightMargin: 8\n                    icon.name: \"action_edit\"\n                    icon.width: 12\n                    icon.height: 12\n                    implicitWidth: 24\n                    implicitHeight: 24\n                    background: Rectangle {\n                        color: \"transparent\"\n                        border.color: \"transparent\"\n                        border.width: 0\n                    }\n\n                    onClicked: {\n                        selectDayDialog.show()\n                    }\n\n                    ScheduledShutdownDialog {\n                        id: selectDayDialog\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-power/qml/Power.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: power\n    name: \"power\"\n    parentName: \"root\"\n    displayName: qsTr(\"Power\")\n    description: qsTr(\"Power saving settings, screen and suspend\")\n    icon: \"power\"\n    weight: 50\n\n    visible: false\n    DccDBusInterface {\n        property var onBattery\n        service: \"org.deepin.dde.Power1\"\n        path: \"/org/deepin/dde/Power1\"\n        inter: \"org.deepin.dde.Power1\"\n        connection: DccDBusInterface.SessionBus\n        onOnBatteryChanged: power.visible = true\n    }\n}\n"
  },
  {
    "path": "src/plugin-power/qml/PowerMain.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    DccObject {\n        name: \"general\"\n        parentName: \"power\"\n        displayName: qsTr(\"General\")\n        description: qsTr(\"Power plans, power saving settings, wakeup settings, shutdown settings\")\n        icon: \"general\"\n        weight: 10\n        page: DccRightView {\n            spacing: 0\n        }\n        GeneralPage {}\n    }\n    DccObject {\n        name: \"onPower\"\n        parentName: \"power\"\n        displayName: qsTr(\"Plugged In\")\n        description: qsTr(\"Screen and suspend\")\n        icon: \"plugged_in\"\n        weight: 100\n        visible: dccData.platformName() !== \"wayland\"\n        page: DccRightView {\n            spacing: 0\n        }\n        PowerPage {}\n    }\n    DccObject {\n        name: \"onBattery\"\n        parentName: \"power\"\n        displayName: qsTr(\"On Battery\")\n        description: qsTr(\"screen and suspend, low battery, battery management\")\n        icon: \"on_battery\"\n        weight: 200\n        visible: dccData.model.haveBettary\n        page: DccRightView {\n            spacing: 0\n        }\n        BatteryPage {}\n    }\n}\n"
  },
  {
    "path": "src/plugin-power/qml/PowerPage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    DccTitleObject {\n        name: \"screenAndSuspendTitle\"\n        parentName: \"power/onPower\"\n        displayName: qsTr(\"Screen and Suspend\")\n        visible: dccData.platformName() !== \"wayland\"\n        weight: 10\n    }\n\n    DccObject {\n        name: \"turnOffTheMonitorAfterGroup\"\n        parentName: \"power/onPower\"\n        weight: 100\n        pageType: DccObject.Item\n        visible: dccData.platformName() !== \"wayland\"\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"turnOffTheMonitorAfter\"\n            parentName: \"power/onPower/turnOffTheMonitorAfterGroup\"\n            displayName: qsTr(\"Turn off the monitor after\")\n            weight: 1\n            pageType: DccObject.Item\n            page: ColumnLayout {\n                Layout.fillHeight: true\n\n                RowLayout {\n                    Layout.leftMargin: 14\n                    Layout.rightMargin: 10\n                    Layout.topMargin: 10\n                    Label {\n                        font: D.DTK.fontManager.t6\n                        text: dccObj.displayName\n                    }\n                    Item {\n                        Layout.fillWidth: true\n                    }\n                    Label {\n                        text: offMonitorSlider.dataMap[offMonitorSlider.slider.value].trText\n                        horizontalAlignment: Text.AlignRight\n                    }\n                }\n                \n\n                CustomTipsSlider {\n                    id: offMonitorSlider\n                    dataMap: dccData.model.linePowerScreenBlackDelayModel\n                    Layout.preferredHeight: 80\n                    Layout.alignment: Qt.AlignCenter\n                    Layout.margins: 10\n                    Layout.fillWidth: true\n                    slider.value: dccData.indexByValueOnMap(dataMap, dccData.model.screenBlackDelayOnPower)\n                    slider.onValueChanged: {\n                        dccData.worker.setScreenBlackDelayOnPower(dataMap[slider.value].value)\n                    }\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"lockScreenAfterGroup\"\n        parentName: \"power/onPower\"\n        weight: 200\n        pageType: DccObject.Item\n        visible: dccData.platformName() !== \"wayland\"\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"lockScreenAfter\"\n            parentName: \"power/onPower/lockScreenAfterGroup\"\n            displayName: qsTr(\"Lock screen after\")\n            weight: 1\n            pageType: DccObject.Item\n            page: ColumnLayout {\n                Layout.fillHeight: true\n                \n                RowLayout {\n                    Layout.leftMargin: 14\n                    Layout.rightMargin: 10\n                    Layout.topMargin: 10\n                    Label {\n                        font: D.DTK.fontManager.t6\n                        text: dccObj.displayName\n                    }\n                    Item {\n                        Layout.fillWidth: true\n                    }\n                    Label {\n                        text: lockScreenSlider.dataMap[lockScreenSlider.slider.value].trText\n                        horizontalAlignment: Text.AlignRight\n                    }\n                }\n    \n                CustomTipsSlider {\n                    id: lockScreenSlider\n                    dataMap: dccData.model.linePowerLockDelayModel\n                    Layout.preferredHeight: 80\n                    Layout.alignment: Qt.AlignCenter\n                    Layout.margins: 10\n                    Layout.fillWidth: true\n                    slider.value: dccData.indexByValueOnMap(dataMap, dccData.model.powerLockScreenDelay)\n                    slider.onValueChanged: {\n                        dccData.worker.setLockScreenDelayOnPower(dataMap[slider.value].value)\n                    }\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"computerSuspendsAfterGroup\"\n        parentName: \"power/onPower\"\n        weight: 300\n        pageType: DccObject.Item\n        visible: dccData.platformName() !== \"wayland\" && !dccData.model.isVirtualEnvironment && dccData.model.canSuspend\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"computerSuspendsAfter\"\n            parentName: \"power/onPower/computerSuspendsAfterGroup\"\n            displayName: qsTr(\"Computer suspends after\")\n            weight: 1\n            pageType: DccObject.Item\n            page: ColumnLayout {\n                Layout.fillHeight: true\n                \n                RowLayout {\n                    Layout.leftMargin: 14\n                    Layout.rightMargin: 10\n                    Layout.topMargin: 10\n                    Label {\n                        font: D.DTK.fontManager.t6\n                        text: dccObj.displayName\n                    }\n                    Item {\n                        Layout.fillWidth: true\n                    }\n                    Label {\n                        text: suspendsSlider.dataMap[suspendsSlider.slider.value].trText\n                        horizontalAlignment: Text.AlignRight\n                    }\n                }\n\n                CustomTipsSlider {\n                    id: suspendsSlider\n                    dataMap: dccData.model.linePowerSleepDelayModel\n                    Layout.preferredHeight: 80\n                    Layout.alignment: Qt.AlignCenter\n                    Layout.margins: 10\n                    Layout.fillWidth: true\n                    slider.value: dccData.indexByValueOnMap(dataMap, dccData.model.sleepDelayOnPower)\n                    slider.onValueChanged: {\n                        dccData.worker.setSleepDelayOnPower(dataMap[slider.value].value)\n                    }\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"powerButtonGroup\"\n        parentName: \"power/onPower\"\n        weight: 400\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"whenTheLidIsClosed\"\n            parentName: \"power/onPower/powerButtonGroup\"\n            displayName: qsTr(\"When the lid is closed\")\n            visible: dccData.model.lidPresent\n            weight: 1\n            pageType: DccObject.Editor\n            page: CustomComboBox {\n                textRole: \"text\"\n                enableRole: \"enable\"\n                visibleRole: \"visible\"\n                model: dccData.powerLidModel\n                currentIndex: model.indexOfKey(dccData.model.linePowerLidClosedAction)\n\n                onCurrentIndexChanged: {\n                    dccData.worker.setLinePowerLidClosedAction(model.keyOfIndex(currentIndex))\n                }\n            }\n        }\n        DccObject {\n            name: \"whenThePowerButtonIsPressed\"\n            parentName: \"power/onPower/powerButtonGroup\"\n            displayName: qsTr(\"When the power button is pressed\")\n            weight: 2\n            pageType: DccObject.Editor\n            visible: dccData.platformName() !== \"wayland\"\n            page: CustomComboBox {\n                textRole: \"text\"\n                enableRole: \"enable\"\n                visibleRole: \"visible\"\n                model: dccData.powerPressModel\n                currentIndex: model.indexOfKey(dccData.model.linePowerPressPowerBtnAction)\n\n                onCurrentIndexChanged: {\n                    dccData.worker.setLinePowerPressPowerBtnAction(model.keyOfIndex(currentIndex))\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-power/qml/PowerPlansListview.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc 1.0\n\nDccRepeater {\n    id: repeater\n    delegate: DccObject {\n        visible: {\n            if (modelData.mode === \"performance\") {\n                return dccData.model.isHighPerformanceSupported\n            } else if (modelData.mode === \"balance_performance\") {\n                return dccData.model.isBalancePerformanceSupported\n            }\n            return true\n        }\n        name: \"powerPlans\" + index\n        parentName: \"powerPlans\"\n        pageType: DccObject.Editor\n        weight: 10 + index\n        icon: modelData.icon\n        displayName: modelData.title\n        description: modelData.description\n        // pageType: DccObject.Item\n        backgroundType: DccObject.ClickStyle\n        page: DccCheckIcon {\n            visible: modelData.mode === dccData.model.powerPlan\n        }\n        onActive: function (cmd) {\n            if (cmd === \"\") {\n                dccData.worker.setPowerPlan(modelData.mode)\n            }\n        }\n    }\n    model: [{\n            \"mode\": \"performance\",\n            \"title\": qsTr(\"High Performance\"),\n            \"icon\": \"high_performance\",\n            \"description\": qsTr(\"Prioritize performance, which will significantly increase power consumption and heat generation\")\n        }, {\n            \"mode\": \"balance_performance\",\n            \"title\": qsTr(\"Balance Performance\"),\n            \"icon\": \"balance_performance\",\n            \"description\": qsTr(\"Aggressively adjust CPU operating frequency based on CPU load condition\")\n        }, {\n            \"mode\": \"balance\",\n            \"title\": qsTr(\"Balanced\"),\n            \"icon\": \"balanced\",\n            \"description\": qsTr(\"Balancing performance and battery life, automatically adjusted according to usage\")\n        }, {\n            \"mode\": \"powersave\",\n            \"title\": qsTr(\"Power Saver\"),\n            \"icon\": \"power_performance\",\n            \"description\": qsTr(\"Prioritize battery life, which the system will sacrifice some performance to reduce power consumption\")\n        }]\n}\n"
  },
  {
    "path": "src/plugin-power/qml/ScheduledShutdownDialog.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc 1.0\n\nD.DialogWindow {\n    id: selectDayDialog\n    modality: Qt.ApplicationModal\n    width: 330\n    height: 420\n\n    signal cancel()\n    signal accept()\n\n    // Copy is used here to prevent contamination of data in the original model when selecting items\n    property var selectedDays: []\n    property var dateStr: {\n        var locale = Qt.locale(Qt.locale().name);\n        var days = [];\n        for (var i = 1; i <= 7; i++) {\n            var dayEnum = Qt.Monday + (i - 1) % 7;\n            days.push(locale.standaloneDayName(dayEnum, \"long\"));\n        }\n        return days;\n    }\n\n    // 当对话框显示时，重新同步最新的自定义重复时间数据\n    function syncSelectedDays() {\n        selectedDays = dccData.model.customShutdownWeekDays.length === 0 ? [1, 2, 3, 4, 5] : dccData.model.customShutdownWeekDays.slice()\n    }\n\n    // 当对话框可见性改变时，同步数据\n    onVisibleChanged: {\n        if (visible) {\n            syncSelectedDays()\n        }\n    }\n\n    property var dayModel: generateDayModel()\n\n    function generateDayModel() {\n        var array = []\n        let weekBegin = dccData.model.weekBegins\n        if (weekBegin < 1 || weekBegin > 7) {\n            // default is monday\n            weekBegin = 1\n        }\n        for (var i = dccData.model.weekBegins; i <= 7; i++) {\n            array.push(i)\n        }\n        for (i = 1; i < dccData.model.weekBegins; i++) {\n            array.push(i)\n        }\n        return array\n    }\n\n    // only accept close event , the app can quit normally\n    onClosing: function(close) {\n        close.accepted = true\n        // 当用户点击关闭按钮或按ESC键关闭对话框时，触发取消事件\n        syncSelectedDays() // 重新同步数据\n        selectDayDialog.cancel()\n    }\n\n    ColumnLayout {\n        implicitWidth: parent.width\n        clip: true\n        D.Label {\n            Layout.alignment: Qt.AlignHCenter\n            font: D.DTK.fontManager.t6\n            text: qsTr(\"Customize repetition time\")\n        }\n        ListView {\n            Layout.fillWidth: true\n            height: contentHeight\n            clip: true\n            model: selectDayDialog.dayModel\n            spacing: 2\n            delegate: D.ItemDelegate {\n                width: ListView.view.width\n                leftPadding: 10\n                rightPadding: 10\n                implicitHeight: 40\n                checkable: false\n                corners: getCornersForBackground(index, 7)\n                cascadeSelected: true\n                text: selectDayDialog.dateStr[modelData - 1]\n                onClicked: handleSelected(modelData)\n                content: DccCheckIcon {\n                    checked: selectDayDialog.selectedDays.indexOf(modelData) !== -1\n                    onClicked: handleSelected(modelData)\n                }\n                background: DccItemBackground {\n                    separatorVisible: true\n                }\n\n                function handleSelected(index) {\n                    if (selectDayDialog.selectedDays.indexOf(index) === -1) {\n                        selectDayDialog.selectedDays.push(index);\n                    } else {\n                        selectDayDialog.selectedDays.splice(selectDayDialog.selectedDays.indexOf(index), 1);\n                    }\n                    selectDayDialog.selectedDays = selectDayDialog.selectedDays.slice();\n                }\n            }\n        }\n\n        RowLayout {\n            Layout.fillHeight: true\n            Layout.fillWidth: true\n            Layout.alignment: Qt.AlignHCenter\n            spacing: 10\n            D.Button {\n                text: qsTr(\"Cancel\")\n                onClicked: {\n                    selectDayDialog.close()\n                    syncSelectedDays() // 重新同步数据\n                    selectDayDialog.cancel()\n                }\n            }\n            D.Button {\n                text: qsTr(\"Save\")\n                enabled: selectDayDialog.selectedDays.length > 0\n                onClicked: {\n                    var days = selectDayDialog.selectedDays.sort()\n                    console.log(\"Selected days: \" + days);\n                    dccData.worker.setCustomShutdownWeekDays(days)\n                    selectDayDialog.close()\n                    selectDayDialog.accept()\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-power/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-privacy/CMakeLists.txt",
    "content": "set(LIB_NAME privacy)\n\nfind_package(DDEShell REQUIRED)\nfind_package(PolkitQt6-1 REQUIRED)\n\nfile(GLOB_RECURSE Privacy_SRCS\n    \"operation/*.cpp\"\n    \"operation/*.hpp\"\n    \"operation/*.h\"\n    \"operation/qrc/privacy.qrc\"\n)\n\nset(Privacy_Includes\n    src/plugin-privacy/operation\n)\n\nadd_library(${LIB_NAME} MODULE\n    ${Privacy_SRCS}\n    ${DBUS_INTERFACES}\n)\n\nset(Privacy_Libraries\n    ${DCC_FRAME_Library}\n    ${DTK_NS}::Gui\n    ${QT_NS}::DBus\n    ${QT_NS}::Qml\n    ${QT_NS}::Concurrent\n    Dde::Shell\n    PolkitQt6-1::Agent\n)\n\ntarget_include_directories(${LIB_NAME} PUBLIC\n    ${Privacy_Includes}\n)\n\ntarget_link_libraries(${LIB_NAME} PRIVATE\n    ${Privacy_Libraries}\n)\n\ndcc_install_plugin(NAME ${LIB_NAME} TARGET ${LIB_NAME})\n"
  },
  {
    "path": "src/plugin-privacy/operation/applicationitem.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"applicationitem.h\"\n#include <DPinyin>\n\nDCORE_USE_NAMESPACE\n\nApplicationItem::ApplicationItem(QObject *parent)\n    : QObject(parent)\n    , m_uniqueID(0)\n{\n    connect(this, &ApplicationItem::objectNameChanged, this, &ApplicationItem::dataChanged);\n}\n\nApplicationItem::~ApplicationItem() { }\n\nvoid ApplicationItem::setUniqueID(unsigned ID)\n{\n    m_uniqueID = ID;\n}\n\nQString ApplicationItem::id() const\n{\n    return m_id;\n}\n\nQMap<QString, QString> ApplicationItem::execs() const\n{\n    return m_execs;\n}\n\nQString ApplicationItem::name() const\n{\n    return m_name;\n}\n\nQString ApplicationItem::appPath() const\n{\n    return m_appPath;\n}\n\nQString ApplicationItem::package() const\n{\n    return m_package;\n}\n\nQStringList ApplicationItem::executablePaths() const\n{\n    return m_executablePaths;\n}\n\nQString ApplicationItem::icon() const\n{\n    return m_iconStr;\n}\n\nQString ApplicationItem::sortField() const\n{\n    return m_sortField;\n}\n\nQString ApplicationItem::desktopPath() const \n{\n    return m_desktopPath;\n}\n\n// 默认允许\nbool ApplicationItem::isPremissionEnabled(int premission) const\n{\n    return m_premissionMap.value(premission, true);\n}\n\nvoid ApplicationItem::setPremissionEnabled(int premission, bool enabled)\n{\n    // worker 实现\n    Q_EMIT requestSetPremissionEnabled(premission, enabled, this);\n}\n\nvoid ApplicationItem::emitDataChanged()\n{\n    Q_EMIT dataChanged();\n}\n\nvoid ApplicationItem::onIdChanged(const QString &id)\n{\n    if (m_id == id)\n        return;\n    m_id = id;\n    emitDataChanged();\n}\n\nvoid ApplicationItem::onExecsChanged(const QMap<QString, QString> &execs)\n{\n    if (m_execs == execs)\n        return;\n    m_execs = execs;\n    emitDataChanged();\n}\n\nvoid ApplicationItem::onNameChanged(const QString &name)\n{\n    if (m_name == name)\n        return;\n    m_name = name;\n    // 不区分大小写，中文按拼音排序排后面\n    QString upperName = m_name.toUpper();\n\n    int category = 2;\n    for (const QChar &ch : upperName) {\n        if (ch.isSpace())\n            continue;\n        if (ch.isDigit()) {\n            category = 0;\n        } else if (ch.isLetter() && ch.unicode() < 128) {\n            category = 1;\n        } else {\n            category = 2;\n        }\n        break;\n    }\n\n    QString pinyin = DTK_CORE_NAMESPACE::Chinese2Pinyin(upperName);\n    m_sortField = QString::number(category) + pinyin;\n    emitDataChanged();\n}\n\nvoid ApplicationItem::onAppPathChanged(const QString &path)\n{\n    if (m_appPath == path)\n        return;\n    m_appPath = path;\n    Q_EMIT appPathChanged();\n}\n\nvoid ApplicationItem::onPackageChanged(const QString &package)\n{\n    if (m_package == package)\n        return;\n    m_package = package;\n    Q_EMIT packageChanged();\n}\n\nvoid ApplicationItem::onExecutablePathsChanged(const QStringList &paths)\n{\n    if (m_executablePaths == paths)\n        return;\n    m_executablePaths = paths;\n}\n\nvoid ApplicationItem::onIconChanged(const QString &icon)\n{\n    m_iconStr = icon;\n    emitDataChanged();\n}\n\nbool ApplicationItem::onPremissionEnabledChanged(int premission, bool enabled)\n{\n    if (m_premissionMap[premission] != enabled) {\n        m_premissionMap[premission] = enabled;\n        return true;\n    }\n    return false;\n}\n\nvoid ApplicationItem::onDesktopPathChanged(const QString &desktopPath)\n{\n    if (m_desktopPath == desktopPath)\n        return;\n    m_desktopPath = desktopPath;\n}\n"
  },
  {
    "path": "src/plugin-privacy/operation/applicationitem.h",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef APPLICATIONITEM_H\n#define APPLICATIONITEM_H\n\n#include <DLog>\n#include <QIcon>\n#include <QMap>\n#include <QObject>\n\nQ_DECLARE_LOGGING_CATEGORY(DCC_PRIVACY)\n\nclass ApplicationItem;\nusing ApplicationItemList = QList<ApplicationItem>;\nusing ApplicationItemListPtr = QList<ApplicationItem*>;\n\nclass ApplicationItem : public QObject\n{\n    Q_OBJECT\npublic:\n\n    enum PermissionType {\n        CameraPermission = 0x100,   // 摄像头\n        FoldersPermission = 0x200,  // 文件和文件夹\n\n        DocumentFoldersPermission,\n        PictureFoldersPermission,\n        DesktopFoldersPermission,\n        VideoFoldersPermission,\n        MusicFoldersPermission,\n        DownloadFoldersPermission,\n\n        GroupPermissionMask = 0xff00, // 组权限掩码\n    };\n\n    Q_ENUM(PermissionType)\n    explicit ApplicationItem(QObject *parent = nullptr);\n    ~ApplicationItem();\n\n    inline unsigned getUniqueID() const { return m_uniqueID; }\n\n    QString id() const;\n    QMap<QString, QString> execs() const;\n    QString name() const;\n    QString appPath() const;\n    QString package() const;\n    QString icon() const;\n    QString sortField() const;\n    QString desktopPath() const;\n\n    bool isPremissionEnabled(int premission) const;\n    void setPremissionEnabled(int premission, bool enabled);\n\nQ_SIGNALS:\n    void dataChanged();\n    void appPathChanged();\n    void packageChanged();\n    void requestSetPremissionEnabled(int premission, bool enabled, ApplicationItem *item);\n\nprotected Q_SLOTS:\n    void emitDataChanged();\n\n    void setUniqueID(unsigned ID);\n    void onIdChanged(const QString &id);\n    void onExecsChanged(const QMap<QString, QString> &execs);\n    void onNameChanged(const QString &name);\n    void onAppPathChanged(const QString &path);\n    void onPackageChanged(const QString &package);\n    void onExecutablePathsChanged(const QStringList &paths);\n    void onIconChanged(const QString &icon);\n    bool onPremissionEnabledChanged(int premission, bool enabled);\n    void onDesktopPathChanged(const QString &desktopPath);\n\n    QStringList executablePaths() const;\n\nprivate:\n    unsigned m_uniqueID;\n    QString m_id;                    // 应用id\n    QMap<QString, QString> m_execs;  // 应用Desktop的所有Exec\n    QString m_name;                  // 显示名\n    QString m_appPath;               // app路径\n    QString m_package;               // 包名\n    QStringList m_executablePaths;   // 可执行程序路径\n    QString m_iconStr;               // 图标名\n    QMap<int, bool> m_premissionMap; // 应用权限\n    QString m_sortField;             // 用于排序\n    QString m_desktopPath;\n\n    friend class PrivacySecurityWorker;\n    friend class PrivacySecurityModel;\n};\n\n#endif // APPLICATIONITEM_H\n"
  },
  {
    "path": "src/plugin-privacy/operation/dde-apps.h",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QObject>\n#include \"dsglobal.h\"\n\n// from dde-shell->dde-apps\n\nDS_BEGIN_NAMESPACE\nclass AppGroupManager {\npublic:\n    enum Roles {\n        GroupIdRole = Qt::UserRole + 1,\n        GroupItemsPerPageRole,\n        ExtendRole = 0x1000,\n    };\n};\n\nclass AppItemModel {\npublic:\n    enum Roles {\n        DesktopIdRole = AppGroupManager::ExtendRole,\n        NameRole,\n        IconNameRole,\n        StartUpWMClassRole,\n        NoDisplayRole,\n        ActionsRole,\n        DDECategoryRole,\n        InstalledTimeRole,\n        LastLaunchedTimeRole,\n        LaunchedTimesRole,\n        DockedRole,\n        OnDesktopRole,\n        AutoStartRole,\n        AppTypeRole,\n        XLingLongRole,\n        IdRole,\n        XCreatedByRole,\n        ExecsRole,\n        CategoriesRole,\n        DesktopSourcePathRole,\n    };\n};\nDS_END_NAMESPACE\n"
  },
  {
    "path": "src/plugin-privacy/operation/privacysecuritydataproxy.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"privacysecuritydataproxy.h\"\n\n#include <QDBusConnection>\n#include <QDBusMessage>\n#include <QDBusMetaType>\n#include <QDBusPendingCall>\n#include <QDBusPendingReply>\n#include <QDebug>\n#include <QFileInfo>\n#include <QJsonArray>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QLibrary>\n#include <QStandardPaths>\n#include <QProcess>\n\n#define DBUS_TIMEOUT 10000\n\nconst QString UsecService = \"org.deepin.usec1\";\nconst QString UsecPath = \"/org/deepin/usec1/AccessControl\";\nconst QString UsecInterface = \"org.deepin.usec1.AccessControl\";\n\nPrivacySecurityDataProxy::PrivacySecurityDataProxy(QObject *parent)\n    : QObject(parent)\n    , m_serviceExists(false)\n{\n    QDBusMessage message = QDBusMessage::createMethodCall(\"org.freedesktop.DBus\", \"/org/freedesktop/DBus\", \"org.freedesktop.DBus\", \"GetNameOwner\");\n    message << UsecService;\n    QDBusConnection::systemBus().callWithCallback(message, this, SLOT(onGetNameOwner(QString)));\n    QDBusConnection::systemBus().connect(\"org.freedesktop.DBus\", \"/org/freedesktop/DBus\", \"org.freedesktop.DBus\", \"NameOwnerChanged\", this, SLOT(onDBusNameOwnerChanged(QString, QString, QString)));\n}\n\nPrivacySecurityDataProxy::~PrivacySecurityDataProxy()\n{\n}\n\nvoid PrivacySecurityDataProxy::getMode(const QString &object)\n{\n    QDBusMessage message = QDBusMessage::createMethodCall(UsecService, UsecPath, UsecInterface, \"GetMode\");\n    message << object;\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(QDBusConnection::systemBus().asyncCall(message, DBUS_TIMEOUT), this);\n    watcher->setProperty(\"DBusObject\", object);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, &PrivacySecurityDataProxy::onGetModeFinished);\n}\n\nvoid PrivacySecurityDataProxy::onGetModeFinished(QDBusPendingCallWatcher *w)\n{\n    QString object = w->property(\"DBusObject\").toString();\n    QDBusPendingReply<QString> reply = w->reply();\n    if (!reply.isError()) {\n        Q_EMIT ModeChanged(reply.value(), \"modify\");\n    } else {\n        qCWarning(DCC_PRIVACY) << \"Get \" << object << \" mode failed, DBus reply error: \" << reply.error();\n    }\n    w->deleteLater();\n}\n\nvoid PrivacySecurityDataProxy::setMode(const QString &config)\n{\n    QDBusMessage message = QDBusMessage::createMethodCall(UsecService, UsecPath, UsecInterface, \"SetMode\");\n    message << config;\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(QDBusConnection::systemBus().asyncCall(message, DBUS_TIMEOUT), this);\n    watcher->setProperty(\"DBusConfig\", config);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, &PrivacySecurityDataProxy::onSetModeFinished);\n}\n\nvoid PrivacySecurityDataProxy::onSetModeFinished(QDBusPendingCallWatcher *w)\n{\n    QString config = w->property(\"DBusConfig\").toString();\n    QDBusPendingReply<> reply = w->reply();\n    if (!reply.isError()) {\n        Q_EMIT ModeChanged(config, \"modify\");\n    } else {\n        qCWarning(DCC_PRIVACY) << \"Set \" << config << \" mode failed, DBus reply error: \" << reply.error();\n    }\n    w->deleteLater();\n}\n\nvoid PrivacySecurityDataProxy::listEntity()\n{\n    QDBusMessage message = QDBusMessage::createMethodCall(UsecService, UsecPath, UsecInterface, \"ListEntity\");\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(QDBusConnection::systemBus().asyncCall(message, DBUS_TIMEOUT), this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, &PrivacySecurityDataProxy::onListEntityFinished);\n}\n\nvoid PrivacySecurityDataProxy::onListEntityFinished(QDBusPendingCallWatcher *w)\n{\n    QDBusPendingReply<QStringList> reply = w->reply();\n    if (!reply.isError()) {\n        for (auto &&entity : reply.value()) {\n            Q_EMIT EntityChanged(entity, \"modify\");\n        }\n    } else {\n        qCWarning(DCC_PRIVACY) << \"Get entity list failed, DBus reply error: \" << reply.error();\n    }\n    w->deleteLater();\n}\n\nvoid PrivacySecurityDataProxy::getEntity(const QString &entity)\n{\n    QDBusMessage message = QDBusMessage::createMethodCall(UsecService, UsecPath, UsecInterface, \"GetEntity\");\n    message << entity;\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(QDBusConnection::systemBus().asyncCall(message, DBUS_TIMEOUT), this);\n    watcher->setProperty(\"DBusEntity\", entity);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, &PrivacySecurityDataProxy::onGetEntityFinished);\n}\n\nvoid PrivacySecurityDataProxy::onGetEntityFinished(QDBusPendingCallWatcher *w)\n{\n    QString entity = w->property(\"DBusEntity\").toString();\n    QDBusPendingReply<QString> reply = w->reply();\n    if (!reply.isError()) {\n        Q_EMIT EntityChanged(reply.value(), \"modify\");\n    } else {\n        qCWarning(DCC_PRIVACY) << \"Get\" << entity << \"entity failed, DBus reply error: \" << reply.error();\n    }\n    w->deleteLater();\n}\n\nvoid PrivacySecurityDataProxy::setEntity(const QString &entity)\n{\n    QDBusMessage message = QDBusMessage::createMethodCall(UsecService, UsecPath, UsecInterface, \"SetEntity\");\n    message << entity;\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(QDBusConnection::systemBus().asyncCall(message, DBUS_TIMEOUT), this);\n    watcher->setProperty(\"DBusEntity\", entity);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, &PrivacySecurityDataProxy::onSetEntityFinished);\n}\n\nvoid PrivacySecurityDataProxy::onSetEntityFinished(QDBusPendingCallWatcher *w)\n{\n    QString entity = w->property(\"DBusEntity\").toString();\n    QDBusPendingReply<> reply = w->reply();\n    if (!reply.isError()) {\n        Q_EMIT EntityChanged(entity, \"modify\");\n    } else {\n        qCWarning(DCC_PRIVACY) << \"Set\" << entity << \"entity failed, DBus reply error: \" << reply.error();\n    }\n    w->deleteLater();\n}\n\nvoid PrivacySecurityDataProxy::getPolicy(const QString &entity)\n{\n    QDBusMessage message = QDBusMessage::createMethodCall(UsecService, UsecPath, UsecInterface, \"GetPolicy\");\n    message << entity;\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(QDBusConnection::systemBus().asyncCall(message, DBUS_TIMEOUT), this);\n    watcher->setProperty(\"DBusEntity\", entity);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, &PrivacySecurityDataProxy::onGetPolicyFinished);\n}\n\nvoid PrivacySecurityDataProxy::onGetPolicyFinished(QDBusPendingCallWatcher *w)\n{\n    QString entity = w->property(\"DBusEntity\").toString();\n    QDBusPendingReply<QString> reply = w->reply();\n    if (!reply.isError()) {\n        Q_EMIT PolicyChanged(reply.value(), \"modify\");\n    } else {\n        qCWarning(DCC_PRIVACY) << \"Get\" << entity << \"policy failed, DBus reply error: \" << reply.error();\n    }\n    w->deleteLater();\n}\n\nvoid PrivacySecurityDataProxy::setPolicy(const QString &policy)\n{\n    QDBusMessage message = QDBusMessage::createMethodCall(UsecService, UsecPath, UsecInterface, \"SetPolicy\");\n    message << policy;\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(QDBusConnection::systemBus().asyncCall(message, DBUS_TIMEOUT), this);\n    watcher->setProperty(\"DBusPolicy\", policy);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, &PrivacySecurityDataProxy::onSetPolicyFinished);\n}\n\nvoid PrivacySecurityDataProxy::onSetPolicyFinished(QDBusPendingCallWatcher *w)\n{\n    QString policy = w->property(\"DBusPolicy\").toString();\n    QDBusPendingReply<> reply = w->reply();\n    if (!reply.isError()) {\n        Q_EMIT PolicyChanged(policy, \"modify\");\n    } else {\n        qCWarning(DCC_PRIVACY) << \"Set\" << policy << \"policy failed, DBus reply error: \" << reply.error();\n    }\n    w->deleteLater();\n}\n\nvoid PrivacySecurityDataProxy::init()\n{\n    QDBusConnection::systemBus().connect(UsecService, UsecPath, UsecInterface, \"PolicyChanged\", this, SIGNAL(PolicyChanged(QString, QString)));\n    QDBusConnection::systemBus().connect(UsecService, UsecPath, UsecInterface, \"EntityChanged\", this, SIGNAL(EntityChanged(QString, QString)));\n    QDBusConnection::systemBus().connect(UsecService, UsecPath, UsecInterface, \"ModeChanged\", this, SIGNAL(ModeChanged(QString, QString)));\n}\n\nbool PrivacySecurityDataProxy::existsService() const\n{\n    return m_serviceExists;\n}\n\nvoid PrivacySecurityDataProxy::onGetNameOwner(const QString &)\n{\n    updateServiceExists(true);\n}\n\nvoid PrivacySecurityDataProxy::onDBusNameOwnerChanged(const QString &name, const QString &oldOwner, const QString &newOwner)\n{\n    if (UsecService == name) {\n        if (newOwner.isEmpty()) { // remove\n            updateServiceExists(false);\n        } else if (oldOwner.isEmpty()) { // add\n            updateServiceExists(true);\n        }\n    }\n}\n\nvoid PrivacySecurityDataProxy::updateServiceExists(bool serviceExists)\n{\n    if (serviceExists != m_serviceExists) {\n        m_serviceExists = serviceExists;\n        Q_EMIT serviceExistsChanged(m_serviceExists);\n    }\n}\n"
  },
  {
    "path": "src/plugin-privacy/operation/privacysecuritydataproxy.h",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef PRIVACYSECURITYDATAPROXY_H\n#define PRIVACYSECURITYDATAPROXY_H\n\n#include <QLoggingCategory>\n#include <QObject>\n\nQ_DECLARE_LOGGING_CATEGORY(DCC_PRIVACY)\n\nnamespace Dtk {\nnamespace Core {\n} // namespace Core\n} // namespace Dtk\nclass QDBusPendingCallWatcher;\nclass QFileSystemWatcher;\n\nclass PrivacySecurityDataProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit PrivacySecurityDataProxy(QObject *parent = nullptr);\n    ~PrivacySecurityDataProxy();\n\n    enum Mode {\n        AllDisabled = 0,\n        AllEnable = 1,\n        ByCustom = 2,\n    };\n\nQ_SIGNALS:\n    void serviceExistsChanged(bool exists);\n\n    void PolicyChanged(const QString &policy, const QString &type);\n    void EntityChanged(const QString &entity, const QString &type);\n    void ModeChanged(const QString &mode, const QString &type);\n\npublic Q_SLOTS:\n    void getMode(const QString &object);\n    void setMode(const QString &config);\n    void listEntity();\n    void getEntity(const QString &entity);\n    void setEntity(const QString &entity);\n    void getPolicy(const QString &entity);\n    void setPolicy(const QString &policy);\n\npublic Q_SLOTS:\n    void init();\n    // FileArmor\n    bool existsService() const;\n\nprivate Q_SLOTS:\n    void onGetNameOwner(const QString &);\n    void onDBusNameOwnerChanged(const QString &name, const QString &oldOwner, const QString &newOwner);\n    void updateServiceExists(bool serviceExists);\n\n    void onGetModeFinished(QDBusPendingCallWatcher *w);\n    void onSetModeFinished(QDBusPendingCallWatcher *w);\n    void onListEntityFinished(QDBusPendingCallWatcher *w);\n    void onGetEntityFinished(QDBusPendingCallWatcher *w);\n    void onSetEntityFinished(QDBusPendingCallWatcher *w);\n    void onGetPolicyFinished(QDBusPendingCallWatcher *w);\n    void onSetPolicyFinished(QDBusPendingCallWatcher *w);\n\nprivate:\n    bool m_serviceExists;\n};\n\n#endif // PRIVACYSECURITYDATAPROXY_H\n"
  },
  {
    "path": "src/plugin-privacy/operation/privacysecurityexport.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"privacysecurityexport.h\"\n#include \"dccfactory.h\"\n#include \"applicationitem.h\"\n#include \"privacysecuritymodel.h\"\n#include \"privacysecurityworker.h\"\n\n#include <QThread>\n#include <QtQml>\n\nQ_LOGGING_CATEGORY(DCC_PRIVACY, \"dde.dcc.privacy\")\n\nPrivacySecurityExport::PrivacySecurityExport(QObject *parent)\n    : QObject(parent)\n    , m_privacyModel(new PrivacySecurityModel(this))\n    , m_woker(new PrivacySecurityWorker(m_privacyModel, this))\n{\n    m_appsModel = m_privacyModel->appModel();\n\n    qmlRegisterType<ApplicationItem>(\"org.deepin.dcc.privacy\", 1, 0, \"ApplicationItem\");\n}\n\nDCC_FACTORY_CLASS(PrivacySecurityExport)\n\n#include \"privacysecurityexport.moc\"\n"
  },
  {
    "path": "src/plugin-privacy/operation/privacysecurityexport.h",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include \"privacysecuritymodel.h\"\n#include \"operation/privacysecurityworker.h\"\n\nclass PrivacySecurityExport : public QObject\n{\nQ_OBJECT\n    Q_PROPERTY(AppsModel *appsModel MEMBER m_appsModel CONSTANT)\n    Q_PROPERTY(PrivacySecurityWorker *worker MEMBER m_woker CONSTANT)\npublic:\n    explicit PrivacySecurityExport(QObject *parent = nullptr);\n\nprivate:\n    AppsModel *m_appsModel = nullptr;\n    PrivacySecurityModel *m_privacyModel = nullptr;\n    PrivacySecurityWorker *m_woker = nullptr;\n};\n"
  },
  {
    "path": "src/plugin-privacy/operation/privacysecuritymodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"privacysecuritymodel.h\"\n#include \"applicationitem.h\"\n#include \"privacysecuritydataproxy.h\"\n#include <QStandardPaths>\n#include <QUrl>\n\nAppsModel::AppsModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n\n}\n\nQVariant AppsModel::data(const QModelIndex &index, int role) const\n{\n    if (!index.isValid())\n        return QVariant();\n\n    switch (role) {\n        case NameRole: {\n            return m_appItems.at(index.row())->name();\n        }\n        case IconNameRole: {\n            QString icon = m_appItems.at(index.row())->icon();\n            return icon.startsWith(\"/\") ? QUrl::fromLocalFile(icon).toString() : icon;\n        }\n        case CameraRole: {\n            return m_appItems.at(index.row())->isPremissionEnabled(ApplicationItem::CameraPermission);\n        }\n        case DocumentRole: {\n            return m_appItems.at(index.row())->isPremissionEnabled(ApplicationItem::DocumentFoldersPermission);\n        }\n        case PictureRole: {\n            return m_appItems.at(index.row())->isPremissionEnabled(ApplicationItem::PictureFoldersPermission);\n        }\n        case DesktopRole: {\n            return m_appItems.at(index.row())->isPremissionEnabled(ApplicationItem::DesktopFoldersPermission);\n        }\n        case VideoRole: {\n            return m_appItems.at(index.row())->isPremissionEnabled(ApplicationItem::VideoFoldersPermission);\n        }\n        case MusicRole: {\n            return m_appItems.at(index.row())->isPremissionEnabled(ApplicationItem::MusicFoldersPermission);\n        }\n        case DownloadRole: {\n            return m_appItems.at(index.row())->isPremissionEnabled(ApplicationItem::DownloadFoldersPermission);\n        }\n    }\n    return QVariant();\n}\n\nQVariant AppsModel::data(const QModelIndex &index, const QString propertyName) const\n{\n    const auto roleNames = this->roleNames();\n    for (auto it = roleNames.cbegin(); it != roleNames.cend(); ++it) {\n        if (propertyName == it.value()) {\n            return data(index, it.key());\n        }\n    }\n    return QVariant();\n}\n\nint AppsModel::rowCount(const QModelIndex &) const\n{\n    return m_appItems.size();\n}\n\nQHash<int, QByteArray> AppsModel::roleNames() const\n{\n    QHash<int, QByteArray> roleNames;\n    roleNames[NameRole] = \"name\";\n    roleNames[IconNameRole] = \"iconName\";\n    roleNames[CameraRole] = \"cameraPermission\";\n    roleNames[DocumentRole] = \"documentPermission\";\n    roleNames[PictureRole] = \"picturePermission\";\n    roleNames[DesktopRole] = \"desktopPermission\";\n    roleNames[VideoRole] = \"videoPermission\";\n    roleNames[MusicRole] = \"musicPermission\";\n    roleNames[DownloadRole] = \"downloadPermission\";\n    return roleNames;\n}\n\nvoid AppsModel::reset(ApplicationItemListPtr appList)\n{\n    beginResetModel();\n    m_appItems =  appList;\n    endResetModel();\n}\n\nvoid AppsModel::appendItem(ApplicationItem *appItem)\n{\n    int insertPos = m_appItems.size();\n    for (int i = 0; i < m_appItems.size(); ++i) {\n        if (appItem->sortField() < m_appItems.at(i)->sortField()) {\n            insertPos = i;\n            break;\n        }\n    }\n\n    beginInsertRows(QModelIndex(), insertPos, insertPos);\n    m_appItems.insert(insertPos, appItem);\n    endInsertRows();\n}\n\nvoid AppsModel::removeItem(ApplicationItem *appItem)\n{\n    for (int index = 0; index < m_appItems.size(); index++) {\n        if (m_appItems.at(index) == appItem) {\n            beginRemoveRows(QModelIndex(), index, index);\n            m_appItems.removeAt(index);\n            endRemoveRows();\n            return;\n        }\n    }\n}\n\nPrivacySecurityModel::PrivacySecurityModel(QObject *parent)\n    : QObject(parent)\n    , m_appModel(new AppsModel(this))\n    , m_uniqueID(1)\n    , m_updating(true)\n{\n\n}\n\nPrivacySecurityModel::~PrivacySecurityModel()\n{\n\n}\n\nbool PrivacySecurityModel::isPremissionEnabled(int premission) const\n{\n    switch (premission) {\n    case ApplicationItem::FoldersPermission:\n        return isPremissionEnabled(ApplicationItem::DocumentFoldersPermission) \n            && isPremissionEnabled(ApplicationItem::PictureFoldersPermission)\n            && isPremissionEnabled(ApplicationItem::DesktopFoldersPermission)\n            && isPremissionEnabled(ApplicationItem::VideoFoldersPermission)\n            && isPremissionEnabled(ApplicationItem::MusicFoldersPermission)\n            && isPremissionEnabled(ApplicationItem::DownloadFoldersPermission);\n    default:\n        return m_premissionMap.value(premission, PrivacySecurityDataProxy::AllEnable) != PrivacySecurityDataProxy::AllDisabled;\n    }\n}\n\nvoid PrivacySecurityModel::setPremissionEnabled(int premission, bool enabled)\n{\n    // worker 实现\n    if (enabled) {\n        if (!m_appModel->appList().isEmpty()) {\n            auto &&item = m_appModel->appList().first();\n            qCInfo(DCC_PRIVACY) << \"Set premission enabled: true, item: \" << item << \", premission: \" << premission;\n            // 触发设置信号\n            switch (premission) {\n            case ApplicationItem::CameraPermission:\n                item->setPremissionEnabled(ApplicationItem::CameraPermission, item->isPremissionEnabled(ApplicationItem::CameraPermission));\n                break;\n            case ApplicationItem::FoldersPermission:\n                item->setPremissionEnabled(ApplicationItem::DocumentFoldersPermission, item->isPremissionEnabled(ApplicationItem::DocumentFoldersPermission));\n                item->setPremissionEnabled(ApplicationItem::PictureFoldersPermission, item->isPremissionEnabled(ApplicationItem::PictureFoldersPermission));\n                item->setPremissionEnabled(ApplicationItem::DesktopFoldersPermission, item->isPremissionEnabled(ApplicationItem::DesktopFoldersPermission));\n                item->setPremissionEnabled(ApplicationItem::VideoFoldersPermission, item->isPremissionEnabled(ApplicationItem::VideoFoldersPermission));\n                item->setPremissionEnabled(ApplicationItem::MusicFoldersPermission, item->isPremissionEnabled(ApplicationItem::MusicFoldersPermission));\n                item->setPremissionEnabled(ApplicationItem::DownloadFoldersPermission, item->isPremissionEnabled(ApplicationItem::DownloadFoldersPermission));\n                break;\n            }\n        }\n    } else {\n        Q_EMIT requestSetPremissionMode(premission, PrivacySecurityDataProxy::AllDisabled);\n    }\n}\n\nbool PrivacySecurityModel::addApplictionItem(ApplicationItem *item)\n{\n    m_appModel->appendItem(item);\n    return true;\n}\n\nvoid PrivacySecurityModel::removeApplictionItem(const QString &id)\n{\n    const auto list = m_appModel->appList();\n    auto it = std::find_if(list.cbegin(), list.cend(), [id](ApplicationItem *appItem) {\n        return appItem->id() == id;\n    }); \n    if (it != list.end()) {\n        Q_EMIT itemAboutToBeRemoved(it - list.begin());\n        m_appModel->removeItem(*it);\n        delete *it;\n        Q_EMIT itemRemoved();\n    }\n}\n\nvoid PrivacySecurityModel::dataUpdateFinished(bool updating)\n{\n    m_updating = updating;\n    if (m_updating) {\n        Q_EMIT itemDataUpdate(m_updating);\n        blockSignals(m_updating);\n    } else {\n        blockSignals(m_updating);\n        Q_EMIT itemDataUpdate(m_updating);\n    }\n}\n\nApplicationItem *PrivacySecurityModel::applictionItem(unsigned uniqueID)\n{\n    auto it = std::find_if(m_appModel->appList().begin(), m_appModel->appList().end(), [uniqueID](ApplicationItem *item) {\n        return item->getUniqueID() == uniqueID;\n    });\n    return it == m_appModel->appList().end() ? nullptr : *it;\n}\n\nint PrivacySecurityModel::getAppIndex(unsigned uniqueID) const\n{\n    auto it = std::find_if(m_appModel->appList().begin(), m_appModel->appList().end(), [uniqueID](ApplicationItem *item) {\n        return item->getUniqueID() == uniqueID;\n    });\n    return it == m_appModel->appList().end() ? -1 : it - m_appModel->appList().begin();\n}\n\nvoid PrivacySecurityModel::updatePermission()\n{\n    for (int i = 0; i < m_appModel->appList().count(); ++i) {\n        if (updatePermission(m_appModel->appList()[i])) {\n            Q_EMIT appModel()->dataChanged(m_appModel->index(i), m_appModel->index(i));\n        }\n    }\n}\n\nbool PrivacySecurityModel::updatePermission(ApplicationItem *item)\n{\n    bool sucUpdate = false;\n    if (!item->package().isEmpty()) {\n        sucUpdate |= item->onPremissionEnabledChanged(ApplicationItem::DocumentFoldersPermission, !m_blacklistByPackage[premissiontoPath(ApplicationItem::DocumentFoldersPermission)].contains(item->package()));\n        sucUpdate |= item->onPremissionEnabledChanged(ApplicationItem::PictureFoldersPermission, !m_blacklistByPackage[premissiontoPath(ApplicationItem::PictureFoldersPermission)].contains(item->package()));\n        sucUpdate |= item->onPremissionEnabledChanged(ApplicationItem::DesktopFoldersPermission, !m_blacklistByPackage[premissiontoPath(ApplicationItem::DesktopFoldersPermission)].contains(item->package()));\n        sucUpdate |= item->onPremissionEnabledChanged(ApplicationItem::VideoFoldersPermission, !m_blacklistByPackage[premissiontoPath(ApplicationItem::VideoFoldersPermission)].contains(item->package()));\n        sucUpdate |= item->onPremissionEnabledChanged(ApplicationItem::MusicFoldersPermission, !m_blacklistByPackage[premissiontoPath(ApplicationItem::MusicFoldersPermission)].contains(item->package()));\n        sucUpdate |= item->onPremissionEnabledChanged(ApplicationItem::DownloadFoldersPermission, !m_blacklistByPackage[premissiontoPath(ApplicationItem::DownloadFoldersPermission)].contains(item->package()));\n        sucUpdate |= item->onPremissionEnabledChanged(ApplicationItem::CameraPermission, !m_blacklistByPackage[premissiontoPath(ApplicationItem::CameraPermission)].contains(item->package()));\n    } else { // 若一个启动器没有包名，则认为它的权限由其appPath决定\n        sucUpdate |= item->onPremissionEnabledChanged(ApplicationItem::DocumentFoldersPermission, !m_blacklist[premissiontoPath(ApplicationItem::DocumentFoldersPermission)].contains(item->appPath()));\n        sucUpdate |= item->onPremissionEnabledChanged(ApplicationItem::PictureFoldersPermission, !m_blacklist[premissiontoPath(ApplicationItem::PictureFoldersPermission)].contains(item->appPath()));\n        sucUpdate |= item->onPremissionEnabledChanged(ApplicationItem::DesktopFoldersPermission, !m_blacklist[premissiontoPath(ApplicationItem::DesktopFoldersPermission)].contains(item->appPath()));\n        sucUpdate |= item->onPremissionEnabledChanged(ApplicationItem::VideoFoldersPermission, !m_blacklist[premissiontoPath(ApplicationItem::VideoFoldersPermission)].contains(item->appPath()));\n        sucUpdate |= item->onPremissionEnabledChanged(ApplicationItem::MusicFoldersPermission, !m_blacklist[premissiontoPath(ApplicationItem::MusicFoldersPermission)].contains(item->appPath()));\n        sucUpdate |= item->onPremissionEnabledChanged(ApplicationItem::DownloadFoldersPermission, !m_blacklist[premissiontoPath(ApplicationItem::DownloadFoldersPermission)].contains(item->appPath()));\n        sucUpdate |= item->onPremissionEnabledChanged(ApplicationItem::CameraPermission, !m_blacklist[premissiontoPath(ApplicationItem::CameraPermission)].contains(item->appPath()));\n    }\n    return sucUpdate;\n}\n\nconst QString PrivacySecurityModel::premissiontoPath(int premission) const\n{\n    switch (premission) {\n    case ApplicationItem::CameraPermission:\n        return \"camera\";\n    case ApplicationItem::DocumentFoldersPermission:\n        return QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);\n    case ApplicationItem::PictureFoldersPermission:\n        return QStandardPaths::writableLocation(QStandardPaths::PicturesLocation);\n    case ApplicationItem::DesktopFoldersPermission:\n        return QStandardPaths::writableLocation(QStandardPaths::DesktopLocation);\n    case ApplicationItem::VideoFoldersPermission:\n        return QStandardPaths::writableLocation(QStandardPaths::MoviesLocation);\n    case ApplicationItem::MusicFoldersPermission:\n        return QStandardPaths::writableLocation(QStandardPaths::MusicLocation);\n    case ApplicationItem::DownloadFoldersPermission:\n        return QStandardPaths::writableLocation(QStandardPaths::DownloadLocation);\n    }\n    \n    return QString();\n}\n\nint PrivacySecurityModel::pathtoPremission(const QString &path, bool mainPremission) const\n{\n    if (path == \"camera\") {\n        return ApplicationItem::CameraPermission;\n    } else if (path == QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation)) {\n        return mainPremission ? ApplicationItem::FoldersPermission : ApplicationItem::DocumentFoldersPermission;\n    } else if (path == QStandardPaths::writableLocation(QStandardPaths::PicturesLocation)) {\n        return mainPremission ? ApplicationItem::FoldersPermission : ApplicationItem::PictureFoldersPermission;\n    } else if (path == QStandardPaths::writableLocation(QStandardPaths::DesktopLocation)) {\n        return mainPremission ? ApplicationItem::FoldersPermission : ApplicationItem::DesktopFoldersPermission;\n    } else if (path == QStandardPaths::writableLocation(QStandardPaths::MoviesLocation)) {\n        return mainPremission ? ApplicationItem::FoldersPermission : ApplicationItem::VideoFoldersPermission;\n    } else if (path == QStandardPaths::writableLocation(QStandardPaths::MusicLocation)) {\n        return mainPremission ? ApplicationItem::FoldersPermission : ApplicationItem::MusicFoldersPermission;\n    } else if (path == QStandardPaths::writableLocation(QStandardPaths::DownloadLocation)) {\n        return mainPremission ? ApplicationItem::FoldersPermission : ApplicationItem::DownloadFoldersPermission;\n    }\n    return 0;\n}\n\nvoid PrivacySecurityModel::emitAppDataChanged(ApplicationItem *item)\n{\n    for (int i = 0; i < m_appModel->appList().count(); ++i) {\n        if (m_appModel->appList()[i] == item) {\n            Q_EMIT appModel()->dataChanged(m_appModel->index(i), m_appModel->index(i));\n            return;\n        }\n    }\n}\n\nvoid PrivacySecurityModel::onPremissionModeChanged(int premission, int mode)\n{\n    int groupPremisson = premission & ApplicationItem::GroupPermissionMask;\n    m_premissionMap[groupPremisson] = mode;\n    emitPremissionModeChanged(groupPremisson);\n}\n\nvoid PrivacySecurityModel::emitPremissionModeChanged(int premission)\n{\n    int groupPremisson = premission & ApplicationItem::GroupPermissionMask;\n    Q_EMIT premissionEnabledChanged(groupPremisson, isPremissionEnabled(groupPremisson));\n}\n\nvoid PrivacySecurityModel::onAppPremissionEnabledChanged(const QString &file, const QSet<QString> &apps)\n{\n    if (isPremissionEnabled(pathtoPremission(file, true))) {\n        m_blacklist[file] = apps;\n    }\n    updatePermission();\n}\n\nvoid PrivacySecurityModel::onItemPermissionChanged()\n{\n    ApplicationItem *item = qobject_cast<ApplicationItem *>(sender());\n    if (item)\n        updatePermission(item);\n}\n\nvoid PrivacySecurityModel::onItemDataChanged()\n{\n    ApplicationItem *item = qobject_cast<ApplicationItem *>(sender());\n    Q_EMIT itemDataChanged(item);\n}\n\n\nunsigned PrivacySecurityModel::createUniqueID()\n{\n    return m_uniqueID++;\n}\n\nvoid PrivacySecurityModel::setBlackListByPackage(QMap<QString, QSet<QString>> blacklistByPackage)\n{\n    m_blacklistByPackage = blacklistByPackage;\n    updatePermission();\n}\n"
  },
  {
    "path": "src/plugin-privacy/operation/privacysecuritymodel.h",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QAbstractProxyModel>\n#include \"applicationitem.h\"\n\nclass AppsModel : public QAbstractListModel\n{\n    Q_OBJECT\n    enum AppPrivacyRole {\n        NameRole = Qt::UserRole + 1,\n        IconNameRole,\n\n        CameraRole,\n        DocumentRole,\n        PictureRole,\n        DesktopRole,\n        VideoRole,\n        MusicRole,\n        DownloadRole,\n    };\npublic:\n    explicit AppsModel(QObject *parent = nullptr);\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n    QVariant data(const QModelIndex &index, const QString propertyName = QString()) const;\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    ApplicationItemListPtr appList() const { return m_appItems; };\n    void reset(ApplicationItemListPtr appList);\n    void appendItem(ApplicationItem *item);\n    void removeItem(ApplicationItem *item);\n\nprotected:\n    QHash<int, QByteArray> roleNames() const override;\n\nprivate:\n    ApplicationItemListPtr m_appItems;\n};\n\nclass PrivacySecurityModel : public QObject\n{\n    Q_OBJECT\n    Q_PROPERTY(AppsModel *appModel MEMBER m_appModel CONSTANT)\npublic:\n    explicit PrivacySecurityModel(QObject *parent = nullptr);\n    ~PrivacySecurityModel();\n\n    AppsModel *appModel() { return m_appModel; }\n\n    bool isPremissionEnabled(int premission) const;\n    void setPremissionEnabled(int premission, bool enabled);\n\n    ApplicationItem *applictionItem(unsigned uniqueID);\n    int getAppIndex(unsigned uniqueID) const;\n    void updatePermission();\n    bool updatePermission(ApplicationItem *item);\n    const QSet<QString> blacklist(const QString &file) const;\n\n    const QString premissiontoPath(int premission) const;\n    int pathtoPremission(const QString &path, bool mainPremission) const;\n\n    // 数据更新中，界面应禁用\n    inline bool updating() const { return m_updating; }\n\n    inline unsigned lastUniqueID() const { return m_uniqueID; }\n\n    void setBlackListByPackage(QMap<QString, QSet<QString>>);\nQ_SIGNALS:\n    void serviceExistsChanged(bool exists);\n    void checkAuthorization(bool checking);\n    void premissionEnabledChanged(int premission, bool enabled);\n    void requestSetPremissionMode(int premission, int mode);\n\n    void itemAboutToBeAdded(int pos);\n    void itemAdded();\n    void itemAboutToBeRemoved(int pos);\n    void itemRemoved();\n    void itemDataChanged(ApplicationItem *appItem);\n    void itemDataUpdate(bool updating);\n\npublic Q_SLOTS:\n    void emitAppDataChanged(ApplicationItem *item);\n\nprotected Q_SLOTS:\n    void onPremissionModeChanged(int premission, int mode);\n    void emitPremissionModeChanged(int premission);\n    void onItemPermissionChanged();\n    void onItemDataChanged();\n    void onAppPremissionEnabledChanged(const QString &file, const QSet<QString> &apps);\n    bool addApplictionItem(ApplicationItem *item);\n    void removeApplictionItem(const QString &id);\n    void dataUpdateFinished(bool updating);\n\nprivate:\n    unsigned createUniqueID();\n\nprivate:\n    AppsModel *m_appModel = nullptr;\n    unsigned m_uniqueID;                           // ApplicationItem的唯一ID，从1开始，只处理m_appItems中的项\n    QMap<int, int> m_premissionMap;                // 权限总开关\n    QMap<QString, QSet<QString>> m_blacklist;      // 权限列表\n    QMap<QString, QSet<QString>> m_blacklistByPackage; // 黑名单 <权限，包名列表>\n    bool m_updating;                               // 数据更新中\n\n    friend class PrivacySecurityWorker;\n};\n"
  },
  {
    "path": "src/plugin-privacy/operation/privacysecurityworker.cpp",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"privacysecurityworker.h\"\n#include \"privacysecuritydataproxy.h\"\n#include \"applicationitem.h\"\n#include \"dde-apps.h\"\n\n#include <QJsonDocument>\n#include <QJsonValue>\n#include <QJsonArray>\n#include <QJsonObject>\n#include <QDir>\n#include <QTimer>\n#include <QProcessEnvironment>\n#include \"QCoreApplication\"\n#include <QtConcurrent>\n\n#include \"applet.h\"\n#include <dsglobal.h>\n#include \"pluginloader.h\"\n#include \"containment.h\"\n#include <appletbridge.h>\n\n#include <polkit-qt6-1/PolkitQt1/Authority>\n#include <qnamespace.h>\n\nQ_DECLARE_LOGGING_CATEGORY(DCC_PRIVACY)\nstatic const QString DESKTOP_ENTRY_ICON_KEY = \"Desktop Entry\";\nstatic const QString DEEPIN_WINE_TEAM = \"Deepin WINE Team\";\n\nconst QString DataVersion = \"1.0\";\nstatic QList<int> s_systemPrem = { ApplicationItem::CameraPermission };\n\nstatic QString getDpkgArch()\n{\n    const static QString arch = []() {\n        QString arch = QSysInfo::currentCpuArchitecture();\n        QProcess pro;\n        pro.start(\"/usr/bin/dpkg\", QStringList() << \"--print-architecture\");\n        pro.waitForFinished(2000);\n        if (pro.exitCode() != 0) {\n            qCWarning(DCC_PRIVACY) << \"Failed to get dpkg architecture, dpkg error: \" << pro.readAllStandardError().simplified() \n                << \", fallback to QSysInfo architecture:\" << arch;\n            return arch;\n        }\n        QString output = pro.readAllStandardOutput().simplified();\n        if (output.isEmpty()) {\n            qCWarning(DCC_PRIVACY) << \"No architecture found for dpkg, fallback to QSysInfo architecture:\" << arch;\n            return arch;\n        }\n        return output;\n    }();\n    return arch;\n}\n\nPrivacySecurityWorker::PrivacySecurityWorker(PrivacySecurityModel *appsModel, QObject *parent)\n    : QObject(parent)\n    , m_model(appsModel)\n    , m_dataProxy(new PrivacySecurityDataProxy(this))\n{\n    m_dpkgThreadPool = new QThreadPool(this);\n    m_dpkgThreadPool->setMaxThreadCount(1);\n    connect(m_dataProxy, &PrivacySecurityDataProxy::serviceExistsChanged, this, &PrivacySecurityWorker::serviceExistsChanged);\n    init();\n}\n\nPrivacySecurityWorker::~PrivacySecurityWorker()\n{\n    m_dpkgThreadPool->waitForDone();\n\n    if (!m_pathList.isEmpty())\n        return;\n    m_dataProxy->init();\n}\n\nvoid PrivacySecurityWorker::init()\n{\n    if (!m_pathList.isEmpty())\n        return;\n    m_dataProxy->init();\n    // TODO：由于控制中心通过子线程加载插件后，会移动插件的加载线程->主线程，\n    // 并删除原有线程->未指定父的对象所处的线程会被删除，所以使用qApp->主线程调用initApp\n    QMetaObject::invokeMethod(qApp, [this]() {\n        initApp();\n    }, Qt::BlockingQueuedConnection);\n\n\n    connect(m_dataProxy, &PrivacySecurityDataProxy::ModeChanged, this, &PrivacySecurityWorker::onModeChanged, Qt::QueuedConnection);\n    connect(m_dataProxy, &PrivacySecurityDataProxy::EntityChanged, this, &PrivacySecurityWorker::onEntityChanged, Qt::QueuedConnection);\n    connect(m_dataProxy, &PrivacySecurityDataProxy::PolicyChanged, this, &PrivacySecurityWorker::onPolicyChanged, Qt::QueuedConnection);\n\n    QString envPath = QProcessEnvironment::systemEnvironment().value(\"PATH\");\n    m_pathList = envPath.split(':');\n\n    m_dataProxy->listEntity();\n    QStringList folders = { \n        \"camera\",\n        m_model->premissiontoPath(ApplicationItem::DocumentFoldersPermission),\n        m_model->premissiontoPath(ApplicationItem::PictureFoldersPermission),\n        m_model->premissiontoPath(ApplicationItem::DesktopFoldersPermission),\n        m_model->premissiontoPath(ApplicationItem::VideoFoldersPermission),\n        m_model->premissiontoPath(ApplicationItem::MusicFoldersPermission),\n        m_model->premissiontoPath(ApplicationItem::DownloadFoldersPermission)\n    };\n    for (const auto &folder : folders) {\n        m_dataProxy->getMode(folder);\n        m_dataProxy->getPolicy(folder);\n    }\n}\n\nvoid PrivacySecurityWorker::initApp()\n{\n    auto rootApplet = qobject_cast<DS_NAMESPACE::DContainment *>(DS_NAMESPACE::DPluginLoader::instance()->rootApplet());\n    auto applet = rootApplet->createApplet(DS_NAMESPACE::DAppletData{\"org.deepin.ds.dde-apps\"});\n    applet->load();\n    applet->init();\n\n    DS_NAMESPACE::DAppletBridge bridge(\"org.deepin.ds.dde-apps\");\n    DS_NAMESPACE::DAppletProxy * amAppsProxy = bridge.applet();\n\n    if (amAppsProxy) {\n        QAbstractItemModel * model = amAppsProxy->property(\"appModel\").value<QAbstractItemModel *>();\n        m_ddeAmModel = model;\n\n        connect(model, &QAbstractItemModel::rowsInserted, this, [this](const QModelIndex &parent, int first, int last)\n        {\n            Q_UNUSED(parent)\n            for (int i = first; i <= last; i++) {\n                addAppItem(i);\n            }\n        });\n        connect(model, &QAbstractItemModel::rowsAboutToBeRemoved, this, [this](const QModelIndex &parent, int first, int last)\n        {\n            Q_UNUSED(parent)\n            for (int i = last; i >= first; i--) {\n                QString appId = m_ddeAmModel->data(m_ddeAmModel->index(i, 0), DS_NAMESPACE::AppItemModel::IdRole).toString();\n                if (!appId.isEmpty()) {\n                    m_model->removeApplictionItem(appId);\n                }\n            }\n        }, Qt::DirectConnection);\n    }\n}\n\nvoid PrivacySecurityWorker::setPremissionEnabled(int appItemIndex, int premission, bool enabled)\n{\n    auto item = m_model->appModel()->appList().value(appItemIndex);\n    item->setPremissionEnabled(premission, enabled);\n}\nQString PrivacySecurityWorker::getAppPath(const QMap<QString, QString> &execs)\n{\n    static QStringList s_excludeBin = { \"gio\", \"dbus-send\", \"python\", \"KboxAppLauncher\", \"/usr/bin/uengine-launch.sh\" };\n    QString appPath;\n    for (auto it = execs.begin(); it != execs.end(); ++it) {\n        if (it.key() != DESKTOP_ENTRY_ICON_KEY) {\n            continue;\n        }\n        QString exec = it.value();\n        if (s_excludeBin.contains(exec)) {\n            continue;\n        }\n\n        QRegularExpression regex(R\"(^\\s*(\"|')([^\"]+)\\1|^(\\S+))\");\n        QRegularExpressionMatch match = regex.match(exec);\n\n        QString cleanedString;\n\n        if (match.hasMatch()) {\n            if (match.captured(2).isEmpty()) {\n                cleanedString =  match.captured(3); // 没有引号的命令\n            } else {\n                cleanedString =  match.captured(2); // 引号包裹的命令\n            }\n        }\n\n        if (QFile::exists(cleanedString)) {\n            appPath = cleanedString;\n            break;\n        } else {\n            for (const auto &binDir : m_pathList) {\n                QDir bin(binDir);\n                if (bin.exists(cleanedString)) {\n                    appPath = bin.absolutePath() + \"/\" + cleanedString;\n                    break;\n                }\n            }\n        }\n    }\n    if (!appPath.isEmpty()) {\n        while (true) {\n            QFileInfo info(appPath);\n            if (info.isSymLink()) {\n                appPath = info.symLinkTarget();\n            } else if (!info.exists()) {\n                appPath.clear();\n                break;\n            } else {\n                break;\n            }\n        }\n    }\n    return appPath;\n}\n\nvoid PrivacySecurityWorker::updateCheckAuthorizationing(bool checking)\n{\n    if (m_checkAuthorizationing != checking) {\n        m_checkAuthorizationing = checking;\n        if (m_checkAuthorizationing) {\n            QTimer::singleShot(100, this, [this]() {\n                if (m_checkAuthorizationing) {\n                    Q_EMIT checkAuthorization(m_checkAuthorizationing);\n                }\n            });\n        } else {\n            Q_EMIT checkAuthorization(m_checkAuthorizationing);\n        }\n    }\n}\n\n// 刷新所有状态\nvoid PrivacySecurityWorker::updateAllPermission()\n{\n    m_model->setBlackListByPackage(m_blacklistByPackage);\n    for (auto &&it = m_blacklistByPackage.begin(); it != m_blacklistByPackage.end(); ++it) {\n        QSet<QString> files;\n        for (const auto &package : it.value()) {\n            for (const auto &file : m_entityMap.value(package)) {\n                files.insert(file);\n            }\n        }\n        m_model->onAppPremissionEnabledChanged(it.key(), files);\n    }\n}\n\nQString PrivacySecurityWorker::getEntityJson(const QString &name, bool isFile)\n{\n    QJsonObject obj;\n    QJsonObject attrs;\n    attrs.insert(\"bus_type\", QString()); // 此处空项没有接口调用会报错\n    attrs.insert(\"exes\", QJsonArray());\n    attrs.insert(\"interface\", QString());\n    attrs.insert(\"methods\", QJsonArray());\n    attrs.insert(\"object_path\", QString());\n    attrs.insert(\"service_name\", QString());\n    obj.insert(\"attrs\", attrs);\n    obj.insert(\"description\", QString());\n    obj.insert(\"description_zh_CN\", QString());\n    obj.insert(\"level\", QString());\n    obj.insert(\"owner\", QString());\n    obj.insert(\"sensitivity\", QString());\n\n    QJsonArray available_operations;\n    available_operations.append(\"allow\");\n    available_operations.append(\"deny\");\n    obj.insert(\"name\", name);\n    obj.insert(\"available_operations\", available_operations);\n    obj.insert(\"subtype\", isFile ? \"file\" : \"\");\n    obj.insert(\"version\", DataVersion);\n    QJsonArray tags;\n    tags.append(\"system\");\n    obj.insert(\"tags\", tags);\n    obj.insert(\"type\", \"object\");\n    QJsonDocument doc(obj);\n    return doc.toJson(QJsonDocument::Compact);\n}\n\nQString PrivacySecurityWorker::getAppEntityJson(const ApplicationItem *item)\n{\n    QJsonObject obj;\n    QJsonObject attrs;\n    bool isPackage = !item->package().isEmpty();\n    attrs.insert(\"bus_type\", QString()); // 此处空项没有接口调用会报错\n    attrs.insert(\"interface\", QString());\n    attrs.insert(\"methods\", QJsonArray());\n    attrs.insert(\"object_path\", QString());\n    attrs.insert(\"service_name\", QString());\n    obj.insert(\"description\", item->name()); //\n    obj.insert(\"description_zh_CN\", item->name()); //\n    obj.insert(\"level\", QString());\n    obj.insert(\"owner\", QString());\n    obj.insert(\"sensitivity\", QString());\n\n    if (isPackage) {\n        QJsonArray exes = QJsonArray::fromStringList(item->executablePaths());\n        attrs.insert(\"exes\", exes);\n    } else {\n        QJsonArray exes = QJsonArray::fromStringList({item->appPath()});\n        attrs.insert(\"exes\", exes);\n    }\n    obj.insert(\"attrs\", attrs);\n    obj.insert(\"name\", isPackage ? item->package() : item->appPath());\n    QJsonArray available_operations;\n    obj.insert(\"available_operations\", available_operations);\n    obj.insert(\"subtype\", isPackage ? \"package\" : \"file\");\n    obj.insert(\"version\", DataVersion);\n    QJsonArray tags;\n    tags.append(\"system\");\n    obj.insert(\"tags\", tags);\n    obj.insert(\"type\", \"subject\");\n    QJsonDocument doc(obj);\n    return doc.toJson(QJsonDocument::Compact);\n}\n\nQString PrivacySecurityWorker::getSubjectModeJson(const QString &name, bool isBlacklist)\n{\n    QJsonObject obj;\n    obj.insert(\"mode\", isBlacklist ? \"blacklist\" : \"whitelist\");\n    obj.insert(\"object\", name);\n    obj.insert(\"version\", DataVersion);\n    QJsonDocument doc(obj);\n    return doc.toJson(QJsonDocument::Compact);\n}\n\nQString PrivacySecurityWorker::getObjectPolicyJson(const ApplicationItem *item, int premission, bool enabled)\n{\n    QJsonObject obj;\n    QJsonArray policies;\n    QJsonObject policy;\n    QJsonArray objects;\n\n    QJsonObject object;\n    object.insert(\"timestamp\", 0);\n    object.insert(\"valid_period\", 0);\n    object.insert(\"object\", m_model->premissiontoPath(premission)); // 需要设置的路径\n    object.insert(\"operations\", enabled ? QJsonArray::fromStringList({ \"allow\" }) : QJsonArray::fromStringList({ \"deny\" }));\n    objects.append(object);\n\n    QJsonObject subject;\n    subject.insert(\"name\", item->package().isEmpty() ? item->appPath() : item->package());    // 包名\n    policy.insert(\"objects\", objects);\n    policy.insert(\"subject\", subject);\n    policies.append(policy);\n    obj.insert(\"policies\", policies);\n    obj.insert(\"version\", DataVersion);\n    QJsonDocument doc(obj);\n    return doc.toJson(QJsonDocument::Compact);\n}\n\nvoid PrivacySecurityWorker::updateAppPath(ApplicationItem *item)\n{\n    if (!item)\n        return;\n\n    m_pendingPathUpdates.append(item);\n\n    if (!m_batchScheduled) {\n        m_batchScheduled = true;\n        QTimer::singleShot(0, this, &PrivacySecurityWorker::processBatchPathUpdates);\n    }\n}\n\nvoid PrivacySecurityWorker::processBatchPathUpdates()\n{\n    m_batchScheduled = false;\n\n    if (m_pendingPathUpdates.isEmpty())\n        return;\n\n    QList<ApplicationItem *> items;\n    items.swap(m_pendingPathUpdates);\n\n    struct ItemData {\n        QString itemId;\n        QString itemName;\n        QMap<QString, QString> execs;\n        QString desktopPath;\n    };\n\n    QList<ItemData> batch;\n    batch.reserve(items.size());\n    const auto &appList = m_model->appModel()->appList();\n    for (auto *item : items) {\n        if (!appList.contains(item))\n            continue;\n        ItemData d;\n        d.itemId = item->id();\n        d.itemName = item->name();\n        d.execs = item->execs();\n        d.desktopPath = item->desktopPath();\n        batch.append(std::move(d));\n    }\n\n    if (batch.isEmpty())\n        return;\n\n    (void)QtConcurrent::run(m_dpkgThreadPool, [this, batch]() {\n        struct ProcessedItem {\n            QString itemId;\n            QString itemName;\n            QString appPath;\n            QString dpkgQueryPath;\n        };\n\n        QList<ProcessedItem> processed;\n        processed.reserve(batch.size());\n        QStringList allDpkgPaths;\n\n        for (const auto &d : batch) {\n            ProcessedItem p;\n            p.itemId = d.itemId;\n            p.itemName = d.itemName;\n            p.appPath = getAppPath(d.execs);\n            p.dpkgQueryPath = d.desktopPath.isEmpty() ? p.appPath : d.desktopPath;\n            processed.append(p);\n\n            if (!p.dpkgQueryPath.isEmpty()) {\n                allDpkgPaths.append(p.dpkgQueryPath);\n            }\n        }\n\n        QMap<QString, QString> pathToPackage;\n        if (!allDpkgPaths.isEmpty()) {\n            pathToPackage = batchGetPackageNames(allDpkgPaths);\n        }\n\n        for (const auto &p : processed) {\n            QString packageName = pathToPackage.value(p.dpkgQueryPath);\n            QMetaObject::invokeMethod(this,\n                [this, itemId = p.itemId, itemName = p.itemName,\n                 path = p.appPath, packageName]() {\n                    if (path.isEmpty()) {\n                        qCInfo(DCC_PRIVACY) << \"Exclude app id: \" << itemId\n                                            << \", name: \" << itemName\n                                            << \"because it appPath is empty\";\n                        m_model->removeApplictionItem(itemId);\n                        return;\n                    }\n                    const auto &appList = m_model->appModel()->appList();\n                    auto it = std::find_if(appList.cbegin(), appList.cend(),\n                        [&itemId](ApplicationItem *app) { return app->id() == itemId; });\n                    if (it == appList.cend())\n                        return;\n                    ApplicationItem *item = *it;\n                    item->onAppPathChanged(path);\n                    item->onPackageChanged(packageName);\n                    m_model->updatePermission(item);\n                    m_model->emitAppDataChanged(item);\n                },\n                Qt::QueuedConnection);\n        }\n    });\n}\n\nQMap<QString, QString> PrivacySecurityWorker::batchGetPackageNames(const QStringList &paths)\n{\n    QMap<QString, QString> result;\n    QSet<QString> uniqueSet(paths.begin(), paths.end());\n    QStringList uniquePaths(uniqueSet.begin(), uniqueSet.end());\n\n    const int chunkSize = 100;\n    for (int i = 0; i < uniquePaths.size(); i += chunkSize) {\n        QStringList chunk = uniquePaths.mid(i, chunkSize);\n\n        QProcess pro;\n        QStringList args;\n        args << \"-S\";\n        args.append(chunk);\n        pro.start(\"/usr/bin/dpkg-query\", args);\n        if (!pro.waitForFinished(5000)) {\n            qCWarning(DCC_PRIVACY) << \"dpkg-query batch timed out for chunk starting at index\" << i\n                                   << \", killing process\";\n            pro.kill();\n            pro.waitForFinished(1000);\n            continue;\n        }\n\n        // dpkg-query returns exit code 1 when any path is not found,\n        // but still prints found packages to stdout\n        QString output = pro.readAllStandardOutput();\n        const QStringList lines = output.split('\\n', Qt::SkipEmptyParts);\n\n        for (const QString &line : lines) {\n            // Format: \"package-name: /path/to/file\"\n            // Or:     \"package-name:amd64: /path/to/file\"\n            int separatorIdx = line.indexOf(\": /\");\n            if (separatorIdx < 0)\n                continue;\n\n            QString packagePart = line.left(separatorIdx);\n            QString filePath = line.mid(separatorIdx + 2).trimmed();\n            QString packageName = packagePart.split(':').first();\n\n            if (!result.contains(filePath)) {\n                result.insert(filePath, packageName);\n            }\n        }\n\n        if (pro.exitCode() != 0) {\n            qCDebug(DCC_PRIVACY) << \"dpkg-query batch: some paths not found, stderr:\"\n                                 << pro.readAllStandardError().simplified();\n        }\n    }\n\n    return result;\n}\n\nApplicationItem *PrivacySecurityWorker::addAppItem(int dataIndex)\n{\n    // 不展示的应用\n    static const QStringList s_excludeApp = {\n        \"dde-computer\", \"org.deepin.dde.control-center\", \"dde-file-manager\", \"dde-trash\", \"deepin-manual\", \"deepin-terminal\",\n        \"onboard\", \"onboard-settings\",\n    };\n\n    const auto &NoDisplay = m_ddeAmModel->data(m_ddeAmModel->index(dataIndex, 0), DS_NAMESPACE::AppItemModel::NoDisplayRole).toBool();\n\n    if (NoDisplay) {\n        return nullptr;\n    }\n\n    const auto &name = m_ddeAmModel->data(m_ddeAmModel->index(dataIndex, 0), DS_NAMESPACE::AppItemModel::NameRole).toString();\n    const auto &iconName = m_ddeAmModel->data(m_ddeAmModel->index(dataIndex, 0), DS_NAMESPACE::AppItemModel::IconNameRole).toString();\n    const auto &isLingLong = m_ddeAmModel->data(m_ddeAmModel->index(dataIndex, 0), DS_NAMESPACE::AppItemModel::XLingLongRole).toBool();\n    const auto &XCreatedBy = m_ddeAmModel->data(m_ddeAmModel->index(dataIndex, 0), DS_NAMESPACE::AppItemModel::XCreatedByRole).toString();\n    const auto &id = m_ddeAmModel->data(m_ddeAmModel->index(dataIndex, 0), DS_NAMESPACE::AppItemModel::IdRole).toString();\n    const auto &execs = m_ddeAmModel->data(m_ddeAmModel->index(dataIndex, 0), DS_NAMESPACE::AppItemModel::ExecsRole).value<QMap<QString, QString>>();\n    const auto &desktopSoucePath = m_ddeAmModel->data(m_ddeAmModel->index(dataIndex, 0), DS_NAMESPACE::AppItemModel::DesktopSourcePathRole).toString();\n\n    for (const auto &app : s_excludeApp) {\n        if (id.contains(app)) {\n            qCInfo(DCC_PRIVACY) << \"Exclude app id: \" << id << \", name: \" << name << \"because it is in exclude list\";\n            return nullptr;\n        }\n    }\n\n    if (isLingLong) {\n        qCInfo(DCC_PRIVACY) << \"Exclude app id: \" << id << \", name: \" << name << \"because it is a linglong application\";\n        return nullptr;\n    }\n\n    if (XCreatedBy == DEEPIN_WINE_TEAM) {\n        qCInfo(DCC_PRIVACY) << \"Exclude app id: \" << id << \", name: \" << name << \"because it is a wine application\";\n        return nullptr;\n    }\n\n    ApplicationItem *appItem = new ApplicationItem();\n    appItem->onIdChanged(id);\n    appItem->onNameChanged(name);\n    appItem->onIconChanged(iconName);\n    appItem->onExecsChanged(execs);\n    appItem->onDesktopPathChanged(desktopSoucePath);\n    if (m_model->addApplictionItem(appItem)) {\n        updateAppPath(appItem);\n        connect(appItem, &ApplicationItem::requestSetPremissionEnabled, this, &PrivacySecurityWorker::setAppPermissionEnable);\n    } else {\n        delete appItem;\n        appItem = nullptr;\n    }\n    return appItem;\n}\n\nvoid PrivacySecurityWorker::onModeChanged(const QString &mode, const QString &type)\n{\n    if (type != \"add\" && type != \"modify\")\n        return;\n    QJsonParseError jsonError;\n    QJsonDocument doc = QJsonDocument::fromJson(mode.toLatin1(), &jsonError);\n    if (doc.isNull() || jsonError.error != QJsonParseError::NoError) {\n        qCWarning(DCC_PRIVACY) << \"mode changed :json parse error:\" << jsonError.errorString();\n        return;\n    }\n    QJsonObject obj = doc.object();\n    if (obj.value(\"version\").toString() != DataVersion) {\n        qCWarning(DCC_PRIVACY) << \"mode changed :version error: current version:\" << DataVersion << \"json version:\" << obj.value(\"version\").toString();\n        return;\n    }\n    QString object = obj.value(\"object\").toString();\n    QString objMode = obj.value(\"mode\").toString();\n    int modeType = PrivacySecurityDataProxy::AllEnable;\n    if (objMode == \"blacklist\") {\n        modeType = PrivacySecurityDataProxy::ByCustom;\n    } else if (objMode == \"allallow\") {\n        modeType = PrivacySecurityDataProxy::AllEnable;\n    }\n    int premission = m_model->pathtoPremission(object, false);\n    if (premission != 0)\n        m_model->onPremissionModeChanged(premission, modeType);\n}\n\nvoid PrivacySecurityWorker::onEntityChanged(const QString &entity, const QString &type)\n{\n    if (type != \"add\" && type != \"modify\")\n        return;\n    QJsonParseError jsonError;\n    QJsonDocument doc = QJsonDocument::fromJson(entity.toLatin1(), &jsonError);\n    if (doc.isNull() || jsonError.error != QJsonParseError::NoError) {\n        qCWarning(DCC_PRIVACY) << \"entity changed :json parse error:\" << jsonError.errorString();\n        return;\n    }\n    QJsonObject obj = doc.object();\n    if (obj.value(\"version\").toString() != DataVersion) {\n        qCWarning(DCC_PRIVACY) << \"entity changed :version error: current version:\" << DataVersion << \"json version:\" << obj.value(\"version\").toString();\n        return;\n    }\n    QString name = obj.value(\"name\").toString();\n    QSet<QString> exes;\n    if (name.isEmpty()) {\n        qCWarning(DCC_PRIVACY) << \"entity changed :name is empty\";\n        return;\n    }\n    QJsonObject attrs = obj.value(\"attrs\").toObject();\n    if (!attrs.isEmpty()) {\n        QJsonArray exesJson = attrs.value(\"exes\").toArray();\n        for (const auto it : exesJson) {\n            exes.insert(it.toString());\n        }\n    }\n    m_entityMap.insert(name, exes);\n    updateAllPermission();\n}\n\nvoid PrivacySecurityWorker::onPolicyChanged(const QString &policy, const QString &type)\n{\n    if (type != \"add\" && type != \"modify\")\n        return;\n    QJsonParseError jsonError;\n    QJsonDocument doc = QJsonDocument::fromJson(policy.toLatin1(), &jsonError);\n    if (doc.isNull() || jsonError.error != QJsonParseError::NoError) {\n        qCWarning(DCC_PRIVACY) << \"policy changed :json parse error:\" << jsonError.errorString();\n        return;\n    }\n    QJsonObject obj = doc.object();\n    if (obj.value(\"version\").toString() != DataVersion) {\n        qCWarning(DCC_PRIVACY) << \"policy changed :version error: current version:\" << DataVersion << \"json version:\" << obj.value(\"version\").toString();\n        return;\n    }\n    QJsonArray policies = obj.value(\"policies\").toArray();\n    for (const auto policy : policies) {\n        QJsonObject policyObj = policy.toObject();\n        QString package = policyObj.value(\"subject\").toObject().value(\"name\").toString();\n        QJsonArray objects = policyObj.value(\"objects\").toArray();\n        for (const auto object : objects) {\n            QJsonObject objectObj = object.toObject();\n            QString objectName = objectObj.value(\"object\").toString();\n            QVariantList operations = objectObj.value(\"operations\").toArray().toVariantList();\n            if (operations.contains(\"deny\")) {\n                m_blacklistByPackage[objectName].insert(package);\n            } else {\n                m_blacklistByPackage[objectName].remove(package);\n            }\n        }\n    }\n    updateAllPermission();\n}\n\nvoid PrivacySecurityWorker::setAppPermissionEnableByCheck(bool ok)\n{\n    while (!m_cacheAppPermission.isEmpty()) {\n        const auto &&it = m_cacheAppPermission.takeFirst();\n        ApplicationItem *item = it.first;\n        int premission = it.second.first;\n        bool enabled = it.second.second;\n        if (ok) {\n            QString file = m_model->premissiontoPath(premission);\n            if (file.isEmpty()) {\n                item->emitDataChanged();\n                m_model->emitAppDataChanged(item);\n                continue;\n            }\n            QStringList executablePaths = item->executablePaths();\n            if (executablePaths.isEmpty()) {\n                QString path = item->appPath();\n                executablePaths = getExecutable(item->package());\n                item->onExecutablePathsChanged(executablePaths);\n            }\n\n            // 检查是否有权限实体\n            if (!m_entityMap.contains(file)) {  \n                m_dataProxy->setEntity(getEntityJson(file, premission != ApplicationItem::CameraPermission));\n            }\n            // 检查有没有二进制或者包的实体，只有有实体之后才设置权限策略\n            if ((!item->package().isEmpty() && !m_entityMap.contains(item->package()))\n                || (item->package().isEmpty() && !m_entityMap.contains(item->appPath()))) {\n                m_dataProxy->setEntity(getAppEntityJson(item));\n            }\n            m_dataProxy->setMode(getSubjectModeJson(file, true));   // 设置黑名单模式, 设置客体模式\n            m_dataProxy->setPolicy(getObjectPolicyJson(item, premission, enabled));\n\n        } else {\n            item->emitDataChanged();\n            m_model->emitAppDataChanged(item);\n        }\n    }\n}\n\nvoid PrivacySecurityWorker::setAppPermissionEnable(int premission, bool enabled, ApplicationItem *item)\n{\n    m_cacheAppPermission.append({ item, { premission, enabled } }); // 存入缓存\n    if (!s_systemPrem.contains(premission)) { // 如果申请的权限不包括列表中的权限（比如相机以外的权限）\n        setAppPermissionEnableByCheck(true);\n        return;\n    }\n\n    if (m_checkAuthorizationing)\n        return;\n\n    connect(PolkitQt1::Authority::instance(), &PolkitQt1::Authority::checkAuthorizationFinished, this, [this](PolkitQt1::Authority::Result authenticationResult) {\n        disconnect(PolkitQt1::Authority::instance(), nullptr, this, nullptr);\n        updateCheckAuthorizationing(false);\n        setAppPermissionEnableByCheck(PolkitQt1::Authority::Result::Yes == authenticationResult);\n    });\n    updateCheckAuthorizationing(true);\n    PolkitQt1::Authority::instance()->checkAuthorization(\"com.deepin.FileArmor1\", PolkitQt1::UnixProcessSubject(getpid()), PolkitQt1::Authority::AllowUserInteraction);\n}\n\nvoid PrivacySecurityWorker::checkAuthorizationCancel()\n{\n    if (m_checkAuthorizationing) {\n        //        PolkitQt1::Authority::instance()->checkAuthorizationCancel(); // 取消后不能再拉起\n        disconnect(PolkitQt1::Authority::instance(), nullptr, this, nullptr);\n        updateCheckAuthorizationing(false);\n    }\n}\n\nQStringList PrivacySecurityWorker::getExecutable(const QString &packageName)\n{\n    if (packageName.isEmpty()) {\n        qCWarning(DCC_PRIVACY) << \"getExecutable failed: packageName is empty\";\n        return {};\n    }\n    QString listFilePath = QString(\"/var/lib/dpkg/info/%1.list\").arg(packageName);\n    if (!QFile::exists(listFilePath)) {\n        listFilePath = QString(\"/var/lib/dpkg/info/%1.list\").arg(packageName + \":\" + getDpkgArch());\n    }\n    QFile listFile(listFilePath);\n\n    if (!listFile.exists() || !listFile.open(QIODevice::ReadOnly | QIODevice::Text)) {\n        qCWarning(DCC_PRIVACY) << \"Failed to open list file:\" << listFilePath;\n        return {};\n    }\n\n    QStringList files;\n    QTextStream stream(&listFile);\n    while (!stream.atEnd()) {\n        QString filePath = stream.readLine().trimmed();\n        if (filePath.isEmpty()) {\n            continue;\n        }\n\n        QFileInfo fileInfo(filePath);\n        if (fileInfo.exists() && \n            fileInfo.isFile() && \n            fileInfo.isExecutable() && \n            !QLibrary::isLibrary(filePath)) {\n            files << filePath;\n        }\n    }\n\n    listFile.close();\n    return files;\n}\n"
  },
  {
    "path": "src/plugin-privacy/operation/privacysecurityworker.h",
    "content": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include \"privacysecuritymodel.h\"\n#include \"privacysecuritydataproxy.h\"\n#include \"applicationitem.h\"\n#include <QMutex>\n#include <QThreadPool>\n\nclass PrivacySecurityWorker : public QObject {\n    Q_OBJECT\npublic:\n    explicit PrivacySecurityWorker(PrivacySecurityModel *appModel, QObject *parent = nullptr);\n    ~PrivacySecurityWorker();\n\npublic slots:\n    void setPremissionEnabled(int appItemIndex, int premission, bool enabled);\n\n    void setAppPermissionEnable(int premission, bool enabled, ApplicationItem *item);\n    void checkAuthorizationCancel();\n\nprivate slots:\n    void updateAppPath(ApplicationItem *item);\n    ApplicationItem *addAppItem(int index);\n\n    void onModeChanged(const QString &mode, const QString &type);\n    void onEntityChanged(const QString &entity, const QString &type);\n    void onPolicyChanged(const QString &policy, const QString &type);\n\n    void setAppPermissionEnableByCheck(bool ok);\n\nsignals:\n    void checkAuthorization(bool checking);\n    void serviceExistsChanged(bool exists);\n\n    void appAdded(const QString &appId);\n    void appRemoved(const QString &id);\n\nprivate:\n    void updateAllPermission();\n    QString getAppPath(const QMap<QString, QString> &execs);\n    void updateCheckAuthorizationing(bool checking);\n    QString getEntityJson(const QString &name, bool isFile);\n    QString getAppEntityJson(const ApplicationItem *item);\n    QString getSubjectModeJson(const QString &name, bool isBlacklist);\n    QString getObjectPolicyJson(const ApplicationItem *item, int premission, bool enabled);\n\n    bool existsService() const;\n\n    void init();\n    void initApp();\n\n    QStringList getExecutable(const QString &packageName);\n    void processBatchPathUpdates();\n    QMap<QString, QString> batchGetPackageNames(const QStringList &paths);\n\nprivate:\n    PrivacySecurityModel *m_model = nullptr;\n    QAbstractItemModel *m_ddeAmModel = nullptr;\n    PrivacySecurityDataProxy *m_dataProxy = nullptr;\n    QStringList m_pathList;\n    bool m_checkAuthorizationing = false;\n    QList<QPair<ApplicationItem *, QPair<int, bool>>> m_cacheAppPermission;\n    QList<QPair<int, int>> m_cachePermission;\n    QHash<QString, QSet<QString>> m_entityMap;         // entity信息,对包是 <包名,可执行文件列表>\n    QMap<QString, QSet<QString>> m_blacklistByPackage; // 黑名单 <权限，包名列表>\n\n    QMutex m_appItemsMutex;\n    QList<ApplicationItem *> m_pendingPathUpdates;\n    QThreadPool *m_dpkgThreadPool = nullptr;\n    bool m_batchScheduled = false;\n};\n"
  },
  {
    "path": "src/plugin-privacy/operation/qrc/privacy.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n\n    </qresource>\n\n    <qresource prefix=\"/dsg\">\n        <file>icons/arrow-down.dci</file>\n        <file>icons/security_folder.dci</file>\n        <file>icons/security_camera.dci</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-privacy/qml/Camera.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nimport org.deepin.dcc.privacy 1.0\n\nDccObject {\n    DccObject {\n        name: \"cameraAppViewGroup\"\n        parentName: \"privacy/camera\"\n        weight: 100\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"title\"\n            weight: 1\n            parentName: \"privacy/camera/cameraAppViewGroup\"\n            pageType: DccObject.Editor\n            canSearch: false\n            displayName: qsTr(\"Allow below apps to access your camera:\")\n        }\n\n        DccRepeater {\n            model: dccData.appsModel\n            delegate: DccObject {\n                name: \"plugin\" + model.itemKey\n                parentName: \"privacy/camera/cameraAppViewGroup\"\n                weight: 10 + index * 10\n                icon: model.iconName\n                displayName: model.name\n                pageType: DccObject.Editor\n                canSearch: false\n                backgroundType: DccObject.Hover\n                page: D.Switch {\n                    checked: model.cameraPermission\n                    onCheckedChanged: {\n                        if (checked !== model.cameraPermission) {\n                            dccData.worker.setPremissionEnabled(index, ApplicationItem.CameraPermission, checked)\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-privacy/qml/FileAndFolder.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\nimport org.deepin.dcc.privacy 1.0\n\nDccObject {\n    DccObject {\n        name: \"filefolderViewGroup\"\n        parentName: \"privacy/filefolder\"\n        weight: 100\n        pageType: DccObject.Item\n        page: DccGroupView {}\n\n        DccObject {\n            name: \"title\"\n            weight: 1\n            parentName: \"privacy/filefolder/filefolderViewGroup\"\n            pageType: DccObject.Editor\n            canSearch: false\n            displayName: qsTr(\"Allow below apps to access these files and folders:\")\n        }\n\n        DccRepeater {\n            model: dccData.appsModel\n            delegate: DccObject {\n                id: privacyFolderItem\n                name: \"plugin\" + model.name\n                property real iconSize: 16\n                property bool isExpanded: false\n                property var dataModel: model\n                parentName: \"privacy/filefolder/filefolderViewGroup\"\n                weight: 10 + index * 10\n                pageType: DccObject.Item\n                visible: !model.noDisplay\n                canSearch: false\n                backgroundType: DccObject.ClickStyle\n\n                onParentItemChanged: {\n                    if (parentItem) {\n                        parentItem.activeFocusOnTab = true\n                    }\n                }\n\n                Connections {\n                    target: parentItem\n                    function onClicked() {\n                        privacyFolderItem.isExpanded = !privacyFolderItem.isExpanded\n                    }\n                }\n\n                DccRepeater {\n                    id: rep\n                    property var itemIndex: index\n                    model: [\n                        { name: qsTr(\"Documents\"), premission: ApplicationItem.DocumentFoldersPermission},\n                        { name: qsTr(\"Desktop\"), premission: ApplicationItem.DesktopFoldersPermission},\n                        { name: qsTr(\"Pictures\"), premission: ApplicationItem.PictureFoldersPermission},\n                        { name: qsTr(\"Videos\"), premission: ApplicationItem.VideoFoldersPermission},\n                        { name: qsTr(\"Music\"), premission: ApplicationItem.MusicFoldersPermission},\n                        { name: qsTr(\"Downloads\"), premission: ApplicationItem.DownloadFoldersPermission}\n                    ]\n\n                    property var checkedStates: [\n                        privacyFolderItem.dataModel.documentPermission,\n                        privacyFolderItem.dataModel.desktopPermission,\n                        privacyFolderItem.dataModel.picturePermission,\n                        privacyFolderItem.dataModel.videoPermission,\n                        privacyFolderItem.dataModel.musicPermission,\n                        privacyFolderItem.dataModel.downloadPermission\n                    ]\n\n                    delegate: DccObject {\n                        parentName: \"privacy/filefolder/filefolderViewGroup\"\n                        weight: privacyFolderItem.weight + 1\n                        canSearch: false\n                        visible: privacyFolderItem.isExpanded\n                        displayName: modelData.name\n                        pageType: DccObject.Item\n                        backgroundType: DccObject.Hover\n                        page: RowLayout {\n                            spacing: 2\n\n                            Item {\n                                Layout.preferredHeight: DS.Style.itemDelegate.height\n                                Layout.preferredWidth: 34\n                            }\n\n                            DccLabel {\n                                text: String('\"%1\" ').arg(modelData.name)\n                                color: D.DTK.platformTheme.activeColor\n                            }\n                            DccLabel {\n                                Layout.fillWidth: true\n                                text: qsTr(\"folder\")\n                            }\n                            D.Switch {\n                                Layout.alignment: Qt.AlignRight\n                                Layout.rightMargin: 10\n                                checked: rep.checkedStates[index]\n\n                                onCheckedChanged: {\n                                    if (checked != rep.checkedStates[index]) {\n                                        dccData.worker.setPremissionEnabled(rep.itemIndex, modelData.premission, checked)\n                                    }\n                                }\n                            }\n                        }\n                    }\n                }\n\n                page: ColumnLayout {\n                    RowLayout {\n                        Layout.preferredHeight: DS.Style.itemDelegate.height\n                        Layout.leftMargin: 10\n                        Layout.rightMargin: 10\n                        D.DciIcon {\n                            sourceSize: Qt.size(DS.Style.itemDelegate.iconSize, DS.Style.itemDelegate.iconSize)\n                            name: model.iconName\n                            theme: D.DTK.themeType\n                            palette: parent ? D.DTK.makeIconPalette(parent.palette) : D.DTK.makeIconPalette(D.DTK.palette)\n                        }\n                        DccLabel {\n                            text: model.name\n                        }\n                        Item {\n                            Layout.fillWidth: true\n                        }\n                        Control {\n                            id: control\n                            rotation: privacyFolderItem.isExpanded ? 180 : 0\n                            Behavior on rotation {\n                                NumberAnimation {\n                                    duration: 200\n                                }\n                            }\n                            contentItem: D.DciIcon {\n                                name: \"arrow_ordinary_down\"\n                                sourceSize: Qt.size(12, 12)\n                                theme: D.DTK.themeType\n                                palette: parent ? D.DTK.makeIconPalette(parent.palette) : D.DTK.makeIconPalette(control.palette)\n                            }\n                        }\n                        \n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-privacy/qml/Privacy.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    name: \"privacy\"\n    parentName: \"root\"\n    displayName: qsTr(\"Privacy and Security\")\n    description: qsTr(\"Camera, folder permissions\")\n    icon: \"privacy\"\n    weight: 80\n    visible: typeof D.SysInfo !== 'undefined' && DccApp.productType() === D.SysInfo.Uos\n}\n"
  },
  {
    "path": "src/plugin-privacy/qml/PrivacyMain.qml",
    "content": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    DccObject {\n        name: \"camera\"\n        parentName: \"privacy\"\n        displayName: qsTr(\"Camera\")\n        description: qsTr(\"Choose whether the application has access to the camera\")\n        icon: \"security_camera\"\n        weight: 10\n        Camera {}\n    }\n\n    DccObject {\n        name: \"filefolder\"\n        parentName: \"privacy\"\n        displayName: qsTr(\"Files and Folders\")\n        description: qsTr(\"Choose whether the application has access to files and folders\")\n        icon: \"security_folder\"\n        weight: 100\n        FileAndFolder {}\n    }\n}\n"
  },
  {
    "path": "src/plugin-privacy/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-sound/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\nset(Sound_Name sound)\nfile(GLOB_RECURSE Sound_SRCS\n    \"operation/*.cpp\"\n    \"operation/qrc/sound.qrc\"\n)\n\nadd_library(${Sound_Name} MODULE\n    ${Sound_SRCS}\n    operation/soundInteraction.cpp\n    operation/soundInteraction.h\n    operation/soundDeviceModel.cpp\n    operation/soundDeviceModel.h\n    operation/soundDeviceData.cpp\n    operation/soundDeviceData.h\n    operation/port.cpp\n    operation/port.h\n    operation/audioservermodel.cpp\n)\n\nif (DISABLE_SOUND_ADVANCED)\n    target_compile_definitions(${Sound_Name} PUBLIC -DDCC_DISABLE_SOUND_ADVANCED)\nendif()\n\nset(Sound_Libraries\n    ${DCC_FRAME_Library}\n    ${DTK_NS}::Gui\n    ${QT_NS}::DBus\n    ${QT_NS}::Multimedia\n)\n\ntarget_link_libraries(${Sound_Name} PRIVATE\n    ${Sound_Libraries}\n)\n\ndcc_install_plugin(NAME ${Sound_Name} TARGET ${Sound_Name})\n# QML_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/plugin-sound/qml)\n"
  },
  {
    "path": "src/plugin-sound/operation/audioport.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef AUDIOPORT_H\n#define AUDIOPORT_H\n\n#include <QDBusMetaType>\n#include <QString>\n#include <QDBusArgument>\n#include <QDebug>\n\n\nclass AudioPort\n{\npublic:\n    AudioPort() {}\n    friend QDebug operator<<(QDebug argument, const AudioPort &port) {\n        argument << port.name << port.description << port.availability;\n\n        return argument;\n    }\n\n    friend QDBusArgument &operator<<(QDBusArgument &argument, const AudioPort &port) {\n        argument.beginStructure();\n        argument << port.name << port.description << port.availability;\n        argument.endStructure();\n\n        return argument;\n    }\n\n    friend const QDBusArgument &operator>>(const QDBusArgument &argument, AudioPort &port) {\n\n        argument.beginStructure();\n        argument >> port.name >> port.description >> port.availability;\n        argument.endStructure();\n        return argument;\n    }\n\n    bool operator==(const AudioPort what) const {\n        return what.name == name && what.description == description && what.availability == availability;\n    }\n\n    bool operator!=(const AudioPort what) const {\n        return what.name != name || what.description != description || what.availability != availability;\n    }\npublic:\n    QString name;\n    QString description;\n    uchar availability; // 0 for Unknown, 1 for Not Available, 2 for Available.\n};\n\nQ_DECLARE_METATYPE(AudioPort)\n\nvoid registerAudioPortMetaType();\n\n#endif // AUDIOPORT_H\n"
  },
  {
    "path": "src/plugin-sound/operation/audioservermodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"audioservermodel.h\"\n\nAudioServerModel::AudioServerModel(QObject *parent)\n    : QAbstractListModel(parent)\n{\n}\n\nvoid AudioServerModel::addData(const AudioServerData &data)\n{\n    int row = rowCount();\n    beginInsertRows(QModelIndex(), row, row);\n    m_audioServerDatas.append(data);\n    endInsertRows();\n}\n\nvoid AudioServerModel::updateAllData()\n{\n    for (int index = 0; index < m_audioServerDatas.count(); index++) {\n        QModelIndex modelIndex = createIndex(index, 0);\n        emit dataChanged(modelIndex, modelIndex, {});\n    }\n}\n\nvoid AudioServerModel::updateCheckedService(const QString &name)\n{\n    for (int index = 0; index < m_audioServerDatas.count(); index++) {\n        AudioServerData &data = m_audioServerDatas[index];\n        data.checked = name == data.serverName;\n        QModelIndex modelIndex = createIndex(index, 0);\n        emit dataChanged(modelIndex, modelIndex, {});\n    }\n}\n\nint AudioServerModel::rowCount(const QModelIndex &parent) const\n{\n    // For list models only the root node (an invalid parent) should return the list's size. For all\n    // other (valid) parents, rowCount() should return 0 so that it does not become a tree model.\n    if (parent.isValid())\n        return 0;\n\n    return m_audioServerDatas.count();\n}\n\nQVariant AudioServerModel::data(const QModelIndex &index, int role) const\n{\n    if (!index.isValid())\n        return QVariant();\n\n    const AudioServerData &data = m_audioServerDatas.at(index.row());\n\n    switch (role) {\n    case NameRole:\n        return data.name;\n    case IsChecked:\n        return data.checked;\n    case ServerName:\n        return data.serverName;\n    default:\n        break;\n    }\n\n    return QVariant();\n}\n\nbool AudioServerModel::insertRows(int row, int count, const QModelIndex &parent)\n{\n    beginInsertRows(parent, row, row + count - 1);\n\n    endInsertRows();\n    return true;\n}\n\nbool AudioServerModel::removeRows(int row, int count, const QModelIndex &parent)\n{\n    beginRemoveRows(parent, row, row + count - 1);\n    endRemoveRows();\n    return true;\n}\n"
  },
  {
    "path": "src/plugin-sound/operation/audioservermodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef AUDIOSERVERMODEL_H\n#define AUDIOSERVERMODEL_H\n\n#include <QObject>\n#include <QAbstractListModel>\n\nstruct AudioServerData {\n    QString name;\n    QString serverName;\n    bool checked;\n};\n\nclass AudioServerModel : public QAbstractListModel\n{\n    Q_OBJECT\npublic:\n\n    enum soundEffectsRoles{\n        NameRole = Qt::UserRole + 1,\n        ServerName,\n        IsChecked\n    };\n\n    explicit AudioServerModel(QObject *parent = nullptr);\n\n    void addData(const AudioServerData &data);\n    void updateAllData();\n    void updateCheckedService(const QString &name);\n    // Basic functionality:\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n\n    // Add data:\n    bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    // Remove data:\n    bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()) override;\n\n    QHash<int, QByteArray> roleNames() const override {\n        QHash<int, QByteArray> roles;\n        roles[NameRole] = \"name\";\n        roles[ServerName] = \"serverName\";\n        roles[IsChecked] = \"isChecked\";\n        return roles;\n    }\n\nprivate:\n\n    QList<AudioServerData> m_audioServerDatas;\n};\n\n#endif // AUDIOSERVERMODEL_H\n"
  },
  {
    "path": "src/plugin-sound/operation/port.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"port.h\"\n\n\nvoid Port::setId(const QString &id)\n{\n    if (id != m_id) {\n        m_id = id;\n        Q_EMIT idChanged(id);\n    }\n}\n\nvoid Port::setName(const QString &name)\n{\n    if (name != m_name) {\n        m_name = name;\n        Q_EMIT nameChanged(name);\n    }\n}\n\nvoid Port::setCardName(const QString &cardName)\n{\n    if (cardName != m_cardName) {\n        m_cardName = cardName;\n        Q_EMIT cardNameChanged(cardName);\n    }\n}\n\nvoid Port::setIsActive(bool isActive)\n{\n    if (isActive != m_isActive) {\n        m_isActive = isActive;\n        if (m_direction == Port::In)\n            Q_EMIT isInputActiveChanged(isActive);\n        else\n            Q_EMIT isOutputActiveChanged(isActive);\n    }\n}\n\nvoid Port::setDirection(const Direction &direction)\n{\n    if (direction != m_direction) {\n        m_direction = direction;\n        Q_EMIT directionChanged(direction);\n    }\n}\n\nvoid Port::setCardId(const uint &cardId)\n{\n    if (cardId != m_cardId) {\n        m_cardId = cardId;\n        Q_EMIT cardIdChanged(cardId);\n    }\n}\n\nvoid Port::setEnabled(const bool enabled)\n{\n    if (enabled != m_enabled) {\n        m_enabled = enabled;\n        Q_EMIT currentPortEnabled(enabled);\n    }\n}\n\nvoid Port::setIsBluetoothPort(const bool isBlue)\n{\n    if (m_isBluetoothPort != isBlue) {\n        m_isBluetoothPort = isBlue;\n        Q_EMIT currentBluetoothPortChanged(isBlue);\n    }\n}"
  },
  {
    "path": "src/plugin-sound/operation/port.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef PORT_H\n#define PORT_H\n\n#include <QObject>\n#include <QMap>\n#include <QDBusObjectPath>\n\n\nclass Port : public QObject\n{\n    Q_OBJECT\npublic:\n    enum Direction {\n        Out = 1,\n        In = 2\n    };\n\n    explicit Port(QObject * parent) : QObject(parent),m_id(\"\"), m_name(\"\"), m_cardName(\"\"), m_cardId(0), m_isActive(false), m_enabled(false), m_isBluetoothPort(false), m_direction(Out){}\n    virtual ~Port() {}\n\n    inline QString id() const { return m_id; }\n    void setId(const QString &id);\n\n    inline QString name() const { return m_name; }\n    void setName(const QString &name);\n\n    inline QString cardName() const { return m_cardName; }\n    void setCardName(const QString &cardName);\n\n    inline bool isActive() const { return m_isActive; }\n    void setIsActive(bool isActive);\n\n    inline Direction direction() const { return m_direction; }\n    void setDirection(const Direction &direction);\n\n    inline uint cardId() const { return m_cardId; }\n    void setCardId(const uint &cardId);\n\n    inline bool isEnabled() const { return m_enabled; }\n    void setEnabled(const bool enabled);\n\n    inline bool isBluetoothPort() const  { return m_isBluetoothPort; }\n    void setIsBluetoothPort(const bool isBlue);\n\n    Q_SIGNALS:\n    void idChanged(QString id) const;\n    void nameChanged(QString name) const;\n    void cardNameChanged(QString name) const;\n    void isInputActiveChanged(bool active) const;\n    void isOutputActiveChanged(bool active) const;\n    void directionChanged(Direction direction) const;\n    void cardIdChanged(uint cardId) const;\n    void currentPortEnabled(bool enable) const;\n    void currentBluetoothPortChanged(bool isBlue) const;\n\nprivate:\n    QString m_id;\n    QString m_name;\n    QString m_cardName;\n    uint m_cardId;\n    bool m_isActive;\n    bool m_enabled;\n    bool m_isBluetoothPort;\n    Direction m_direction;\n};\n\n\n#endif //PORT_H\n"
  },
  {
    "path": "src/plugin-sound/operation/qrc/sound.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>actions/dcc_volume1_32px.svg</file>\n        <file>actions/dcc_volume2_32px.svg</file>\n        <file>actions/dcc_volume3_32px.svg</file>\n        <file>actions/checked.png</file>\n        <file>actions/nocheck.png</file>\n        <file>icons/play_back.dci</file>\n        <file>icons/sound_off.dci</file>\n        <file>icons/small_volume.dci</file>\n        <file>icons/big_volume.dci</file>\n        <file>icons/dcc_volume2.dci</file>\n        <file>icons/dcc_volume3.dci</file>\n        <file>icons/dcc_volume1.dci</file>\n        <file>icons/dark/volume_sound_wave_ani.webp</file>\n        <file>icons/light/volume_sound_wave_ani.webp</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-sound/operation/soundDeviceData.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"soundDeviceData.h\"\n\nSoundDeviceData::SoundDeviceData()\n    : m_ischecked(false)\n    , m_name(\"\")\n{\n\n}\n\nbool SoundDeviceData::ischecked() const\n{\n    return m_ischecked;\n}\n\nvoid SoundDeviceData::setIschecked(bool newIschecked)\n{\n    m_ischecked = newIschecked;\n}\n\nQString SoundDeviceData::name() const\n{\n    return m_name;\n}\n\nvoid SoundDeviceData::setName(const QString &newName)\n{\n    m_name = newName;\n}\n\nQString SoundDeviceData::getPortId() const\n{\n    return portId;\n}\n\nvoid SoundDeviceData::setPortId(const QString &newPortId)\n{\n    portId = newPortId;\n}\n\nuint SoundDeviceData::getCardId() const\n{\n    return cardId;\n}\n\nvoid SoundDeviceData::setCardId(uint newCardId)\n{\n    cardId = newCardId;\n}\n"
  },
  {
    "path": "src/plugin-sound/operation/soundDeviceData.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#ifndef SOUNDDEVICEDATA_H\n#define SOUNDDEVICEDATA_H\n\n#include <QString>\n#include \"port.h\"\n\nclass SoundDeviceData {\n\n\npublic:\n    explicit SoundDeviceData();\n\n    bool ischecked() const;\n    void setIschecked(bool newIschecked);\n\n    QString name() const;\n    void setName(const QString &newName);\n\n    QString getPortId() const;\n    void setPortId(const QString &newPortId);\n\n    uint getCardId() const;\n    void setCardId(uint newCardId);\n\n    Port *port() const;\n    void setPort(Port *newPort);\n\nprivate:\n    bool m_ischecked;\n    QString m_name;\n\n    QString portId;\n    uint cardId;\n};\n\n\n\n#endif //SOUNDDEVICEDATA_H\n"
  },
  {
    "path": "src/plugin-sound/operation/soundDeviceModel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"soundDeviceModel.h\"\n\nSoundDeviceModel::SoundDeviceModel(QObject *parent)\n    : QAbstractListModel{ parent }\n{\n}\n\nvoid SoundDeviceModel::clearData()\n{\n    if (m_ports.count() < 1) {\n        return;\n    }\n\n    m_ports.clear();\n}\n\nvoid SoundDeviceModel::addData(Port *port)\n{\n    if (m_ports.contains(port)) {\n        return;\n    }\n    beginInsertRows(QModelIndex(), rowCount(), rowCount());\n    m_ports.append(port);\n    endInsertRows();\n}\n\nvoid SoundDeviceModel::removeData(Port *port)\n{\n    if (!m_ports.contains(port)) {\n        return;\n    }\n    int index = m_ports.indexOf(port);\n    beginRemoveRows(QModelIndex(), index, index);\n    m_ports.remove(index);\n    endRemoveRows();\n\n}\n\n\nint SoundDeviceModel::getRowCount()\n{\n    return m_ports.count();\n}\n\nint SoundDeviceModel::getCurrentIndex() const\n{\n    for (int index = 0; index< m_ports.count(); index++) {\n        if (m_ports.at(index)->isActive() && m_ports.at(index)->isEnabled()) {\n            return index;\n        }\n    }\n\n    for (int index = 0; index< m_ports.count(); index++) {\n        if (m_ports.at(index)->isEnabled()) {\n            return index;\n        }\n    }\n\n    return 0;\n}\n\nPort *SoundDeviceModel::getSoundDeviceData(int index)\n{\n    if (m_ports.count() < index || index < 0) {\n        return nullptr;\n    }\n\n    return m_ports.at(index);\n}\n\nvoid SoundDeviceModel::updateSoundDeviceData(Port *port)\n{\n    for (int index = 0; index < m_ports.count(); index++) {\n        if (m_ports[index]->id() == port->id()) {\n            QModelIndex modelIndex = createIndex(index, 0);\n            emit dataChanged(modelIndex, modelIndex, {});\n            break;\n        }\n    }\n}\n\nvoid SoundDeviceModel::updateAllSoundDeviceData()\n{\n    for (int index = 0; index < m_ports.count(); index++) {\n        QModelIndex modelIndex = createIndex(index, 0);\n        emit dataChanged(modelIndex, modelIndex, {});\n    }\n}\n\nint SoundDeviceModel::rowCount(const QModelIndex &parent) const\n{\n    Q_UNUSED(parent);\n    return m_ports.count();\n}\n\nQVariant SoundDeviceModel::data(const QModelIndex &index, int role) const\n{\n    if (index.row() < 0 || index.row() >= m_ports.count())\n        return QVariant();\n\n    const Port* port = m_ports[index.row()];\n    if (role == NameRole)\n        return port->name() + \"(\" + port->cardName() + \")\";\n    else if (role == IsEnabled)\n        return port->isEnabled();\n    else if (role == IsActive)\n        return port->isActive();\n\n    return QVariant();\n}\n"
  },
  {
    "path": "src/plugin-sound/operation/soundDeviceModel.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n\n#include <QObject>\n#ifndef SOUNDDEVICEMODEL_H\n#define SOUNDDEVICEMODEL_H\n\n#include <QAbstractListModel>\n\n#include \"soundDeviceData.h\"\n//#include \"soundmodel.h\"\n\n#include \"port.h\"\n\nclass SoundDeviceModel: public QAbstractListModel {\n\n    Q_OBJECT\npublic:\n    enum SoundEffectsRoles{\n        NameRole = Qt::UserRole + 1,\n        IsEnabled,\n        IsActive,\n    };\n    Q_ENUM(SoundEffectsRoles)\n\n    explicit SoundDeviceModel(QObject *parent = nullptr);\n\n    void clearData();\n    void addData(Port* port);\n    void removeData(Port* port);\n    int getRowCount();\n\n    int getCurrentIndex() const;\n\n    Port* getSoundDeviceData(int index);\n    void updateSoundDeviceData(Port* port);\n    void updateAllSoundDeviceData();\n\nprotected:\n\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n\n    QHash<int, QByteArray> roleNames() const override {\n        QHash<int, QByteArray> roles;\n        roles[NameRole] = \"name\";\n        roles[IsEnabled] = \"isEnabled\";\n        roles[IsActive] = \"isActive\";\n        return roles;\n    }\n\n\nprivate:\n    QList<Port*> m_ports;\n};\n\n\n\n#endif //SOUNDDEVICEMODEL_H\n"
  },
  {
    "path": "src/plugin-sound/operation/soundEffectsData.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"soundEffectsData.h\"\n\nSoundEffectsData::SoundEffectsData()\n    : m_name(\"\")\n    , m_dispalyText(\"\")\n    , m_aniIconPath(\"\")\n{\n\n}\n\nQString SoundEffectsData::dispalyText() const\n{\n    return m_dispalyText;\n}\n\nvoid SoundEffectsData::setDispalyText(const QString &newDispalyText)\n{\n    m_dispalyText = newDispalyText;\n}\n\nQString SoundEffectsData::name() const\n{\n    return m_name;\n}\n\nvoid SoundEffectsData::setName(const QString &newName)\n{\n    m_name = newName;\n}\n\nbool SoundEffectsData::checked() const\n{\n    return m_checked;\n}\n\nvoid SoundEffectsData::setChecked(bool newChecked)\n{\n    m_checked = newChecked;\n}\n\nQString SoundEffectsData::path() const\n{\n    return m_path;\n}\n\nvoid SoundEffectsData::setPath(const QString &newPath)\n{\n    m_path = newPath;\n}\n\nDDesktopServices::SystemSoundEffect SoundEffectsData::systemSoundEffect() const\n{\n    return m_systemSoundEffect;\n}\n\nvoid SoundEffectsData::setSystemSoundEffect(DDesktopServices::SystemSoundEffect newSystemSoundEffect)\n{\n    m_systemSoundEffect = newSystemSoundEffect;\n}\n\nQString SoundEffectsData::aniIconPath() const\n{\n    return m_aniIconPath;\n}\n\nvoid SoundEffectsData::setAniIconPath(const QString &newAniIconPath)\n{\n    m_aniIconPath = newAniIconPath;\n}\n"
  },
  {
    "path": "src/plugin-sound/operation/soundEffectsData.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef SOUNDEFFECTSDATA_H\n#define SOUNDEFFECTSDATA_H\n\n#include <QString>\n#include <DDesktopServices>\n\nDGUI_USE_NAMESPACE\n\nclass SoundEffectsData\n{\npublic:\n    explicit SoundEffectsData();\n\n    QString dispalyText() const;\n    void setDispalyText(const QString &newDispalyText);\n\n    QString name() const;\n    void setName(const QString &newName);\n\n    bool checked() const;\n    void setChecked(bool newChecked);\n\n    QString path() const;\n    void setPath(const QString &newPath);\n\n    DDesktopServices::SystemSoundEffect systemSoundEffect() const;\n    void setSystemSoundEffect(DDesktopServices::SystemSoundEffect newSystemSoundEffect);\n\n    QString aniIconPath() const;\n    void setAniIconPath(const QString &newAniIconPath);\n\nsignals:\n\n\nprivate:\n    QString m_name;\n    QString m_dispalyText;\n    QString m_path;\n    DDesktopServices::SystemSoundEffect m_systemSoundEffect;\n    bool m_checked;\n    QString m_aniIconPath;\n};\n\n#endif // SOUNDEFFECTSDATA_H\n"
  },
  {
    "path": "src/plugin-sound/operation/soundInteraction.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"soundInteraction.h\"\n\n#include \"dccfactory.h\"\n\n#include <QDebug>\n\nusing namespace  dccV25;\n\nsoundInteraction::soundInteraction(QObject *parent)\n    : QObject(parent)\n    , m_soundModel(new SoundModel(this))\n    , m_soundWork(new SoundWorker(m_soundModel,this))\n{\n    m_soundWork->activate();\n\n    qmlRegisterType<SoundWorker>(\"dcc\", 1, 0, \"SoundWorker\");\n    qmlRegisterType<SoundModel>(\"dcc\", 1, 0, \"SoundModel\");\n}\n\nsoundInteraction::~soundInteraction()\n{\n\n}\n\nSoundModel *soundInteraction::model() const\n{\n    return m_soundModel;\n}\n\nvoid soundInteraction::setSoundModel(SoundModel *newSoundModel)\n{\n    m_soundModel = newSoundModel;\n}\n\nSoundWorker *soundInteraction::worker() const\n{\n    return m_soundWork;\n}\n\nvoid soundInteraction::setSoundWork(SoundWorker *newSoundWork)\n{\n    m_soundWork = newSoundWork;\n}\n\nvoid soundInteraction::setSinkVolume(double value)\n{\n    m_soundWork->setSinkVolume(value);\n}\n\nDCC_FACTORY_CLASS(soundInteraction)\n\n#include \"soundInteraction.moc\"\n"
  },
  {
    "path": "src/plugin-sound/operation/soundInteraction.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef SOUNDINTERACTION_H\n#define SOUNDINTERACTION_H\n\n#include \"soundmodel.h\"\n#include \"soundworker.h\"\n\n// using namespace  dccV25;\n\nclass soundInteraction : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit soundInteraction(QObject *parent);\n\n    ~soundInteraction();\n\n    //    Q_INVOKABLE SoundModel getUiModel();\n    //    Q_INVOKABLE QObject getUiWork();\n    // QObject *create(QObject * = nullptr) override { return this; }\n\n    Q_INVOKABLE SoundModel *model() const;\n    void setSoundModel(SoundModel *newSoundModel);\n\n    Q_INVOKABLE SoundWorker *worker() const;\n    void setSoundWork(SoundWorker *newSoundWork);\n\n    Q_INVOKABLE void setSinkVolume(double value);\n\nprivate:\n    SoundModel *m_soundModel;\n    SoundWorker *m_soundWork;\n};\n\n#endif // SOUNDINTERACTION_H\n"
  },
  {
    "path": "src/plugin-sound/operation/sounddbusproxy.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"sounddbusproxy.h\"\n// #include \"widgets/dccdbusinterface.h\"\n\n#include \"audioport.h\"\n#include <QDBusArgument>\n#include <QDBusInterface>\n#include <QDBusPendingReply>\n#include <QDBusMetaType>\n#include <QDBusReply>\n\nconst static QString AudioService = QStringLiteral(\"org.deepin.dde.Audio1\");\nconst static QString AudioPath = QStringLiteral(\"/org/deepin/dde/Audio1\");\nconst static QString AudioInterface = QStringLiteral(\"org.deepin.dde.Audio1\");\n\nconst static QString SoundEffectService = QStringLiteral(\"org.deepin.dde.SoundEffect1\");\nconst static QString SoundEffectPath = QStringLiteral(\"/org/deepin/dde/SoundEffect1\");\nconst static QString SoundEffectInterface = QStringLiteral(\"org.deepin.dde.SoundEffect1\");\n\nconst static QString PowerService = QStringLiteral(\"org.deepin.dde.Power1\");\nconst static QString PowerPath = QStringLiteral(\"/org/deepin/dde/Power1\");\nconst static QString PowerInterface = QStringLiteral(\"org.deepin.dde.Power1\");\n\nconst static QString SinkInterface = QStringLiteral(\"org.deepin.dde.Audio1.Sink\");\nconst static QString SourceInterface = QStringLiteral(\"org.deepin.dde.Audio1.Source\");\nconst static QString MeterInterface = QStringLiteral(\"org.deepin.dde.Audio1.Meter\");\n\n// using namespace DCC_NAMESPACE;\nSoundDBusProxy::SoundDBusProxy(QObject *parent)\n    : QObject(parent)\n    , m_audioInter(new DDBusInterface(AudioService, AudioPath, AudioInterface, QDBusConnection::sessionBus(), this))\n    , m_soundEffectInter(new DDBusInterface(SoundEffectService, SoundEffectPath, SoundEffectInterface, QDBusConnection::sessionBus(), this))\n    , m_powerInter(new DDBusInterface(PowerService, PowerPath, PowerInterface, QDBusConnection::systemBus(), this))\n    , m_defaultSink(nullptr)\n    , m_defaultSource(nullptr)\n    , m_sourceMeter(nullptr)\n{\n    qRegisterMetaType<AudioPort>(\"AudioPort\");\n    qDBusRegisterMetaType<AudioPort>();\n\n    qRegisterMetaType<SoundEffectQuestions>(\"SoundEffectQuestions\");\n    qDBusRegisterMetaType<SoundEffectQuestions>();\n}\n\nQDBusObjectPath SoundDBusProxy::defaultSink()\n{\n    return qvariant_cast<QDBusObjectPath>(m_audioInter->property(\"DefaultSink\"));\n}\n\nQDBusObjectPath SoundDBusProxy::defaultSource()\n{\n    return qvariant_cast<QDBusObjectPath>(m_audioInter->property(\"DefaultSource\"));\n}\n\nQString SoundDBusProxy::cardsWithoutUnavailable()\n{\n    return qvariant_cast<QString>(m_audioInter->property(\"CardsWithoutUnavailable\"));\n}\n\nQStringList SoundDBusProxy::bluetoothAudioModeOpts()\n{\n    return qvariant_cast<QStringList>(m_audioInter->property(\"BluetoothAudioModeOpts\"));\n}\n\nQString SoundDBusProxy::bluetoothAudioMode()\n{\n    return qvariant_cast<QString>(m_audioInter->property(\"BluetoothAudioMode\"));\n}\n\ndouble SoundDBusProxy::maxUIVolume()\n{\n    return qvariant_cast<double>(m_audioInter->property(\"MaxUIVolume\"));\n}\n\nbool SoundDBusProxy::increaseVolume()\n{\n    return qvariant_cast<bool>(m_audioInter->property(\"IncreaseVolume\"));\n}\n\nvoid SoundDBusProxy::setIncreaseVolume(bool value)\n{\n    m_audioInter->setProperty(\"IncreaseVolume\", QVariant::fromValue(value));\n}\n\nbool SoundDBusProxy::reduceNoise()\n{\n    return qvariant_cast<bool>(m_audioInter->property(\"ReduceNoise\"));\n}\n\nvoid SoundDBusProxy::setReduceNoise(bool value)\n{\n    m_audioInter->setProperty(\"ReduceNoise\", QVariant::fromValue(value));\n}\n\nbool SoundDBusProxy::pausePlayer()\n{\n    return qvariant_cast<bool>(m_audioInter->property(\"PausePlayer\"));\n}\n\nvoid SoundDBusProxy::setPausePlayer(bool value)\n{\n    m_audioInter->setProperty(\"PausePlayer\", QVariant::fromValue(value));\n}\n\nQString SoundDBusProxy::audioServer()\n{\n    return qvariant_cast<QString>(m_audioInter->property(\"CurrentAudioServer\"));\n}\n\nvoid SoundDBusProxy::SetAudioServer(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    m_audioInter->asyncCallWithArgumentList(QStringLiteral(\"SetCurrentAudioServer\"), argumentList);\n}\n\nbool SoundDBusProxy::audioServerState()\n{\n    return qvariant_cast<bool>(m_audioInter->property(\"AudioServerState\"));\n}\n\nvoid SoundDBusProxy::SetPortEnabled(uint in0, const QString &in1, bool in2)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1) << QVariant::fromValue(in2);\n    m_audioInter->asyncCallWithArgumentList(QStringLiteral(\"SetPortEnabled\"), argumentList);\n}\n\nvoid SoundDBusProxy::SetPort(uint in0, const QString &in1, int in2)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1) << QVariant::fromValue(in2);\n    m_audioInter->asyncCallWithArgumentList(QStringLiteral(\"SetPort\"), argumentList);\n}\n\nvoid SoundDBusProxy::SetBluetoothAudioMode(const QString &in0)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0);\n    m_audioInter->asyncCallWithArgumentList(QStringLiteral(\"SetBluetoothAudioMode\"), argumentList);\n}\n\nbool SoundDBusProxy::enabled()\n{\n    return qvariant_cast<bool>(m_soundEffectInter->property(\"Enabled\"));\n}\n\nvoid SoundDBusProxy::setEnabled(bool value)\n{\n    m_soundEffectInter->setProperty(\"Enabled\", QVariant::fromValue(value));\n}\n\nvoid SoundDBusProxy::GetSoundEnabledMap()\n{\n    QList<QVariant> argumentList;\n    m_soundEffectInter->callWithCallback(QStringLiteral(\"GetSoundEnabledMap\"), argumentList, this, SIGNAL(pendingCallWatcherFinished(QMap<QString, bool>)));\n}\n\nvoid SoundDBusProxy::EnableSound(const QString &name, bool enabled, QObject *receiver, const char *member, const char *errorSlot)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(name) << QVariant::fromValue(enabled);\n    m_soundEffectInter->callWithCallback(QStringLiteral(\"EnableSound\"), argumentList, receiver, member, errorSlot);\n}\n\nQString SoundDBusProxy::GetSoundFile(const QString &name)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(name);\n    return QDBusPendingReply<QString>(m_soundEffectInter->asyncCallWithArgumentList(QStringLiteral(\"GetSoundFile\"), argumentList));\n}\n\nbool SoundDBusProxy::hasBattery()\n{\n    return qvariant_cast<bool>(m_powerInter->property(\"HasBattery\"));\n}\n\nvoid SoundDBusProxy::setSinkDevicePath(const QString &path)\n{\n    if (m_defaultSink) {\n        m_defaultSink->deleteLater();\n    }\n    m_defaultSink = new DDBusInterface(AudioService, path, SinkInterface, QDBusConnection::sessionBus(), this);\n    m_defaultSink->setSuffix(\"Sink\");\n}\n\nbool SoundDBusProxy::muteSink()\n{\n    return qvariant_cast<bool>(m_defaultSink->property(\"MuteSink\"));\n}\n\nvoid SoundDBusProxy::SetMuteSink(bool in0)\n{\n    if (m_defaultSink) {\n        QList<QVariant> argumentList;\n        argumentList << QVariant::fromValue(in0);\n        m_defaultSink->asyncCallWithArgumentList(QStringLiteral(\"SetMute\"), argumentList);\n    }\n}\n\ndouble SoundDBusProxy::balanceSink()\n{\n    return qvariant_cast<double>(m_defaultSink->property(\"BalanceSink\"));\n}\n\ndouble SoundDBusProxy::baseVolumeSink()\n{\n     return qvariant_cast<double>(m_defaultSink->property(\"BaseVolumeSink\"));\n}\n\nvoid SoundDBusProxy::SetBalanceSink(double in0, bool in1)\n{\n    if (m_defaultSink) {\n        QList<QVariant> argumentList;\n        argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n        m_defaultSink->asyncCallWithArgumentList(QStringLiteral(\"SetBalance\"), argumentList);\n    }\n}\n\ndouble SoundDBusProxy::volumeSink()\n{\n    return qvariant_cast<double>(m_defaultSink->property(\"VolumeSink\"));\n}\n\nvoid SoundDBusProxy::SetVolumeSink(double in0, bool in1)\n{\n    if (m_defaultSink) {\n        QList<QVariant> argumentList;\n        // Round in0 to 2 decimal places to avoid floating point precision issues\n        double roundedIn0 = qRound(in0 * 100.0) / 100.0;\n        argumentList << QVariant::fromValue(roundedIn0) << QVariant::fromValue(in1);\n        m_defaultSink->asyncCallWithArgumentList(QStringLiteral(\"SetVolume\"), argumentList);\n    }\n}\n\nAudioPort SoundDBusProxy::activePortSink()\n{\n    return qvariant_cast<AudioPort>(m_defaultSink->property(\"ActivePortSink\"));\n}\n\nuint SoundDBusProxy::cardSink()\n{\n    return qvariant_cast<uint>(m_defaultSink->property(\"CardSink\"));\n}\n\nvoid SoundDBusProxy::setSourceDevicePath(const QString &path)\n{\n    if (m_defaultSource) {\n        m_defaultSource->deleteLater();\n    }\n\n    m_defaultSource = new DDBusInterface(AudioService, path, SourceInterface, QDBusConnection::sessionBus(), this);\n    m_defaultSource->setSuffix(\"Source\");\n}\n\nvoid SoundDBusProxy::SetSourceMute(bool in0)\n{\n    if (m_defaultSource) {\n        QList<QVariant> argumentList;\n        argumentList << QVariant::fromValue(in0);\n        m_defaultSource->asyncCallWithArgumentList(QStringLiteral(\"SetMute\"), argumentList);\n    }\n}\n\ndouble SoundDBusProxy::volumeSource()\n{\n    return qvariant_cast<double>(m_defaultSource->property(\"VolumeSource\"));\n}\n\nAudioPort SoundDBusProxy::activePortSource()\n{\n    return qvariant_cast<AudioPort>(m_defaultSource->property(\"ActivePortSource\"));\n}\n\nvoid SoundDBusProxy::SetSourceVolume(double in0, bool in1)\n{\n    if (m_defaultSource) {\n        QList<QVariant> argumentList;\n        argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n        m_defaultSource->asyncCallWithArgumentList(QStringLiteral(\"SetVolume\"), argumentList);\n    }\n}\n\nuint SoundDBusProxy::cardSource()\n{\n    return qvariant_cast<uint>(m_defaultSource->property(\"CardSource\"));\n}\n\nQDBusObjectPath SoundDBusProxy::GetMeter()\n{\n    QList<QVariant> argumentList;\n    return QDBusPendingReply<QDBusObjectPath>(m_defaultSource->asyncCallWithArgumentList(QStringLiteral(\"GetMeter\"), argumentList));\n}\n\nvoid SoundDBusProxy::setMeterDevicePath(const QString &path)\n{\n    if (m_sourceMeter) {\n        m_sourceMeter->deleteLater();\n    }\n    m_sourceMeter = new DDBusInterface(AudioService, path, MeterInterface, QDBusConnection::sessionBus(), this);\n    m_sourceMeter->setSuffix(\"Meter\");\n}\n\ndouble SoundDBusProxy::volumeMeter()\n{\n    return qvariant_cast<double>(m_sourceMeter->property(\"VolumeMeter\"));\n}\n\nvoid SoundDBusProxy::Tick()\n{\n    if (m_sourceMeter) {\n        QList<QVariant> argumentList;\n        m_sourceMeter->asyncCallWithArgumentList(QStringLiteral(\"Tick\"), argumentList);\n    }\n}\n\nQList<QDBusObjectPath> SoundDBusProxy::sinkInputs()\n{\n    return qvariant_cast<QList<QDBusObjectPath>>(m_audioInter->property(\"SinkInputs\"));\n}\n\nQList<QDBusObjectPath> SoundDBusProxy::sinks()\n{\n    return qvariant_cast<QList<QDBusObjectPath>>(m_audioInter->property(\"Sinks\"));\n}\n\nQList<QDBusObjectPath> SoundDBusProxy::sources()\n{\n    return qvariant_cast<QList<QDBusObjectPath>>(m_audioInter->property(\"Sources\"));\n}\n\nbool SoundDBusProxy::muteSource()\n{\n    return qvariant_cast<bool>(m_defaultSource->property(\"MuteSource\"));\n}\n\nbool SoundDBusProxy::audioMono()\n{\n    return qvariant_cast<bool>(m_audioInter->property(\"Mono\"));\n}\n\nvoid SoundDBusProxy::setAudioMono(bool audioMono)\n{\n    double oldBalance = balanceSink();\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(audioMono);\n    QDBusPendingCall call = m_audioInter->asyncCallWithArgumentList(QStringLiteral(\"SetMono\"), argumentList);\n\n    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);\n    connect(watcher, &QDBusPendingCallWatcher::finished, this, [this, call, watcher, oldBalance] {\n        if (call.isError()) {\n            qWarning() << \" set Audio Mono error: \" << call.error().message();\n        }\n        Q_EMIT AudioMonoChanged(this->audioMono());\n        watcher->deleteLater();\n        SetBalanceSink(oldBalance,false);\n    });\n}\n"
  },
  {
    "path": "src/plugin-sound/operation/sounddbusproxy.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef SOUNDDBUSPROXY_H\n#define SOUNDDBUSPROXY_H\n\n#include \"audioport.h\"\n\n#include <DDBusInterface>\n\n#include <QDBusObjectPath>\n#include <QObject>\n\ntypedef QMap<QString, bool> SoundEffectQuestions;\n\nusing Dtk::Core::DDBusInterface;\n\nclass QDBusMessage;\nclass SoundDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit SoundDBusProxy(QObject *parent = nullptr);\n\n    // Audio\n    bool isServiceRegistered();\n\n    void SetPortEnabled(uint in0, const QString &in1, bool in2);\n\n    void SetPort(uint in0, const QString &in1, int in2);\n\n    void SetBluetoothAudioMode(const QString &in0);\n    // SoundEffect\n    void GetSoundEnabledMap();\n    void EnableSound(const QString &name, bool enabled, QObject *receiver, const char *member, const char *errorSlot);\n    QString GetSoundFile(const QString &name);\n\n    // Power\n\n    // Sink\n    void setSinkDevicePath(const QString &path);\n\n    void SetMuteSink(bool in0);\n\n    void SetBalanceSink(double in0, bool in1);\n\n    void SetVolumeSink(double in0, bool in1);\n\n    // Source\n    void setSourceDevicePath(const QString &path);\n\n    void SetSourceMute(bool in0);\n\n    void SetSourceVolume(double in0, bool in1);\n\n    QDBusObjectPath GetMeter();\n\n    // SourceMeter\n    void setMeterDevicePath(const QString &path);\n    void Tick();\n\n    // Audio\n    Q_PROPERTY(double MaxUIVolume READ maxUIVolume NOTIFY MaxUIVolumeChanged)\n    double maxUIVolume();\n    Q_PROPERTY(bool IncreaseVolume READ increaseVolume WRITE setIncreaseVolume NOTIFY IncreaseVolumeChanged)\n    bool increaseVolume();\n    void setIncreaseVolume(bool value);\n\n    Q_PROPERTY(bool ReduceNoise READ reduceNoise WRITE setReduceNoise NOTIFY ReduceNoiseChanged)\n    bool reduceNoise();\n    void setReduceNoise(bool value);\n\n    Q_PROPERTY(bool PausePlayer READ pausePlayer WRITE setPausePlayer NOTIFY PausePlayerChanged)\n    bool pausePlayer();\n    void setPausePlayer(bool value);\n\n    Q_PROPERTY(QString CurrentAudioServer READ audioServer WRITE SetAudioServer NOTIFY CurrentAudioServerChanged)\n    QString audioServer();\n    void SetAudioServer(const QString &in0);\n\n    // 音频切换的状态\n    Q_PROPERTY(bool AudioServerState READ audioServerState NOTIFY AudioServerStateChanged)\n    bool audioServerState();\n\n    Q_PROPERTY(QString BluetoothAudioMode READ bluetoothAudioMode NOTIFY BluetoothAudioModeChanged)\n    QString bluetoothAudioMode();\n    Q_PROPERTY(QStringList BluetoothAudioModeOpts READ bluetoothAudioModeOpts NOTIFY BluetoothAudioModeOptsChanged)\n    QStringList bluetoothAudioModeOpts();\n    Q_PROPERTY(QString CardsWithoutUnavailable READ cardsWithoutUnavailable NOTIFY CardsWithoutUnavailableChanged)\n    QString cardsWithoutUnavailable();\n    Q_PROPERTY(QDBusObjectPath DefaultSource READ defaultSource NOTIFY DefaultSourceChanged)\n    QDBusObjectPath defaultSource();\n    Q_PROPERTY(QDBusObjectPath DefaultSink READ defaultSink NOTIFY DefaultSinkChanged)\n    QDBusObjectPath defaultSink();\n    Q_PROPERTY(QList<QDBusObjectPath> SinkInputs READ sinkInputs NOTIFY SinkInputsChanged)\n    QList<QDBusObjectPath> sinkInputs();\n    Q_PROPERTY(QList<QDBusObjectPath> Sinks READ sinks NOTIFY SinksChanged)\n    QList<QDBusObjectPath> sinks();\n    Q_PROPERTY(QList<QDBusObjectPath> Sources READ sources NOTIFY SourcesChanged)\n    QList<QDBusObjectPath> sources();\n    // Sink\n    Q_PROPERTY(bool MuteSink READ muteSink NOTIFY MuteSinkChanged)\n    bool muteSink();\n    Q_PROPERTY(double BalanceSink READ balanceSink NOTIFY BalanceSinkChanged)\n    double balanceSink();\n    Q_PROPERTY(double BaseVolumeSink READ baseVolumeSink NOTIFY BaseVolumeSinkChanged)\n    double baseVolumeSink();\n    Q_PROPERTY(uint CardSink READ cardSink NOTIFY CardSinkChanged)\n    uint cardSink();\n    Q_PROPERTY(double VolumeSink READ volumeSink NOTIFY VolumeSinkChanged)\n    double volumeSink();\n    Q_PROPERTY(AudioPort ActivePortSink READ activePortSink NOTIFY ActivePortSinkChanged)\n    AudioPort activePortSink();\n    // Source\n    Q_PROPERTY(bool MuteSource READ muteSource NOTIFY MuteSourceChanged)\n    bool muteSource();\n    Q_PROPERTY(uint CardSource READ cardSource NOTIFY CardSourceChanged)\n    uint cardSource();\n    Q_PROPERTY(double VolumeSource READ volumeSource NOTIFY VolumeSourceChanged)\n    double volumeSource();\n    Q_PROPERTY(AudioPort ActivePortSource READ activePortSource NOTIFY ActivePortSourceChanged)\n    AudioPort activePortSource();\n    // Power\n    Q_PROPERTY(bool HasBattery READ hasBattery NOTIFY HasBatteryChanged)\n    bool hasBattery();\n    // SoundEffect\n    Q_PROPERTY(bool Enabled READ enabled WRITE setEnabled NOTIFY EnabledChanged)\n    bool enabled();\n    void setEnabled(bool value);\n    // Audio.Meter\n    Q_PROPERTY(double VolumeMeter READ volumeMeter NOTIFY VolumeMeterChanged)\n    double volumeMeter();\n\n    // Audio.Mono\n    Q_PROPERTY(bool AudioMono READ audioMono WRITE setAudioMono NOTIFY AudioMonoChanged)\n    bool audioMono();\n    void setAudioMono(bool audioMono);\n\n\nQ_SIGNALS:\n    // Audio SIGNALS\n    void PortEnabledChanged(uint in0, const QString &in1, bool in2);\n    void BluetoothAudioModeChanged(const QString &value) const;\n    void BluetoothAudioModeOptsChanged(const QStringList &value) const;\n    void CardsChanged(const QString &value) const;\n    void CardsWithoutUnavailableChanged(const QString &value) const;\n    void DefaultSinkChanged(const QDBusObjectPath &value) const;\n    void DefaultSourceChanged(const QDBusObjectPath &value) const;\n    void IncreaseVolumeChanged(bool value) const;\n    void MaxUIVolumeChanged(double value) const;\n    void ReduceNoiseChanged(bool value) const;\n    void PausePlayerChanged(bool value) const;\n    void SinkInputsChanged(const QList<QDBusObjectPath> &value) const;\n    void SinksChanged(const QList<QDBusObjectPath> &value) const;\n    void SourcesChanged(const QList<QDBusObjectPath> &value) const;\n    void CurrentAudioServerChanged(const QString &value) const;\n    void AudioServerStateChanged(const bool state) const;\n\n    // SoundEffect SIGNALS\n    void EnabledChanged(bool value) const;\n    void pendingCallWatcherFinished(QMap<QString, bool> map);\n\n    // Power SIGNALS\n    void HasBatteryChanged(bool value) const;\n\n    // Sink SIGNALS\n    void MuteSinkChanged(bool value) const;\n    void BalanceSinkChanged(double value) const;\n    void BaseVolumeSinkChanged(double value) const;\n    void CardSinkChanged(uint value) const;\n    void VolumeSinkChanged(double value) const;\n    void ActivePortSinkChanged(AudioPort value) const;\n\n    // Source SIGNALS\n    void MuteSourceChanged(bool value) const;\n    void VolumeSourceChanged(double value) const;\n    void ActivePortSourceChanged(AudioPort value) const;\n    void CardSourceChanged(uint value) const;\n\n    // Meter SIGNALS\n    void VolumeMeterChanged(double value) const;\n\n    void AudioMonoChanged(bool value) const;\n\nprivate:\n    DDBusInterface *m_audioInter;\n    DDBusInterface *m_soundEffectInter;\n    DDBusInterface *m_powerInter;\n\n    DDBusInterface *m_defaultSink;\n    DDBusInterface *m_defaultSource;\n    DDBusInterface *m_sourceMeter;\n};\n\n#endif // SOUNDDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-sound/operation/soundeffectsmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"soundeffectsmodel.h\"\n\nSoundEffectsModel::SoundEffectsModel(QObject *parent)\n    : QAbstractListModel{parent}\n{\n\n}\n\nSoundEffectsModel::~SoundEffectsModel()\n{\n    clearData();\n}\n\nvoid SoundEffectsModel::addData(SoundEffectsData* data)\n{\n    m_soundEffectsData.append(data);\n}\n\nvoid SoundEffectsModel::removeData(SoundEffectsData *data)\n{\n    m_soundEffectsData.removeAll(data);\n    delete data;\n    data = NULL;\n}\n\nvoid SoundEffectsModel::clearData()\n{\n    for (SoundEffectsData* soundEffectsData : m_soundEffectsData) {\n        delete soundEffectsData;\n    }\n    m_soundEffectsData.clear();\n}\n\nSoundEffectsData* SoundEffectsModel::getSystemSoundEffect(int index)\n{\n    if (m_soundEffectsData.count() < index || index < 0) {\n        return nullptr;\n    }\n\n    return m_soundEffectsData.at(index);\n}\n\nint SoundEffectsModel::getRowCount()\n{\n    return m_soundEffectsData.count();\n}\n\nvoid SoundEffectsModel::updateSoundEffectsData(int index, bool enable)\n{\n    if (index < 0 || index >= m_soundEffectsData.size())\n        return;\n\n    m_soundEffectsData[index]->setChecked(enable);\n    QModelIndex modelIndex = createIndex(index, 0);\n    emit dataChanged(modelIndex, modelIndex, { IsEnabled });\n}\n\nvoid SoundEffectsModel::updateSoundEffectsAniIcon(int index, QString path)\n{\n    if (index < 0 || index >= m_soundEffectsData.size() || m_soundEffectsData[index]->aniIconPath() == path)\n        return;\n\n    m_soundEffectsData[index]->setAniIconPath(path);\n    QModelIndex modelIndex = createIndex(index, 0);\n    emit dataChanged(modelIndex, modelIndex, { AniIconPath });\n}\n\nint SoundEffectsModel::rowCount(const QModelIndex &parent) const\n{\n    Q_UNUSED(parent);\n    return m_soundEffectsData.count();\n}\n\nQVariant SoundEffectsModel::data(const QModelIndex &index, int role) const\n{\n    if (index.row() < 0 || index.row() >= m_soundEffectsData.count())\n        return QVariant();\n\n    const SoundEffectsData* soundEffectsData = m_soundEffectsData[index.row()];\n    if (role == NameRole)\n        return soundEffectsData->name();\n    else if (role == DisplayTextRole)\n        return soundEffectsData->dispalyText();\n    else if (role == IsEnabled)\n        return soundEffectsData->checked();\n    else if (role == AniIconPath) {\n        return soundEffectsData->aniIconPath();\n    }\n    return QVariant();\n}\n"
  },
  {
    "path": "src/plugin-sound/operation/soundeffectsmodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef SOUNDEFFECTSMODEL_H\n#define SOUNDEFFECTSMODEL_H\n\n#include <QObject>\n#include <QAbstractListModel>\n\n\n#include \"soundEffectsData.h\"\n#include <QtQml/qqml.h>\n\nclass SoundEffectsModel : public QAbstractListModel\n{\n    Q_OBJECT\n\n    QML_NAMED_ELEMENT(SoundEffectsModel)\n    QML_SINGLETON\npublic:\n\n    enum soundEffectsRoles{\n        NameRole = Qt::UserRole + 1,\n        DisplayTextRole,\n        IsEnabled,\n        AniIconPath\n    };\n\n    explicit SoundEffectsModel(QObject *parent = nullptr);\n    ~SoundEffectsModel();\n\n    void addData(SoundEffectsData* data);\n    void removeData(SoundEffectsData* data);\n    void clearData();\n    SoundEffectsData* getSystemSoundEffect(int index);\n    int getRowCount();\n\n    void updateSoundEffectsData(int index, bool enable);\n    void updateSoundEffectsAniIcon(int index, QString path);\n\nprotected:\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n    Q_INVOKABLE QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n\n    QHash<int, QByteArray> roleNames() const override {\n        QHash<int, QByteArray> roles;\n        roles[NameRole] = \"name\";\n        roles[DisplayTextRole] = \"dispalyText\";\n        roles[IsEnabled] = \"isEnabled\";\n        roles[AniIconPath] = \"aniIconPath\";\n        return roles;\n    }\n\nprivate:\n    QList<SoundEffectsData*> m_soundEffectsData;\n};\n\n#endif // SOUNDEFFECTSMODEL_H\n"
  },
  {
    "path": "src/plugin-sound/operation/soundmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"soundmodel.h\"\n\n#include <DSysInfo>\n\n#include <QDBusInterface>\n#include <QDBusReply>\n#include <QDebug>\n#include <QLoggingCategory>\n#include <QStandardItemModel>\n\nQ_LOGGING_CATEGORY(DdcSoundModel, \"dcc-sound-model\")\n\nconst static Dtk::Core::DSysInfo::UosType UosType = Dtk::Core::DSysInfo::uosType();\nconst static bool IsServerSystem = (Dtk::Core::DSysInfo::UosServer == UosType); //是否是服务器版\n\nstatic const QMap<DDesktopServices::SystemSoundEffect, QString> SOUND_EFFECT_MAP{\n    { DDesktopServices::SystemSoundEffect::SSE_Notifications, \"message\" },\n    { DDesktopServices::SystemSoundEffect::SEE_Screenshot, \"camera-shutter\" },\n    { DDesktopServices::SystemSoundEffect::SSE_EmptyTrash, \"trash-empty\" },\n    { DDesktopServices::SystemSoundEffect::SSE_SendFileComplete, \"x-deepin-app-sent-to-desktop\" },\n    { DDesktopServices::SystemSoundEffect::SSE_BootUp, \"desktop-login\" },\n    { DDesktopServices::SystemSoundEffect::SSE_Shutdown, \"system-shutdown\" },\n    { DDesktopServices::SystemSoundEffect::SSE_Logout, \"desktop-logout\" },\n    { DDesktopServices::SystemSoundEffect::SSE_WakeUp, \"suspend-resume\" },\n    { DDesktopServices::SystemSoundEffect::SSE_VolumeChange, \"audio-volume-change\" },\n    { DDesktopServices::SystemSoundEffect::SSE_LowBattery, \"power-unplug-battery-low\" },\n    { DDesktopServices::SystemSoundEffect::SSE_PlugIn, \"power-plug\" },\n    { DDesktopServices::SystemSoundEffect::SSE_PlugOut, \"power-unplug\" },\n    { DDesktopServices::SystemSoundEffect::SSE_DeviceAdded, \"device-added\" },\n    { DDesktopServices::SystemSoundEffect::SSE_DeviceRemoved, \"device-removed\" },\n    { DDesktopServices::SystemSoundEffect::SSE_Error, \"dialog-error\" }\n};\n\nSoundModel::SoundModel(QObject *parent)\n    : QObject(parent)\n    , m_speakerOn(true)\n    , m_microphoneOn(true)\n    , m_enableSoundEffect(false)\n    , m_isLaptop(false)\n    , m_speakerVolume(75)\n    , m_speakerBalance(0)\n    , m_microphoneVolume(75)\n    , m_maxUIVolume(0.0)\n    , m_waitSoundReceiptTime(0)\n#ifndef DCC_DISABLE_FEEDBACK\n    , m_microphoneFeedback(50)\n#endif\n    , m_audioCards(\"\")\n    , m_currentBluetoothMode(\"\")\n    , m_inputVisibled(false)\n    , m_outputVisibled(false)\n    , m_outPutPortComboIndex(0)\n    , m_outPutPortComboEnable(true)\n    , m_inPutPortComboIndex(0)\n    , m_inPutPortComboEnable(true)\n    , m_soundEffectsModel(new SoundEffectsModel(this))\n    , m_soundInputDeviceModel(new SoundDeviceModel(this))\n    , m_soundOutputDeviceModel(new SoundDeviceModel(this))\n    , m_audioServerModel(new AudioServerModel(this))\n    , m_inPutPortCount(0)\n    , m_outPutCount(0)\n    , m_audioMono(false)\n    , m_showBluetoothMode(false)\n    , m_showInputBluetoothMode(false)\n{\n    m_soundEffectMapBattery = {\n        { tr(\"Boot up\"), DDesktopServices::SSE_BootUp },\n        { tr(\"Shut down\"), DDesktopServices::SSE_Shutdown },\n        { tr(\"Log out\"), DDesktopServices::SSE_Logout },\n        { tr(\"Wake up\"), DDesktopServices::SSE_WakeUp },\n        { tr(\"Volume +/-\"), DDesktopServices::SSE_VolumeChange },\n        { tr(\"Notification\"), DDesktopServices::SSE_Notifications },\n        { tr(\"Low battery\"), DDesktopServices::SSE_LowBattery },\n        { tr(\"Send icon in Launcher to Desktop\"), DDesktopServices::SSE_SendFileComplete },\n        { tr(\"Empty Trash\"), DDesktopServices::SSE_EmptyTrash },\n        { tr(\"Plug in\"), DDesktopServices::SSE_PlugIn },\n        { tr(\"Plug out\"), DDesktopServices::SSE_PlugOut },\n        { tr(\"Removable device connected\"), DDesktopServices::SSE_DeviceAdded },\n        { tr(\"Removable device removed\"), DDesktopServices::SSE_DeviceRemoved },\n        { tr(\"Error\"), DDesktopServices::SSE_Error },\n    };\n\n    m_soundEffectMapPower = {\n        { tr(\"Boot up\"), DDesktopServices::SSE_BootUp },\n        { tr(\"Shut down\"), DDesktopServices::SSE_Shutdown },\n        { tr(\"Log out\"), DDesktopServices::SSE_Logout },\n        { tr(\"Wake up\"), DDesktopServices::SSE_WakeUp },\n        { tr(\"Volume +/-\"), DDesktopServices::SSE_VolumeChange },\n        { tr(\"Notification\"), DDesktopServices::SSE_Notifications },\n        { tr(\"Send icon in Launcher to Desktop\"), DDesktopServices::SSE_SendFileComplete },\n        { tr(\"Empty Trash\"), DDesktopServices::SSE_EmptyTrash },\n        { tr(\"Removable device connected\"), DDesktopServices::SSE_DeviceAdded },\n        { tr(\"Removable device removed\"), DDesktopServices::SSE_DeviceRemoved },\n        { tr(\"Error\"), DDesktopServices::SSE_Error },\n    };\n\n    if (IsServerSystem) {\n        m_soundEffectMapBattery.removeOne({ tr(\"Wake up\"), DDesktopServices::SSE_WakeUp });\n        m_soundEffectMapPower.removeOne({ tr(\"Wake up\"), DDesktopServices::SSE_WakeUp });\n    }\n    qmlRegisterType<SoundDeviceModel>(\"SoundDeviceModel\", 1, 0, \"SoundDeviceModel\");\n}\n\nSoundModel::~SoundModel()\n{\n    for (Port *port : m_ports) {\n        if (port)\n            port->deleteLater();\n    }\n}\n\nvoid SoundModel::updatePortCombo()\n{\n    QStringList outPutPortCombo;\n    QStringList inPutPortCombo;\n\n    for (Port* port : m_ports) {\n        if (port->isEnabled()) {\n            switch (port->direction()) {\n            case Port::In:\n                inPutPortCombo.append(port->name() + \"(\" + port->cardName() + \")\");\n                break;\n            case Port::Out:\n                outPutPortCombo.append(port->name() + \"(\" + port->cardName() + \")\");\n                break;\n            }\n        }\n    }\n\n    setInPutPortCombo(inPutPortCombo);\n    setOutPutPortCombo(outPutPortCombo);\n}\n\nint SoundModel::inPutPortComboIndex() const\n{\n    return m_inPutPortComboIndex;\n}\n\nvoid SoundModel::setInPutPortComboIndex(int newInPutPortComboIndex)\n{\n    if (m_inPutPortComboIndex == newInPutPortComboIndex)\n        return;\n    m_inPutPortComboIndex = newInPutPortComboIndex;\n    emit inPutPortComboIndexChanged();\n}\n\nQStringList SoundModel::inPutPortCombo() const\n{\n    return m_inPutPortCombo;\n}\n\nvoid SoundModel::setInPutPortCombo(const QStringList &newInPutPortCombo)\n{\n    if (m_inPutPortCombo == newInPutPortCombo)\n        return;\n    m_inPutPortCombo = newInPutPortCombo;\n    emit inPutPortComboChanged();\n}\n\nint SoundModel::outPutPortComboIndex() const\n{\n    return m_outPutPortComboIndex;\n}\n\nvoid SoundModel::setOutPutPortComboIndex(int newOutPutPortComboIndex)\n{\n    if (newOutPutPortComboIndex < 0 || m_outPutPortComboIndex == newOutPutPortComboIndex)\n        return;\n    m_outPutPortComboIndex = newOutPutPortComboIndex;\n    emit outPutPortComboIndexChanged();\n}\n\nvoid SoundModel::setSpeakerOn(bool speakerOn)\n{\n    if (speakerOn != m_speakerOn) {\n        m_speakerOn = speakerOn;\n\n        Q_EMIT speakerOnChanged(speakerOn);\n    }\n}\n\nvoid SoundModel::setPortEnable(bool enable)\n{\n    if (enable != m_portEnable)\n        m_portEnable = enable;\n    Q_EMIT isPortEnableChanged(enable);\n}\n\nvoid SoundModel::setReduceNoise(bool reduceNoise)\n{\n    if (reduceNoise != m_reduceNoise) {\n        m_reduceNoise = reduceNoise;\n        Q_EMIT reduceNoiseChanged(reduceNoise);\n    }\n}\n\nvoid SoundModel::setPausePlayer(bool pausePlayer)\n{\n    if (pausePlayer != m_pausePlayer) {\n        m_pausePlayer = pausePlayer;\n        Q_EMIT pausePlayerChanged(pausePlayer);\n    }\n}\n\nvoid SoundModel::setMicrophoneOn(bool microphoneOn)\n{\n    if (microphoneOn != m_microphoneOn) {\n        m_microphoneOn = microphoneOn;\n\n        Q_EMIT microphoneOnChanged(microphoneOn);\n    }\n}\n\nvoid SoundModel::setSpeakerBalance(double speakerBalance)\n{\n    if (!qFuzzyCompare(speakerBalance, m_speakerBalance)) {\n\n\n        m_speakerBalance = speakerBalance;\n\n        Q_EMIT speakerBalanceChanged(speakerBalance);\n    }\n}\n\nvoid SoundModel::setMicrophoneVolume(double microphoneVolume)\n{\n    if (!qFuzzyCompare(microphoneVolume, m_microphoneVolume)) {\n        m_microphoneVolume = microphoneVolume;\n\n        Q_EMIT microphoneVolumeChanged(microphoneVolume);\n    }\n}\n#ifndef DCC_DISABLE_FEEDBACK\nvoid SoundModel::setMicrophoneFeedback(double microphoneFeedback)\n{\n    if (!qFuzzyCompare(microphoneFeedback, m_microphoneFeedback)) {\n        m_microphoneFeedback = microphoneFeedback;\n        Q_EMIT microphoneFeedbackChanged(microphoneFeedback);\n    }\n}\n#endif\n\nvoid SoundModel::setPort(Port *port)\n{\n    Q_EMIT setPortChanged(port);\n}\n\nvoid SoundModel::addPort(Port *port)\n{\n    if (!containsPort(port)) {\n        m_ports.append(port);\n\n        if (port->direction() == Port::Out) {\n            m_outputPorts.append(port);\n            setOutPutCount(static_cast<int>(m_outputPorts.count()));\n            if (port->isEnabled()) {\n                m_outPutPortCombo.append(port->name() + \"(\" + port->cardName() + \")\");\n            }\n\n            m_soundOutputDeviceModel->addData(port);\n        } else {\n            m_inputPorts.append(port);\n            setInPutPortCount(static_cast<int>(m_inputPorts.count()));\n            if (port->isEnabled()) {\n                m_inPutPortCombo.append(port->name() + \"(\" + port->cardName() + \")\");\n            }\n            m_soundInputDeviceModel->addData(port);\n            emit inPutPortComboChanged();\n        }\n\n        Q_EMIT portAdded(port);\n        Q_EMIT soundDeviceStatusChanged();\n    }\n}\n\nvoid SoundModel::removePort(const QString &portId, const uint &cardId)\n{\n    Port *port = findPort(portId, cardId);\n    if (port) {\n        Q_EMIT portRemoved(portId, cardId, port->direction());\n        m_ports.removeOne(port);\n\n        if (port->direction() == Port::Out) {\n            m_outputPorts.removeOne(port);\n            setOutPutCount(static_cast<int>(m_outputPorts.count()));\n            m_outPutPortCombo.removeOne(port->name() + \"(\" + port->cardName() + \")\");\n\n            m_soundOutputDeviceModel->removeData(port);\n\n        } else {\n            m_inputPorts.removeOne(port);\n            setInPutPortCount(static_cast<int>(m_inputPorts.count()));\n            m_inPutPortCombo.removeOne(port->name() + \"(\" + port->cardName() + \")\");\n            m_soundInputDeviceModel->removeData(port);\n            emit inPutPortComboChanged();\n        }\n        port->deleteLater();\n    }\n}\n\nbool SoundModel::containsPort(const Port *port)\n{\n    return findPort(port->id(), port->cardId()) != nullptr;\n}\n\nPort *SoundModel::findPort(const QString &portId, const uint &cardId) const\n{\n    auto res = std::find_if(m_ports.cbegin(), m_ports.end(), [=](const Port *data) -> bool {\n        return ((data->id() == portId) && (data->cardId() == cardId));\n    });\n\n    if (res != m_ports.cend()) {\n        return *res;\n    }\n\n    return nullptr;\n}\n\nQList<Port *> SoundModel::ports() const\n{\n    return m_ports;\n}\n\nvoid SoundModel::setSpeakerVolume(double speakerVolume)\n{\n    if (!qFuzzyCompare(m_speakerVolume, speakerVolume)) {\n        m_speakerVolume = speakerVolume;\n        Q_EMIT speakerVolumeChanged(speakerVolume);\n    }\n}\n\nvoid SoundModel::setMaxUIVolume(double value)\n{\n    double val = qRound(value * 10) / 10.0;\n    if (!qFuzzyCompare(val, m_maxUIVolume)) {\n        m_maxUIVolume = val;\n        Q_EMIT maxUIVolumeChanged(val);\n    }\n}\n\nQDBusObjectPath SoundModel::defaultSource() const\n{\n    return m_defaultSource;\n}\n\nvoid SoundModel::setDefaultSource(const QDBusObjectPath &defaultSource)\n{\n    m_defaultSource = defaultSource;\n\n    Q_EMIT defaultSourceChanged(m_defaultSource);\n}\n\nQDBusObjectPath SoundModel::defaultSink() const\n{\n    return m_defaultSink;\n}\n\nvoid SoundModel::setDefaultSink(const QDBusObjectPath &defaultSink)\n{\n    m_defaultSink = defaultSink;\n\n    Q_EMIT defaultSinkChanged(m_defaultSink);\n}\n\nQString SoundModel::audioCards() const\n{\n    return m_audioCards;\n}\n\nvoid SoundModel::setAudioCards(const QString &audioCards)\n{\n    m_audioCards = audioCards;\n\n    Q_EMIT audioCardsChanged(m_audioCards);\n}\n\nSoundEffectList SoundModel::soundEffectMap() const\n{\n    if (isLaptop()) { // 笔记本\n        return m_soundEffectMapBattery;\n    } else { // 台式机\n        return m_soundEffectMapPower;\n    }\n}\n\nvoid SoundModel::setEffectData(DDesktopServices::SystemSoundEffect effect, const bool enable)\n{\n    if (m_soundEffectData[effect] == enable)\n        return;\n\n    m_soundEffectData[effect] = enable;\n\n    Q_EMIT soundEffectDataChanged(effect, enable);\n}\n\nbool SoundModel::queryEffectData(DDesktopServices::SystemSoundEffect effect)\n{\n    return m_soundEffectData[effect];\n}\n\nvoid SoundModel::setEnableSoundEffect(bool enableSoundEffect)\n{\n    if (m_enableSoundEffect == enableSoundEffect)\n        return;\n\n    m_enableSoundEffect = enableSoundEffect;\n\n    Q_EMIT enableSoundEffectChanged(enableSoundEffect);\n}\n\nvoid SoundModel::updateSoundEffectPath(DDesktopServices::SystemSoundEffect effect,\n                                       const QString &path)\n{\n    m_soundEffectPaths[effect] = path;\n}\n\nconst QString SoundModel::soundEffectPathByType(DDesktopServices::SystemSoundEffect effect)\n{\n    return m_soundEffectPaths[effect];\n}\n\nconst QString SoundModel::getNameByEffectType(DDesktopServices::SystemSoundEffect effect) const\n{\n    return SOUND_EFFECT_MAP.value(effect);\n}\n\nDDesktopServices::SystemSoundEffect SoundModel::getEffectTypeByGsettingName(const QString &name)\n{\n    return SOUND_EFFECT_MAP.key(name);\n}\n\nbool SoundModel::checkSEExist(const QString &name)\n{\n    return SOUND_EFFECT_MAP.values().contains(name);\n}\n\nbool SoundModel::isLaptop() const\n{\n    return m_isLaptop;\n}\n\nvoid SoundModel::setIsLaptop(bool isLaptop)\n{\n    if (isLaptop == m_isLaptop)\n        return;\n\n    m_isLaptop = isLaptop;\n\n    Q_EMIT isLaptopChanged(isLaptop);\n}\n\nbool SoundModel::isIncreaseVolume() const\n{\n    return m_increaseVolume;\n}\n\nvoid SoundModel::setIncreaseVolume(bool value)\n{\n    if (m_increaseVolume != value) {\n        m_increaseVolume = value;\n        Q_EMIT increaseVolumeChanged(value);\n    }\n}\n\nvoid SoundModel::setBluetoothAudioModeOpts(const QStringList &modes)\n{\n    if (modes != m_bluetoothModeOpts) {\n        m_bluetoothModeOpts = modes;\n        Q_EMIT bluetoothModeOptsChanged(modes);\n    }\n}\n\nvoid SoundModel::setCurrentBluetoothAudioMode(const QString &mode)\n{\n    if (mode != m_currentBluetoothMode) {\n        m_currentBluetoothMode = mode;\n        Q_EMIT bluetoothModeChanged(mode);\n    }\n}\n\nvoid SoundModel::setWaitSoundReceiptTime(const int receiptTime)\n{\n    // 配置端⼝切换延时时间\n    if (m_waitSoundReceiptTime != receiptTime) {\n        qCDebug(DdcSoundModel) << \"Sound Receopt Time is: \" << receiptTime;\n        m_waitSoundReceiptTime = receiptTime;\n    }\n}\n\nvoid SoundModel::setAudioServerChangedState(const bool state)\n{\n    if (m_audioServerStatus != state) {\n        m_audioServerStatus = state;\n        Q_EMIT onSetAudioServerFinish(state);\n    }\n}\n\nvoid SoundModel::updateSoundEffectsModel()\n{\n    m_soundEffectsModel->clearData();\n    SoundEffectList list = soundEffectMap();\n\n    for (std::pair<QString, DDesktopServices::SystemSoundEffect> item : list) {\n        if (m_soundEffectData.contains(item.second) && m_soundEffectPaths.contains(item.second)) {\n            SoundEffectsData* data = new SoundEffectsData;\n            data->setName(item.first);\n            data->setSystemSoundEffect(item.second);\n            data->setChecked(m_soundEffectData[item.second]);\n            data->setPath(m_soundEffectPaths[item.second]);\n            data->setAniIconPath(\"\");\n            m_soundEffectsModel->addData(data);\n        }\n    }\n}\n\nQString SoundModel::getSoundEffectsType(int index)\n{\n    SoundEffectsData* data = m_soundEffectsModel->getSystemSoundEffect(index);\n    return data ? getNameByEffectType(data->systemSoundEffect()) : \"\";\n}\n\nvoid SoundModel::setSoundEffectEnable(int index, bool enable)\n{\n    m_soundEffectsModel->updateSoundEffectsData(index, enable);\n}\n\nvoid SoundModel::initSoundDeviceModel(Port::Direction direction)\n{\n    SoundDeviceModel *model =\n            direction == Port::In ? soundInputDeviceModel() : soundOutputDeviceModel();\n    QList<Port *> ports = direction == Port::In ? m_inputPorts : m_outputPorts;\n    model->clearData();\n\n    for (Port *port : ports) {\n        model->addData(port);\n    }\n}\n\nPort *SoundModel::getSoundDeviceData(int index, int portType)\n{\n    SoundDeviceModel *soundDeviceModel = portType == Port::In ? soundInputDeviceModel() : soundOutputDeviceModel();\n    return soundDeviceModel ? soundDeviceModel->getSoundDeviceData(index) : nullptr;\n}\n\nvoid SoundModel::updateSoundDeviceModel(Port *port)\n{\n    SoundDeviceModel *soundDeviceModel =\n            port->direction() == Port::In ? soundInputDeviceModel() : soundOutputDeviceModel();\n\n    soundDeviceModel->updateSoundDeviceData(port);\n}\n\nvoid SoundModel::updateAllDeviceModel()\n{\n    m_soundOutputDeviceModel->updateAllSoundDeviceData();\n    m_soundInputDeviceModel->updateAllSoundDeviceData();\n}\n\nvoid SoundModel::updateActiveComboIndex()\n{\n    setInPutPortComboIndex(m_soundInputDeviceModel->getCurrentIndex());\n    setOutPutPortComboIndex(m_soundOutputDeviceModel->getCurrentIndex());\n}\n\nvoid SoundModel::setOutPutCount(int newOutPutCount)\n{\n    if (m_outPutCount == newOutPutCount)\n        return;\n    m_outPutCount = newOutPutCount;\n    emit outPutCountChanged();\n}\n\nvoid SoundModel::updatePlayAniIconPath(int index, const QString &newPlayAniIconPath)\n{\n    m_soundEffectsModel->updateSoundEffectsAniIcon(index, newPlayAniIconPath);\n}\n\nAudioServerModel *SoundModel::audioServerModel() const\n{\n    return m_audioServerModel;\n}\n\nvoid SoundModel::setAudioServerModel(AudioServerModel *newAudioServerModel)\n{\n    m_audioServerModel = newAudioServerModel;\n}\n\nvoid SoundModel::addAudioServerData(const AudioServerData &newAudioServerData)\n{\n    m_audioServerModel->addData(newAudioServerData);\n}\n\nbool SoundModel::audioMono() const\n{\n    return m_audioMono;\n}\n\nvoid SoundModel::setAudioMono(bool newAudioMono)\n{\n    m_audioMono = newAudioMono;\n    emit audioMonoChanged();\n}\n\nbool SoundModel::showBluetoothMode() const\n{\n    return m_showBluetoothMode;\n}\n\nvoid SoundModel::setShowBluetoothMode(bool newShowBluetoothMode)\n{\n    if (m_showBluetoothMode == newShowBluetoothMode)\n        return;\n    m_showBluetoothMode = newShowBluetoothMode;\n    emit showBluetoothModeChanged();\n}\n\nbool SoundModel::outPutPortComboEnable() const\n{\n    return m_outPutPortComboEnable;\n}\n\nvoid SoundModel::setOutPutPortComboEnable(bool newOutPutPortComboEnable)\n{\n    if (m_outPutPortComboEnable == newOutPutPortComboEnable)\n        return;\n    m_outPutPortComboEnable = newOutPutPortComboEnable;\n    emit outPutPortComboEnableChanged();\n}\n\nbool SoundModel::inPutPortComboEnable() const\n{\n    return m_inPutPortComboEnable;\n}\n\nvoid SoundModel::setInPutPortComboEnable(bool newInPutPortComboEnable)\n{\n    if (m_inPutPortComboEnable == newInPutPortComboEnable)\n        return;\n    m_inPutPortComboEnable = newInPutPortComboEnable;\n    emit inPutPortComboEnableChanged();\n}\n\nvoid SoundModel::setInPutPortCount(int newInPutPortCount)\n{\n    if (m_inPutPortCount == newInPutPortCount)\n        return;\n    m_inPutPortCount = newInPutPortCount;\n    emit inPutPortCountChanged();\n}\n\nint SoundModel::outPutCount() const\n{\n    return m_outPutCount;\n}\n\nint SoundModel::inPutPortCount() const\n{\n    return m_inPutPortCount;\n}\n\nSoundDeviceModel *SoundModel::soundOutputDeviceModel() const\n{\n    return m_soundOutputDeviceModel;\n}\n\nvoid SoundModel::setSoundOutputDeviceModel(SoundDeviceModel *newSoundOutputDeviceModel)\n{\n    m_soundOutputDeviceModel = newSoundOutputDeviceModel;\n}\n\nint SoundModel::getDeviceManagerRowCount(int portType) const\n{\n    SoundDeviceModel* soundDeviceModel = portType == Port::In ? soundInputDeviceModel() : soundOutputDeviceModel();\n    return soundDeviceModel ? soundDeviceModel->getRowCount() : 0;\n}\n\nSoundDeviceModel *SoundModel::soundInputDeviceModel() const\n{\n    return m_soundInputDeviceModel;\n}\n\nvoid SoundModel::setSoundInputDeviceModel(SoundDeviceModel *newSoundInputDeviceModel)\n{\n    m_soundInputDeviceModel = newSoundInputDeviceModel;\n}\n\n\nSoundEffectsModel* SoundModel::soundEffectsModel() const\n{\n    return m_soundEffectsModel;\n}\n\n\nint SoundModel::getSoundEffectsRowCount() const\n{\n    return m_soundEffectsModel ? m_soundEffectsModel->getRowCount() : 0;\n}\n\nvoid SoundModel::setAudioServer(const QString &audioServer)\n{\n    if (m_audioServer != audioServer) {\n        m_audioServer = audioServer;\n        Q_EMIT curAudioServerChanged(audioServer);\n\n        m_audioServerModel->updateCheckedService(audioServer);\n    }\n}\n\nvoid SoundModel::setOutPutPortCombo(const QStringList& outPutPort)\n{\n    m_outPutPortCombo = outPutPort;\n    Q_EMIT outPutPortComboChanged(m_outPutPortCombo);\n}\n\nQString SoundModel::getListName(int index) const\n{\n    Q_UNUSED(index)\n    return QString();\n}\n\nbool SoundModel::showInputBluetoothMode() const\n{\n    return m_showInputBluetoothMode;\n}\n\nvoid SoundModel::setShowInputBluetoothMode(bool newShowInputBluetoothMode)\n{\n    if (m_showInputBluetoothMode == newShowInputBluetoothMode)\n        return;\n    m_showInputBluetoothMode = newShowInputBluetoothMode;\n    emit showInputBluetoothModeChanged();\n}\n\n"
  },
  {
    "path": "src/plugin-sound/operation/soundmodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef DCC_SOUND_SOUNDMODEL_H\n#define DCC_SOUND_SOUNDMODEL_H\n\n#include <dtkgui_global.h>\n#include <DDesktopServices>\n#include <QObject>\n#include <QMap>\n#include <QDBusObjectPath>\n#include <QtQml/qqml.h>\n\n#include \"soundeffectsmodel.h\"\n#include \"soundDeviceModel.h\"\n#include \"audioservermodel.h\"\n#include \"port.h\"\n\nDGUI_USE_NAMESPACE\n\n\nQT_BEGIN_NAMESPACE\nclass QStandardItemModel;\nclass QString;\nQT_END_NAMESPACE\n\nusing SoundEffectList = QList<std::pair<QString, DDesktopServices::SystemSoundEffect>>;\n\nclass SoundModel : public QObject\n{\n    Q_OBJECT\n\n    Q_PROPERTY(double speakerVolume READ speakerVolume  NOTIFY speakerVolumeChanged)\n    Q_PROPERTY(bool increaseVolume READ isIncreaseVolume NOTIFY increaseVolumeChanged)\n    Q_PROPERTY(double speakerBalance READ speakerBalance NOTIFY speakerBalanceChanged)\n    Q_PROPERTY(QStringList outPutPortCombo READ outPutPortCombo NOTIFY outPutPortComboChanged)\n    Q_PROPERTY(bool pausePlayer READ pausePlayer NOTIFY pausePlayerChanged)\n\n    Q_PROPERTY(double microphoneVolume READ microphoneVolume NOTIFY microphoneVolumeChanged)\n    Q_PROPERTY(bool reduceNoise READ reduceNoise NOTIFY reduceNoiseChanged)\n    Q_PROPERTY(int outPutPortComboIndex READ outPutPortComboIndex NOTIFY outPutPortComboIndexChanged FINAL)\n    Q_PROPERTY(double microphoneFeedback READ microphoneFeedback NOTIFY microphoneFeedbackChanged)\n    Q_PROPERTY(bool enableSoundEffect READ enableSoundEffect NOTIFY enableSoundEffectChanged)\n    Q_PROPERTY(QStringList inPutPortCombo READ inPutPortCombo WRITE setInPutPortCombo NOTIFY inPutPortComboChanged FINAL)\n    Q_PROPERTY(int inPutPortComboIndex READ inPutPortComboIndex WRITE setInPutPortComboIndex NOTIFY inPutPortComboIndexChanged FINAL)\n    Q_PROPERTY(int inPutPortCount READ inPutPortCount NOTIFY inPutPortCountChanged FINAL)\n    Q_PROPERTY(int outPutCount READ outPutCount NOTIFY outPutCountChanged FINAL)\n    Q_PROPERTY(bool audioServerStatus READ audioServerChangedState NOTIFY onSetAudioServerFinish FINAL)\n    Q_PROPERTY(QString audioServer READ audioServer NOTIFY curAudioServerChanged FINAL)\n    Q_PROPERTY(bool audioMono READ audioMono NOTIFY audioMonoChanged FINAL)\n    Q_PROPERTY(QStringList bluetoothModeOpts READ bluetoothAudioModeOpts NOTIFY bluetoothModeOptsChanged FINAL)\n    Q_PROPERTY(QString currentBluetoothAudioMode READ currentBluetoothAudioMode NOTIFY bluetoothModeChanged FINAL)\n    Q_PROPERTY(bool showBluetoothMode READ showBluetoothMode NOTIFY showBluetoothModeChanged FINAL)\n    Q_PROPERTY(bool showInputBluetoothMode READ showInputBluetoothMode NOTIFY showInputBluetoothModeChanged FINAL)\n\n    Q_PROPERTY(bool outPutPortComboEnable READ outPutPortComboEnable NOTIFY outPutPortComboEnableChanged FINAL)\n    Q_PROPERTY(bool inPutPortComboEnable READ inPutPortComboEnable NOTIFY inPutPortComboEnableChanged FINAL)\n\n    Q_PROPERTY(bool speakerOn READ speakerOn NOTIFY speakerOnChanged FINAL)\n    Q_PROPERTY(bool microphoneOn READ microphoneOn NOTIFY microphoneOnChanged FINAL)\n\n    QML_NAMED_ELEMENT(SoundModel)\n    QML_SINGLETON\npublic:\n    explicit SoundModel(QObject *parent = 0);\n    ~SoundModel();\n\n    bool speakerOn() const { return m_speakerOn; }\n    void setSpeakerOn(bool speakerOn);\n\n    inline bool isPortEnable() const { return m_portEnable; }\n    void setPortEnable(bool enable);\n\n    inline bool reduceNoise() const { return m_reduceNoise; }\n    void setReduceNoise(bool reduceNoise);\n\n    inline bool pausePlayer() const { return m_pausePlayer; }\n    void setPausePlayer(bool reduceNoise);\n\n    inline bool microphoneOn() const { return m_microphoneOn; }\n    void setMicrophoneOn(bool microphoneOn);\n\n    inline double speakerBalance() const { return m_speakerBalance ; }\n    void setSpeakerBalance(double speakerBalance);\n\n    inline double microphoneVolume() const { return m_microphoneVolume; }\n    void setMicrophoneVolume(double microphoneVolume);\n\n    inline QStringList outPutPortCombo() const { return m_outPutPortCombo;}\n    void setOutPutPortCombo(const QStringList& outPutPort);\n\n#ifndef DCC_DISABLE_FEEDBACK\n    inline double microphoneFeedback() const { return m_microphoneFeedback; }\n    void setMicrophoneFeedback(double microphoneFeedback);\n#endif\n\n    void setPort(Port *port);\n    void addPort(Port *port);\n    void removePort(const QString &portId, const uint &cardId);\n    bool containsPort(const Port *port);\n    Port *findPort(const QString &portId, const uint &cardId) const;\n    QList<Port *> ports() const;\n\n    inline double speakerVolume() const { return m_speakerVolume; }\n    void setSpeakerVolume(double speakerVolume);\n\n    QDBusObjectPath defaultSource() const;\n    void setDefaultSource(const QDBusObjectPath &defaultSource);\n\n    QDBusObjectPath defaultSink() const;\n    void setDefaultSink(const QDBusObjectPath &defaultSink);\n\n    QString audioCards() const;\n    void setAudioCards(const QString &audioCards);\n\n    inline double MaxUIVolume() const { return m_maxUIVolume; }\n    void setMaxUIVolume(double value);\n\n    SoundEffectList soundEffectMap() const;\n\n    void setEffectData(DDesktopServices::SystemSoundEffect effect, const bool enable);\n    bool queryEffectData(DDesktopServices::SystemSoundEffect effect);\n\n    bool enableSoundEffect() const { return m_enableSoundEffect; }\n    void setEnableSoundEffect(bool enableSoundEffect);\n\n    void updateSoundEffectPath(DDesktopServices::SystemSoundEffect effect, const QString &path);\n    inline QMap<DDesktopServices::SystemSoundEffect, QString> soundEffectPaths() { return m_soundEffectPaths; }\n    const QString soundEffectPathByType(DDesktopServices::SystemSoundEffect effect);\n\n    const QString getNameByEffectType(DDesktopServices::SystemSoundEffect effect) const;\n    DDesktopServices::SystemSoundEffect getEffectTypeByGsettingName(const QString &name);\n\n    bool checkSEExist(const QString &name); // SE: Sound Effect\n\n    bool isLaptop() const;\n    void setIsLaptop(bool isLaptop);\n\n    bool isIncreaseVolume() const;\n    void setIncreaseVolume(bool value);\n    void initMicroPhone() { Q_EMIT microphoneOnChanged(m_microphoneOn); }\n    void initSpeaker() { Q_EMIT speakerOnChanged(m_speakerOn); }\n\n    inline QStringList bluetoothAudioModeOpts() { return m_bluetoothModeOpts; }\n    void setBluetoothAudioModeOpts(const QStringList &modes);\n\n    // 设置当前蓝牙耳机模式\n    inline QString currentBluetoothAudioMode() { return m_currentBluetoothMode; }\n    void setCurrentBluetoothAudioMode(const QString &mode);\n\n    // 配置等待\n    inline int currentWaitSoundReceiptTime() { return m_waitSoundReceiptTime; }\n    void setWaitSoundReceiptTime(const int receiptTime);\n\n    // 设置音频框架\n    inline QString audioServer() const { return m_audioServer; }\n    void setAudioServer(const QString &serverName);\n\n    // 音频框架切换的状态\n    inline bool audioServerChangedState() const { return m_audioServerStatus; }\n    void setAudioServerChangedState(const bool state);\n\n    // 更新系统声效ui数据\n    void updateSoundEffectsModel();\n    QString getSoundEffectsType(int index);\n\n    void setSoundEffectEnable(int index, bool enable);\n\n    // 初始化输入设备ui数据\n    void initSoundDeviceModel(Port::Direction direction);\n    Port* getSoundDeviceData(int index, int portType);\n    void updateSoundDeviceModel(Port* port);\n    void updateAllDeviceModel();\n    void updateActiveComboIndex();\n\n    int outPutPortComboIndex() const;\n    void setOutPutPortComboIndex(int newOutPutPortComboIndex);\n    QStringList inPutPortCombo() const;\n    void setInPutPortCombo(const QStringList &newInPutPortCombo);\n    int inPutPortComboIndex() const;\n    void setInPutPortComboIndex(int newInPutPortComboIndex);\n\n    void updatePortCombo();\n\n    Q_INVOKABLE SoundEffectsModel* soundEffectsModel() const;\n    Q_INVOKABLE QString getListName(int index) const;\n    Q_INVOKABLE int getSoundEffectsRowCount() const;\n    Q_INVOKABLE SoundDeviceModel *soundInputDeviceModel() const;\n    void setSoundInputDeviceModel(SoundDeviceModel *newSoundInputDeviceModel);\n    Q_INVOKABLE SoundDeviceModel *soundOutputDeviceModel() const;\n    void setSoundOutputDeviceModel(SoundDeviceModel *newSoundOutputDeviceModel);\n    Q_INVOKABLE int getDeviceManagerRowCount(int portType) const;\n    int inPutPortCount() const;\n    int outPutCount() const;\n    void setInPutPortCount(int newInPutPortCount);\n    void setOutPutCount(int newOutPutCount);\n\n    void updatePlayAniIconPath(int index, const QString &newPlayAniIconPath);\n\n    Q_INVOKABLE AudioServerModel *audioServerModel() const;\n    void setAudioServerModel(AudioServerModel *newAudioServerModel);\n    void addAudioServerData(const AudioServerData &newAudioServerData);\n\n    bool audioMono() const;\n    void setAudioMono(bool newAudioMono);\n\n    bool showBluetoothMode() const;\n    void setShowBluetoothMode(bool newShowBluetoothMode);\n\n    bool outPutPortComboEnable() const;\n    void setOutPutPortComboEnable(bool newOutPutPortComboEnable);\n\n    bool inPutPortComboEnable() const;\n    void setInPutPortComboEnable(bool newInPutPortComboEnable);\n\n    bool showInputBluetoothMode() const;\n    void setShowInputBluetoothMode(bool newShowInputBluetoothMode);\n\nprivate:\n\n\nQ_SIGNALS:\n    void speakerOnChanged(bool speakerOn) const;\n    void microphoneOnChanged(bool microphoneOn) const;\n    void soundEffectOnChanged(bool soundEffectOn) const;\n    void speakerVolumeChanged(double speakerVolume) const;\n    void speakerBalanceChanged(double speakerBalance) const;\n    void microphoneVolumeChanged(double microphoneVolume) const;\n    void defaultSourceChanged(const QDBusObjectPath &defaultSource) const;\n    void defaultSinkChanged(const QDBusObjectPath &defaultSink) const;\n    void audioCardsChanged(const QString &audioCards) const;\n    void maxUIVolumeChanged(double value) const;\n    void increaseVolumeChanged(bool value) const;\n    void reduceNoiseChanged(bool reduceNoise) const;\n    void pausePlayerChanged(bool pausePlayer) const;\n    void isPortEnableChanged(bool enable) const;\n    void bluetoothModeOptsChanged(const QStringList &modeOpts) const;\n    void bluetoothModeChanged(const QString &mode);\n\n    void setPortChanged(Port* port) const;\n    void outPutPortComboChanged(const QStringList &outPutPort) const;\n    //查询是否可用\n    void requestSwitchEnable(unsigned int cardId,QString cardName);\n\n    //声音输入设备是否可见\n    void inputDevicesVisibleChanged(QString name, bool flag);\n    //声音输出设备是否可见\n    void outputDevicesVisibleChanged(QString name, bool flag);\n\n    // 音频框架设置完成\n    void onSetAudioServerFinish(bool value);\n    // 当前音频框架切换的信号\n    void curAudioServerChanged(const QString &audioFrame);\n\n#ifndef DCC_DISABLE_FEEDBACK\n    void microphoneFeedbackChanged(double microphoneFeedback) const;\n#endif\n    void portAdded(const Port *port);\n    void portRemoved(const QString & portId, const uint &cardId, const Port::Direction &direction);\n    void soundDeviceStatusChanged();\n    void soundEffectDataChanged(DDesktopServices::SystemSoundEffect effect, const bool enable);\n    void enableSoundEffectChanged(bool enableSoundEffect);\n    void isLaptopChanged(bool isLaptop);\n\n    void outPutPortComboIndexChanged();\n    void inPutPortComboChanged();\n    void inPutPortComboIndexChanged();\n    void soundEffectsModelChanged();\n    void inPutPortCountChanged();\n    void outPutCountChanged();\n\n    void playAniIconPathChanged();\n\n    void audioMonoChanged();\n\n    void showBluetoothModeChanged();\n\n    void outPutPortComboEnableChanged();\n\n    void inPutPortComboEnableChanged();\n\n    void showInputBluetoothModeChanged();\n\nprivate:\n    QString m_audioServer;     // 当前使用音频框架\n    bool m_audioServerStatus{true};  // 设置音频时的状态\n    bool m_speakerOn;\n    bool m_microphoneOn;\n    bool m_enableSoundEffect;\n    bool m_isLaptop;\n    bool m_increaseVolume{false};\n    bool m_reduceNoise{true};\n    bool m_pausePlayer{true};\n    bool m_portEnable{false};\n    double m_speakerVolume;\n    double m_speakerBalance;\n    double m_microphoneVolume;\n    double m_maxUIVolume;\n    int m_waitSoundReceiptTime;\n\n#ifndef DCC_DISABLE_FEEDBACK\n    double m_microphoneFeedback;\n#endif\n    QList<Port *> m_ports;\n    QList<Port *> m_inputPorts;\n    QList<Port *> m_outputPorts;\n    Port *m_activePort;\n\n    QDBusObjectPath m_defaultSource;\n    QDBusObjectPath m_defaultSink;\n    QString m_audioCards;\n    QStringList m_bluetoothModeOpts;\n    QString m_currentBluetoothMode;\n\n    SoundEffectList m_soundEffectMapPower;\n    SoundEffectList m_soundEffectMapBattery;\n    QMap<DDesktopServices::SystemSoundEffect, bool> m_soundEffectData;\n    QMap<DDesktopServices::SystemSoundEffect, QString> m_soundEffectPaths;\n\n    bool m_inputVisibled;\n    bool m_outputVisibled;\n\n    QStringList m_outPutPortCombo;\n    int m_outPutPortComboIndex;\n    bool m_outPutPortComboEnable;\n\n    QStringList m_inPutPortCombo;\n    int m_inPutPortComboIndex;\n    bool m_inPutPortComboEnable;\n\n    SoundEffectsModel* m_soundEffectsModel;\n    SoundDeviceModel* m_soundInputDeviceModel;\n    SoundDeviceModel* m_soundOutputDeviceModel;\n    AudioServerModel* m_audioServerModel;\n\n    int m_inPutPortCount;\n    int m_outPutCount;\n\n    bool m_audioMono;\n    bool m_showBluetoothMode;\n    bool m_showInputBluetoothMode;\n};\n\n#endif // DCC_SOUND_SOUNDMODEL_H\n"
  },
  {
    "path": "src/plugin-sound/operation/soundworker.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"soundworker.h\"\n\n#include <DGuiApplicationHelper>\n\n#include <QAudioDevice>\n#include <QDebug>\n#include <QJsonArray>\n#include <QJsonDocument>\n#include <QJsonObject>\n#include <QLoggingCategory>\n#include <QMediaPlayer>\n#include <QPair>\n#include <QTimer>\n\nQ_LOGGING_CATEGORY(DdcSoundWorker, \"dcc-sound-worker\")\n\n#define GSETTINGS_WAIT_SOUND_RECEIPT \"wait-sound-receipt\"\n\nconst QList<QPair<QString, QString>>& AudioServerNames = {qMakePair(QString(\"pipewire\"),QString(\"PipeWire\")), qMakePair(QString(\"pulseaudio\"),QString(\"PulseAudio\"))};\n\nSoundWorker::SoundWorker(SoundModel *model, QObject *parent)\n    : QObject(parent)\n    , m_model(model)\n    , m_activeOutputCard(UINT_MAX)\n    , m_activeInputCard(UINT_MAX)\n    , m_soundDBusInter(new SoundDBusProxy(this))\n    , m_pingTimer(new QTimer(this))\n    , m_inter(QDBusConnection::sessionBus().interface())\n    , m_sound(nullptr)\n    , m_waitInputReceiptTimer(new QTimer(this))\n    , m_waitOutputReceiptTimer(new QTimer(this))\n    , m_mediaDevices(new QMediaDevices(this))\n    , m_playAnimationTime(new QTimer(this))\n{\n    m_pingTimer->setInterval(5000);\n    m_pingTimer->setSingleShot(false);\n    m_waitSoundPortReceipt = 1000;\n\n    m_playAnimationTime->setInterval(300);\n    m_playAnimationTime->setSingleShot(false);\n\n    m_waitInputReceiptTimer->setSingleShot(true);\n    m_waitOutputReceiptTimer->setSingleShot(true);\n\n    updatePlayAniIconPath();\n\n    initConnect();\n}\n\nvoid SoundWorker::initConnect()\n{\n    connect(m_playAnimationTime, &QTimer::timeout, this, &SoundWorker::onAniTimerTimeOut);\n    connect(m_model, &SoundModel::defaultSinkChanged, this, &SoundWorker::defaultSinkChanged);\n    connect(m_model, &SoundModel::defaultSourceChanged, this, &SoundWorker::defaultSourceChanged);\n    connect(m_model, &SoundModel::audioCardsChanged, this, &SoundWorker::cardsChanged);\n    connect(m_model, &SoundModel::bluetoothModeChanged, this, &SoundWorker::changeOutputDeviceComboxStatus);\n\n    connect(m_soundDBusInter, &SoundDBusProxy::DefaultSinkChanged, m_model, &SoundModel::setDefaultSink);\n    connect(m_soundDBusInter, &SoundDBusProxy::DefaultSourceChanged, m_model, &SoundModel::setDefaultSource);\n    connect(m_soundDBusInter, &SoundDBusProxy::MaxUIVolumeChanged, m_model, &SoundModel::setMaxUIVolume);\n    connect(m_soundDBusInter, &SoundDBusProxy::IncreaseVolumeChanged, m_model, &SoundModel::setIncreaseVolume);\n    connect(m_soundDBusInter, &SoundDBusProxy::CardsWithoutUnavailableChanged, m_model, &SoundModel::setAudioCards);\n    connect(m_soundDBusInter, &SoundDBusProxy::ReduceNoiseChanged, m_model, &SoundModel::setReduceNoise);\n    connect(m_soundDBusInter, &SoundDBusProxy::PausePlayerChanged, m_model, &SoundModel::setPausePlayer);\n    connect(m_soundDBusInter, &SoundDBusProxy::BluetoothAudioModeOptsChanged, m_model, &SoundModel::setBluetoothAudioModeOpts);\n    connect(m_soundDBusInter, &SoundDBusProxy::BluetoothAudioModeChanged, m_model, &SoundModel::setCurrentBluetoothAudioMode);\n\n    connect(m_soundDBusInter, &SoundDBusProxy::EnabledChanged, m_model, &SoundModel::setEnableSoundEffect);\n    connect(m_soundDBusInter, &SoundDBusProxy::pendingCallWatcherFinished, this, &SoundWorker::getSoundEnabledMapFinished);\n\n    connect(m_pingTimer, &QTimer::timeout, [this] { if (m_soundDBusInter) m_soundDBusInter->Tick(); });\n    connect(m_soundDBusInter, &SoundDBusProxy::HasBatteryChanged, m_model, &SoundModel::setIsLaptop);\n\n    connect(m_soundDBusInter, &SoundDBusProxy::CurrentAudioServerChanged, m_model, &SoundModel::setAudioServer);\n    connect(m_soundDBusInter, &SoundDBusProxy::AudioServerStateChanged, m_model, &SoundModel::setAudioServerChangedState);\n    connect(m_soundDBusInter, &SoundDBusProxy::AudioMonoChanged, m_model, &SoundModel::setAudioMono);\n\n    connect(m_waitInputReceiptTimer, &QTimer::timeout, this, [ this ] {\n        m_model->setInPutPortComboEnable(true);\n    });\n\n    connect(m_waitOutputReceiptTimer, &QTimer::timeout, this, [this] {\n        m_model->setOutPutPortComboEnable(true);\n    });\n\n    connect(Dtk::Gui::DGuiApplicationHelper::instance(), &Dtk::Gui::DGuiApplicationHelper::themeTypeChanged,\n        this, &SoundWorker::updatePlayAniIconPath);\n}\n\nvoid SoundWorker::activate()\n{\n\n    m_model->setDefaultSink(m_soundDBusInter->defaultSink());\n    m_model->setDefaultSource(m_soundDBusInter->defaultSource());\n    m_model->setAudioCards(m_soundDBusInter->cardsWithoutUnavailable());\n    m_model->setIsLaptop(m_soundDBusInter->hasBattery());\n    m_model->setMaxUIVolume(m_soundDBusInter->maxUIVolume());\n    m_model->setIncreaseVolume(m_soundDBusInter->increaseVolume());\n    m_model->setReduceNoise(m_soundDBusInter->reduceNoise());\n    m_model->setPausePlayer(m_soundDBusInter->pausePlayer());\n    m_model->setBluetoothAudioModeOpts(m_soundDBusInter->bluetoothAudioModeOpts());\n    m_model->setCurrentBluetoothAudioMode(m_soundDBusInter->bluetoothAudioMode());\n    m_model->setEnableSoundEffect(m_soundDBusInter->enabled());\n    m_model->setWaitSoundReceiptTime(m_waitSoundPortReceipt);\n    m_model->setAudioServer(m_soundDBusInter->audioServer());\n    m_model->setAudioServerChangedState(m_soundDBusInter->audioServerState());\n    m_model->setAudioMono(m_soundDBusInter->audioMono());\n\n    initAudioServerData();\n    refreshSoundEffect();\n    m_model->updateSoundEffectsModel();\n\n    // m_model->initSoundDeviceModel(Port::In);\n    // m_model->initSoundDeviceModel(Port::Out);\n\n    m_pingTimer->start();\n    m_soundDBusInter->blockSignals(false);\n    defaultSinkChanged(m_model->defaultSink());\n    defaultSourceChanged(m_model->defaultSource());\n    cardsChanged(m_model->audioCards());\n}\n\nvoid SoundWorker::deactivate()\n{\n    m_pingTimer->stop();\n\n    m_soundDBusInter->blockSignals(true);\n}\n\nvoid SoundWorker::refreshSoundEffect()\n{\n    m_model->setEnableSoundEffect(m_soundDBusInter->enabled());\n    m_soundDBusInter->GetSoundEnabledMap();\n}\n\nvoid SoundWorker::setAudioServer(const QString &value)\n{\n    m_soundDBusInter->SetAudioServer(value);\n}\n\nvoid SoundWorker::switchSpeaker(bool on)\n{\n    m_soundDBusInter->SetMuteSink(!on);\n}\n\nvoid SoundWorker::switchMicrophone(bool on)\n{\n    m_soundDBusInter->SetSourceMute(!on);\n}\n\nvoid SoundWorker::setPortEnabled(unsigned int cardid, QString portName, bool enable)\n{\n    if (m_soundDBusInter)\n        m_soundDBusInter->SetPortEnabled(cardid, portName, enable);\n}\n\nvoid SoundWorker::setSinkBalance(double balance)\n{\n    m_soundDBusInter->SetBalanceSink(balance, true);\n    qCDebug(DdcSoundWorker) << \"set balance to \" << balance;\n\n}\n\nvoid SoundWorker::setActivePort(int index, int portType)\n{\n    if (portType == Port::Out) {\n        m_model->setOutPutPortComboEnable(false);\n        m_waitOutputReceiptTimer->setInterval(m_model->currentWaitSoundReceiptTime());\n        m_waitOutputReceiptTimer->start();\n    } else if(portType == Port::In) {\n        m_model->setInPutPortComboEnable(false);\n        m_waitInputReceiptTimer->setInterval(m_model->currentWaitSoundReceiptTime());\n        m_waitInputReceiptTimer->start();\n    }\n\n    Port* port = m_model->getSoundDeviceData(index, portType);\n    if (port) {\n        setPort(port);\n    }\n}\n\nvoid SoundWorker::setSoundEffectEnable(int index, bool enable)\n{\n    m_soundDBusInter->EnableSound(m_model->getSoundEffectsType(index), enable, this , SLOT(refreshSoundEffect()), SLOT(refreshSoundEffect()));\n\n    // 目前后端没有提供属性，前端先改了，后端增加属性后从后端获取\n    m_model->setSoundEffectEnable(index, enable);\n}\n\nvoid SoundWorker::setSourceVolume(double volume)\n{\n    // Skip if volume is unchanged to avoid unnecessary DBus calls\n    if (qFuzzyCompare(m_soundDBusInter->volumeSource(), volume)) {\n        return;\n    }\n    m_soundDBusInter->SetSourceMute(qFuzzyCompare(0, volume));\n    m_soundDBusInter->SetSourceVolume(volume, !m_soundDBusInter->muteSource());\n    qCDebug(DdcSoundWorker) << \"set source volume to \" << volume;\n}\n\nvoid SoundWorker::setSinkVolume(double volume)\n{\n    qWarning()<<__FUNCTION__<<volume;\n    m_soundDBusInter->SetVolumeSink(volume, true);\n    qCDebug(DdcSoundWorker) << \"set sink volume to \" << volume;\n}\n\n//切换输入静音状态，flag为false时直接取消静音\nvoid SoundWorker::setSinkMute(bool flag)\n{\n    if (flag) {\n        m_soundDBusInter->SetMuteSink(!m_soundDBusInter->muteSink());\n    } else if (m_soundDBusInter->muteSink()) {\n        m_soundDBusInter->SetMuteSink(false);\n    }\n}\n\n//通知后端切换静音状态,flag为false时直接取消静音\nvoid SoundWorker::setSourceMute(bool flag)\n{\n    if (flag) {\n        m_soundDBusInter->SetSourceMute(!m_soundDBusInter->muteSource());\n    } else if (m_soundDBusInter->muteSource()) {\n        m_soundDBusInter->SetSourceMute(false);\n    }\n}\n\nvoid SoundWorker::setIncreaseVolume(bool value)\n{\n    m_soundDBusInter->setIncreaseVolume(value);\n}\n\nvoid SoundWorker::setReduceNoise(bool value)\n{\n    m_soundDBusInter->setReduceNoise(value);\n}\n\nvoid SoundWorker::setPausePlayer(bool value)\n{\n    m_soundDBusInter->setPausePlayer(value);\n}\n\nvoid SoundWorker::setPort(Port *port)\n{\n    m_soundDBusInter->SetPort(port->cardId(), port->id(), int(port->direction()));\n    qCDebug(DdcSoundWorker) << \"cardID:\" << port->cardId()  << \"portName:\" << port->name() << \"  \" << port->id() << \"  \" << port->direction();\n    m_model->setPort(port);\n}\n\nvoid SoundWorker::setEffectEnable(DDesktopServices::SystemSoundEffect effect, bool enable)\n{\n    m_soundDBusInter->EnableSound(m_model->getNameByEffectType(effect),\n                                  enable,\n                                  this,\n                                  SLOT(refreshSoundEffect()),\n                                  SLOT(refreshSoundEffect()));\n}\n\nvoid SoundWorker::enableAllSoundEffect(bool enable)\n{\n    m_soundDBusInter->setEnabled(enable);\n}\n\nvoid SoundWorker::setPortEnableIndex(int index, bool checked, int portType)\n{\n    Port* data = m_model->getSoundDeviceData(index, portType);\n    if (data) {\n        setPortEnabled(data->cardId(), data->id(), checked);\n    }\n}\n\nvoid SoundWorker::playSoundEffect(int index)\n{\n    // Todo 当前QSoundEffect重复设置setSource的时候没有生效，当前先通过重新构造来控制\n    if (m_sound) {\n        if (m_sound->isPlaying()) {\n            m_model->updatePlayAniIconPath(m_upateSoundEffectsIndex, \"\");\n        }\n        delete m_sound;\n        m_sound = nullptr;\n    }\n\n    m_sound = new QSoundEffect(this);\n    m_sound->setAudioDevice(QMediaDevices::defaultAudioOutput());\n    connect(m_sound, &QSoundEffect::playingChanged, this, &SoundWorker::onSoundPlayingChanged);\n\n    auto eff = m_model->soundEffectMap()[index].second;\n    m_upateSoundEffectsIndex = index;\n\n    qDebug() << \" sound play soundEffect :\" << QUrl::fromLocalFile(m_model->soundEffectPathByType(eff));\n    m_sound->setSource(QUrl::fromLocalFile(m_model->soundEffectPathByType(eff)));\n    m_sound->setVolume(1);\n    m_sound->play();\n}\n\nvoid SoundWorker::stopSoundEffectPlayback()\n{\n    if (m_sound) {\n        if (m_sound->isPlaying()) {\n            m_model->updatePlayAniIconPath(m_upateSoundEffectsIndex, \"\");\n        }\n        delete m_sound;\n        m_sound = nullptr;\n    }\n}\n\nvoid SoundWorker::setBluetoothMode(const QString &mode)\n{\n    m_soundDBusInter->SetBluetoothAudioMode(mode);\n}\n\nvoid SoundWorker::defaultSinkChanged(const QDBusObjectPath &path)\n{\n    qCDebug(DdcSoundWorker) << \"sink default path:\" << path.path();\n    if (path.path().isEmpty() || path.path() == \"/\" )\n        return; //路径为空\n\n\n    m_soundDBusInter->setSinkDevicePath(path.path());\n    connect(m_soundDBusInter, &SoundDBusProxy::MuteSinkChanged, [this](bool mute) { m_model->setSpeakerOn(mute);});\n    connect(m_soundDBusInter, &SoundDBusProxy::BalanceSinkChanged, m_model, &SoundModel::setSpeakerBalance);\n    connect(m_soundDBusInter, &SoundDBusProxy::VolumeSinkChanged, m_model, &SoundModel::setSpeakerVolume);\n    connect(m_soundDBusInter, &SoundDBusProxy::ActivePortSinkChanged, this, &SoundWorker::activeSinkPortChanged);\n    connect(m_soundDBusInter, &SoundDBusProxy::CardSinkChanged, this, &SoundWorker::onSinkCardChanged);\n\n    m_model->setSpeakerOn(m_soundDBusInter->muteSink());\n    m_model->setSpeakerBalance(m_soundDBusInter->balanceSink());\n    m_model->setSpeakerVolume(m_soundDBusInter->volumeSink());\n    activeSinkPortChanged(m_soundDBusInter->activePortSink());\n    onSinkCardChanged(m_soundDBusInter->cardSink());\n}\n\nvoid SoundWorker::defaultSourceChanged(const QDBusObjectPath &path)\n{\n    qDebug() << \"source default path:\" << path.path();\n    if (path.path().isEmpty() || path.path() == \"/\" ) return; //路径为空\n\n    m_soundDBusInter->setSourceDevicePath(path.path());\n\n    connect(m_soundDBusInter, &SoundDBusProxy::MuteSourceChanged, [this](bool mute) { m_model->setMicrophoneOn(mute); });\n    connect(m_soundDBusInter, &SoundDBusProxy::VolumeSourceChanged, m_model, &SoundModel::setMicrophoneVolume);\n    connect(m_soundDBusInter, &SoundDBusProxy::ActivePortSourceChanged, this, &SoundWorker::activeSourcePortChanged);\n    connect(m_soundDBusInter, &SoundDBusProxy::CardSourceChanged, this, &SoundWorker::onSourceCardChanged);\n\n    m_model->setMicrophoneOn(m_soundDBusInter->muteSource());\n    m_model->setMicrophoneVolume(m_soundDBusInter->volumeSource());\n    activeSourcePortChanged(m_soundDBusInter->activePortSource());\n    onSourceCardChanged(m_soundDBusInter->cardSource());\n\n#ifndef DCC_DISABLE_FEEDBACK\n    QDBusObjectPath meter = m_soundDBusInter->GetMeter();\n    if (meter.path().isEmpty())\n        return;\n    m_soundDBusInter->setMeterDevicePath(meter.path());\n    connect(m_soundDBusInter, &SoundDBusProxy::VolumeMeterChanged, m_model, &SoundModel::setMicrophoneFeedback);\n    m_model->setMicrophoneFeedback(m_soundDBusInter->volumeMeter());\n\n#endif\n}\n\nvoid SoundWorker::cardsChanged(const QString &cards)\n{\n    changeOutputDeviceComboxStatus();\n    changeInputDeviceComboxStatus();\n    QMap<uint, QStringList> tmpCardIds;\n    QJsonDocument doc = QJsonDocument::fromJson(cards.toUtf8());\n    QJsonArray jCards = doc.array();\n    for (QJsonValue cV : jCards) {\n        QJsonObject jCard = cV.toObject();\n        const uint cardId = static_cast<uint>(jCard[\"Id\"].toInt());\n        const QString cardName = jCard[\"Name\"].toString();\n        QJsonArray jPorts = jCard[\"Ports\"].toArray();\n\n        QStringList tmpPorts;\n\n        for (QJsonValue pV : jPorts) {\n            QJsonObject jPort = pV.toObject();\n            const double portAvai = jPort[\"Available\"].toDouble();\n            if (portAvai == 2.0 || portAvai == 0.0) {  // 0 Unknown 1 Not available 2 Available\n                const QString portId = jPort[\"Name\"].toString();\n                const QString portName = jPort[\"Description\"].toString();\n                const bool isEnabled = jPort[\"Enabled\"].toBool();\n                const bool isBluetooth = jPort[\"Bluetooth\"].toBool();\n\n                Port *port = m_model->findPort(portId, cardId);\n                const bool include = port != nullptr;\n                if (!include) {\n                    port = new Port(m_model);\n                    connect(port, &Port::isOutputActiveChanged, this, [this](bool isActive) {\n                        if (isActive) {\n                            changeOutputDeviceComboxStatus();\n                        }\n                    });\n                    connect(port, &Port::isInputActiveChanged, this, [this](bool isActive) {\n                        if (isActive) {\n                            changeInputDeviceComboxStatus();\n                        }\n                    });\n                }\n\n                port->setId(portId);\n                port->setName(portName);\n                port->setDirection(Port::Direction(jPort[\"Direction\"].toDouble()));\n                port->setCardId(cardId);\n                port->setCardName(cardName);\n                port->setEnabled(isEnabled);\n                port->setIsBluetoothPort(isBluetooth);\n\n                const bool isActiveOuputPort = (portId == m_activeSinkPort) && (cardId == m_activeOutputCard);\n                const bool isActiveInputPort = (portId == m_activeSourcePort) && (cardId == m_activeInputCard);\n\n                port->setIsActive(isActiveInputPort || isActiveOuputPort);\n\n                if (isActiveOuputPort) {\n                    m_model->setShowBluetoothMode(port->isBluetoothPort());\n                }\n                if (isActiveInputPort) {\n                    m_model->setShowInputBluetoothMode(port->isBluetoothPort());\n                }\n                if (!include) { m_model->addPort(port); }\n\n                tmpPorts << portId;\n            }\n        }\n        if (!jPorts.isEmpty())\n            tmpCardIds.insert(cardId, tmpPorts);\n    }\n\n    for (Port *port : m_model->ports()) {\n        //if the card is not in the list\n        if (!tmpCardIds.contains(port->cardId())) {\n            m_model->removePort(port->id(), port->cardId());\n        } else if (!tmpCardIds[port->cardId()].contains(port->id())) {\n            m_model->removePort(port->id(), port->cardId());\n        }\n    }\n\n    m_model->updatePortCombo();\n    m_model->updateAllDeviceModel();\n    m_model->updateActiveComboIndex();\n}\n\nvoid SoundWorker::activeSinkPortChanged(const AudioPort &activeSinkPort)\n{\n    qCDebug(DdcSoundWorker) << \"active sink port changed to: \" << activeSinkPort.name;\n    m_activeSinkPort = activeSinkPort.name;\n\n    for (auto port : m_model->ports()) {\n        if (m_activeSinkPort == port->id()) {\n            m_model->setPort(port);\n        }\n    }\n\n    updatePortActivity();\n}\n\nvoid SoundWorker::activeSourcePortChanged(const AudioPort &activeSourcePort)\n{\n    qCDebug(DdcSoundWorker) << \"active source port changed to: \" << activeSourcePort.name;\n    m_activeSourcePort = activeSourcePort.name;\n\n    updatePortActivity();\n}\n\nvoid SoundWorker::onSinkCardChanged(const uint &cardId)\n{\n    m_activeOutputCard = cardId;\n\n    updatePortActivity();\n}\n\nvoid SoundWorker::onSourceCardChanged(const uint &cardId)\n{\n    m_activeInputCard = cardId;\n\n    updatePortActivity();\n}\n\nvoid SoundWorker::getSoundEnabledMapFinished(QMap<QString, bool> map)\n{\n    for (auto it = map.constBegin(); it != map.constEnd(); ++it) {\n        if (!m_model->checkSEExist(it.key())) continue;\n\n        DDesktopServices::SystemSoundEffect type = m_model->getEffectTypeByGsettingName(it.key());\n        m_model->setEffectData(type, it.value());\n\n        QString path = m_soundDBusInter->GetSoundFile(it.key());\n        m_model->updateSoundEffectPath(type, path);\n    }\n\n    m_model->updateSoundEffectsModel();\n}\n\n\nvoid SoundWorker::getSoundPathFinished(QDBusPendingCallWatcher *watcher)\n{\n    if (!watcher->isError()) {\n        QDBusReply<QString> reply = watcher->reply();\n        m_model->updateSoundEffectPath(\n                    watcher->property(\"Type\").value<DDesktopServices::SystemSoundEffect>(),\n                    reply.value());\n    } else {\n        qCDebug(DdcSoundWorker) << \"get sound path error.\" << watcher->error();\n    }\n\n    watcher->deleteLater();\n}\n\nvoid SoundWorker::onAniTimerTimeOut()\n{\n    m_model->updatePlayAniIconPath(m_upateSoundEffectsIndex, m_playAniIconPath);\n}\n\nvoid SoundWorker::onSoundPlayingChanged()\n{\n    QString path(\"\");\n    if (m_sound && m_sound->isPlaying()) {\n        path = m_playAniIconPath;\n        m_playAnimationTime->start();\n    } else {\n        m_playAnimationTime->stop();\n    }\n\n    m_model->updatePlayAniIconPath(m_upateSoundEffectsIndex, path);\n}\n\nvoid SoundWorker::updatePortActivity()\n{\n    for (Port *port : m_model->ports()) {\n        const bool isActiveOuputPort = (port->id() == m_activeSinkPort) && (port->cardId() == m_activeOutputCard);\n        const bool isActiveInputPort = (port->id() == m_activeSourcePort) && (port->cardId() == m_activeInputCard);\n        port->setIsActive(isActiveInputPort || isActiveOuputPort);\n\n        m_model->updateSoundDeviceModel(port);\n\n        if (isActiveOuputPort) {\n            m_model->setShowBluetoothMode(port->isBluetoothPort());\n        }\n        if (isActiveInputPort) {\n            m_model->setShowInputBluetoothMode(port->isBluetoothPort());\n        }\n    }\n    m_model->updateActiveComboIndex();\n}\n\nvoid SoundWorker::initAudioServerData()\n{\n    // treeland单独处理，避免后续这里有变动\n    if (Dtk::Gui::DGuiApplicationHelper::testAttribute(Dtk::Gui::DGuiApplicationHelper::IsWaylandPlatform)) {\n        AudioServerData data;\n        data.name = \"PipeWire\";\n        data.serverName = \"pipewire\";\n        data.checked = true;\n        m_model->addAudioServerData(data);\n        return;\n    }\n\n    for (auto item : AudioServerNames) {\n        AudioServerData data;\n        data.name = item.second;\n        data.serverName = item.first;\n\n        data.checked = false;\n        if (data.serverName == m_model->audioServer()) {\n            data.checked = true;\n        }\n        m_model->addAudioServerData(data);\n    }\n}\n\nvoid SoundWorker::updatePlayAniIconPath()\n{\n    auto themeType = Dtk::Gui::DGuiApplicationHelper::instance()->themeType();\n    auto themeTypeStr = themeType == Dtk::Gui::DGuiApplicationHelper::ColorType::DarkType ? \"dark\" : \"light\";\n    m_playAniIconPath = QString(\"qrc:/icons/deepin/builtin/icons/%1/volume_sound_wave_ani.webp\").arg(themeTypeStr);\n}\n\nvoid SoundWorker::changeOutputDeviceComboxStatus()\n{\n    m_model->setOutPutPortComboEnable(false);\n    m_waitOutputReceiptTimer->setInterval(m_model->currentWaitSoundReceiptTime());\n    m_waitOutputReceiptTimer->start();\n}\n\nvoid SoundWorker::changeInputDeviceComboxStatus()\n{\n    m_model->setInPutPortComboEnable(false);\n    m_waitInputReceiptTimer->setInterval(m_model->currentWaitSoundReceiptTime());\n    m_waitInputReceiptTimer->start();\n}\n\nvoid SoundWorker::setAudioServerIndex(int index)\n{\n    if (index >= 0  && AudioServerNames.count() > index) {\n        setAudioServer(AudioServerNames.at(index).first);\n    }\n}\n\nvoid SoundWorker::setAudioMono(bool enable)\n{\n    if (enable != m_model->audioMono()) {\n        m_soundDBusInter->setAudioMono(enable);\n    }\n}\n"
  },
  {
    "path": "src/plugin-sound/operation/soundworker.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef SOUNDWORKER_H\n#define SOUNDWORKER_H\n\n#include <QObject>\n\n#include \"sounddbusproxy.h\"\n#include \"soundmodel.h\"\n#include \"audioport.h\"\n\n#include <DDesktopServices>\n#include \"qdbusconnectioninterface.h\"\n#include <QtQml/qqml.h>\n#include <QTimer>\n#include <QSoundEffect>\n#include <QMediaDevices>\n\nclass SoundWorker : public QObject\n{\n    Q_OBJECT\n\n    QML_NAMED_ELEMENT(SoundWorker)\n    QML_SINGLETON\npublic:\n    explicit SoundWorker(SoundModel *model, QObject * parent = 0);\n\n    void activate();\n    void deactivate();\n\n    Q_INVOKABLE void setSinkVolume(double volume);\n    Q_INVOKABLE void setReduceNoise(bool value);\n    Q_INVOKABLE void setPausePlayer(bool value);\n    Q_INVOKABLE void setIncreaseVolume(bool value);\n    Q_INVOKABLE void setSinkBalance(double balance);\n    Q_INVOKABLE void setActivePort(int index, int portType);\n    Q_INVOKABLE void setSoundEffectEnable(int index, bool enable);\n    Q_INVOKABLE void setSourceVolume(double volume);\n    Q_INVOKABLE void enableAllSoundEffect(bool enable);\n    Q_INVOKABLE void setPortEnableIndex(int index, bool checked, int portType);\n    Q_INVOKABLE void playSoundEffect(int index);\n    Q_INVOKABLE void stopSoundEffectPlayback();\n    Q_INVOKABLE void setAudioServerIndex(int index);\n    Q_INVOKABLE void setAudioMono(bool enable);\n\npublic Q_SLOTS:\n    void switchSpeaker(bool on);\n    void switchMicrophone(bool on);\n\n    void setPortEnabled(unsigned int cardid,QString portName,bool enable);\n    void setSourceMute(bool flag = true);\n    void setSinkMute(bool flag = true);\n\n    void setPort(Port *port);\n    void setEffectEnable(DDesktopServices::SystemSoundEffect effect, bool enable);\n    void setBluetoothMode(const QString &mode);\n    void refreshSoundEffect();\n\n    void setAudioServer(const QString &value);\n\nprivate Q_SLOTS:\n    void defaultSinkChanged(const QDBusObjectPath &path);\n    void defaultSourceChanged(const QDBusObjectPath &path);\n    void cardsChanged(const QString &cards);\n\n    void activeSinkPortChanged(const AudioPort &activeSinkPort);\n    void activeSourcePortChanged(const AudioPort &activeSourcePort);\n\n    void onSinkCardChanged(const uint &cardId);\n    void onSourceCardChanged(const uint &cardId);\n\n    void getSoundEnabledMapFinished(QMap<QString, bool> map);\n    void getSoundPathFinished(QDBusPendingCallWatcher *watcher);\n\n    void onAniTimerTimeOut();\n    void onSoundPlayingChanged();\n    void updatePlayAniIconPath();\n    void changeOutputDeviceComboxStatus();\n    void changeInputDeviceComboxStatus();\n\nprivate:\n    void initConnect();\n    void updatePortActivity();\n    void initAudioServerData();\n\nprivate:\n    SoundModel *m_model;\n    QString m_activeSinkPort;\n    QString m_activeSourcePort;\n    uint m_activeOutputCard;\n    uint m_activeInputCard;\n\n    SoundDBusProxy *m_soundDBusInter;\n\n    QTimer *m_pingTimer;\n    QDBusConnectionInterface *m_inter;\n\n    QSoundEffect* m_sound;\n    int m_waitSoundPortReceipt;\n    QTimer* m_waitInputReceiptTimer;\n    QTimer* m_waitOutputReceiptTimer;\n    QMediaDevices* m_mediaDevices;\n\n    QTimer* m_playAnimationTime;\n    int m_upateSoundEffectsIndex;\n    QString m_playAniIconPath;\n};\n\n#endif // SOUNDWORKER_H\n"
  },
  {
    "path": "src/plugin-sound/qml/DeviceListView.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\n\nimport org.deepin.dtk 1.0\nimport org.deepin.dcc 1.0\n\nRectangle {\n    id: root\n    property alias model: repeater.model\n    property bool backgroundVisible: true\n    property bool showPlayBtn: false\n    signal clicked(int index, bool checked)\n    signal playbtnClicked(int index)\n\n    color: \"transparent\"\n    implicitHeight: layoutView.height\n    Layout.fillWidth: true\n\n    anchors.left: parent.left\n    ColumnLayout {\n        id: layoutView\n        width: parent.width\n        clip: true\n        spacing: 0\n        Repeater {\n            id: repeater\n            delegate: ItemDelegate {\n                id: itemCtl\n                Layout.fillWidth: true\n                leftPadding: 16\n                rightPadding: 10\n                implicitHeight: 40\n                cascadeSelected: true\n                backgroundVisible: root.backgroundVisible\n                contentFlow: true\n                text: model.name\n                hoverEnabled: true\n                focusPolicy: Qt.TabFocus\n                activeFocusOnTab: true\n                corners: getCornersForBackground(index, repeater.count)\n                Keys.onUpPressed: function (event) {\n                    var prevIndex = index - 1\n                    if (prevIndex < 0)\n                        prevIndex = repeater.count - 1\n                    const prev = repeater.itemAt(prevIndex)\n                    if (prev) {\n                        prev.forceActiveFocus(Qt.BacktabFocusReason)\n                        event.accepted = true\n                    }\n                }\n                Keys.onDownPressed: function (event) {\n                    var nextIndex = index + 1\n                    if (nextIndex >= repeater.count)\n                        nextIndex = 0\n                    const next = repeater.itemAt(nextIndex)\n                    if (next) {\n                        next.forceActiveFocus(Qt.TabFocusReason)\n                        event.accepted = true\n                    }\n                }\n                content: RowLayout {\n                    Layout.alignment: Qt.AlignVCenter\n                    spacing: 0\n                    AnimatedImage {\n                        source: model.aniIconPath\n                        Layout.alignment: Qt.AlignLeft\n                        visible: showPlayBtn && model.aniIconPath.length !== 0\n                        sourceSize.width: 24\n                        sourceSize.height: 24\n                    }\n\n                    RowLayout {\n                        spacing: 10\n                        Layout.alignment: Qt.AlignRight\n                        IconButton {\n                            Layout.alignment: Qt.AlignLeft\n                            icon.name: \"play_back\"\n                            flat: true\n                            visible: showPlayBtn && itemCtl.hovered\n                            focusPolicy: Qt.NoFocus\n                            activeFocusOnTab: false\n                            implicitHeight: 20\n                            implicitWidth: 20\n                            icon.width: 16\n                            icon.height: 16\n                            background: null\n                            onClicked: {\n                                console.log(\"play_back has clicked \")\n                                root.playbtnClicked(index)\n                            }\n                        }\n\n                        DccCheckIcon {\n                            checked: model.isEnabled\n                            size: 16\n                            onClicked: {\n                                root.clicked(index, !model.isEnabled)\n                            }\n                        }\n                    }\n                }\n                background: DccItemBackground {\n                    separatorVisible: true\n                }\n\n                onClicked: {\n                    root.clicked(index, !model.isEnabled)\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-sound/qml/MicrophonePage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick\nimport QtQuick.Layouts 1.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Templates as T\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: root\n\n    function toPercent(value) {\n        return Number(value * 100).toFixed(0) + \"%\"\n    }\n\n    DccTitleObject {\n        name: \"inPut\"\n        parentName: \"sound/inPut\"\n        displayName: qsTr(\"Input\")\n        weight: 10\n    }\n\n    DccObject {\n        name: \"noIntput\"\n        parentName: \"sound/inPut\"\n        weight: 20\n        pageType: DccObject.Item\n        backgroundType: DccObject.Normal\n        visible: dccData.model().inPutPortCombo.length === 0\n        page: Column {\n            Label {\n                height: 100\n                width: parent.width\n                Layout.leftMargin: 10\n                horizontalAlignment: Text.AlignHCenter\n                verticalAlignment: Text.AlignVCenter\n                font: D.DTK.fontManager.t8\n                text: qsTr(\"No input device for sound found\")\n            }\n        }\n    }\n\n    DccObject {\n        name: \"inputGroup\"\n        parentName: \"sound/inPut\"\n        weight: 30\n        pageType: DccObject.Item\n        page: DccGroupView {}\n        visible: dccData.model().inPutPortCombo.length !== 0\n        DccObject{\n            name: \"inputVolume\"\n            parentName: \"sound/inPut/inputGroup\"\n            displayName: qsTr(\"Input Volume\")\n            weight: 10\n            pageType: DccObject.Editor\n            page: RowLayout {\n                Layout.alignment: Qt.AlignRight\n\n                Label {\n                    Layout.alignment: Qt.AlignVCenter\n                    font: D.DTK.fontManager.t10\n                    color: Qt.rgba(palette.text.r, palette.text.g, palette.text.b, 0.5)\n                    text: root.toPercent(voiceTipsSlider1.value)\n                }\n\n                D.ActionButton {\n                    Layout.alignment: Qt.AlignVCenter\n                    icon {\n                        name: dccData.model().microphoneOn ? \"sound_off\" : \"small_volume\"\n                        width: 16\n                        height: 16\n                    }\n                    palette.windowText: D.ColorSelector.textColor\n                    flat: !hovered\n                    implicitWidth: 24\n                    implicitHeight: 24\n                    hoverEnabled: enabled\n                    background: Rectangle {\n                        property D.Palette pressedColor: D.Palette {\n                            normal: Qt.rgba(0, 0, 0, 0.2)\n                            normalDark: Qt.rgba(1, 1, 1, 0.25)\n                        }\n                        property D.Palette hoveredColor: D.Palette {\n                            normal: Qt.rgba(0, 0, 0, 0.1)\n                            normalDark: Qt.rgba(1, 1, 1, 0.1)\n                        }\n                        radius: DS.Style.control.radius\n                        color: parent.pressed ? D.ColorSelector.pressedColor : (parent.hovered ? D.ColorSelector.hoveredColor : \"transparent\")\n                        border {\n                            color: parent.palette.highlight\n                            width: parent.visualFocus ? DS.Style.control.focusBorderWidth : 0\n                        }\n                    }\n\n                    onClicked: {\n                        dccData.worker().setSourceMute()\n                    }\n                }\n                Slider {\n                    id: voiceTipsSlider1\n                    Layout.alignment: Qt.AlignVCenter\n                    implicitHeight: 24\n                    handleType: Slider.HandleType.NoArrowHorizontal\n                    highlightedPassedGroove: true\n                    from: 0\n                    stepSize: 0.01\n                    to: 1\n                    value: dccData.model().microphoneVolume\n                    onPressedChanged: {\n                        if (!pressed) {\n                            dccData.worker().setSourceVolume(voiceTipsSlider1.value)\n                        }\n                    }\n                }\n                D.IconButton {\n                    Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                    icon.name: \"big_volume\"\n                    icon.width: 16\n                    icon.height: 16\n                    implicitWidth: 24\n                    background: Rectangle {\n                        color: \"transparent\" // 背景透明\n                        border.color: \"transparent\" // 边框透明\n                        border.width: 0\n                    }\n                }\n            }\n        }\n\n        DccObject{\n            name: \"microphoneFeedback\"\n            parentName: \"sound/inPut/inputGroup\"\n            displayName: qsTr(\"Input Level\")\n            weight: 20\n            pageType: DccObject.Editor\n            page: RowLayout {\n                Layout.alignment: Qt.AlignRight\n\n                D.DciIcon {\n                    name: \"small_volume\"\n                    palette: D.DTK.makeIconPalette(parent.palette)\n                    sourceSize: Qt.size(16, 16)\n                    implicitWidth: 24\n                    Layout.rightMargin: 4\n                }\n                Item {\n                    Layout.fillWidth: false\n                    implicitHeight: slider.implicitHeight\n                    implicitWidth: slider.implicitWidth\n\n                    Slider {\n                        id: slider\n                        anchors.fill: parent\n                        handleType: -2\n                        highlightedPassedGroove: true\n                        value: dccData.model().microphoneFeedback\n                    }\n\n                    MouseArea {\n                        anchors.fill: parent\n                        hoverEnabled: true\n                    }\n                }\n                D.DciIcon {\n                    name: \"big_volume\"\n                    palette: D.DTK.makeIconPalette(parent.palette)\n                    sourceSize: Qt.size(16, 16)\n                    implicitWidth: 24\n                    Layout.rightMargin: 4\n                    Layout.leftMargin: 4\n                }\n            }\n        }\n\n        DccObject {\n            name: \"reduceNoise\"\n            parentName: \"sound/inPut/inputGroup\"\n            displayName: qsTr(\"Automatic Noise Suppression\")\n            weight: 30\n            pageType: DccObject.Editor\n            visible: !dccData.model().showInputBluetoothMode\n            page: Switch {\n                Layout.alignment: Qt.AlignRight | Qt.AlignTop\n\n                checked: dccData.model().reduceNoise\n                onCheckedChanged: {\n                    if (dccData.model().reduceNoise !== checked) {\n                        dccData.worker().setReduceNoise(checked)\n                    }\n                }\n            }\n        }\n\n        DccObject {\n            name: \"inputDevice\"\n            parentName: \"sound/inPut/inputGroup\"\n            displayName: qsTr(\"Input Device\")\n            weight: 40\n            pageType: DccObject.Editor\n            page: D.ComboBox {\n                id: control\n                Layout.alignment: Qt.AlignRight\n                Layout.rightMargin: 10\n                currentIndex: dccData.model().inPutPortComboIndex\n                flat: true\n                textRole: \"name\"\n                model: dccData.model().soundInputDeviceModel()\n                implicitWidth: 300\n\n                contentItem: RowLayout {\n                    spacing: DS.Style.comboBox.spacing\n\n                    Loader {\n                        property string iconName: (control.iconNameRole && model.get(control.currentIndex)[control.iconNameRole] !== undefined)\n                                                  ? model.get(control.currentIndex)[control.iconNameRole] : null\n                        active: iconName\n\n                        sourceComponent: D.DciIcon {\n                            palette: DTK.makeIconPalette(control.palette)\n                            mode: control.D.ColorSelector.controlState\n                            theme: control.D.ColorSelector.controlTheme\n                            name: iconName\n                            sourceSize: Qt.size(DS.Style.comboBox.iconSize, DS.Style.comboBox.iconSize)\n                            fallbackToQIcon: true\n                        }\n                    }\n\n                    T.TextField {\n                        id: textField\n\n                        function getDisplayText() {\n                            return control.editable ? control.editText : fm.elidedText(control.displayText,\n                                                Text.ElideRight, control.implicitWidth - DS.Style.comboBox.iconSize - DS.Style.comboBox.spacing * 4)\n                        }\n\n                        FontMetrics {\n                            id: fm\n                            font: textField.font\n                            onFontChanged: {\n                                textField.text = textField.getDisplayText()\n                            }\n                        }\n                        Connections {\n                            target: control\n                            function onDisplayTextChanged() {\n                                textField.text = textField.getDisplayText()\n                            }\n                        }\n\n                        Layout.fillWidth: true\n                        implicitHeight: fm.height\n                        Layout.rightMargin: DS.Style.comboBox.spacing\n                        text: getDisplayText()\n\n                        enabled: control.editable\n                        autoScroll: control.editable\n                        readOnly: control.down\n                        inputMethodHints: control.inputMethodHints\n                        validator: control.validator\n                        selectByMouse: true\n\n                        color: control.editable ? control.palette.text : control.palette.buttonText\n                        selectionColor: control.palette.highlight\n                        selectedTextColor: control.palette.highlightedText\n                        verticalAlignment: Text.AlignVCenter\n                        horizontalAlignment: control.horizontalAlignment\n\n                        ToolTip {\n                            visible: !control.editable && textField.text !== control.displayText && textField.hovered\n                            text: control.displayText\n                            delay: 500\n                        }\n                    }\n                }\n\n                delegate: MenuItem {\n                    id: menuItem\n                    useIndicatorPadding: true\n                    width: control.width\n                    text: model.name\n                    visible: model.isEnabled\n                    icon.name: (control.iconNameRole && model[control.iconNameRole] !== undefined) ? model[control.iconNameRole] : null\n                    highlighted: control.isInteractingWithContent ? control.highlightedIndex === index : false\n                    hoverEnabled: control.hoverEnabled\n                    autoExclusive: true\n                    checked: control.currentIndex === index\n                    implicitHeight: visible ? DS.Style.control.implicitHeight(menuItem) : 0\n\n                    readonly property real availableTextWidth: {\n                        if (!contentItem)\n                            return width - leftPadding - rightPadding\n                        let textWidth = contentItem.width - contentItem.leftPadding - contentItem.rightPadding\n                        if (icon.name) {\n                            textWidth -= DS.Style.menu.item.iconSize.width + spacing\n                        }\n                        return textWidth\n                    }\n                    FontMetrics {\n                        id: fontMetrics\n                        font: menuItem.font\n                    }\n                    ToolTip {\n                        visible: menuItem.hovered && fontMetrics.advanceWidth(model.name) > menuItem.availableTextWidth\n                        text: model.name\n                        delay: 500\n                    }\n\n                    onClicked: {\n                        dccData.worker().setActivePort(index, 2)\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-sound/qml/Sound.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: root\n    name: \"sound\"\n    parentName: \"system\"\n    displayName: qsTr(\"Sound\")\n    description: qsTr(\"Output, input, sound effects, devices\")\n    icon: \"audio\"\n    weight: 20\n}\n"
  },
  {
    "path": "src/plugin-sound/qml/SoundDevicemanagesPage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nimport org.deepin.dtk 1.0\nimport org.deepin.dcc 1.0\n\nDccObject {\n    DccTitleObject {\n        name: \"outputDevice\"\n        parentName: \"sound/deviceManager\"\n        displayName: qsTr(\"Output Devices\")\n        description: qsTr(\"Select whether to enable the devices\")\n        visible: dccData.model().outPutCount !== 0\n        weight: 10\n    }\n    DccObject {\n        name: \"outputDeviceList\"\n        parentName: \"sound/deviceManager\"\n        weight: 20\n        visible: dccData.model().outPutCount !== 0\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: DeviceListView {\n            model: dccData.model().soundOutputDeviceModel()\n            onClicked: function (index, checked) {\n                dccData.worker().setPortEnableIndex(index, checked, 1)\n            }\n        }\n        onParentItemChanged: {\n            if (parentItem) {\n                parentItem.bottomInset = 15\n            }\n        }\n    }\n    DccTitleObject {\n        name: \"inputDevice\"\n        parentName: \"sound/deviceManager\"\n        displayName: qsTr(\"Input Devices\")\n        description: qsTr(\"Select whether to enable the devices\")\n        visible: dccData.model().inPutPortCount !== 0\n        weight: 30\n    }\n    DccObject {\n        name: \"inputDeviceList\"\n        parentName: \"sound/deviceManager\"\n        weight: 40\n        visible: dccData.model().inPutPortCount !== 0\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: DeviceListView {\n            model: dccData.model().soundInputDeviceModel()\n            onClicked: function (index, checked) {\n                dccData.worker().setPortEnableIndex(index, checked, 2)\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-sound/qml/SoundEffectsPage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nimport org.deepin.dtk 1.0\nimport org.deepin.dcc 1.0\n\nDccObject {\n    DccObject {\n        name: \"soundEffects\"\n        parentName: \"sound/soundEffectsPage\"\n        displayName: qsTr(\"Sound Effects\")\n        weight: 10\n        pageType: DccObject.Editor\n        page: Switch {\n            checked: dccData.model().enableSoundEffect\n            onCheckedChanged: {\n                dccData.worker().enableAllSoundEffect(checked)\n            }\n        }\n    }\n    DccObject {\n        name: \"effectsList\"\n        parentName: \"sound/soundEffectsPage\"\n        weight: 20\n        visible: dccData.model().enableSoundEffect\n        pageType: DccObject.Item\n        onParentItemChanged: item => { if (item) item.activeFocusOnTab = false }\n        page: DeviceListView {\n            backgroundVisible: false\n            showPlayBtn: true\n            model: dccData.model().soundEffectsModel()\n            onClicked: function (index, checked) {\n                dccData.worker().setSoundEffectEnable(index, checked)\n            }\n\n            onPlaybtnClicked: function (index) {\n                console.log(\" effectsList click play \", index)\n\n                dccData.worker().playSoundEffect(index)\n            }\n\n            onVisibleChanged: {\n                if (!visible) {\n                    dccData.worker().stopSoundEffectPlayback();\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-sound/qml/SoundMain.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    DccObject {\n        name: \"outPut\"\n        parentName: \"sound\"\n        icon: \"system\"\n        weight: 10\n        pageType: DccObject.Item\n        page: DccGroupView {\n            isGroup: false\n        }\n        onParentItemChanged: {\n            if (parentItem) {\n                parentItem.bottomInset = 5\n            }\n        }\n        SpeakerPage {}\n    }\n    DccObject {\n        name: \"inPut\"\n        parentName: \"sound\"\n        icon: \"system\"\n        weight: 20\n        pageType: DccObject.Item\n        page: DccGroupView {\n            isGroup: false\n        }\n        onParentItemChanged: {\n            if (parentItem) {\n                parentItem.bottomInset = 10\n            }\n        }\n        MicrophonePage {}\n    }\n    DccTitleObject{\n        name: \"soundSettings\"\n        parentName: \"sound\"\n        displayName: qsTr(\"Settings\")\n        weight: 30\n    }\n\n    DccObject {\n        name: \"soundEffectsPage\"\n        parentName: \"sound\"\n        displayName: qsTr(\"Sound Effects\")\n        description: qsTr(\"Enable/disable sound effects\")\n        icon: \"system_sound\"\n        weight: 40\n        page: DccRightView {\n            isGroup: true\n        }\n        SoundEffectsPage {}\n    }\n    DccObject {\n        name: \"deviceManager\"\n        parentName: \"sound\"\n        displayName: qsTr(\"Devices Management\")\n        description: qsTr(\"Enable/disable audio devices\")\n        icon: \"equipment_management\"\n        visible: (dccData.model().inPutPortCount !== 0 || dccData.model().outPutCount !== 0) && config.showDeviceManager\n        weight: 50\n        SoundDevicemanagesPage {}\n\n        D.Config {\n            id: config\n            name: \"org.deepin.dde.control-center.sound\"\n            property bool showDeviceManager: true\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-sound/qml/SpeakerPage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.0\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\nimport QtQuick.Templates as T\nimport org.deepin.dtk 1.0\nimport org.deepin.dtk.style 1.0 as DS\n\nimport org.deepin.dcc 1.0\n\nimport SoundDeviceModel 1.0\n\nDccObject {\n    id: root\n    function toPercent(value) {\n        return Number(value * 100).toFixed(0) + \"%\"\n    }\n    DccTitleObject {\n        name: \"output\"\n        parentName: \"sound/outPut\"\n        displayName: qsTr(\"Output\")\n        weight: 10\n    }\n\n    DccObject {\n        name: \"noOutput\"\n        parentName: \"sound/outPut\"\n        weight: 20\n        pageType: DccObject.Item\n        backgroundType: DccObject.Normal\n        visible: dccData.model().outPutPortCombo.length === 0\n        page: Column {\n            width: parent.width\n            Label {\n                height: 100\n                width: parent.width\n                Layout.leftMargin: 10\n                horizontalAlignment: Text.AlignHCenter\n                verticalAlignment: Text.AlignVCenter\n                font: DTK.fontManager.t8\n                text: qsTr(\"No output device for sound found\")\n            }\n        }\n    }\n\n    DccObject {\n        name: \"outputGroup\"\n        parentName: \"sound/outPut\"\n        weight: 30\n        visible: dccData.model().outPutPortCombo.length !== 0\n        pageType: DccObject.Item\n        page: DccGroupView { }\n        DccObject {\n            name: \"outputVolume\"\n            parentName: \"sound/outPut/outputGroup\"\n            displayName: qsTr(\"Output Volume\")\n            weight: 10\n            pageType: DccObject.Editor\n            page: RowLayout {\n                Label {\n                    font: DTK.fontManager.t10\n                    color: Qt.rgba(palette.text.r, palette.text.g, palette.text.b, 0.5)\n                    text: root.toPercent(voiceTipsSlider.value)\n                }\n                ActionButton {\n                    Layout.alignment: Qt.AlignVCenter\n                    icon {\n                        name: dccData.model().speakerOn ? \"sound_off\" : \"small_volume\"\n                        width: 16\n                        height: 16\n                    }\n                    palette.windowText: ColorSelector.textColor\n                    flat: !hovered\n                    implicitWidth: 24\n                    implicitHeight: 24\n                    hoverEnabled: enabled\n                    background: Rectangle {\n                        property Palette pressedColor: Palette {\n                            normal: Qt.rgba(0, 0, 0, 0.2)\n                            normalDark: Qt.rgba(1, 1, 1, 0.25)\n                        }\n                        property Palette hoveredColor: Palette {\n                            normal: Qt.rgba(0, 0, 0, 0.1)\n                            normalDark: Qt.rgba(1, 1, 1, 0.1)\n                        }\n                        radius: DS.Style.control.radius\n                        color: parent.pressed ? ColorSelector.pressedColor : (parent.hovered ? ColorSelector.hoveredColor : \"transparent\")\n                        border {\n                            color: parent.palette.highlight\n                            width: parent.visualFocus ? DS.Style.control.focusBorderWidth : 0\n                        }\n                    }\n\n                    onClicked: {\n                        dccData.worker().setSinkMute()\n                    }\n                }\n                Slider {\n                    id: voiceTipsSlider\n                    Layout.alignment: Qt.AlignVCenter\n                    implicitHeight: 24\n                    handleType: Slider.HandleType.NoArrowHorizontal\n                    highlightedPassedGroove: true\n                    value: dccData.model().speakerVolume\n                    to: dccData.model().increaseVolume ? 1.5 : 1.0\n                    stepSize: 0.01\n                    onPressedChanged: {\n                        if (!pressed) {\n                            dccData.worker().setSinkVolume(voiceTipsSlider.value)\n                        }\n                    }\n                }\n                IconButton {\n                    icon {\n                        name: \"big_volume\"\n                        width: 16\n                        height: 16\n                    }\n                    implicitWidth: 24\n                    background: Rectangle {\n                        color: \"transparent\" // 背景透明\n                        border.color: \"transparent\" // 边框透明\n                        border.width: 0\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"volumeEnhancement\"\n            parentName: \"sound/outPut/outputGroup\"\n            displayName: qsTr(\"Volume Boost\")\n            description: qsTr(\"If the volume is louder than 100%, it may distort audio and be harmful to output devices\")\n            weight: 20\n            pageType: DccObject.Editor\n            page: Switch {\n                Layout.alignment: Qt.AlignRight\n                checked: dccData.model().increaseVolume\n                onCheckedChanged: {\n                    if (dccData.model().increaseVolume !== checked) {\n                        dccData.worker().setIncreaseVolume(checked)\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"volumeBalance\"\n            parentName: \"sound/outPut/outputGroup\"\n            displayName: qsTr(\"Left Right Balance\")\n            weight: 40\n            pageType: DccObject.Editor\n            visible: !dccData.model().audioMono &&\n                (!dccData.model().showBluetoothMode ||\n                !dccData.model().currentBluetoothAudioMode.toLowerCase().startsWith(\"headset-head\"))\n            page: RowLayout {\n                Label {\n                    Layout.alignment: Qt.AlignVCenter\n                    font: DTK.fontManager.t7\n                    Layout.topMargin: 2\n                    text: qsTr(\"Left\")\n                }\n                Slider {\n                    id: balanceSlider\n                    Layout.alignment: Qt.AlignVCenter\n                    implicitHeight: 24\n                    from: -1\n                    handleType: Slider.HandleType.ArrowBottom\n                    highlightedPassedGroove: false\n                    stepSize: 0.01\n                    to: 1\n                    value: dccData.model().speakerBalance\n\n                    onPressedChanged: {\n                        if (!pressed) {\n                            dccData.worker().setSinkBalance(balanceSlider.value)\n                        }\n                    }\n                }\n                Label {\n                    Layout.alignment: Qt.AlignVCenter\n                    Layout.topMargin: 2\n                    font: DTK.fontManager.t7\n                    text: qsTr(\"Right\")\n                }\n            }\n        }\n        DccObject {\n            name: \"monoAudio\"\n            parentName: \"sound/outPut/outputGroup\"\n            displayName: qsTr(\"Mono Audio\")\n            description: qsTr(\"Merge left and right channels into a single channel\")\n            weight: 30\n            pageType: DccObject.Editor\n            page: Switch {\n                checked: dccData.model().audioMono\n                onCheckedChanged: {\n                    if (dccData.model().audioMono !== checked) {\n                        dccData.worker().setAudioMono(checked)\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"plugAndUnplugManagement\"\n            parentName: \"sound/outPut/outputGroup\"\n            displayName: qsTr(\"Auto Pause\")\n            description: qsTr(\"Whether the audio will be automatically paused when the current audio device is unplugged\")\n            weight: 50\n            pageType: DccObject.Editor\n            page: Switch {\n                checked: dccData.model().pausePlayer\n                onCheckedChanged: {\n                    if (dccData.model().pausePlayer !== checked) {\n                        dccData.worker().setPausePlayer(checked)\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"outputDevice\"\n            parentName: \"sound/outPut/outputGroup\"\n            displayName: qsTr(\"Output Device\")\n            weight: 60\n            pageType: DccObject.Editor\n            page: ComboBox {\n                id: control\n                Layout.alignment: Qt.AlignRight\n                Layout.rightMargin: 10\n                flat: true\n                textRole: \"name\"\n                currentIndex: dccData.model().outPutPortComboIndex\n                model: dccData.model().soundOutputDeviceModel()\n                implicitWidth: 300\n\n                contentItem: RowLayout {\n                    spacing: DS.Style.comboBox.spacing\n\n                    Loader {\n                        property string iconName: (control.iconNameRole && model.get(control.currentIndex)[control.iconNameRole] !== undefined)\n                                                  ? model.get(control.currentIndex)[control.iconNameRole] : null\n                        active: iconName\n\n                        sourceComponent: DciIcon {\n                            palette: DTK.makeIconPalette(control.palette)\n                            mode: control.D.ColorSelector.controlState\n                            theme: control.D.ColorSelector.controlTheme\n                            name: iconName\n                            sourceSize: Qt.size(DS.Style.comboBox.iconSize, DS.Style.comboBox.iconSize)\n                            fallbackToQIcon: true\n                        }\n                    }\n\n                    T.TextField {\n                        id: textField\n\n                        function getDisplayText() {\n                            return control.editable ? control.editText : fm.elidedText(control.displayText,\n                                                Text.ElideRight, control.implicitWidth - DS.Style.comboBox.iconSize - DS.Style.comboBox.spacing * 4)\n                        }\n\n                        FontMetrics {\n                            id: fm\n                            font: textField.font\n                            onFontChanged: {\n                                textField.text = textField.getDisplayText()\n                            }\n                        }\n                        Connections {\n                            target: control\n                            function onDisplayTextChanged() {\n                                textField.text = textField.getDisplayText()\n                            }\n                        }\n\n                        Layout.fillWidth: true\n                        implicitHeight: fm.height\n                        Layout.rightMargin: DS.Style.comboBox.spacing\n                        text: getDisplayText()\n\n                        enabled: control.editable\n                        autoScroll: control.editable\n                        readOnly: control.down\n                        inputMethodHints: control.inputMethodHints\n                        validator: control.validator\n                        selectByMouse: true\n\n                        color: control.editable ? control.palette.text : control.palette.buttonText\n                        selectionColor: control.palette.highlight\n                        selectedTextColor: control.palette.highlightedText\n                        verticalAlignment: Text.AlignVCenter\n                        horizontalAlignment: control.horizontalAlignment\n\n                        ToolTip {\n                            visible: !control.editable && textField.text !== control.displayText && textField.hovered\n                            text: control.displayText\n                            delay: 500\n                        }\n                    }\n                }\n\n                property bool isInitialized: false\n\n                delegate: MenuItem {\n                    id: menuItem\n                    useIndicatorPadding: true\n                    width: control.width\n                    text: model.name\n                    visible: model.isEnabled\n                    icon.name: (control.iconNameRole && model[control.iconNameRole] !== undefined) ? model[control.iconNameRole] : null\n                    highlighted: control.isInteractingWithContent ? control.highlightedIndex === index : false\n                    hoverEnabled: control.hoverEnabled\n                    autoExclusive: true\n                    checked: control.currentIndex === index\n                    implicitHeight: visible ? DS.Style.control.implicitHeight(menuItem) : 0\n\n                    readonly property real availableTextWidth: {\n                        if (!contentItem)\n                            return width - leftPadding - rightPadding\n                        let textWidth = contentItem.width - contentItem.leftPadding - contentItem.rightPadding\n                        if (icon.name) {\n                            textWidth -= DS.Style.menu.item.iconSize.width + spacing\n                        }\n                        return textWidth\n                    }\n                    FontMetrics {\n                        id: fontMetrics\n                        font: menuItem.font\n                    }\n                    ToolTip {\n                        visible: menuItem.hovered && fontMetrics.advanceWidth(model.name) > menuItem.availableTextWidth\n                        text: model.name\n                        delay: 500\n                    }\n\n                    onClicked: {\n                        dccData.worker().setActivePort(index, 1)\n                    }\n                }\n            }\n        }\n\n        DccObject {\n            name: \"bluetoothMode\"\n            parentName: \"sound/outPut/outputGroup\"\n            displayName: qsTr(\"Mode\")\n            weight: 60\n            pageType: DccObject.Editor\n            visible: dccData.model().showBluetoothMode\n            page: ComboBox {\n                id: bluetoothControl\n                Layout.alignment: Qt.AlignRight\n                Layout.rightMargin: 10\n                flat: true\n                model: dccData.model().bluetoothModeOpts\n                currentIndex: count > 0 ? Math.max(0, indexOfValue(dccData.model().currentBluetoothAudioMode)) : 0\n                property bool isInitialized: false\n                implicitWidth: 300\n\n                contentItem: RowLayout {\n                    spacing: DS.Style.comboBox.spacing\n\n                    T.TextField {\n                        id: textField\n\n                        function getDisplayText() {\n                            return bluetoothControl.editable ? bluetoothControl.editText : fm.elidedText(bluetoothControl.displayText,\n                                                Text.ElideRight, bluetoothControl.implicitWidth - DS.Style.comboBox.spacing * 4)\n                        }\n\n                        FontMetrics {\n                            id: fm\n                            font: textField.font\n                            onFontChanged: {\n                                textField.text = textField.getDisplayText()\n                            }\n                        }\n                        Connections {\n                            target: bluetoothControl\n                            function onDisplayTextChanged() {\n                                textField.text = textField.getDisplayText()\n                            }\n                        }\n\n                        Layout.fillWidth: true\n                        implicitHeight: fm.height\n                        Layout.rightMargin: DS.Style.comboBox.spacing\n                        text: getDisplayText()\n\n                        enabled: bluetoothControl.editable\n                        autoScroll: bluetoothControl.editable\n                        readOnly: bluetoothControl.down\n                        inputMethodHints: bluetoothControl.inputMethodHints\n                        validator: bluetoothControl.validator\n                        selectByMouse: true\n\n                        color: bluetoothControl.editable ? bluetoothControl.palette.text : bluetoothControl.palette.buttonText\n                        selectionColor: bluetoothControl.palette.highlight\n                        selectedTextColor: bluetoothControl.palette.highlightedText\n                        verticalAlignment: Text.AlignVCenter\n                        horizontalAlignment: bluetoothControl.horizontalAlignment\n\n                        ToolTip {\n                            visible: !bluetoothControl.editable && textField.text !== bluetoothControl.displayText && textField.hovered\n                            text: bluetoothControl.displayText\n                            delay: 500\n                        }\n                    }\n                }\n\n                delegate: MenuItem {\n                    id: menuItem\n                    useIndicatorPadding: true\n                    width: bluetoothControl.width\n                    text: modelData\n                    highlighted: bluetoothControl.isInteractingWithContent ? bluetoothControl.highlightedIndex === index : false\n                    hoverEnabled: bluetoothControl.hoverEnabled\n                    autoExclusive: true\n                    checked: bluetoothControl.currentIndex === index\n                    implicitHeight: DS.Style.control.implicitHeight(menuItem)\n\n                    readonly property real availableTextWidth: {\n                        if (!contentItem)\n                            return width - leftPadding - rightPadding\n                        let textWidth = contentItem.width - contentItem.leftPadding - contentItem.rightPadding\n                        if (icon.name) {\n                            textWidth -= DS.Style.menu.item.iconSize.width + spacing\n                        }\n                        return textWidth\n                    }\n                    FontMetrics {\n                        id: fontMetrics\n                        font: menuItem.font\n                    }\n                    ToolTip {\n                        visible: menuItem.hovered && fontMetrics.advanceWidth(modelData) > menuItem.availableTextWidth\n                        text: modelData\n                        delay: 500\n                    }\n                }\n                \n                Connections {\n                    target: dccData.model()\n                    function onBluetoothModeOptsChanged() { bluetoothControl.currentIndex = Math.max(0, bluetoothControl.indexOfValue(dccData.model().currentBluetoothAudioMode)) }\n                    function onBluetoothModeChanged() { bluetoothControl.currentIndex = Math.max(0, bluetoothControl.indexOfValue(dccData.model().currentBluetoothAudioMode)) }\n                }\n                \n                Component.onCompleted: { isInitialized = true }\n\n                onActivated: {\n                    if (isInitialized && currentIndex >= 0 && currentIndex < count) {\n                        var value = valueAt(currentIndex)\n                        if (value !== dccData.model().currentBluetoothAudioMode) {\n                            dccData.worker().setBluetoothMode(value)\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-sound/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-system/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\nset(Plugin_Name system)\ndcc_install_plugin(NAME ${Plugin_Name} )\n"
  },
  {
    "path": "src/plugin-system/qml/System.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.0\nimport QtQuick.Controls 2.0\n\nimport org.deepin.dtk 1.0 as D\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: root\n    name: \"system\"\n    parentName: \"root\"\n    displayName: qsTr(\"System\")\n    icon: \"commoninfo\"\n    weight: 10\n\n    DccTitleObject {\n        name: \"common\"\n        parentName: \"system\"\n        displayName: qsTr(\"Common settings\")\n        weight: 5\n        onParentItemChanged: {\n            if (parentItem) {\n                parentItem.topPadding = 10\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-system/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-systeminfo/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.18)\nset(SystemInfo_Name systemInfo)\nfile(GLOB_RECURSE systemInfo_SRCS\n    \"operation/*.cpp\"\n    \"operation/*.h\"\n    \"operation/qrc/systeminfo.qrc\"\n)\n\nadd_library(${SystemInfo_Name} MODULE\n    ${systemInfo_SRCS}\n    operation/utils.h\n)\n\nset(SystemInfo_Libraries\n    ${DCC_FRAME_Library}\n    ${QT_NS}::DBus\n    ${DTK_NS}::Gui\n)\n\ntarget_link_libraries(${SystemInfo_Name} PRIVATE\n    ${SystemInfo_Libraries}\n)\n\ndcc_install_plugin(NAME ${SystemInfo_Name} TARGET ${SystemInfo_Name})\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/gpl/gpl-3.0-en_US-body.txt",
    "content": "The notice provides license information of respective open source software contained in this operating system.\n\nOpen Source Software Licensed under the GPL-3.0-or-later:\n1、source package:accountsservice 23.13.9-2\npackage: accountsservice\n\n2、source package:cifs-utils 6.9.orig\npackage: cifs-utils\n\n3、source package:coreutils 9.1-1\npackage: coreutils\n\n4、source package:dosfstools 4.2-1\npackage: dosfstools\n\n5、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n6、source package:fonts-wqy-microhei 0.2.0-beta-3.1\npackage: fonts-wqy-microhei\n\n7、source package:gawk 5.0.1+dfsg.orig\npackage: gawk\n\n8、source package:gettext 0.21.1\npackage: gettext\n\n9、source package:gettext-base 0.19.8.1-9_s390x\npackage: gettext-base\n\n10、source package:gnupg 2.2.19-3_all\npackage: gnupg\n\n11、source package:golang-gir-gobject-2.0-dev 2.2.0-1\npackage: golang-gir-gobject-2.0-dev\n\n12、source package:gpgv 2.2.20-1~bpo9+1_s390x\npackage: gpgv\n\n13、source package:grub-common 2.06-9\npackage: grub-common\n\n14、source package:grub2-common 2.04~rc1-3_ppc64el\npackage: grub2-common\n\n15、source package:grub2-theme-vimix c7ab3ce\npackage: grub2-theme-vimix\n\n16、source package:guvcview 2.0.2\npackage: guvcview\n\n17、source package:hello 2.9-2_kfreebsd-i386\npackage: hello\n\n18、source package:libparted-dev 3.3-4_s390x\npackage: libparted-dev\n\n19、source package:libparted-fs-resize0 3.3-4_s390x\npackage: libparted-fs-resize0\n\n20、source package:live-boot 5.0~a5-2\npackage: live-boot\n\n21、source package:live-boot-initramfs-tools 4.0.2-1_all\npackage: live-boot-initramfs-tools\n\n22、source package:live-config 5.20190519_all\npackage: live-config\n\n23、source package:live-config-systemd 5.20190519_all\npackage: live-config-systemd\n\n24、source package:onboard 1.4.1-5_s390x\npackage: onboard\n\n25、source package:parted 3.6-3\npackage: parted\n\n26、source package:patchelf 0.9.orig\npackage: patchelf\n\n27、source package:pkg-kde-tools 0.9.5\npackage: pkg-kde-tools\n\n28、source package:python3-samba 4.12.5+dfsg-3_s390x\npackage: python3-samba\n\n29、source package:qtchooser 66.orig\npackage: qtchooser\n\n30、source package:qtremoteobjects v5.11.0-rc2\npackage: qtremoteobjects\n\n31、source package:redshift 1.9.1-4_s390x\npackage: redshift\n\n32、source package:rsync 3.2.7-1~bpo11+1\npackage: rsync\n\n33、source package:rsyslog 8.9.0-3\npackage: rsyslog\n\n34、source package:samba 4.9.5+dfsg-5_mips64el\npackage: samba\n\n35、source package:samba-common-bin 4.9.5+dfsg-5_s390x\npackage: samba-common-bin\n\n36、source package:samba-dsdb-modules 4.9.5+dfsg-5_s390x\npackage: samba-dsdb-modules\n\n37、source package:samba-vfs-modules 4.9.5+dfsg-5_s390x\npackage: samba-vfs-modules\n\n38、source package:sed 4.9-1\npackage: sed\n\n39、source package:smbclient 4.9.5+dfsg-5_s390x\npackage: smbclient\n\n40、source package:startdde 6.0.6\npackage: startdde\n\n41、source package:viper v1.3.2\npackage: viper\n\n\nOpen Source Software Licensed under the GPL-3.0-only:\n1、source package:blur-effect 1.1.3-2\npackage: blur-effect\n\n2、source package:distrobox 1.4.2.1-1\npackage: distrobox\n\n3、source package:libcap-ng-dev 0.7.9-2_s390x\npackage: libcap-ng-dev\n\n4、source package:liblightdm-qt-dev 1.26.0-5_s390x\npackage: liblightdm-qt-dev\n\n5、source package:libpoppler-glib-dev 22.12.0-2\npackage: libpoppler-glib-dev\n\n6、source package:lightdm 1.9.9-1\npackage: lightdm\n\n7、source package:lightdm-gtk-greeter 2.0.8-3\npackage: lightdm-gtk-greeter\n\n8、source package:mtools 4.0.9-1\npackage: mtools\n\n9、source package:python-is-python3 8\npackage: python-is-python3\n\n10、source package:tpm2-tools 5.4-1\npackage: tpm2-tools\n\n\nOpen Source Software Licensed under the GPL-2.0-or-later:\n1、source package:ColumnsPlusPlus v0.0.1.2-alpha\npackage: ColumnsPlusPlus\n\n2、source package:Grub-Themes a7ec0fd\npackage: Grub-Themes\n\n3、source package:acl 2.3.1-3\npackage: acl\n\n4、source package:adduser 3.99\npackage: adduser\n\n5、source package:apt 2.7.1\npackage: apt\n\n6、source package:apt-utils 2.1.7_mips64el\npackage: apt-utils\n\n7、source package:aptitude 0.8.9-1\npackage: aptitude\n\n8、source package:aria2 1.9.5-1\npackage: aria2\n\n9、source package:arj 3.10.22.orig\npackage: arj\n\n10、source package:attr 2.4.48-5_s390x\npackage: attr\n\n11、source package:bash-completion 20080705\npackage: bash-completion\n\n12、source package:bc 1.07.1-3\npackage: bc\n\n13、source package:bluez 5.66-1\npackage: bluez\n\n14、source package:bluez-obexd 5.52-1_s390x\npackage: bluez-obexd\n\n15、source package:ca-certificates 20230311\npackage: ca-certificates\n\n16、source package:cornrow v0.8.0\npackage: cornrow\n\n17、source package:cups-filters 1.9.0-2\npackage: cups-filters\n\n18、source package:cyberduck release-4-9-1\npackage: cyberduck\n\n19、source package:debhelper 9.20160814\npackage: debhelper\n\n20、source package:dh-dkms 3.0.9-1\npackage: dh-dkms\n\n21、source package:dh-golang 1.9\npackage: dh-golang\n\n22、source package:dkms 3.0.8-3\npackage: dkms\n\n23、source package:dmidecode 3.5-1\npackage: dmidecode\n\n24、source package:dnsmasq-base 2.89-1\npackage: dnsmasq-base\n\n25、source package:dpkg 1.9.21\npackage: dpkg\n\n26、source package:dpkg-dev 1.9.21\npackage: dpkg-dev\n\n27、source package:efibootmgr 17-2\npackage: efibootmgr\n\n28、source package:eject 2.35.2-7_ppc64el\npackage: eject\n\n29、source package:ethtool 6-0\npackage: ethtool\n\n30、source package:exfat-fuse 1.3.0-2_armel\npackage: exfat-fuse\n\n31、source package:exfatprogs 1.2.1-2\npackage: exfatprogs\n\n32、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n33、source package:foomatic-db-compressed-ppds 20230107-1\npackage: foomatic-db-compressed-ppds\n\n34、source package:fprintd 1.94.2-2\npackage: fprintd\n\n35、source package:geoclue-2.0 2.7.0-2\npackage: geoclue-2.0\n\n36、source package:gnome-keyring 42.1-1\npackage: gnome-keyring\n\n37、source package:hwdata 0.372-1\npackage: hwdata\n\n38、source package:im-config 0.9\npackage: im-config\n\n39、source package:imwheel 1.0.0pre12.orig\npackage: imwheel\n\n40、source package:input-leap v2.4.0\npackage: input-leap\n\n41、source package:ipwatchd 1.3.0\npackage: ipwatchd\n\n42、source package:jfsutils 1.1.8-1\npackage: jfsutils\n\n43、source package:kbd 2.5.1-1\npackage: kbd\n\n44、source package:kscreenlocker-dev 5.8.6-2_s390x\npackage: kscreenlocker-dev\n\n45、source package:lcov 1.9.orig\npackage: lcov\n\n46、source package:libappstreamqt-dev 0.9.8-4_kfreebsd-i386\npackage: libappstreamqt-dev\n\n47、source package:libblkid-dev 2.35.2-7_mipsel\npackage: libblkid-dev\n\n48、source package:libcryptsetup-dev 2:2.4.0-1\npackage: libcryptsetup-dev\n\n49、source package:libddcutil-dev 0.9.8-4_s390x\npackage: libddcutil-dev\n\n50、source package:libdpkg-dev 1.20.5_ppc64el\npackage: libdpkg-dev\n\n51、source package:libdvdnav-dev 6.1.0-1_s390x\npackage: libdvdnav-dev\n\n52、source package:libffmpegthumbnailer-dev 2.1.1-0.2_kfreebsd-amd64\npackage: libffmpegthumbnailer-dev\n\n53、source package:libffmpegthumbnailer4v5 2.1.1-0.2_kfreebsd-amd64\npackage: libffmpegthumbnailer4v5\n\n54、source package:libltdl-dev 2.4.7-6\npackage: libltdl-dev\n\n55、source package:libmount-dev 2.35.2-7_s390x\npackage: libmount-dev\n\n56、source package:libmpv-dev 0.9.2-1+ffmpeg\npackage: libmpv-dev\n\n57、source package:libmpv1 0.6.2-2_s390x\npackage: libmpv1\n\n58、source package:libmpv2 0.36.0+git.20230723.60a26324\npackage: libmpv2\n\n59、source package:libnm-dev 1.6.2-3+deb9u2_s390x\npackage: libnm-dev\n\n60、source package:libpam-fprintd 1.90.1-1_s390x\npackage: libpam-fprintd\n\n61、source package:libvlc-dev 3.0.9.2-1\npackage: libvlc-dev\n\n62、source package:libvlc5 3.0.8-4_s390x\npackage: libvlc5\n\n63、source package:libvlccore-dev 3.0.8-4_s390x\npackage: libvlccore-dev\n\n64、source package:libvncserver LibVNCServer-0.9.14\npackage: libvncserver\n\n65、source package:lzop 1.04-2\npackage: lzop\n\n66、source package:man-db 2.9.4-4\npackage: man-db\n\n67、source package:net-tools 2.10-0.1\npackage: net-tools\n\n68、source package:network-manager 1.9.90-1\npackage: network-manager\n\n69、source package:nilfs-tools 2.2.9-1\npackage: nilfs-tools\n\n70、source package:ntfs-3g 2017.3.23AR.5.orig\npackage: ntfs-3g\n\n71、source package:packagekit 1.2.6-5\npackage: packagekit\n\n72、source package:pandoc 2.9.2.1-3\npackage: pandoc\n\n73、source package:pciutils 3.7.0.orig\npackage: pciutils\n\n74、source package:pinn 0.0\npackage: pinn\n\n75、source package:pkg-config 0.29.2.orig\npackage: pkg-config\n\n76、source package:pkg-kde-tools 0.9.5\npackage: pkg-kde-tools\n\n77、source package:plymouth 22.02.122-3\npackage: plymouth\n\n78、source package:plymouth-label 0.9.4-3_s390x\npackage: plymouth-label\n\n79、source package:pppoe 3.8-3_sparc\npackage: pppoe\n\n80、source package:procps 3.3.9.orig\npackage: procps\n\n81、source package:python3-dbus 1.2.8-3_s390x\npackage: python3-dbus\n\n82、source package:python3-smbc 1.0.23-2\npackage: python3-smbc\n\n83、source package:rfkill 2.35.2-7_s390x\npackage: rfkill\n\n84、source package:rzip 2.1.orig\npackage: rzip\n\n85、source package:sectpmctl 1.1.3\npackage: sectpmctl\n\n86、source package:sensible-utils 0.0.9+nmu1\npackage: sensible-utils\n\n87、source package:socat 2.0.0~beta9-1_ppc64el\npackage: socat\n\n88、source package:squashfs-tools 4.4-2_s390x\npackage: squashfs-tools\n\n89、source package:syslinux 6.04~git20190206.bf6db5b4+dfsg1.orig\npackage: syslinux\n\n90、source package:syslinux-common 6.04~git20190206.bf6db5b4+dfsg1-2_all\npackage: syslinux-common\n\n91、source package:udisks2 2.9.4-4\npackage: udisks2\n\n92、source package:unace 1.2b-9\npackage: unace\n\n93、source package:upower 1.90.2-3\npackage: upower\n\n94、source package:usb-modeswitch 2.6.1.orig\npackage: usb-modeswitch\n\n95、source package:usbmuxd 1.1.1~git20191130.9af2b12-1_s390x\npackage: usbmuxd\n\n96、source package:usbutils 1:015-1\npackage: usbutils\n\n97、source package:user-setup 1.95\npackage: user-setup\n\n98、source package:uuid-dev 2.35.2-7_ppc64el\npackage: uuid-dev\n\n99、source package:vlc-plugin-base 3.0.8-4_s390x\npackage: vlc-plugin-base\n\n100、source package:xdg-user-dirs 0.9-1\npackage: xdg-user-dirs\n\n101、source package:xserver-xorg-input-wacom 1.2.0-1~exp1\npackage: xserver-xorg-input-wacom\n\n102、source package:zssh 1.5c.debian.1-8\npackage: zssh\n\n\nOpen Source Software Licensed under the GPL-2.0-only:\n1、source package:GitQlient v1.4.3\npackage: GitQlient\n\n2、source package:alsa-utils 1.2.9-1\npackage: alsa-utils\n\n3、source package:btrfs-progs 6.3.2-1\npackage: btrfs-progs\n\n4、source package:checkstyle checkstyle-10.3.4\npackage: checkstyle\n\n5、source package:dmsetup 1.02.90-2.2+deb8u1_s390x\npackage: dmsetup\n\n6、source package:doxygen 1.9.4-4\npackage: doxygen\n\n7、source package:e2fsprogs 1.47.0-2\npackage: e2fsprogs\n\n8、source package:gcc 9.2.1-4.1_mips64el\npackage: gcc\n\n9、source package:genisoimage 9:1.1.11-3.4\npackage: genisoimage\n\n10、source package:git 4.3.20-9\npackage: git\n\n11、source package:grub-efi-amd64-signed 1+2.06+8.1\npackage: grub-efi-amd64-signed\n\n12、source package:grub-efi-arm64-signed 1+2.06+8.1\npackage: grub-efi-arm64-signed\n\n13、source package:gtk2-engines 2.20.2.orig\npackage: gtk2-engines\n\n14、source package:gtk2-engines-murrine 0.98.2.orig\npackage: gtk2-engines-murrine\n\n15、source package:iio-sensor-proxy 3.4-2\npackage: iio-sensor-proxy\n\n16、source package:initramfs-tools-core 0.137_all\npackage: initramfs-tools-core\n\n17、source package:kwin v5.27.2\npackage: kwin\n\n18、source package:libcap-ng-dev 0.7.9-2_s390x\npackage: libcap-ng-dev\n\n19、source package:libdjvulibre-dev 3.5.28-2\npackage: libdjvulibre-dev\n\n20、source package:libglib2.0-dev 2.64.4-1_s390x\npackage: libglib2.0-dev\n\n21、source package:liblightdm-qt-dev 1.26.0-5_s390x\npackage: liblightdm-qt-dev\n\n22、source package:libnm-qt 0.9.8.2.orig\npackage: libnm-qt\n\n23、source package:libpoppler-glib-dev 22.12.0-2\npackage: libpoppler-glib-dev\n\n24、source package:libraw-dev 0.9.1-1+deb6u1\npackage: libraw-dev\n\n25、source package:lightdm 1.9.9-1\npackage: lightdm\n\n26、source package:lsb-base 9.20161125_all\npackage: lsb-base\n\n27、source package:lshw 02.19.git.2021.06.19.996aaad9c7-2~bpo11+1\npackage: lshw\n\n28、source package:lvm2 2.03.16-1.1\npackage: lvm2\n\n29、source package:mawk 1.3.4.20230525-1~exp1\npackage: mawk\n\n30、source package:modemmanager 1.8.2.orig\npackage: modemmanager\n\n31、source package:networkmanager-qt 5.54.0.orig\npackage: networkmanager-qt\n\n32、source package:openprinting-ppds 20200427-1_all\npackage: openprinting-ppds\n\n33、source package:proxychains4 4.14-3_s390x\npackage: proxychains4\n\n34、source package:qt-creator tqtc/v2.6.0-rc\npackage: qt-creator\n\n35、source package:qtciphersqliteplugin 0.6\npackage: qtciphersqliteplugin\n\n36、source package:qtermwidget 0.7.1.orig\npackage: qtermwidget\n\n37、source package:reiserfsprogs 3.x.1b-1\npackage: reiserfsprogs\n\n38、source package:sane-airscan 0.99.8-2\npackage: sane-airscan\n\n39、source package:slirp4netns 1.2.0-1\npackage: slirp4netns\n\n40、source package:smartmontools 7.3-1\npackage: smartmontools\n\n41、source package:synergy-stable-builds 1.8.2-stable\npackage: synergy-stable-builds\n\n42、source package:systemd 8-2\npackage: systemd\n\n43、source package:ttf-unifont 9.0.06-2_all\npackage: ttf-unifont\n\n44、source package:wireless-tools 30~pre9.orig\npackage: wireless-tools\n\n45、source package:xfonts-wqy 1.0.0~rc1-7\npackage: xfonts-wqy\n\n46、source package:xfsprogs 6.3.0-1\npackage: xfsprogs\n\n\nOpen Source Software Licensed under the LGPL-3.0-or-later:\n1、source package:kdecoration 4:5.26.90-2\npackage: kdecoration\n\n2、source package:libheif-dev 1.6.1-1_s390x\npackage: libheif-dev\n\n3、source package:libzmq3-dev 4.3.2-2_s390x\npackage: libzmq3-dev\n\n4、source package:python3-ldb 2.1.4-2_s390x\npackage: python3-ldb\n\n5、source package:python3-tdb 1.4.3-1_s390x\npackage: python3-tdb\n\n6、source package:tdb-tools 1.4.3-1_s390x\npackage: tdb-tools\n\n\nOpen Source Software Licensed under the LGPL-3.0-only:\n1、source package:QtZeroConf pre_Android_api30\npackage: QtZeroConf\n\n2、source package:cryfs 0.9.9-2\npackage: cryfs\n\n3、source package:libgsettings-qt-dev 0.2-1_s390x\npackage: libgsettings-qt-dev\n\n4、source package:qt5integration 5.6.3\npackage: qt5integration\n\n5、source package:qtwebengine-opensource-src 5.14.2+dfsg1.orig\npackage: qtwebengine-opensource-src\n\n\nOpen Source Software Licensed under the LGPL-2.1-or-later:\n1、source package:fcitx5 5.0.9-2\npackage: fcitx5\n\n2、source package:fcitx5-chinese-addons 5.0.9-2\npackage: fcitx5-chinese-addons\n\n3、source package:fcitx5-frontend-gtk2 5.0.9-1\npackage: fcitx5-frontend-gtk2\n\n4、source package:fcitx5-frontend-qt5 0.0~git20200615.b6f2ef3-1_s390x\npackage: fcitx5-frontend-qt5\n\n5、source package:fcitx5-module-xorg 0~20191021+ds1-1_s390x\npackage: fcitx5-module-xorg\n\n6、source package:fcitx5-modules 0~20191021+ds1-1_s390x\npackage: fcitx5-modules\n\n7、source package:fcitx5-modules-dev 5.0.23-2~exp1\npackage: fcitx5-modules-dev\n\n8、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n9、source package:gcr 3.8.2-4\npackage: gcr\n\n10、source package:iso-codes 4.9.0-1\npackage: iso-codes\n\n11、source package:kcm-fcitx5 5.0.13-1\npackage: kcm-fcitx5\n\n12、source package:libappstreamqt-dev 0.9.8-4_kfreebsd-i386\npackage: libappstreamqt-dev\n\n13、source package:libavcodec-dev 4.3-3+b1_s390x\npackage: libavcodec-dev\n\n14、source package:libavcodec58 4.3-3+b1_ppc64el\npackage: libavcodec58\n\n15、source package:libavdevice-dev 4.3-3+b1_ppc64el\npackage: libavdevice-dev\n\n16、source package:libavfilter-dev 4.3-3+b1_mips64el\npackage: libavfilter-dev\n\n17、source package:libavformat-dev 4.3-3+b1_ppc64el\npackage: libavformat-dev\n\n18、source package:libavformat58 4.3-3+b1_i386\npackage: libavformat58\n\n19、source package:libavutil-dev 4.3-3+b1_s390x\npackage: libavutil-dev\n\n20、source package:libavutil56 4.3-3+b1_s390x\npackage: libavutil56\n\n21、source package:libblockdev-crypto2 2.24-2_mipsel\npackage: libblockdev-crypto2\n\n22、source package:libdbusextended-qt5-dev 0.0.3-4_s390x\npackage: libdbusextended-qt5-dev\n\n23、source package:libfcitx5-qt-dev 0.0~git20200615.b6f2ef3-1_ppc64el\npackage: libfcitx5-qt-dev\n\n24、source package:libfcitx5core-dev 0~20191021+ds1-1_s390x\npackage: libfcitx5core-dev\n\n25、source package:libfcitx5utils-dev 0~20191021+ds1-1_s390x\npackage: libfcitx5utils-dev\n\n26、source package:libgxps-dev 0.3.1-1_s390x\npackage: libgxps-dev\n\n27、source package:libime-bin 0.0~git20200626.2c85668-1_s390x\npackage: libime-bin\n\n28、source package:libimobiledevice-utils 1.3.0-3_s390x\npackage: libimobiledevice-utils\n\n29、source package:libnss-myhostname 245.6-2_s390x\npackage: libnss-myhostname\n\n30、source package:libprocps-dev 3.3.16-5_s390x\npackage: libprocps-dev\n\n31、source package:libpulse-dev 7.1-2~bpo8+1_s390x\npackage: libpulse-dev\n\n32、source package:libpulse-mainloop-glib0 9.0-5\npackage: libpulse-mainloop-glib0\n\n33、source package:libpulse0 7.1-2~bpo8+1_s390x\npackage: libpulse0\n\n34、source package:libqrencode-dev 4.0.2-2_s390x\npackage: libqrencode-dev\n\n35、source package:libqrencode4 4.1.1-1\npackage: libqrencode4\n\n36、source package:libsecret-1-dev 0.20.5-3\npackage: libsecret-1-dev\n\n37、source package:libswresample-dev 4.3-3+b1_ppc64el\npackage: libswresample-dev\n\n38、source package:libswscale-dev 4.3-3+b1_s390x\npackage: libswscale-dev\n\n39、source package:libsystemd-dev 245.6-2_i386\npackage: libsystemd-dev\n\n40、source package:libsystemd0 245.6-2_s390x\npackage: libsystemd0\n\n41、source package:libudev-dev 245.6-2_s390x\npackage: libudev-dev\n\n42、source package:packagekit 1.2.6-5\npackage: packagekit\n\n43、source package:pulseaudio 9.99.1-1\npackage: pulseaudio\n\n44、source package:pulseaudio-module-bluetooth 7.1-2~bpo8+1_s390x\npackage: pulseaudio-module-bluetooth\n\n45、source package:pulseaudio-utils 7.1-2~bpo8+1_s390x\npackage: pulseaudio-utils\n\n46、source package:python3-gi 3.43.1-1\npackage: python3-gi\n\n47、source package:systemd-coredump 245.6-2_mipsel\npackage: systemd-coredump\n\n48、source package:systemd-timesyncd 245.6-2_ppc64el\npackage: systemd-timesyncd\n\n49、source package:udev 245.6-2_s390x\npackage: udev\n\n50、source package:unar 1.9.1-1\npackage: unar\n\n\nOpen Source Software Licensed under the LGPL-2.1-only:\n1、source package:GitQlient v1.4.3\npackage: GitQlient\n\n2、source package:cgroup-tools 0.41-8.1_s390x\npackage: cgroup-tools\n\n3、source package:checkstyle checkstyle-10.3.4\npackage: checkstyle\n\n4、source package:cracklib-runtime 2.9.6-3_s390x\npackage: cracklib-runtime\n\n5、source package:dialog 1.3-20230209-1\npackage: dialog\n\n6、source package:dmsetup 1.02.90-2.2+deb8u1_s390x\npackage: dmsetup\n\n7、source package:gettext-base 0.19.8.1-9_s390x\npackage: gettext-base\n\n8、source package:gstreamer1.0-libav 1.9.90-1\npackage: gstreamer1.0-libav\n\n9、source package:gstreamer1.0-plugins-base 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-base\n\n10、source package:gstreamer1.0-plugins-good 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-good\n\n11、source package:gstreamer1.0-plugins-ugly 1.9.90-1\npackage: gstreamer1.0-plugins-ugly\n\n12、source package:gstreamer1.0-pulseaudio 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-pulseaudio\n\n13、source package:gstreamer1.0-x 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-x\n\n14、source package:gtk2-engines 2.20.2.orig\npackage: gtk2-engines\n\n15、source package:gtk2-engines-murrine 0.98.2.orig\npackage: gtk2-engines-murrine\n\n16、source package:gtk2-engines-pixbuf 2.8.9-2\npackage: gtk2-engines-pixbuf\n\n17、source package:kmod 9-3_sparc\npackage: kmod\n\n18、source package:libcairo2-dev 1.16.0-4_s390x\npackage: libcairo2-dev\n\n19、source package:libcap-ng-dev 0.7.9-2_s390x\npackage: libcap-ng-dev\n\n20、source package:libcrack2-dev 2.9.6-5\npackage: libcrack2-dev\n\n21、source package:libfprint 20110418git-2\npackage: libfprint\n\n22、source package:libfprint-2-2 1.90.1-2_s390x\npackage: libfprint-2-2\n\n23、source package:libfprint0 1.0-1_s390x\npackage: libfprint0\n\n24、source package:libglib2.0-dev 2.64.4-1_s390x\npackage: libglib2.0-dev\n\n25、source package:libgstreamer-plugins-base1.0-0 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-0\n\n26、source package:libgstreamer-plugins-base1.0-dev 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-dev\n\n27、source package:libgstreamer1.0-0 1.4.4-2_kfreebsd-i386\npackage: libgstreamer1.0-0\n\n28、source package:libgstreamer1.0-dev 1.4.4-2_kfreebsd-i386\npackage: libgstreamer1.0-dev\n\n29、source package:libgtk-3-dev 3.4.2-7+deb7u1_sparc\npackage: libgtk-3-dev\n\n30、source package:liblog4cpp5-dev 1.1.3-3_s390x\npackage: liblog4cpp5-dev\n\n31、source package:liblog4cpp5v5 1.1.3-3_ppc64el\npackage: liblog4cpp5v5\n\n32、source package:libnm-qt 0.9.8.2.orig\npackage: libnm-qt\n\n33、source package:libnotify-bin 0.7.9-1_s390x\npackage: libnotify-bin\n\n34、source package:libraw-dev 0.9.1-1+deb6u1\npackage: libraw-dev\n\n35、source package:librsvg2-dev 2.9.5-6\npackage: librsvg2-dev\n\n36、source package:libsdl1.2debian 1.2.15-5_sparc\npackage: libsdl1.2debian\n\n37、source package:libseccomp-dev 2.4.3-1_s390x\npackage: libseccomp-dev\n\n38、source package:libtag1-dev 1.9.1-2~bpo70+1_sparc\npackage: libtag1-dev\n\n39、source package:libusb-1.0-0-dev 1.0.23-2_s390x\npackage: libusb-1.0-0-dev\n\n40、source package:modemmanager 1.8.2.orig\npackage: modemmanager\n\n41、source package:networkmanager-qt 5.54.0.orig\npackage: networkmanager-qt\n\n42、source package:p7zip 9.20.1~dfsg.1-5\npackage: p7zip\n\n43、source package:p7zip-full 9.20.1~dfsg.1-4.1_kfreebsd-i386\npackage: p7zip-full\n\n44、source package:qrencode 4.0.2.orig\npackage: qrencode\n\n45、source package:qt-creator tqtc/v2.6.0-rc\npackage: qt-creator\n\n46、source package:qtciphersqliteplugin 0.6\npackage: qtciphersqliteplugin\n\n47、source package:smartmontools 7.3-1\npackage: smartmontools\n\n\nOpen Source Software Licensed under the LGPL-3 or GPL-2:\n1、source package:libqt5core5a 5.7.1+dfsg-3+deb9u2_s390x\npackage: libqt5core5a\n\n2、source package:libqt5opengl5-dev 5.7.1+dfsg-3+deb9u2_s390x\npackage: libqt5opengl5-dev\n\n3、source package:libqt5sql5-sqlite 5.7.1+dfsg-3+deb9u2_s390x\npackage: libqt5sql5-sqlite\n\n4、source package:libqt5svg5-dev 5.7.1~20161021-2+b2_s390x\npackage: libqt5svg5-dev\n\n5、source package:libqt5x11extras5-dev 5.9.2-1\npackage: libqt5x11extras5-dev\n\n6、source package:libqt6multimedia6 6.4.2-6\npackage: libqt6multimedia6\n\n7、source package:libqt6opengl6 6.4.2+dfsg~rc1-3+alpha.1\npackage: libqt6opengl6\n\n8、source package:qml-module-qt-labs-platform 5.9.2-2_kfreebsd-amd64\npackage: qml-module-qt-labs-platform\n\n9、source package:qml-module-qtquick-controls2 5.9.2-2_kfreebsd-amd64\npackage: qml-module-qtquick-controls2\n\n10、source package:qml-module-qtquick-dialogs 5.7.1~20161021-2_s390x\npackage: qml-module-qtquick-dialogs\n\n11、source package:qml-module-qtquick-templates2 5.9.2-2_kfreebsd-amd64\npackage: qml-module-qtquick-templates2\n\n12、source package:qt5-qmake 5.7.1+dfsg-3+deb9u2_s390x\npackage: qt5-qmake\n\n13、source package:qt6-svg-dev 6.4.2~rc1-3\npackage: qt6-svg-dev\n\n14、source package:qt6-wayland 6.4.2~rc1-2\npackage: qt6-wayland\n\n15、source package:qtbase5-dev 5.7.1+dfsg-3+deb9u2_s390x\npackage: qtbase5-dev\n\n16、source package:qtbase5-private-dev 5.7.1+dfsg-3+deb9u2_s390x\npackage: qtbase5-private-dev\n\n17、source package:qtmultimedia5-dev 5.7.1~20161021-2_s390x\npackage: qtmultimedia5-dev\n\n18、source package:qtquickcontrols2-5-dev 5.9.2-2_kfreebsd-amd64\npackage: qtquickcontrols2-5-dev\n\n\nOpen Source Software Licensed under the LGPL-3 or GPL-2+:\n1、source package:qml-module-qtqml-models2 5.7.1-2+b2_s390x\npackage: qml-module-qtqml-models2\n\n2、source package:qml-module-qtquick-layouts 5.7.1-2+b2_s390x\npackage: qml-module-qtquick-layouts\n\n3、source package:qml-module-qtquick2 5.7.1-2+b2_s390x\npackage: qml-module-qtquick2\n\n4、source package:qtdeclarative5-dev 5.7.1-2+b2_s390x\npackage: qtdeclarative5-dev\n\n\nOpen Source Software Licensed under the Apache-2.0:\n1、source package:AndroidProject-Kotlin 13.2\npackage: AndroidProject-Kotlin\n\n2、source package:JSONStream 1.3.5\npackage: JSONStream\n\n3、source package:acorn-node 1.8.2\npackage: acorn-node\n\n4、source package:android-pdfium a56ccce4\npackage: android-pdfium\n\n5、source package:androidsvg 1.4\npackage: androidsvg\n\n6、source package:atob 2.1.2\npackage: atob\n\n7、source package:aws-sign2 0.7.0\npackage: aws-sign2\n\n8、source package:caseless 0.12.0\npackage: caseless\n\n9、source package:cilium 1.14.3\npackage: cilium\n\n10、source package:circleindicator 2.1.6\npackage: circleindicator\n\n11、source package:cobra v0.0.3\npackage: cobra\n\n12、source package:compiler 4.12.0\npackage: compiler\n\n13、source package:concurrent 1.0.0\npackage: concurrent\n\n14、source package:coost v3.0.0\npackage: coost\n\n15、source package:core 1.7.0\npackage: core\n\n16、source package:cppdap 87f8b4a\npackage: cppdap\n\n17、source package:crypto v0.23.0\npackage: crypto\n\n18、source package:dash-ast 1.0.0\npackage: dash-ast\n\n19、source package:diff-match-patch 1.0.5\npackage: diff-match-patch\n\n20、source package:dompurify 2.4.1\npackage: dompurify\n\n21、source package:external/github.com/google/benchmark v1.4.1\npackage: external/github.com/google/benchmark\n\n22、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n23、source package:fonts-noto-color-emoji 2.038-1\npackage: fonts-noto-color-emoji\n\n24、source package:forever-agent 0.6.1\npackage: forever-agent\n\n25、source package:get-assigned-identifiers 1.2.0\npackage: get-assigned-identifiers\n\n26、source package:git 4.3.20-9\npackage: git\n\n27、source package:glide 4.12.0\npackage: glide\n\n28、source package:gofuzz v1.0.0\npackage: gofuzz\n\n29、source package:golang-github-golang-groupcache-dev 0.0~git20200121.8c9f03a-2\npackage: golang-github-golang-groupcache-dev\n\n30、source package:golang-gopkg-yaml.v2-dev 2.4.0-3\npackage: golang-gopkg-yaml.v2-dev\n\n31、source package:golang-gopkg-yaml.v3-dev 3.0.1-3\npackage: golang-gopkg-yaml.v3-dev\n\n32、source package:gradle 7.4.2\npackage: gradle\n\n33、source package:gson 2.10.1\npackage: gson\n\n34、source package:imgbrd-grabber v6.0.2\npackage: imgbrd-grabber\n\n35、source package:infratask_scheduler v0.1.0\npackage: infratask_scheduler\n\n36、source package:junit 1.1.5\npackage: junit\n\n37、source package:kata-containers CC-0.7.0\npackage: kata-containers\n\n38、source package:kotlin-gradle-plugin\npackage: kotlin-gradle-plugin\n\n39、source package:kotlin-stdlib-jdk7\npackage: kotlin-stdlib-jdk7\n\n40、source package:kotlinx-serialization-json 1.5.1\npackage: kotlinx-serialization-json\n\n41、source package:libcups2-dev 2.3~rc1-1_s390x\npackage: libcups2-dev\n\n42、source package:libcupsimage2 2.3~rc1-1_s390x\npackage: libcupsimage2\n\n43、source package:libpoppler-cpp-dev 0.85.0-1_s390x\npackage: libpoppler-cpp-dev\n\n44、source package:libpoppler-cpp0v5 0.85.0-1_s390x\npackage: libpoppler-cpp0v5\n\n45、source package:libssl-dev 3.0.0~~alpha4-1_s390x\npackage: libssl-dev\n\n46、source package:libssl3 3.0.0~~alpha4-1_s390x\npackage: libssl3\n\n47、source package:libwebrtc-bin 86.4240.20.0\npackage: libwebrtc-bin\n\n48、source package:libxerces-c-dev 3.2.3+debian-1_s390x\npackage: libxerces-c-dev\n\n49、source package:lottie 4.1.0\npackage: lottie\n\n50、source package:ms365 v2.0.5\npackage: ms365\n\n51、source package:oauth-sign 0.9.0\npackage: oauth-sign\n\n52、source package:okhttp 3.12.13\npackage: okhttp\n\n53、source package:podman 1.6.4+dfsg1-4_armel\npackage: podman\n\n54、source package:preference 1.2.1\npackage: preference\n\n55、source package:request 2.88.0\npackage: request\n\n56、source package:rsyslog 8.9.0-3\npackage: rsyslog\n\n57、source package:sass 1.55.0\npackage: sass\n\n58、source package:spdx-correct 3.1.1\npackage: spdx-correct\n\n59、source package:sse v0.1.0\npackage: sse\n\n60、source package:sync v0.10.0\npackage: sync\n\n61、source package:through 2.3.8\npackage: through\n\n62、source package:timber 4.7.1\npackage: timber\n\n63、source package:tinyrpc 2130294\npackage: tinyrpc\n\n64、source package:tools_oat 373f560\npackage: tools_oat\n\n65、source package:true-case-path 1.0.3\npackage: true-case-path\n\n66、source package:tunnel-agent 0.6.0\npackage: tunnel-agent\n\n67、source package:typescript 4.8.4\npackage: typescript\n\n68、source package:undeclared-identifiers 1.1.3\npackage: undeclared-identifiers\n\n69、source package:validate-npm-package-license 3.0.4\npackage: validate-npm-package-license\n\n70、source package:vimspector 2938438041\npackage: vimspector\n\n\nOpen Source Software Licensed under the MIT:\n1、source package:@antfu/utils 0.7.7\npackage: @antfu/utils\n\n2、source package:@babel/runtime 7.6.0\npackage: @babel/runtime\n\n3、source package:@babel/standalone 7.20.15\npackage: @babel/standalone\n\n4、source package:@ctrl/tinycolor 3.4.1\npackage: @ctrl/tinycolor\n\n5、source package:@element-plus/icons-vue 2.0.9\npackage: @element-plus/icons-vue\n\n6、source package:@esbuild/android-arm 0.15.9\npackage: @esbuild/android-arm\n\n7、source package:@esbuild/linux-loong64 0.15.9\npackage: @esbuild/linux-loong64\n\n8、source package:@floating-ui/core 1.0.1\npackage: @floating-ui/core\n\n9、source package:@floating-ui/dom 1.0.2\npackage: @floating-ui/dom\n\n10、source package:@jridgewell/gen-mapping 0.3.2\npackage: @jridgewell/gen-mapping\n\n11、source package:@jridgewell/resolve-uri 3.1.0\npackage: @jridgewell/resolve-uri\n\n12、source package:@jridgewell/set-array 1.1.2\npackage: @jridgewell/set-array\n\n13、source package:@jridgewell/source-map 0.3.2\npackage: @jridgewell/source-map\n\n14、source package:@jridgewell/sourcemap-codec 1.4.14\npackage: @jridgewell/sourcemap-codec\n\n15、source package:@jridgewell/trace-mapping 0.3.16\npackage: @jridgewell/trace-mapping\n\n16、source package:@nodelib/fs.scandir 2.1.5\npackage: @nodelib/fs.scandir\n\n17、source package:@nodelib/fs.stat 2.0.5\npackage: @nodelib/fs.stat\n\n18、source package:@nodelib/fs.walk 1.2.8\npackage: @nodelib/fs.walk\n\n19、source package:@popperjs/core 2.11.7\npackage: @popperjs/core\n\n20、source package:@rollup/pluginutils 5.1.0\npackage: @rollup/pluginutils\n\n21、source package:@smake/co 1.0.1\npackage: @smake/co\n\n22、source package:@types/estree 1.0.5\npackage: @types/estree\n\n23、source package:@types/json-schema 7.0.6\npackage: @types/json-schema\n\n24、source package:@types/lodash 4.14.185\npackage: @types/lodash\n\n25、source package:@types/lodash-es 4.17.6\npackage: @types/lodash-es\n\n26、source package:@types/node 14.14.6\npackage: @types/node\n\n27、source package:@types/web-bluetooth 0.0.15\npackage: @types/web-bluetooth\n\n28、source package:@vitejs/plugin-legacy 2.3.1\npackage: @vitejs/plugin-legacy\n\n29、source package:@vitejs/plugin-vue 3.1.0\npackage: @vitejs/plugin-vue\n\n30、source package:@vue/devtools-api 6.4.1\npackage: @vue/devtools-api\n\n31、source package:@vueuse/core 9.3.0\npackage: @vueuse/core\n\n32、source package:@vueuse/metadata 9.3.0\npackage: @vueuse/metadata\n\n33、source package:@vueuse/shared 9.3.0\npackage: @vueuse/shared\n\n34、source package:CppLogging 1.0.1.0\npackage: CppLogging\n\n35、source package:abbrev 1.1.1\npackage: abbrev\n\n36、source package:acorn 7.0.0\npackage: acorn\n\n37、source package:acorn-dynamic-import 2.0.2\npackage: acorn-dynamic-import\n\n38、source package:acorn-node 1.8.2\npackage: acorn-node\n\n39、source package:acorn-walk 7.0.0\npackage: acorn-walk\n\n40、source package:add-px-to-style 1.0.0\npackage: add-px-to-style\n\n41、source package:ajv 6.12.6\npackage: ajv\n\n42、source package:ajv-keywords 3.5.2\npackage: ajv-keywords\n\n43、source package:align-text 0.1.4\npackage: align-text\n\n44、source package:amdefine 1.0.1\npackage: amdefine\n\n45、source package:ansi-gray 0.1.1\npackage: ansi-gray\n\n46、source package:ansi-regex 3.0.0\npackage: ansi-regex\n\n47、source package:ansi-styles 2.2.1\npackage: ansi-styles\n\n48、source package:ansi-wrap 0.1.0\npackage: ansi-wrap\n\n49、source package:anyks-lm 2.1.5\npackage: anyks-lm\n\n50、source package:apt 2.7.1\npackage: apt\n\n51、source package:archy 1.0.0\npackage: archy\n\n52、source package:arr-diff 4.0.0\npackage: arr-diff\n\n53、source package:arr-flatten 1.1.0\npackage: arr-flatten\n\n54、source package:arr-union 3.1.0\npackage: arr-union\n\n55、source package:array-differ 1.0.0\npackage: array-differ\n\n56、source package:array-each 1.0.1\npackage: array-each\n\n57、source package:array-find-index 1.0.2\npackage: array-find-index\n\n58、source package:array-slice 1.1.0\npackage: array-slice\n\n59、source package:array-uniq 1.0.3\npackage: array-uniq\n\n60、source package:array-unique 0.3.2\npackage: array-unique\n\n61、source package:asn1 0.2.4\npackage: asn1\n\n62、source package:asn1.js 5.4.1\npackage: asn1.js\n\n63、source package:assert 1.5.0\npackage: assert\n\n64、source package:assert-plus 1.0.0\npackage: assert-plus\n\n65、source package:assign-symbols 1.0.0\npackage: assign-symbols\n\n66、source package:async 2.6.3\npackage: async\n\n67、source package:async-each 1.0.3\npackage: async-each\n\n68、source package:async-foreach 0.1.3\npackage: async-foreach\n\n69、source package:async-validator 4.2.5\npackage: async-validator\n\n70、source package:asynckit 0.4.0\npackage: asynckit\n\n71、source package:atob 2.1.2\npackage: atob\n\n72、source package:aws4 1.8.0\npackage: aws4\n\n73、source package:babel-code-frame 6.26.0\npackage: babel-code-frame\n\n74、source package:babel-core 6.26.3\npackage: babel-core\n\n75、source package:babel-generator 6.26.1\npackage: babel-generator\n\n76、source package:babel-helper-builder-binary-assignment-operator-visitor 6.24.1\npackage: babel-helper-builder-binary-assignment-operator-visitor\n\n77、source package:babel-helper-builder-react-jsx 6.26.0\npackage: babel-helper-builder-react-jsx\n\n78、source package:babel-helper-call-delegate 6.24.1\npackage: babel-helper-call-delegate\n\n79、source package:babel-helper-define-map 6.26.0\npackage: babel-helper-define-map\n\n80、source package:babel-helper-explode-assignable-expression 6.24.1\npackage: babel-helper-explode-assignable-expression\n\n81、source package:babel-helper-function-name 6.24.1\npackage: babel-helper-function-name\n\n82、source package:babel-helper-get-function-arity 6.24.1\npackage: babel-helper-get-function-arity\n\n83、source package:babel-helper-hoist-variables 6.24.1\npackage: babel-helper-hoist-variables\n\n84、source package:babel-helper-optimise-call-expression 6.24.1\npackage: babel-helper-optimise-call-expression\n\n85、source package:babel-helper-regex 6.26.0\npackage: babel-helper-regex\n\n86、source package:babel-helper-remap-async-to-generator 6.24.1\npackage: babel-helper-remap-async-to-generator\n\n87、source package:babel-helper-replace-supers 6.24.1\npackage: babel-helper-replace-supers\n\n88、source package:babel-helpers 6.24.1\npackage: babel-helpers\n\n89、source package:babel-messages 6.23.0\npackage: babel-messages\n\n90、source package:babel-plugin-check-es2015-constants 6.22.0\npackage: babel-plugin-check-es2015-constants\n\n91、source package:babel-plugin-syntax-async-functions 6.13.0\npackage: babel-plugin-syntax-async-functions\n\n92、source package:babel-plugin-syntax-exponentiation-operator 6.13.0\npackage: babel-plugin-syntax-exponentiation-operator\n\n93、source package:babel-plugin-syntax-flow 6.18.0\npackage: babel-plugin-syntax-flow\n\n94、source package:babel-plugin-syntax-jsx 6.18.0\npackage: babel-plugin-syntax-jsx\n\n95、source package:babel-plugin-syntax-trailing-function-commas 6.22.0\npackage: babel-plugin-syntax-trailing-function-commas\n\n96、source package:babel-plugin-transform-async-to-generator 6.24.1\npackage: babel-plugin-transform-async-to-generator\n\n97、source package:babel-plugin-transform-es2015-arrow-functions 6.22.0\npackage: babel-plugin-transform-es2015-arrow-functions\n\n98、source package:babel-plugin-transform-es2015-block-scoped-functions 6.22.0\npackage: babel-plugin-transform-es2015-block-scoped-functions\n\n99、source package:babel-plugin-transform-es2015-block-scoping 6.26.0\npackage: babel-plugin-transform-es2015-block-scoping\n\n100、source package:babel-plugin-transform-es2015-classes 6.24.1\npackage: babel-plugin-transform-es2015-classes\n\n101、source package:babel-plugin-transform-es2015-computed-properties 6.24.1\npackage: babel-plugin-transform-es2015-computed-properties\n\n102、source package:babel-plugin-transform-es2015-destructuring 6.23.0\npackage: babel-plugin-transform-es2015-destructuring\n\n103、source package:babel-plugin-transform-es2015-duplicate-keys 6.24.1\npackage: babel-plugin-transform-es2015-duplicate-keys\n\n104、source package:babel-plugin-transform-es2015-for-of 6.23.0\npackage: babel-plugin-transform-es2015-for-of\n\n105、source package:babel-plugin-transform-es2015-function-name 6.24.1\npackage: babel-plugin-transform-es2015-function-name\n\n106、source package:babel-plugin-transform-es2015-literals 6.22.0\npackage: babel-plugin-transform-es2015-literals\n\n107、source package:babel-plugin-transform-es2015-modules-amd 6.24.1\npackage: babel-plugin-transform-es2015-modules-amd\n\n108、source package:babel-plugin-transform-es2015-modules-commonjs 6.26.2\npackage: babel-plugin-transform-es2015-modules-commonjs\n\n109、source package:babel-plugin-transform-es2015-modules-systemjs 6.24.1\npackage: babel-plugin-transform-es2015-modules-systemjs\n\n110、source package:babel-plugin-transform-es2015-modules-umd 6.24.1\npackage: babel-plugin-transform-es2015-modules-umd\n\n111、source package:babel-plugin-transform-es2015-object-super 6.24.1\npackage: babel-plugin-transform-es2015-object-super\n\n112、source package:babel-plugin-transform-es2015-parameters 6.24.1\npackage: babel-plugin-transform-es2015-parameters\n\n113、source package:babel-plugin-transform-es2015-shorthand-properties 6.24.1\npackage: babel-plugin-transform-es2015-shorthand-properties\n\n114、source package:babel-plugin-transform-es2015-spread 6.22.0\npackage: babel-plugin-transform-es2015-spread\n\n115、source package:babel-plugin-transform-es2015-sticky-regex 6.24.1\npackage: babel-plugin-transform-es2015-sticky-regex\n\n116、source package:babel-plugin-transform-es2015-template-literals 6.22.0\npackage: babel-plugin-transform-es2015-template-literals\n\n117、source package:babel-plugin-transform-es2015-typeof-symbol 6.23.0\npackage: babel-plugin-transform-es2015-typeof-symbol\n\n118、source package:babel-plugin-transform-es2015-unicode-regex 6.24.1\npackage: babel-plugin-transform-es2015-unicode-regex\n\n119、source package:babel-plugin-transform-exponentiation-operator 6.24.1\npackage: babel-plugin-transform-exponentiation-operator\n\n120、source package:babel-plugin-transform-flow-strip-types 6.22.0\npackage: babel-plugin-transform-flow-strip-types\n\n121、source package:babel-plugin-transform-react-display-name 6.25.0\npackage: babel-plugin-transform-react-display-name\n\n122、source package:babel-plugin-transform-react-jsx 6.24.1\npackage: babel-plugin-transform-react-jsx\n\n123、source package:babel-plugin-transform-react-jsx-self 6.22.0\npackage: babel-plugin-transform-react-jsx-self\n\n124、source package:babel-plugin-transform-react-jsx-source 6.22.0\npackage: babel-plugin-transform-react-jsx-source\n\n125、source package:babel-plugin-transform-regenerator 6.26.0\npackage: babel-plugin-transform-regenerator\n\n126、source package:babel-plugin-transform-strict-mode 6.24.1\npackage: babel-plugin-transform-strict-mode\n\n127、source package:babel-polyfill 6.26.0\npackage: babel-polyfill\n\n128、source package:babel-preset-env 1.7.0\npackage: babel-preset-env\n\n129、source package:babel-preset-flow 6.23.0\npackage: babel-preset-flow\n\n130、source package:babel-preset-react 6.24.1\npackage: babel-preset-react\n\n131、source package:babel-register 6.26.0\npackage: babel-register\n\n132、source package:babel-runtime 6.26.0\npackage: babel-runtime\n\n133、source package:babel-template 6.26.0\npackage: babel-template\n\n134、source package:babel-traverse 6.26.0\npackage: babel-traverse\n\n135、source package:babel-types 6.26.0\npackage: babel-types\n\n136、source package:babelify 8.0.0\npackage: babelify\n\n137、source package:babylon 6.18.0\npackage: babylon\n\n138、source package:balanced-match 1.0.2\npackage: balanced-match\n\n139、source package:base 0.11.2\npackage: base\n\n140、source package:base64-js 1.3.1\npackage: base64-js\n\n141、source package:beeper 1.1.1\npackage: beeper\n\n142、source package:big.js 5.2.2\npackage: big.js\n\n143、source package:binary-extensions 2.2.0\npackage: binary-extensions\n\n144、source package:bl 1.2.2\npackage: bl\n\n145、source package:bn.js 5.1.3\npackage: bn.js\n\n146、source package:brace-expansion 2.0.1\npackage: brace-expansion\n\n147、source package:braces 3.0.2\npackage: braces\n\n148、source package:brorand 1.1.0\npackage: brorand\n\n149、source package:browser-pack 6.1.0\npackage: browser-pack\n\n150、source package:browser-resolve 1.11.3\npackage: browser-resolve\n\n151、source package:browserify 14.5.0\npackage: browserify\n\n152、source package:browserify-aes 1.2.0\npackage: browserify-aes\n\n153、source package:browserify-cipher 1.0.1\npackage: browserify-cipher\n\n154、source package:browserify-des 1.0.2\npackage: browserify-des\n\n155、source package:browserify-rsa 4.0.1\npackage: browserify-rsa\n\n156、source package:browserify-zlib 0.2.0\npackage: browserify-zlib\n\n157、source package:browserslist 3.2.8\npackage: browserslist\n\n158、source package:buffer 5.4.2\npackage: buffer\n\n159、source package:buffer-from 1.1.2\npackage: buffer-from\n\n160、source package:buffer-xor 1.0.3\npackage: buffer-xor\n\n161、source package:builtin-status-codes 3.0.0\npackage: builtin-status-codes\n\n162、source package:cache-base 1.0.1\npackage: cache-base\n\n163、source package:cached-path-relative 1.0.2\npackage: cached-path-relative\n\n164、source package:camelcase 4.1.0\npackage: camelcase\n\n165、source package:camelcase-keys 2.1.0\npackage: camelcase-keys\n\n166、source package:center-align 0.1.3\npackage: center-align\n\n167、source package:chalk 1.1.3\npackage: chalk\n\n168、source package:cheerio 1.0.0-rc.3\npackage: cheerio\n\n169、source package:chokidar 3.4.3\npackage: chokidar\n\n170、source package:cipher-base 1.0.4\npackage: cipher-base\n\n171、source package:class-utils 0.3.6\npackage: class-utils\n\n172、source package:clone 2.1.2\npackage: clone\n\n173、source package:clone-buffer 1.0.0\npackage: clone-buffer\n\n174、source package:clone-stats 1.0.0\npackage: clone-stats\n\n175、source package:cloneable-readable 1.1.3\npackage: cloneable-readable\n\n176、source package:code-point-at 1.1.0\npackage: code-point-at\n\n177、source package:collection-visit 1.0.0\npackage: collection-visit\n\n178、source package:combine-source-map 0.8.0\npackage: combine-source-map\n\n179、source package:combined-stream 1.0.8\npackage: combined-stream\n\n180、source package:commander 2.20.3\npackage: commander\n\n181、source package:component-emitter 1.3.0\npackage: component-emitter\n\n182、source package:compute-scroll-into-view 1.0.11\npackage: compute-scroll-into-view\n\n183、source package:concat-map 0.0.1\npackage: concat-map\n\n184、source package:concat-stream 1.6.2\npackage: concat-stream\n\n185、source package:console-browserify 1.2.0\npackage: console-browserify\n\n186、source package:constants-browserify 1.0.0\npackage: constants-browserify\n\n187、source package:convert-source-map 1.6.0\npackage: convert-source-map\n\n188、source package:cookiecutter-golang d372aa0\npackage: cookiecutter-golang\n\n189、source package:coost v3.0.0\npackage: coost\n\n190、source package:copy-descriptor 0.1.1\npackage: copy-descriptor\n\n191、source package:core-js 3.27.2\npackage: core-js\n\n192、source package:core-util-is 1.0.2\npackage: core-util-is\n\n193、source package:create-ecdh 4.0.4\npackage: create-ecdh\n\n194、source package:create-hash 1.2.0\npackage: create-hash\n\n195、source package:create-hmac 1.1.7\npackage: create-hmac\n\n196、source package:crelt 1.0.6\npackage: crelt\n\n197、source package:cross-spawn 5.1.0\npackage: cross-spawn\n\n198、source package:crypto-browserify 3.12.0\npackage: crypto-browserify\n\n199、source package:currently-unhandled 0.4.1\npackage: currently-unhandled\n\n200、source package:dashdash 1.14.1\npackage: dashdash\n\n201、source package:date-now 0.1.4\npackage: date-now\n\n202、source package:dateformat 2.2.0\npackage: dateformat\n\n203、source package:dayjs 1.11.5\npackage: dayjs\n\n204、source package:debug 4.3.4\npackage: debug\n\n205、source package:decamelize 1.2.0\npackage: decamelize\n\n206、source package:decode-uri-component 0.2.0\npackage: decode-uri-component\n\n207、source package:defaults 1.0.3\npackage: defaults\n\n208、source package:define-property 2.0.2\npackage: define-property\n\n209、source package:defined 1.0.0\npackage: defined\n\n210、source package:delayed-stream 1.0.0\npackage: delayed-stream\n\n211、source package:delegates 1.0.0\npackage: delegates\n\n212、source package:deprecated 0.0.1\npackage: deprecated\n\n213、source package:deps-sort 2.0.0\npackage: deps-sort\n\n214、source package:des.js 1.0.1\npackage: des.js\n\n215、source package:detect-file 1.0.0\npackage: detect-file\n\n216、source package:detect-indent 4.0.0\npackage: detect-indent\n\n217、source package:detective 4.7.1\npackage: detective\n\n218、source package:diffie-hellman 5.0.3\npackage: diffie-hellman\n\n219、source package:dom-css 2.1.0\npackage: dom-css\n\n220、source package:dom-serializer 0.1.1\npackage: dom-serializer\n\n221、source package:domain-browser 1.2.0\npackage: domain-browser\n\n222、source package:ecc-jsbn 0.1.2\npackage: ecc-jsbn\n\n223、source package:element-plus 2.2.17\npackage: element-plus\n\n224、source package:elliptic 6.5.3\npackage: elliptic\n\n225、source package:emojis-list 3.0.0\npackage: emojis-list\n\n226、source package:end-of-stream 0.1.5\npackage: end-of-stream\n\n227、source package:enhanced-resolve 3.4.1\npackage: enhanced-resolve\n\n228、source package:errno 0.1.7\npackage: errno\n\n229、source package:error-ex 1.3.2\npackage: error-ex\n\n230、source package:es6-iterator 2.0.3\npackage: es6-iterator\n\n231、source package:es6-map 0.1.5\npackage: es6-map\n\n232、source package:es6-set 0.1.5\npackage: es6-set\n\n233、source package:es6-symbol 3.1.1\npackage: es6-symbol\n\n234、source package:esbuild 0.15.9\npackage: esbuild\n\n235、source package:esbuild-android-64 0.15.9\npackage: esbuild-android-64\n\n236、source package:esbuild-android-arm64 0.15.9\npackage: esbuild-android-arm64\n\n237、source package:esbuild-darwin-64 0.15.9\npackage: esbuild-darwin-64\n\n238、source package:esbuild-darwin-arm64 0.15.9\npackage: esbuild-darwin-arm64\n\n239、source package:esbuild-freebsd-64 0.15.9\npackage: esbuild-freebsd-64\n\n240、source package:esbuild-freebsd-arm64 0.15.9\npackage: esbuild-freebsd-arm64\n\n241、source package:esbuild-linux-32 0.15.9\npackage: esbuild-linux-32\n\n242、source package:esbuild-linux-64 0.15.9\npackage: esbuild-linux-64\n\n243、source package:esbuild-linux-arm 0.15.9\npackage: esbuild-linux-arm\n\n244、source package:esbuild-linux-arm64 0.15.9\npackage: esbuild-linux-arm64\n\n245、source package:esbuild-linux-mips64le 0.15.9\npackage: esbuild-linux-mips64le\n\n246、source package:esbuild-linux-ppc64le 0.15.9\npackage: esbuild-linux-ppc64le\n\n247、source package:esbuild-linux-riscv64 0.15.9\npackage: esbuild-linux-riscv64\n\n248、source package:esbuild-linux-s390x 0.15.9\npackage: esbuild-linux-s390x\n\n249、source package:esbuild-netbsd-64 0.15.9\npackage: esbuild-netbsd-64\n\n250、source package:esbuild-openbsd-64 0.15.9\npackage: esbuild-openbsd-64\n\n251、source package:esbuild-sunos-64 0.15.9\npackage: esbuild-sunos-64\n\n252、source package:esbuild-windows-32 0.15.9\npackage: esbuild-windows-32\n\n253、source package:esbuild-windows-64 0.15.9\npackage: esbuild-windows-64\n\n254、source package:esbuild-windows-arm64 0.15.9\npackage: esbuild-windows-arm64\n\n255、source package:escape-html 1.0.3\npackage: escape-html\n\n256、source package:escape-string-regexp 5.0.0\npackage: escape-string-regexp\n\n257、source package:estree-walker 2.0.2\npackage: estree-walker\n\n258、source package:event-emitter 0.3.5\npackage: event-emitter\n\n259、source package:events 3.2.0\npackage: events\n\n260、source package:evp_bytestokey 1.0.3\npackage: evp_bytestokey\n\n261、source package:execa 0.7.0\npackage: execa\n\n262、source package:expand-brackets 2.1.4\npackage: expand-brackets\n\n263、source package:expand-tilde 2.0.2\npackage: expand-tilde\n\n264、source package:expose-loader 1.0.1\npackage: expose-loader\n\n265、source package:extend 3.0.2\npackage: extend\n\n266、source package:extend-shallow 3.0.2\npackage: extend-shallow\n\n267、source package:extglob 2.0.4\npackage: extglob\n\n268、source package:extsprintf 1.3.0\npackage: extsprintf\n\n269、source package:fancy-log 1.3.3\npackage: fancy-log\n\n270、source package:fast-deep-equal 3.1.3\npackage: fast-deep-equal\n\n271、source package:fast-glob 3.2.12\npackage: fast-glob\n\n272、source package:fast-json-stable-stringify 2.1.0\npackage: fast-json-stable-stringify\n\n273、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n274、source package:fill-range 7.0.1\npackage: fill-range\n\n275、source package:find-index 0.1.1\npackage: find-index\n\n276、source package:find-up 2.1.0\npackage: find-up\n\n277、source package:findup-sync 2.0.0\npackage: findup-sync\n\n278、source package:fined 1.2.0\npackage: fined\n\n279、source package:first-chunk-stream 1.0.0\npackage: first-chunk-stream\n\n280、source package:flagged-respawn 1.0.1\npackage: flagged-respawn\n\n281、source package:for-in 1.0.2\npackage: for-in\n\n282、source package:for-own 1.0.0\npackage: for-own\n\n283、source package:form-data 2.3.3\npackage: form-data\n\n284、source package:fragment-cache 0.2.1\npackage: fragment-cache\n\n285、source package:fs.realpath 1.0.0\npackage: fs.realpath\n\n286、source package:fsevents 2.3.2\npackage: fsevents\n\n287、source package:function-bind 1.1.1\npackage: function-bind\n\n288、source package:gaze 1.1.3\npackage: gaze\n\n289、source package:get-stdin 4.0.1\npackage: get-stdin\n\n290、source package:get-stream 3.0.0\npackage: get-stream\n\n291、source package:get-value 2.0.6\npackage: get-value\n\n292、source package:getpass 0.1.7\npackage: getpass\n\n293、source package:gg v1.3.0\npackage: gg\n\n294、source package:gin v1.5.0\npackage: gin\n\n295、source package:git 4.3.20-9\npackage: git\n\n296、source package:gitea v1.19.3\npackage: gitea\n\n297、source package:glob-stream 3.1.18\npackage: glob-stream\n\n298、source package:glob-watcher 0.0.6\npackage: glob-watcher\n\n299、source package:glob2base 0.0.12\npackage: glob2base\n\n300、source package:global-modules 1.0.0\npackage: global-modules\n\n301、source package:global-prefix 1.0.2\npackage: global-prefix\n\n302、source package:globals 9.18.0\npackage: globals\n\n303、source package:globule 1.2.1\npackage: globule\n\n304、source package:glogg 1.0.2\npackage: glogg\n\n305、source package:go v1.1.7\npackage: go\n\n306、source package:go-isatty v0.0.9\npackage: go-isatty\n\n307、source package:go-pinyin v0.19.0\npackage: go-pinyin\n\n308、source package:go-wav v0.3.2\npackage: go-wav\n\n309、source package:go-windows-terminal-sequences v1.0.1\npackage: go-windows-terminal-sequences\n\n310、source package:goconvey v1.8.1\npackage: goconvey\n\n311、source package:golang-github-gosexy-gettext-dev 0~git20130221-2.1_all\npackage: golang-github-gosexy-gettext-dev\n\n312、source package:gstreamer1.0-fluendo-mp3 0.10.32.debian-1_s390x\npackage: gstreamer1.0-fluendo-mp3\n\n313、source package:gstreamer1.0-plugins-base 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-base\n\n314、source package:gstreamer1.0-plugins-good 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-good\n\n315、source package:gstreamer1.0-plugins-ugly 1.9.90-1\npackage: gstreamer1.0-plugins-ugly\n\n316、source package:gstreamer1.0-pulseaudio 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-pulseaudio\n\n317、source package:gstreamer1.0-x 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-x\n\n318、source package:gulp 3.9.1\npackage: gulp\n\n319、source package:gulp-concat 2.6.1\npackage: gulp-concat\n\n320、source package:gulp-rename 1.4.0\npackage: gulp-rename\n\n321、source package:gulp-sass 3.2.1\npackage: gulp-sass\n\n322、source package:gulp-util 3.0.8\npackage: gulp-util\n\n323、source package:gulplog 1.0.0\npackage: gulplog\n\n324、source package:har-validator 5.1.3\npackage: har-validator\n\n325、source package:has 1.0.3\npackage: has\n\n326、source package:has-ansi 2.0.0\npackage: has-ansi\n\n327、source package:has-flag 2.0.0\npackage: has-flag\n\n328、source package:has-gulplog 0.1.0\npackage: has-gulplog\n\n329、source package:has-value 1.0.0\npackage: has-value\n\n330、source package:has-values 1.0.0\npackage: has-values\n\n331、source package:hash-base 3.1.0\npackage: hash-base\n\n332、source package:hash.js 1.1.7\npackage: hash.js\n\n333、source package:history 4.9.0\npackage: history\n\n334、source package:hmac-drbg 1.0.1\npackage: hmac-drbg\n\n335、source package:home-or-tmp 2.0.0\npackage: home-or-tmp\n\n336、source package:homedir-polyfill 1.0.3\npackage: homedir-polyfill\n\n337、source package:htmlescape 1.1.1\npackage: htmlescape\n\n338、source package:htmlparser2 3.10.1\npackage: htmlparser2\n\n339、source package:http-signature 1.2.0\npackage: http-signature\n\n340、source package:https-browserify 1.0.0\npackage: https-browserify\n\n341、source package:image v0.10.0\npackage: image\n\n342、source package:immutable 4.1.0\npackage: immutable\n\n343、source package:indent-string 2.1.0\npackage: indent-string\n\n344、source package:indexof 0.0.1\npackage: indexof\n\n345、source package:inline-source-map 0.6.2\npackage: inline-source-map\n\n346、source package:insert-module-globals 7.2.0\npackage: insert-module-globals\n\n347、source package:interpret 1.4.0\npackage: interpret\n\n348、source package:invariant 2.2.4\npackage: invariant\n\n349、source package:invert-kv 1.0.0\npackage: invert-kv\n\n350、source package:is-absolute 1.0.0\npackage: is-absolute\n\n351、source package:is-accessor-descriptor 1.0.0\npackage: is-accessor-descriptor\n\n352、source package:is-arrayish 0.2.1\npackage: is-arrayish\n\n353、source package:is-binary-path 2.1.0\npackage: is-binary-path\n\n354、source package:is-buffer 1.1.6\npackage: is-buffer\n\n355、source package:is-core-module 2.10.0\npackage: is-core-module\n\n356、source package:is-data-descriptor 1.0.0\npackage: is-data-descriptor\n\n357、source package:is-descriptor 1.0.2\npackage: is-descriptor\n\n358、source package:is-extendable 1.0.1\npackage: is-extendable\n\n359、source package:is-extglob 2.1.1\npackage: is-extglob\n\n360、source package:is-finite 1.0.2\npackage: is-finite\n\n361、source package:is-fullwidth-code-point 2.0.0\npackage: is-fullwidth-code-point\n\n362、source package:is-glob 4.0.3\npackage: is-glob\n\n363、source package:is-number 7.0.0\npackage: is-number\n\n364、source package:is-plain-object 2.0.4\npackage: is-plain-object\n\n365、source package:is-relative 1.0.0\npackage: is-relative\n\n366、source package:is-stream 1.1.0\npackage: is-stream\n\n367、source package:is-typedarray 1.0.0\npackage: is-typedarray\n\n368、source package:is-unc-path 1.0.0\npackage: is-unc-path\n\n369、source package:is-utf8 0.2.1\npackage: is-utf8\n\n370、source package:is-windows 1.0.2\npackage: is-windows\n\n371、source package:isarray 1.0.0\npackage: isarray\n\n372、source package:isobject 3.0.1\npackage: isobject\n\n373、source package:isstream 0.1.2\npackage: isstream\n\n374、source package:java_fpe_test 0.1.2\npackage: java_fpe_test\n\n375、source package:jq 1.6-2.1\npackage: jq\n\n376、source package:jquery 3.6.1\npackage: jquery\n\n377、source package:js 0.1.0\npackage: js\n\n378、source package:js-tokens 3.0.2\npackage: js-tokens\n\n379、source package:jsbn 0.1.1\npackage: jsbn\n\n380、source package:jsesc 1.3.0\npackage: jsesc\n\n381、source package:json v3.7.0\npackage: json\n\n382、source package:json-loader 0.5.7\npackage: json-loader\n\n383、source package:json-schema-traverse 0.4.1\npackage: json-schema-traverse\n\n384、source package:json-stable-stringify 0.0.1\npackage: json-stable-stringify\n\n385、source package:json5 2.1.3\npackage: json5\n\n386、source package:jsonc-parser 3.2.0\npackage: jsonc-parser\n\n387、source package:jsonparse 1.3.1\npackage: jsonparse\n\n388、source package:jsprim 1.4.1\npackage: jsprim\n\n389、source package:jwt-cpp v0.5.0\npackage: jwt-cpp\n\n390、source package:keypress 0.1.0\npackage: keypress\n\n391、source package:kind-of 6.0.3\npackage: kind-of\n\n392、source package:labeled-stream-splicer 2.0.2\npackage: labeled-stream-splicer\n\n393、source package:lazy-cache 1.0.4\npackage: lazy-cache\n\n394、source package:lcid 1.0.0\npackage: lcid\n\n395、source package:libappimage-dev 0.1.9+dfsg-1_s390x\npackage: libappimage-dev\n\n396、source package:libboost-dev 1.71.0.3_s390x\npackage: libboost-dev\n\n397、source package:libboost-filesystem-dev 1.71.0.3_s390x\npackage: libboost-filesystem-dev\n\n398、source package:libboost-serialization-dev 1.71.0.3_s390x\npackage: libboost-serialization-dev\n\n399、source package:libboost-system-dev 1.71.0.3_s390x\npackage: libboost-system-dev\n\n400、source package:libdrm-dev 2.4.99-1_s390x\npackage: libdrm-dev\n\n401、source package:libegl1-mesa-dev 8.0.5-4+deb7u2_sparc\npackage: libegl1-mesa-dev\n\n402、source package:libgbm-dev 8.0.5-4+deb7u2_sparc\npackage: libgbm-dev\n\n403、source package:libglib2.0-dev 2.64.4-1_s390x\npackage: libglib2.0-dev\n\n404、source package:libgstreamer-plugins-base1.0-0 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-0\n\n405、source package:libgstreamer-plugins-base1.0-dev 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-dev\n\n406、source package:libjson-c3 0.12.1-1.3_s390x\npackage: libjson-c3\n\n407、source package:libjson-rpc-cpp v1.4.1\npackage: libjson-rpc-cpp\n\n408、source package:liblcms2-dev 2.9-4_s390x\npackage: liblcms2-dev\n\n409、source package:libportaudio2 19.6.0-1_s390x\npackage: libportaudio2\n\n410、source package:libx11-dev 2:1.8.4-2+deb12u1\npackage: libx11-dev\n\n411、source package:libx11-xcb-dev 1.6.9-2_s390x\npackage: libx11-xcb-dev\n\n412、source package:libxcb-composite0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-composite0-dev\n\n413、source package:libxcb-cursor-dev 0.1.1-4_s390x\npackage: libxcb-cursor-dev\n\n414、source package:libxcb-damage0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-damage0-dev\n\n415、source package:libxcb-ewmh-dev 0.4.1-1_s390x\npackage: libxcb-ewmh-dev\n\n416、source package:libxcb-image0-dev 0.4.0-1_s390x\npackage: libxcb-image0-dev\n\n417、source package:libxcb-keysyms1-dev 0.4.0-1_s390x\npackage: libxcb-keysyms1-dev\n\n418、source package:libxcb-randr0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-randr0-dev\n\n419、source package:libxcb-record0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-record0-dev\n\n420、source package:libxcb-render-util0-dev 0.3.9-1_s390x\npackage: libxcb-render-util0-dev\n\n421、source package:libxcb-render0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-render0-dev\n\n422、source package:libxcb-res0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-res0-dev\n\n423、source package:libxcb-shape0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-shape0-dev\n\n424、source package:libxcb-sync-dev 1.14-2_s390x\npackage: libxcb-sync-dev\n\n425、source package:libxcb-util0 0.3.8-3_s390x\npackage: libxcb-util0\n\n426、source package:libxcb-util0-dev 0.3.8-3_s390x\npackage: libxcb-util0-dev\n\n427、source package:libxcb-util1 0.4.0-1\npackage: libxcb-util1\n\n428、source package:libxcb-xfixes0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-xfixes0-dev\n\n429、source package:libxcb-xinerama0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-xinerama0-dev\n\n430、source package:libxcb-xinput-dev 1.14-2_s390x\npackage: libxcb-xinput-dev\n\n431、source package:libxcb-xkb-dev 1.14-2_s390x\npackage: libxcb-xkb-dev\n\n432、source package:libxcb-xtest0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-xtest0-dev\n\n433、source package:libxcb1-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb1-dev\n\n434、source package:libxext-dev 1.3.3-1_s390x\npackage: libxext-dev\n\n435、source package:libxfixes-dev 5.0.3-2_s390x\npackage: libxfixes-dev\n\n436、source package:libxinerama-dev 2:1.1.4-3\npackage: libxinerama-dev\n\n437、source package:libxkbcommon-dev 0.9.1-1_s390x\npackage: libxkbcommon-dev\n\n438、source package:libxkbcommon-x11-dev 0.9.1-1_s390x\npackage: libxkbcommon-x11-dev\n\n439、source package:libxss-dev 1.2.3-1_s390x\npackage: libxss-dev\n\n440、source package:libxss1 1.2.3-1_s390x\npackage: libxss1\n\n441、source package:libxtst-dev 1.2.3-1_s390x\npackage: libxtst-dev\n\n442、source package:liftoff 2.5.0\npackage: liftoff\n\n443、source package:load-json-file 2.0.0\npackage: load-json-file\n\n444、source package:loader-runner 2.4.0\npackage: loader-runner\n\n445、source package:loader-utils 2.0.0\npackage: loader-utils\n\n446、source package:local-pkg 0.4.3\npackage: local-pkg\n\n447、source package:locales v0.12.1\npackage: locales\n\n448、source package:locate-path 2.0.0\npackage: locate-path\n\n449、source package:lodash 4.17.21\npackage: lodash\n\n450、source package:lodash-es 4.17.21\npackage: lodash-es\n\n451、source package:lodash-unified 1.0.2\npackage: lodash-unified\n\n452、source package:lodash._basecopy 3.0.1\npackage: lodash._basecopy\n\n453、source package:lodash._basetostring 3.0.1\npackage: lodash._basetostring\n\n454、source package:lodash._basevalues 3.0.0\npackage: lodash._basevalues\n\n455、source package:lodash._getnative 3.9.1\npackage: lodash._getnative\n\n456、source package:lodash._isiterateecall 3.0.9\npackage: lodash._isiterateecall\n\n457、source package:lodash._reescape 3.0.0\npackage: lodash._reescape\n\n458、source package:lodash._reevaluate 3.0.0\npackage: lodash._reevaluate\n\n459、source package:lodash._reinterpolate 3.0.0\npackage: lodash._reinterpolate\n\n460、source package:lodash._root 3.0.1\npackage: lodash._root\n\n461、source package:lodash.clonedeep 4.5.0\npackage: lodash.clonedeep\n\n462、source package:lodash.escape 3.2.0\npackage: lodash.escape\n\n463、source package:lodash.isarguments 3.1.0\npackage: lodash.isarguments\n\n464、source package:lodash.isarray 3.0.4\npackage: lodash.isarray\n\n465、source package:lodash.keys 3.1.2\npackage: lodash.keys\n\n466、source package:lodash.memoize 3.0.4\npackage: lodash.memoize\n\n467、source package:lodash.restparam 3.6.1\npackage: lodash.restparam\n\n468、source package:lodash.template 3.6.2\npackage: lodash.template\n\n469、source package:lodash.templatesettings 3.1.1\npackage: lodash.templatesettings\n\n470、source package:logrus v1.9.3\npackage: logrus\n\n471、source package:longest 1.0.1\npackage: longest\n\n472、source package:loose-envify 1.4.0\npackage: loose-envify\n\n473、source package:loud-rejection 1.6.0\npackage: loud-rejection\n\n474、source package:magic-string 0.27.0\npackage: magic-string\n\n475、source package:make-iterator 1.0.1\npackage: make-iterator\n\n476、source package:map-cache 0.2.2\npackage: map-cache\n\n477、source package:map-obj 1.0.1\npackage: map-obj\n\n478、source package:map-visit 1.0.0\npackage: map-visit\n\n479、source package:marked 1.2.3\npackage: marked\n\n480、source package:md5.js 1.3.5\npackage: md5.js\n\n481、source package:mem 1.1.0\npackage: mem\n\n482、source package:memoize-one 6.0.0\npackage: memoize-one\n\n483、source package:memory-fs 0.4.1\npackage: memory-fs\n\n484、source package:meow 3.7.0\npackage: meow\n\n485、source package:merge2 1.4.1\npackage: merge2\n\n486、source package:mesa-utils 9.0.0-1\npackage: mesa-utils\n\n487、source package:mesa-va-drivers 20.1.2-1_armel\npackage: mesa-va-drivers\n\n488、source package:mesa-vdpau-drivers 20.1.2-1_mipsel\npackage: mesa-vdpau-drivers\n\n489、source package:mesa-vulkan-drivers 20.1.2-1_mips64el\npackage: mesa-vulkan-drivers\n\n490、source package:micromatch 3.1.10\npackage: micromatch\n\n491、source package:miller-rabin 4.0.1\npackage: miller-rabin\n\n492、source package:mime-db 1.40.0\npackage: mime-db\n\n493、source package:mime-types 2.1.24\npackage: mime-types\n\n494、source package:mimic-fn 1.2.0\npackage: mimic-fn\n\n495、source package:minimalistic-crypto-utils 1.0.1\npackage: minimalistic-crypto-utils\n\n496、source package:minimatch 0.2.14\npackage: minimatch\n\n497、source package:minimist 1.2.5\npackage: minimist\n\n498、source package:mitt 3.0.0\npackage: mitt\n\n499、source package:mixin-deep 1.3.2\npackage: mixin-deep\n\n500、source package:mkdirp 0.5.5\npackage: mkdirp\n\n501、source package:mlly 1.4.2\npackage: mlly\n\n502、source package:module-deps 4.1.1\npackage: module-deps\n\n503、source package:moment 2.29.4\npackage: moment\n\n504、source package:mqt.qfr 1.10.0\npackage: mqt.qfr\n\n505、source package:ms 2.1.2\npackage: ms\n\n506、source package:multipipe 0.1.2\npackage: multipipe\n\n507、source package:nan 2.14.0\npackage: nan\n\n508、source package:nanomatch 1.2.13\npackage: nanomatch\n\n509、source package:native v1.1.0\npackage: native\n\n510、source package:ncurses-base 6.2-1_all\npackage: ncurses-base\n\n511、source package:neo-async 2.6.2\npackage: neo-async\n\n512、source package:netlink v1.7.2\npackage: netlink\n\n513、source package:next-tick 1.0.0\npackage: next-tick\n\n514、source package:nlohmann_json nlohmann_json-3.7.3\npackage: nlohmann_json\n\n515、source package:node 8.16.1\npackage: node\n\n516、source package:node-gyp 3.8.0\npackage: node-gyp\n\n517、source package:node-libs-browser 2.2.1\npackage: node-libs-browser\n\n518、source package:node-sass 4.12.0\npackage: node-sass\n\n519、source package:normalize-path 3.0.0\npackage: normalize-path\n\n520、source package:npm-run-path 2.0.2\npackage: npm-run-path\n\n521、source package:number-is-nan 1.0.1\npackage: number-is-nan\n\n522、source package:object-assign 4.1.1\npackage: object-assign\n\n523、source package:object-copy 0.1.0\npackage: object-copy\n\n524、source package:object-visit 1.0.1\npackage: object-visit\n\n525、source package:object.defaults 1.1.0\npackage: object.defaults\n\n526、source package:object.map 1.0.1\npackage: object.map\n\n527、source package:object.pick 1.3.0\npackage: object.pick\n\n528、source package:objx v0.5.2\npackage: objx\n\n529、source package:orchestrator 0.3.8\npackage: orchestrator\n\n530、source package:ordered-read-streams 0.1.0\npackage: ordered-read-streams\n\n531、source package:os-browserify 0.3.0\npackage: os-browserify\n\n532、source package:os-config 0.2.3\npackage: os-config\n\n533、source package:os-homedir 1.0.2\npackage: os-homedir\n\n534、source package:os-locale 2.1.0\npackage: os-locale\n\n535、source package:os-tmpdir 1.0.2\npackage: os-tmpdir\n\n536、source package:p-finally 1.0.0\npackage: p-finally\n\n537、source package:p-limit 1.3.0\npackage: p-limit\n\n538、source package:p-locate 2.0.0\npackage: p-locate\n\n539、source package:p-try 1.0.0\npackage: p-try\n\n540、source package:pako 1.0.11\npackage: pako\n\n541、source package:parents 1.0.1\npackage: parents\n\n542、source package:parse-filepath 1.0.2\npackage: parse-filepath\n\n543、source package:parse-json 2.2.0\npackage: parse-json\n\n544、source package:parse-node-version 1.0.1\npackage: parse-node-version\n\n545、source package:parse-passwd 1.0.0\npackage: parse-passwd\n\n546、source package:parse5 3.0.3\npackage: parse5\n\n547、source package:pascalcase 0.1.1\npackage: pascalcase\n\n548、source package:path-browserify 0.0.1\npackage: path-browserify\n\n549、source package:path-dirname 1.0.2\npackage: path-dirname\n\n550、source package:path-exists 3.0.0\npackage: path-exists\n\n551、source package:path-is-absolute 1.0.1\npackage: path-is-absolute\n\n552、source package:path-key 2.0.1\npackage: path-key\n\n553、source package:path-parse 1.0.7\npackage: path-parse\n\n554、source package:path-platform 0.11.15\npackage: path-platform\n\n555、source package:path-root 0.1.1\npackage: path-root\n\n556、source package:path-root-regex 0.1.2\npackage: path-root-regex\n\n557、source package:path-to-regexp 1.7.0\npackage: path-to-regexp\n\n558、source package:path-type 2.0.0\npackage: path-type\n\n559、source package:pathe 1.1.1\npackage: pathe\n\n560、source package:pbkdf2 3.1.1\npackage: pbkdf2\n\n561、source package:performance-now 2.1.0\npackage: performance-now\n\n562、source package:picomatch 2.3.1\npackage: picomatch\n\n563、source package:pify 2.3.0\npackage: pify\n\n564、source package:pinia 2.0.22\npackage: pinia\n\n565、source package:pinkie 2.0.4\npackage: pinkie\n\n566、source package:pinkie-promise 2.0.1\npackage: pinkie-promise\n\n567、source package:pipewire-pulse 0.3.71\npackage: pipewire-pulse\n\n568、source package:pkg-types 1.0.3\npackage: pkg-types\n\n569、source package:platform/external/fmtlib upstream-master\npackage: platform/external/fmtlib\n\n570、source package:portaudio19-dev 19.6.0-1_s390x\npackage: portaudio19-dev\n\n571、source package:posix-character-classes 0.1.1\npackage: posix-character-classes\n\n572、source package:prefix-style 2.0.1\npackage: prefix-style\n\n573、source package:pretty v0.2.1\npackage: pretty\n\n574、source package:pretty-hrtime 1.0.3\npackage: pretty-hrtime\n\n575、source package:private 0.1.8\npackage: private\n\n576、source package:process 0.11.10\npackage: process\n\n577、source package:process-nextick-args 2.0.1\npackage: process-nextick-args\n\n578、source package:promxy v0.0.81\npackage: promxy\n\n579、source package:prop-types 15.7.2\npackage: prop-types\n\n580、source package:prr 1.0.1\npackage: prr\n\n581、source package:psl 1.4.0\npackage: psl\n\n582、source package:public-encrypt 4.0.3\npackage: public-encrypt\n\n583、source package:punycode 2.1.1\npackage: punycode\n\n584、source package:python3 3.8.2-3_s390x\npackage: python3\n\n585、source package:python3-dbus 1.2.8-3_s390x\npackage: python3-dbus\n\n586、source package:querystring 0.2.0\npackage: querystring\n\n587、source package:querystring-es3 0.2.1\npackage: querystring-es3\n\n588、source package:queue-microtask 1.2.3\npackage: queue-microtask\n\n589、source package:raf 3.4.1\npackage: raf\n\n590、source package:randombytes 2.1.0\npackage: randombytes\n\n591、source package:randomfill 1.0.4\npackage: randomfill\n\n592、source package:react 16.9.0\npackage: react\n\n593、source package:react-custom-scrollbars 4.2.1\npackage: react-custom-scrollbars\n\n594、source package:react-dom 16.9.0\npackage: react-dom\n\n595、source package:react-is 16.9.0\npackage: react-is\n\n596、source package:react-router 4.3.1\npackage: react-router\n\n597、source package:react-router-dom 4.3.1\npackage: react-router-dom\n\n598、source package:read-only-stream 2.0.0\npackage: read-only-stream\n\n599、source package:read-pkg 2.0.0\npackage: read-pkg\n\n600、source package:read-pkg-up 2.0.0\npackage: read-pkg-up\n\n601、source package:readable-stream 3.6.0\npackage: readable-stream\n\n602、source package:readdirp 3.6.0\npackage: readdirp\n\n603、source package:rechoir 0.6.2\npackage: rechoir\n\n604、source package:redent 1.0.0\npackage: redent\n\n605、source package:regenerate 1.4.0\npackage: regenerate\n\n606、source package:regenerator-runtime 0.13.3\npackage: regenerator-runtime\n\n607、source package:regex-not 1.0.2\npackage: regex-not\n\n608、source package:regexpu-core 2.0.0\npackage: regexpu-core\n\n609、source package:regjsgen 0.2.0\npackage: regjsgen\n\n610、source package:repeat-element 1.1.3\npackage: repeat-element\n\n611、source package:repeat-string 1.6.1\npackage: repeat-string\n\n612、source package:repeating 2.0.1\npackage: repeating\n\n613、source package:replace-ext 1.0.0\npackage: replace-ext\n\n614、source package:require-directory 2.1.1\npackage: require-directory\n\n615、source package:resolve 1.22.1\npackage: resolve\n\n616、source package:resolve-dir 1.0.1\npackage: resolve-dir\n\n617、source package:resolve-pathname 2.2.0\npackage: resolve-pathname\n\n618、source package:resolve-url 0.2.1\npackage: resolve-url\n\n619、source package:ret 0.1.15\npackage: ret\n\n620、source package:reusify 1.0.4\npackage: reusify\n\n621、source package:right-align 0.1.3\npackage: right-align\n\n622、source package:ripemd160 2.0.2\npackage: ripemd160\n\n623、source package:rollup 2.79.1\npackage: rollup\n\n624、source package:run-parallel 1.2.0\npackage: run-parallel\n\n625、source package:safe-buffer 5.2.1\npackage: safe-buffer\n\n626、source package:safe-regex 1.1.0\npackage: safe-regex\n\n627、source package:safer-buffer 2.1.2\npackage: safer-buffer\n\n628、source package:sass 1.55.0\npackage: sass\n\n629、source package:sass-graph 2.2.4\npackage: sass-graph\n\n630、source package:scheduler 0.15.0\npackage: scheduler\n\n631、source package:schema-utils 3.0.0\npackage: schema-utils\n\n632、source package:scroll-into-view-if-needed 2.2.20\npackage: scroll-into-view-if-needed\n\n633、source package:scss-tokenizer 0.2.3\npackage: scss-tokenizer\n\n634、source package:scule 1.1.1\npackage: scule\n\n635、source package:sequencify 0.0.7\npackage: sequencify\n\n636、source package:set-value 2.0.1\npackage: set-value\n\n637、source package:setimmediate 1.0.5\npackage: setimmediate\n\n638、source package:sha.js 2.4.11\npackage: sha.js\n\n639、source package:shadered v1.5.3\npackage: shadered\n\n640、source package:shasum 1.0.2\npackage: shasum\n\n641、source package:shebang-command 1.2.0\npackage: shebang-command\n\n642、source package:shebang-regex 1.0.0\npackage: shebang-regex\n\n643、source package:shell-quote 1.7.2\npackage: shell-quote\n\n644、source package:simple-concat 1.0.0\npackage: simple-concat\n\n645、source package:slash 1.0.0\npackage: slash\n\n646、source package:slirp4netns 1.2.0-1\npackage: slirp4netns\n\n647、source package:smooth-scroll-into-view-if-needed 1.1.23\npackage: smooth-scroll-into-view-if-needed\n\n648、source package:snapdragon 0.8.2\npackage: snapdragon\n\n649、source package:snapdragon-node 2.1.1\npackage: snapdragon-node\n\n650、source package:snapdragon-util 3.0.1\npackage: snapdragon-util\n\n651、source package:source-list-map 2.0.1\npackage: source-list-map\n\n652、source package:source-map-resolve 0.5.3\npackage: source-map-resolve\n\n653、source package:source-map-support 0.5.21\npackage: source-map-support\n\n654、source package:source-map-url 0.4.0\npackage: source-map-url\n\n655、source package:sourcemap-codec 1.4.8\npackage: sourcemap-codec\n\n656、source package:sparkles 1.0.1\npackage: sparkles\n\n657、source package:spdx-expression-parse 3.0.1\npackage: spdx-expression-parse\n\n658、source package:split-string 3.1.0\npackage: split-string\n\n659、source package:sqlclosecheck v0.5.0\npackage: sqlclosecheck\n\n660、source package:sse v0.1.0\npackage: sse\n\n661、source package:sshpk 1.16.1\npackage: sshpk\n\n662、source package:static-extend 0.1.2\npackage: static-extend\n\n663、source package:stdout-stream 1.4.1\npackage: stdout-stream\n\n664、source package:stream-browserify 2.0.2\npackage: stream-browserify\n\n665、source package:stream-combiner2 1.1.1\npackage: stream-combiner2\n\n666、source package:stream-consume 0.1.1\npackage: stream-consume\n\n667、source package:stream-http 2.8.3\npackage: stream-http\n\n668、source package:stream-splicer 2.0.1\npackage: stream-splicer\n\n669、source package:string-width 2.1.1\npackage: string-width\n\n670、source package:string_decoder 1.3.0\npackage: string_decoder\n\n671、source package:strip-ansi 4.0.0\npackage: strip-ansi\n\n672、source package:strip-bom 3.0.0\npackage: strip-bom\n\n673、source package:strip-eof 1.0.0\npackage: strip-eof\n\n674、source package:strip-indent 1.0.1\npackage: strip-indent\n\n675、source package:strip-literal 1.3.0\npackage: strip-literal\n\n676、source package:subarg 1.0.0\npackage: subarg\n\n677、source package:sudo 1.9.8p2-1~exp1\npackage: sudo\n\n678、source package:supports-color 4.5.0\npackage: supports-color\n\n679、source package:supports-preserve-symlinks-flag 1.0.0\npackage: supports-preserve-symlinks-flag\n\n680、source package:syntax-error 1.4.0\npackage: syntax-error\n\n681、source package:sys v0.5.0\npackage: sys\n\n682、source package:systemjs 6.13.0\npackage: systemjs\n\n683、source package:tapable 0.2.9\npackage: tapable\n\n684、source package:testify v1.9.0\npackage: testify\n\n685、source package:text v0.1.0\npackage: text\n\n686、source package:through2 2.0.5\npackage: through2\n\n687、source package:tildify 1.2.0\npackage: tildify\n\n688、source package:time-stamp 1.1.0\npackage: time-stamp\n\n689、source package:timers-browserify 2.0.12\npackage: timers-browserify\n\n690、source package:tiny-invariant 1.0.6\npackage: tiny-invariant\n\n691、source package:tiny-warning 1.0.3\npackage: tiny-warning\n\n692、source package:tinyaes 1.0.4rc1\npackage: tinyaes\n\n693、source package:tlp 1.5.0-1~bpo11+1\npackage: tlp\n\n694、source package:to-arraybuffer 1.0.1\npackage: to-arraybuffer\n\n695、source package:to-camel-case 1.0.0\npackage: to-camel-case\n\n696、source package:to-fast-properties 1.0.3\npackage: to-fast-properties\n\n697、source package:to-no-case 1.0.2\npackage: to-no-case\n\n698、source package:to-object-path 0.3.0\npackage: to-object-path\n\n699、source package:to-regex 3.0.2\npackage: to-regex\n\n700、source package:to-regex-range 5.0.1\npackage: to-regex-range\n\n701、source package:to-space-case 1.0.0\npackage: to-space-case\n\n702、source package:toml v1.3.2\npackage: toml\n\n703、source package:tools v0.6.0\npackage: tools\n\n704、source package:tortellini 4f6795a\npackage: tortellini\n\n705、source package:trim-newlines 1.0.0\npackage: trim-newlines\n\n706、source package:trim-right 1.0.1\npackage: trim-right\n\n707、source package:tty-browserify 0.0.1\npackage: tty-browserify\n\n708、source package:typedarray 0.0.6\npackage: typedarray\n\n709、source package:uglify-to-browserify 1.0.2\npackage: uglify-to-browserify\n\n710、source package:uglifyjs-webpack-plugin 0.4.6\npackage: uglifyjs-webpack-plugin\n\n711、source package:umd 3.0.3\npackage: umd\n\n712、source package:unc-path-regex 0.1.2\npackage: unc-path-regex\n\n713、source package:unimport 1.3.0\npackage: unimport\n\n714、source package:union-value 1.0.1\npackage: union-value\n\n715、source package:unique-stream 1.0.0\npackage: unique-stream\n\n716、source package:universal-translator v0.16.0\npackage: universal-translator\n\n717、source package:unplugin-auto-import 0.11.5\npackage: unplugin-auto-import\n\n718、source package:unplugin-vue-components 0.22.12\npackage: unplugin-vue-components\n\n719、source package:unset-value 1.0.0\npackage: unset-value\n\n720、source package:upath 1.2.0\npackage: upath\n\n721、source package:urix 0.1.0\npackage: urix\n\n722、source package:url 0.11.0\npackage: url\n\n723、source package:use 3.1.1\npackage: use\n\n724、source package:user-home 1.1.1\npackage: user-home\n\n725、source package:util 0.11.1\npackage: util\n\n726、source package:util-deprecate 1.0.2\npackage: util-deprecate\n\n727、source package:uuid 3.3.3\npackage: uuid\n\n728、source package:v-drag 3.0.9\npackage: v-drag\n\n729、source package:v8flags 2.1.1\npackage: v8flags\n\n730、source package:value-equal 0.4.0\npackage: value-equal\n\n731、source package:verror 1.10.0\npackage: verror\n\n732、source package:vinyl 2.2.0\npackage: vinyl\n\n733、source package:vinyl-buffer 1.0.1\npackage: vinyl-buffer\n\n734、source package:vinyl-fs 0.3.14\npackage: vinyl-fs\n\n735、source package:vinyl-source-stream 2.0.0\npackage: vinyl-source-stream\n\n736、source package:vm-browserify 1.1.2\npackage: vm-browserify\n\n737、source package:vue-codemirror 6.1.1\npackage: vue-codemirror\n\n738、source package:vue-demi 0.13.11\npackage: vue-demi\n\n739、source package:vue-router 4.1.5\npackage: vue-router\n\n740、source package:w3c-keyname 2.2.8\npackage: w3c-keyname\n\n741、source package:warning 4.0.3\npackage: warning\n\n742、source package:watchpack 1.7.4\npackage: watchpack\n\n743、source package:watchpack-chokidar2 2.0.0\npackage: watchpack-chokidar2\n\n744、source package:webpack 3.12.0\npackage: webpack\n\n745、source package:webpack-sources 3.2.3\npackage: webpack-sources\n\n746、source package:webpack-virtual-modules 0.6.1\npackage: webpack-virtual-modules\n\n747、source package:window-size 0.1.0\npackage: window-size\n\n748、source package:wireplumber 0.4.9-1\npackage: wireplumber\n\n749、source package:wordwrap 0.0.2\npackage: wordwrap\n\n750、source package:wrap-ansi 2.1.0\npackage: wrap-ansi\n\n751、source package:x11-utils 7.7~1_sparc\npackage: x11-utils\n\n752、source package:x11-xserver-utils 7.7~3_sparc\npackage: x11-xserver-utils\n\n753、source package:x11proto-record-dev 2020.1-1_all\npackage: x11proto-record-dev\n\n754、source package:x11proto-xext-dev 7.3.0-1_all\npackage: x11proto-xext-dev\n\n755、source package:xcb-proto 1.7.1.orig\npackage: xcb-proto\n\n756、source package:xdg-utils 1.1.3-4.1\npackage: xdg-utils\n\n757、source package:xkb-data 2.5.1-3_all\npackage: xkb-data\n\n758、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n759、source package:xserver-xorg-input-all 7.7+7_s390x\npackage: xserver-xorg-input-all\n\n760、source package:xserver-xorg-video-all 7.7+7_s390x\npackage: xserver-xorg-video-all\n\n761、source package:xtend 4.0.2\npackage: xtend\n\n762、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n763、source package:yargs 8.0.2\npackage: yargs\n\n\nOpen Source Software Licensed under the Expat:\n1、source package:golang-github-adrg-xdg-dev 0.4.0-2\npackage: golang-github-adrg-xdg-dev\n\n2、source package:golang-github-disintegration-imaging-dev 1.6.2-2\npackage: golang-github-disintegration-imaging-dev\n\n3、source package:golang-github-smartystreets-goconvey-dev 1.6.4+dfsg-1_all\npackage: golang-github-smartystreets-goconvey-dev\n\n4、source package:golang-github-stretchr-testify-dev 1.8.0-1~bpo11+1\npackage: golang-github-stretchr-testify-dev\n\n5、source package:golang-github-teambition-rrule-go-dev 1.8.1-1\npackage: golang-github-teambition-rrule-go-dev\n\n6、source package:golang-gopkg-alecthomas-kingpin.v2-dev 2.2.6-4\npackage: golang-gopkg-alecthomas-kingpin.v2-dev\n\n7、source package:intel-media-va-driver-non-free 23.2.3+ds1-1\npackage: intel-media-va-driver-non-free\n\n8、source package:libepoxy-dev 1.5.9-2\npackage: libepoxy-dev\n\n9、source package:libiniparser-dev 4.1-4_s390x\npackage: libiniparser-dev\n\n10、source package:libinput-dev 1.6.3-1_s390x\npackage: libinput-dev\n\n11、source package:libjson-c-dev 0.16-2\npackage: libjson-c-dev\n\n12、source package:libmtdev-dev 1.1.6-1_s390x\npackage: libmtdev-dev\n\n13、source package:libsass-dev 3.6.4-4~exp_s390x\npackage: libsass-dev\n\n14、source package:libspdlog-dev 1:1.3.1-1\npackage: libspdlog-dev\n\n15、source package:libutf8proc-dev 2.7.0-4\npackage: libutf8proc-dev\n\n16、source package:libva-dev 2.8.0-1_s390x\npackage: libva-dev\n\n17、source package:nlohmann-json3-dev 3.9.1-1\npackage: nlohmann-json3-dev\n\n18、source package:rapidjson-dev 1.1.0-1\npackage: rapidjson-dev\n\n19、source package:va-driver-all 2.8.0-1_s390x\npackage: va-driver-all\n\n20、source package:wayland-protocols 1.9-1\npackage: wayland-protocols\n\n\nOpen Source Software Licensed under the BSD-3-Clause:\n1、source package:DocxFactory 91131f28\npackage: DocxFactory\n\n2、source package:alsa-topology-conf 1.2.5.1-2\npackage: alsa-topology-conf\n\n3、source package:alsa-ucm-conf 1.2.9-1\npackage: alsa-ucm-conf\n\n4、source package:amdefine 1.0.1\npackage: amdefine\n\n5、source package:android-pdfium a56ccce4\npackage: android-pdfium\n\n6、source package:apt 2.7.1\npackage: apt\n\n7、source package:bcrypt-pbkdf 1.0.2\npackage: bcrypt-pbkdf\n\n8、source package:browserify 14.5.0\npackage: browserify\n\n9、source package:charenc 0.0.2\npackage: charenc\n\n10、source package:chromium 87.0.4280.88-0.4\npackage: chromium\n\n11、source package:cmake v3.27.0-rc5\npackage: cmake\n\n12、source package:coost v3.0.0\npackage: coost\n\n13、source package:crypt 0.0.2\npackage: crypt\n\n14、source package:crypto v0.13.0\npackage: crypto\n\n15、source package:css-select 1.2.0\npackage: css-select\n\n16、source package:css-what 2.1.3\npackage: css-what\n\n17、source package:dns v1.1.52\npackage: dns\n\n18、source package:dnsutils 970203-0.1\npackage: dnsutils\n\n19、source package:duplexer2 0.1.4\npackage: duplexer2\n\n20、source package:entities 1.1.2\npackage: entities\n\n21、source package:errwrap v1.5.0\npackage: errwrap\n\n22、source package:external/github.com/protocolbuffers/protobuf v3.7.0-rc.3\npackage: external/github.com/protocolbuffers/protobuf\n\n23、source package:extra-cmake-modules 5.98.0-2\npackage: extra-cmake-modules\n\n24、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n25、source package:fsnotify v1.6.0\npackage: fsnotify\n\n26、source package:go-cmp v0.6.0\npackage: go-cmp\n\n27、source package:golang 2:1.7~5~bpo8+1\npackage: golang\n\n28、source package:golang-any 1.7~5~bpo8+1_s390x\npackage: golang-any\n\n29、source package:golang-github-fsnotify-fsnotify-dev 1.6.0-1\npackage: golang-github-fsnotify-fsnotify-dev\n\n30、source package:golang-github-miekg-dns-dev 1.1.50-2\npackage: golang-github-miekg-dns-dev\n\n31、source package:golang-github-rickb777-date-dev 1.20.1-1\npackage: golang-github-rickb777-date-dev\n\n32、source package:golang-go 1.7~5~bpo8+1_ppc64el\npackage: golang-go\n\n33、source package:golang-golang-x-sys-dev 0.3.0-1+hurd.1\npackage: golang-golang-x-sys-dev\n\n34、source package:golang-golang-x-xerrors-dev 0.0~git20191204.9bdfabe-1~bpo10+1\npackage: golang-golang-x-xerrors-dev\n\n35、source package:golang-google-protobuf-dev 1.28.1-3\npackage: golang-google-protobuf-dev\n\n36、source package:gstreamer1.0-plugins-base 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-base\n\n37、source package:gstreamer1.0-plugins-good 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-good\n\n38、source package:gstreamer1.0-pulseaudio 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-pulseaudio\n\n39、source package:gstreamer1.0-x 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-x\n\n40、source package:hoist-non-react-statics 2.5.5\npackage: hoist-non-react-statics\n\n41、source package:ieee754 1.2.1\npackage: ieee754\n\n42、source package:init 1.65~exp2\npackage: init\n\n43、source package:iputils-ping 20190709-3_s390x\npackage: iputils-ping\n\n44、source package:js-base64 2.5.1\npackage: js-base64\n\n45、source package:json-schema 0.2.3\npackage: json-schema\n\n46、source package:libcli11-dev 2.1.2+ds-1\npackage: libcli11-dev\n\n47、source package:libgmock-dev 1.9.0.20190831-3\npackage: libgmock-dev\n\n48、source package:libgoogle-glog-dev 0.4.0-1_s390x\npackage: libgoogle-glog-dev\n\n49、source package:libgstreamer-plugins-base1.0-0 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-0\n\n50、source package:libgstreamer-plugins-base1.0-dev 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-dev\n\n51、source package:libgtest-dev 1.9.0.20190831-1_s390x\npackage: libgtest-dev\n\n52、source package:libjpeg-dev 2.0.5-1_all\npackage: libjpeg-dev\n\n53、source package:libnl-3-dev 3.4.0-1~bpo9+1_s390x\npackage: libnl-3-dev\n\n54、source package:libnl-genl-3-dev 3.4.0-1~bpo9+1_s390x\npackage: libnl-genl-3-dev\n\n55、source package:libnl-route-3-dev 3.4.0-1~bpo9+1_s390x\npackage: libnl-route-3-dev\n\n56、source package:libpcap-dev 1.9.1-4~bpo10+1_s390x\npackage: libpcap-dev\n\n57、source package:libtirpc-common 1.2.6-1_all\npackage: libtirpc-common\n\n58、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n59、source package:locales 2.31-0experimental0_all\npackage: locales\n\n60、source package:lxqt-build-tools 0.8.0-1\npackage: lxqt-build-tools\n\n61、source package:marked 1.2.3\npackage: marked\n\n62、source package:md5 2.2.1\npackage: md5\n\n63、source package:mmkv-static 1.2.10\npackage: mmkv-static\n\n64、source package:mod v0.8.0\npackage: mod\n\n65、source package:mount 2.9g-6\npackage: mount\n\n66、source package:net v0.15.0\npackage: net\n\n67、source package:node 8.16.1\npackage: node\n\n68、source package:normalize-wheel-es 1.2.0\npackage: normalize-wheel-es\n\n69、source package:nth-check 1.0.2\npackage: nth-check\n\n70、source package:onboard 1.4.1-5_s390x\npackage: onboard\n\n71、source package:passwd 980403-0.3\npackage: passwd\n\n72、source package:pflag v1.0.5\npackage: pflag\n\n73、source package:protobuf v1.3.2\npackage: protobuf\n\n74、source package:python3-click 8.1.6-1\npackage: python3-click\n\n75、source package:qml-module-qtgraphicaleffects 5.7.1~20161021-3_s390x\npackage: qml-module-qtgraphicaleffects\n\n76、source package:qs 6.5.2\npackage: qs\n\n77、source package:qtermwidget 0.14.1\npackage: qtermwidget\n\n78、source package:regenerator-transform 0.10.1\npackage: regenerator-transform\n\n79、source package:regjsparser 0.1.5\npackage: regjsparser\n\n80、source package:sass 1.55.0\npackage: sass\n\n81、source package:sha.js 2.4.11\npackage: sha.js\n\n82、source package:source-map 0.6.1\npackage: source-map\n\n83、source package:spdx-license-ids 3.0.6\npackage: spdx-license-ids\n\n84、source package:sys v0.6.0\npackage: sys\n\n85、source package:syscall_intercept 4b3a3b5\npackage: syscall_intercept\n\n86、source package:term v0.13.0\npackage: term\n\n87、source package:terser 5.15.1\npackage: terser\n\n88、source package:text v0.13.0\npackage: text\n\n89、source package:tough-cookie 2.4.3\npackage: tough-cookie\n\n90、source package:uglify-js 2.8.29\npackage: uglify-js\n\n91、source package:util-linux 2.5-12\npackage: util-linux\n\n92、source package:uuid v1.3.0\npackage: uuid\n\n93、source package:wpasupplicant 2.9.0-12_s390x\npackage: wpasupplicant\n\n94、source package:xdotool 3.20160805.1-4_s390x\npackage: xdotool\n\n95、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n96、source package:xsettingsd 1.0.2-1\npackage: xsettingsd\n\n97、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n\nOpen Source Software Licensed under the BSD-2-Clause:\n1、source package:DocxFactory 91131f28\npackage: DocxFactory\n\n2、source package:block-stream 0.0.9\npackage: block-stream\n\n3、source package:coost v3.0.0\npackage: coost\n\n4、source package:domelementtype 1.3.1\npackage: domelementtype\n\n5、source package:domhandler 2.4.2\npackage: domhandler\n\n6、source package:domutils 1.5.1\npackage: domutils\n\n7、source package:doxyqml 0.3.0-1.1.debian\npackage: doxyqml\n\n8、source package:escope 3.6.0\npackage: escope\n\n9、source package:esrecurse 4.3.0\npackage: esrecurse\n\n10、source package:estraverse 5.2.0\npackage: estraverse\n\n11、source package:esutils 2.0.3\npackage: esutils\n\n12、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n13、source package:glob 3.1.21\npackage: glob\n\n14、source package:golang-dbus-dev 5.1.0-1~bpo11+1\npackage: golang-dbus-dev\n\n15、source package:golang-github-msteinert-pam-dev 1.1.0-1\npackage: golang-github-msteinert-pam-dev\n\n16、source package:golang-gopkg-check.v1-dev 0.0+git20200902.038fdea-1\npackage: golang-gopkg-check.v1-dev\n\n17、source package:graceful-fs 1.2.3\npackage: graceful-fs\n\n18、source package:libarchive-dev 3.4.0-2~bpo9+1_amd64\npackage: libarchive-dev\n\n19、source package:libtag1-dev 1.9.1-2~bpo70+1_sparc\npackage: libtag1-dev\n\n20、source package:libtss2-dev 2.4.0-1_s390x\npackage: libtss2-dev\n\n21、source package:libtss2-tcti-tabrmd0 3.0.0-1\npackage: libtss2-tcti-tabrmd0\n\n22、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n23、source package:normalize-package-data 2.5.0\npackage: normalize-package-data\n\n24、source package:sdparm 1.12-1\npackage: sdparm\n\n25、source package:shim-signed 1.39~1+deb11u1\npackage: shim-signed\n\n26、source package:shim-unsigned 15+1533136590.3beb971-9_i386\npackage: shim-unsigned\n\n27、source package:smartmontools 7.3-1\npackage: smartmontools\n\n28、source package:tpm2-abrmd 3.0.0-1\npackage: tpm2-abrmd\n\n29、source package:tt v1.0.1\npackage: tt\n\n30、source package:uri-js 4.4.0\npackage: uri-js\n\n31、source package:usb-modeswitch 2.6.1.orig\npackage: usb-modeswitch\n\n\nOpen Source Software Licensed under the MPL-2.0:\n1、source package:browser-desktop 87.0-729282885\npackage: browser-desktop\n\n2、source package:dompurify 2.4.1\npackage: dompurify\n\n3、source package:libjwt-dev 1.9.0-4_mips64el\npackage: libjwt-dev\n\n4、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n\nOpen Source Software Licensed under the MPL-1.1:\n1、source package:libcairo2-dev 1.16.0-4_s390x\npackage: libcairo2-dev\n\n2、source package:libchardet 1.0.3\npackage: libchardet\n\n3、source package:libpam-gnome-keyring 3.4.1-5_sparc\npackage: libpam-gnome-keyring\n\n4、source package:libtag1-dev 1.9.1-2~bpo70+1_sparc\npackage: libtag1-dev\n\n\nOpen Source Software Licensed under the AFL-2.1:\n1、source package:python3-dbus 1.2.8-3_s390x\npackage: python3-dbus\n\n\nOpen Source Software Licensed under the AGPL-1.0-only:\n1、source package:spdx-license-ids 3.0.6\npackage: spdx-license-ids\n\n\nOpen Source Software Licensed under the AGPL-3.0-only:\n1、source package:nging v3.5.2\npackage: nging\n\n2、source package:sobjectizer 1.2.3\npackage: sobjectizer\n\n\nOpen Source Software Licensed under the Apache-2.0 or LGPL-3+:\n1、source package:liblucene++-dev 3.0.7-8+b2_s390x\npackage: liblucene++-dev\n\n\nOpen Source Software Licensed under the Apache-2.0-with-GPL2-LGPL2-Exception:\n1、source package:cups 2.4.2-3+deb12u1\npackage: cups\n\n\nOpen Source Software Licensed under the Artistic or GPL-1+:\n1、source package:libfile-mimeinfo-perl 0.33-1\npackage: libfile-mimeinfo-perl\n\n2、source package:perl-openssl-defaults 7\npackage: perl-openssl-defaults\n\n\nOpen Source Software Licensed under the Artistic-2.0:\n1、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the BSD:\n1、source package:compiler 4.12.0\npackage: compiler\n\n2、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n3、source package:glide 4.12.0\npackage: glide\n\n4、source package:libnet-dev 1.2-rc3\npackage: libnet-dev\n\n5、source package:libvncserver LibVNCServer-0.9.14\npackage: libvncserver\n\n6、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n7、source package:node 8.16.1\npackage: node\n\n8、source package:smartmontools 7.3-1\npackage: smartmontools\n\n9、source package:zip 3.0-9\npackage: zip\n\n\nOpen Source Software Licensed under the BSD-1-Clause:\n1、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n\nOpen Source Software Licensed under the BSD-3-clause:\n1、source package:tpm2-tools 5.4-1\npackage: tpm2-tools\n\n\nOpen Source Software Licensed under the BSD-3-clause or GPL-2:\n1、source package:libcap-dev 2.36-1_mips64el\npackage: libcap-dev\n\n2、source package:libcap2-bin 2.36-1_s390x\npackage: libcap2-bin\n\n\nOpen Source Software Licensed under the BSD-4-Clause:\n1、source package:unalz 0.65-9\npackage: unalz\n\n\nOpen Source Software Licensed under the BSD-Source-Code:\n1、source package:iputils-ping 20190709-3_s390x\npackage: iputils-ping\n\n\nOpen Source Software Licensed under the BSL-1.0:\n1、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n\nOpen Source Software Licensed under the Bitstream-Vera:\n1、source package:fontconfig 2.9.0.orig\npackage: fontconfig\n\n\nOpen Source Software Licensed under the Brian-Gladman-3-Clause:\n1、source package:libzip-dev 1.6.1-3_s390x\npackage: libzip-dev\n\n2、source package:libzip4 1.6.1-3_s390x\npackage: libzip4\n\n\nOpen Source Software Licensed under the CC-BY-3.0:\n1、source package:spdx-exceptions 2.3.0\npackage: spdx-exceptions\n\n\nOpen Source Software Licensed under the CC-BY-4.0:\n1、source package:caniuse-lite 1.0.30000989\npackage: caniuse-lite\n\n\nOpen Source Software Licensed under the CC-BY-SA-4.0:\n1、source package:glob 7.1.4\npackage: glob\n\n\nOpen Source Software Licensed under the CC0-1.0:\n1、source package:spdx-license-ids 3.0.6\npackage: spdx-license-ids\n\n\nOpen Source Software Licensed under the CDDL-1.0:\n1、source package:libraw-dev 0.9.1-1+deb6u1\npackage: libraw-dev\n\n\nOpen Source Software Licensed under the CPL-1.0:\n1、source package:graphviz 2.8-3+etch1\npackage: graphviz\n\n2、source package:junit 4.11\npackage: junit\n\n\nOpen Source Software Licensed under the EPL-1.0:\n1、source package:aspectjrt 1.9.6\npackage: aspectjrt\n\n2、source package:junit 4.13.2\npackage: junit\n\n\nOpen Source Software Licensed under the FTL:\n1、source package:freetype VER-2-10-3\npackage: freetype\n\n2、source package:libfreetype-dev 2.13.0+dfsg-1\npackage: libfreetype-dev\n\n\nOpen Source Software Licensed under the Font-exception-2.0:\n1、source package:ttf-unifont 9.0.06-2_all\npackage: ttf-unifont\n\n2、source package:xfonts-wqy 1.0.0~rc1-7\npackage: xfonts-wqy\n\n\nOpen Source Software Licensed under the GFDL-1.2-only:\n1、source package:kdevelop v22.11.80\npackage: kdevelop\n\n\nOpen Source Software Licensed under the GPL+ and GPLv2+ and MIT and Redistributable no modification permitted:\n1、source package:linux-firmware 20230824\npackage: linux-firmware\n\n\nOpen Source Software Licensed under the GPL-2 or GPL-2+:\n1、source package:ipheth-utils 1.0-5_s390x\npackage: ipheth-utils\n\n\nOpen Source Software Licensed under the GPL-2 with Font embedding exception and M+ FONTS License:\n1、source package:fonts-wqy-zenhei 0.9.45-8\npackage: fonts-wqy-zenhei\n\n\nOpen Source Software Licensed under the GPL-2 with OpenSSL exception:\n1、source package:barrier 2.4.0+dfsg-2\npackage: barrier\n\n\nOpen Source Software Licensed under the GPL-2+ and LGPL-2+:\n1、source package:xdg-desktop-portal-gtk 1.8.0-1~bpo10+1\npackage: xdg-desktop-portal-gtk\n\n\nOpen Source Software Licensed under the GPL-2+ or AFL-2.1:\n1、source package:dbus 1.9.8-1\npackage: dbus\n\n2、source package:dbus-user-session 1.13.8-1_s390x\npackage: dbus-user-session\n\n3、source package:dbus-x11 1.8.22-0+deb8u1_s390x\npackage: dbus-x11\n\n4、source package:libdbus-1-dev 1.8.22-0+deb8u1_s390x\npackage: libdbus-1-dev\n\n\nOpen Source Software Licensed under the GPL-2+ or FTL:\n1、source package:libfreetype6-dev 2.9.1-4_s390x\npackage: libfreetype6-dev\n\n\nOpen Source Software Licensed under the GPL-2+ or LGPL-2.1 or LGPL-3.0:\n1、source package:libquazip5-dev 0.7.6-6_s390x\npackage: libquazip5-dev\n\n\nOpen Source Software Licensed under the GPL-2+ with OpenSSL exception:\n1、source package:cryptsetup 2:2.6.1-4\npackage: cryptsetup\n\n2、source package:cryptsetup-initramfs 2.3.1-1_all\npackage: cryptsetup-initramfs\n\n3、source package:libcryptsetup12 2.3.1-1_s390x\npackage: libcryptsetup12\n\n\nOpen Source Software Licensed under the GPL-2+ with SSL exception:\n1、source package:remmina 1.4.8+dfsg-2~bpo10+2\npackage: remmina\n\n2、source package:remmina-plugin-rdp 1.4.7+dfsg-1_s390x\npackage: remmina-plugin-rdp\n\n3、source package:remmina-plugin-vnc 1.4.7+dfsg-1_s390x\npackage: remmina-plugin-vnc\n\n\nOpen Source Software Licensed under the GPL-2+ with sane exception:\n1、source package:libsane-dev 1.2.1-4\npackage: libsane-dev\n\n\nOpen Source Software Licensed under the GPL-2.0 or GPL-3.0 or FIPL-1.0:\n1、source package:libfreeimage-dev 3.18.0+ds2-3_s390x\npackage: libfreeimage-dev\n\n\nOpen Source Software Licensed under the GPL-2.0+ or LGPL-2.1+:\n1、source package:fcitx5-frontend-gtk3 0.0~git20200606.fc335f1-2_s390x\npackage: fcitx5-frontend-gtk3\n\n\nOpen Source Software Licensed under the GPL-3 with Qt-1.0 exception:\n1、source package:qttools5-dev 5.9.2-4_kfreebsd-i386\npackage: qttools5-dev\n\n2、source package:qttools5-dev-tools 5.9.2-4_kfreebsd-i386\npackage: qttools5-dev-tools\n\n3、source package:qttranslations5-l10n 5.9.2-1\npackage: qttranslations5-l10n\n\n\nOpen Source Software Licensed under the GPL-3+ or Less:\n1、source package:less 590-2\npackage: less\n\n\nOpen Source Software Licensed under the GPL-3+ with OpenSSL exception:\n1、source package:libdmr-dev 5.7.6.147-1\npackage: libdmr-dev\n\n\nOpen Source Software Licensed under the GPL-3.0-with-Qt-1.0-exception:\n1、source package:libqt5webchannel5-dev 5.7.1-2_s390x\npackage: libqt5webchannel5-dev\n\n2、source package:qml-module-qtwebchannel 5.9.2-3\npackage: qml-module-qtwebchannel\n\n\nOpen Source Software Licensed under the GPL-any:\n1、source package:command-not-found 23.04.0-1\npackage: command-not-found\n\n\nOpen Source Software Licensed under the Hylafax:\n1、source package:libtiff-dev 4.1.0+git191117-2~deb10u1_s390x\npackage: libtiff-dev\n\n\nOpen Source Software Licensed under the ICU:\n1、source package:node 8.16.1\npackage: node\n\n2、source package:x11-xserver-utils 7.7~3_sparc\npackage: x11-xserver-utils\n\n3、source package:xkb-data 2.5.1-3_all\npackage: xkb-data\n\n4、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n5、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n\nOpen Source Software Licensed under the ISC:\n1、source package:abbrev 1.1.1\npackage: abbrev\n\n2、source package:anymatch 3.1.2\npackage: anymatch\n\n3、source package:aproba 1.2.0\npackage: aproba\n\n4、source package:are-we-there-yet 1.1.5\npackage: are-we-there-yet\n\n5、source package:boolbase 1.0.0\npackage: boolbase\n\n6、source package:browserify-sign 4.2.1\npackage: browserify-sign\n\n7、source package:cliui 4.1.0\npackage: cliui\n\n8、source package:color-support 1.1.3\npackage: color-support\n\n9、source package:concat-with-sourcemaps 1.1.0\npackage: concat-with-sourcemaps\n\n10、source package:console-control-strings 1.1.0\npackage: console-control-strings\n\n11、source package:crda 4.14+git20191112.9856751.orig\npackage: crda\n\n12、source package:d 1.0.1\npackage: d\n\n13、source package:distro-info-data 0.9~bpo60+1\npackage: distro-info-data\n\n14、source package:electron-to-chromium 1.3.254\npackage: electron-to-chromium\n\n15、source package:es5-ext 0.10.53\npackage: es5-ext\n\n16、source package:es6-symbol 3.1.3\npackage: es6-symbol\n\n17、source package:es6-weak-map 2.0.3\npackage: es6-weak-map\n\n18、source package:ext 1.4.0\npackage: ext\n\n19、source package:fastq 1.13.0\npackage: fastq\n\n20、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n21、source package:fs 0.0.1-security\npackage: fs\n\n22、source package:fs.realpath 1.0.0\npackage: fs.realpath\n\n23、source package:fstream 1.0.12\npackage: fstream\n\n24、source package:gauge 2.7.4\npackage: gauge\n\n25、source package:get-caller-file 1.0.3\npackage: get-caller-file\n\n26、source package:glob 7.1.4\npackage: glob\n\n27、source package:glob-parent 5.1.2\npackage: glob-parent\n\n28、source package:go-spew v1.1.1\npackage: go-spew\n\n29、source package:go-wav v0.3.2\npackage: go-wav\n\n30、source package:golang-github-nfnt-resize-dev 0.0~git20180221.83c6a99-2_all\npackage: golang-github-nfnt-resize-dev\n\n31、source package:graceful-fs 4.2.4\npackage: graceful-fs\n\n32、source package:har-schema 2.0.0\npackage: har-schema\n\n33、source package:has-unicode 2.0.1\npackage: has-unicode\n\n34、source package:hosted-git-info 2.8.8\npackage: hosted-git-info\n\n35、source package:in-publish 2.0.0\npackage: in-publish\n\n36、source package:inflight 1.0.6\npackage: inflight\n\n37、source package:inherits 2.0.4\npackage: inherits\n\n38、source package:ini 1.3.5\npackage: ini\n\n39、source package:isexe 2.0.0\npackage: isexe\n\n40、source package:json-stringify-safe 5.0.1\npackage: json-stringify-safe\n\n41、source package:lru-cache 4.1.5\npackage: lru-cache\n\n42、source package:minimalistic-assert 1.0.1\npackage: minimalistic-assert\n\n43、source package:minimatch 5.1.6\npackage: minimatch\n\n44、source package:natives 1.1.6\npackage: natives\n\n45、source package:node 8.16.1\npackage: node\n\n46、source package:node-bin-setup 1.0.6\npackage: node-bin-setup\n\n47、source package:nopt 3.0.6\npackage: nopt\n\n48、source package:npmlog 4.1.2\npackage: npmlog\n\n49、source package:once 1.4.0\npackage: once\n\n50、source package:osenv 0.1.5\npackage: osenv\n\n51、source package:parse-asn1 5.1.6\npackage: parse-asn1\n\n52、source package:pkgconf 1.8.1-2\npackage: pkgconf\n\n53、source package:pseudomap 1.0.2\npackage: pseudomap\n\n54、source package:python3-dnspython 2.4.0~rc1-1\npackage: python3-dnspython\n\n55、source package:remove-trailing-separator 1.1.0\npackage: remove-trailing-separator\n\n56、source package:require-main-filename 1.0.1\npackage: require-main-filename\n\n57、source package:rimraf 2.7.1\npackage: rimraf\n\n58、source package:rollup 2.79.1\npackage: rollup\n\n59、source package:semver 5.7.1\npackage: semver\n\n60、source package:set-blocking 2.0.0\npackage: set-blocking\n\n61、source package:sigmund 1.0.1\npackage: sigmund\n\n62、source package:signal-exit 3.0.3\npackage: signal-exit\n\n63、source package:tar 2.2.2\npackage: tar\n\n64、source package:type 2.1.0\npackage: type\n\n65、source package:vinyl-sourcemaps-apply 0.2.1\npackage: vinyl-sourcemaps-apply\n\n66、source package:which 1.3.1\npackage: which\n\n67、source package:which-module 2.0.0\npackage: which-module\n\n68、source package:wide-align 1.1.3\npackage: wide-align\n\n69、source package:wrappy 1.0.2\npackage: wrappy\n\n70、source package:y18n 3.2.1\npackage: y18n\n\n71、source package:yallist 2.1.2\npackage: yallist\n\n72、source package:yargs-parser 8.1.0\npackage: yargs-parser\n\n\nOpen Source Software Licensed under the ImageMagick:\n1、source package:DocxFactory 91131f28\npackage: DocxFactory\n\n\nOpen Source Software Licensed under the Info-ZIP:\n1、source package:unzip 6.0.orig\npackage: unzip\n\n\nOpen Source Software Licensed under the LGPL:\n1、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n2、source package:libatspi2.0-dev 2.5.3-2_sparc\npackage: libatspi2.0-dev\n\n3、source package:liblightdm-qt-dev 1.26.0-5_s390x\npackage: liblightdm-qt-dev\n\n4、source package:lightdm 1.9.9-1\npackage: lightdm\n\n5、source package:slirp4netns 1.2.0-1\npackage: slirp4netns\n\n6、source package:smartmontools 7.3-1\npackage: smartmontools\n\n\nOpen Source Software Licensed under the LGPL-2+ and LGPL-2.1+:\n1、source package:ostree 2023.3-2\npackage: ostree\n\n\nOpen Source Software Licensed under the LGPL-2+ and LGPL-2.1+ and FSFULLR and CC0-1.0 and Janik-permissive and Iconv-PD and Mingw-PD and Old-GLib-Tests-permissive:\n1、source package:libglib2.0-bin 2.76.4-1\npackage: libglib2.0-bin\n\n\nOpen Source Software Licensed under the LGPL-2.0+ and Expat:\n1、source package:policykit-1 122-4\npackage: policykit-1\n\n\nOpen Source Software Licensed under the LGPL-2.0-or-later:\n1、source package:bubblewrap 0~git160513-2\npackage: bubblewrap\n\n2、source package:gvfs-backends 1.44.1-1_s390x\npackage: gvfs-backends\n\n3、source package:gvfs-bin 1.44.1-1_s390x\npackage: gvfs-bin\n\n4、source package:gvfs-fuse 1.44.1-1_s390x\npackage: gvfs-fuse\n\n5、source package:kcalcore 5:5.85.0-2\npackage: kcalcore\n\n6、source package:kdeclarative 5.100.0-1\npackage: kdeclarative\n\n7、source package:libasound2-dev 1.2.2-2.3_ppc64el\npackage: libasound2-dev\n\n8、source package:libgdk-pixbuf2.0-0 2.40.2-3\npackage: libgdk-pixbuf2.0-0\n\n9、source package:libgdk-pixbuf2.0-dev 2.40.0+dfsg-5_s390x\npackage: libgdk-pixbuf2.0-dev\n\n10、source package:libkf5itemviews-dev 5.70.0-1_s390x\npackage: libkf5itemviews-dev\n\n11、source package:libkf5widgetsaddons-dev 5.70.0-1_s390x\npackage: libkf5widgetsaddons-dev\n\n12、source package:libmtp-runtime 1.1.9-3~bpo8+1\npackage: libmtp-runtime\n\n13、source package:libpolkit-agent-1-dev 0.116-2_s390x\npackage: libpolkit-agent-1-dev\n\n14、source package:libpolkit-qt5-1-dev 0.112.0-7_s390x\npackage: libpolkit-qt5-1-dev\n\n15、source package:librsvg2-bin 2.48.7-1_ppc64el\npackage: librsvg2-bin\n\n16、source package:platform/external/e2fsprogs lollipop-dev\npackage: platform/external/e2fsprogs\n\n17、source package:xdg-desktop-portal 1.8.1-1~bpo10+1\npackage: xdg-desktop-portal\n\n\nOpen Source Software Licensed under the LGPL-2.1 or MPL-2.0:\n1、source package:libical-dev 3.0.8-2_mipsel\npackage: libical-dev\n\n\nOpen Source Software Licensed under the LGPL-3 or GPL-2-or-3 with KDE Exception:\n1、source package:qml6-module-qtwebchannel 6.4.2~rc1-3\npackage: qml6-module-qtwebchannel\n\n\nOpen Source Software Licensed under the LGPL-3Qt-1.1Exception or GPL-2Qt-1.1Exception:\n1、source package:qml-module-qtwebengine 5.7.1+dfsg-6.1_mipsel\npackage: qml-module-qtwebengine\n\n2、source package:qtwebengine5-dev 5.7.1+dfsg-6.1_mipsel\npackage: qtwebengine5-dev\n\n\nOpen Source Software Licensed under the LGPLv2 with exceptions or GPLv3 with exceptions and GFDL:\n1、source package:libqt6svg6 6.4.1\npackage: libqt6svg6\n\n\nOpen Source Software Licensed under the Libpng:\n1、source package:libpng-dev 1.6.37-2_s390x\npackage: libpng-dev\n\n2、source package:libsdl2-dev 2.0.9+dfsg1-1_s390x\npackage: libsdl2-dev\n\n\nOpen Source Software Licensed under the Linux-syscall-note:\n1、source package:pinn 0.0\npackage: pinn\n\n\nOpen Source Software Licensed under the MITNFA:\n1、source package:through2 0.6.5\npackage: through2\n\n\nOpen Source Software Licensed under the MPL-1.1 or GPL-2+ or LGPL-2.1+:\n1、source package:libchardet-dev 1.0.4-1_s390x\npackage: libchardet-dev\n\n2、source package:libchardet1 1.0.4-1_s390x\npackage: libchardet1\n\n3、source package:libuchardet-dev 0.0.7-1_s390x\npackage: libuchardet-dev\n\n4、source package:libuchardet0 0.0.7-1_s390x\npackage: libuchardet0\n\n\nOpen Source Software Licensed under the NAIST-2003:\n1、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the Net-SNMP:\n1、source package:sudo 1.9.8p2-1~exp1\npackage: sudo\n\n\nOpen Source Software Licensed under the OFL-1.1:\n1、source package:fonts-intel-one-mono 1.2.1-2\npackage: fonts-intel-one-mono\n\n2、source package:fonts-lohit-deva 2.95.4.orig\npackage: fonts-lohit-deva\n\n3、source package:fonts-noto 20201225-1\npackage: fonts-noto\n\n4、source package:fonts-noto-mono 20200323-1_all\npackage: fonts-noto-mono\n\n\nOpen Source Software Licensed under the OpenSSL:\n1、source package:libssl1.1 1.1.1~~pre9-1\npackage: libssl1.1\n\n2、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the PD:\n1、source package:xz-utils 5.4.1-0.2\npackage: xz-utils\n\n\nOpen Source Software Licensed under the Public Domain:\n1、source package:debianutils 5.8-1\npackage: debianutils\n\n2、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n3、source package:grub-efi-amd64-signed 1+2.06+8.1\npackage: grub-efi-amd64-signed\n\n4、source package:grub-efi-arm64-signed 1+2.06+8.1\npackage: grub-efi-arm64-signed\n\n5、source package:jsonify 0.0.0\npackage: jsonify\n\n6、source package:libatspi2.0-dev 2.5.3-2_sparc\npackage: libatspi2.0-dev\n\n7、source package:libsqlite3-0 3.8.7.1-1_kfreebsd-i386\npackage: libsqlite3-0\n\n8、source package:libsqlite3-dev 3.8.7.1-1_kfreebsd-i386\npackage: libsqlite3-dev\n\n9、source package:sqlite3 3.9.2-1\npackage: sqlite3\n\n10、source package:tzdata 2023c-7\npackage: tzdata\n\n\nOpen Source Software Licensed under the Python-2.0:\n1、source package:python3 3.8.2-3_s390x\npackage: python3\n\n\nOpen Source Software Licensed under the Qt-GPL-exception-1.0:\n1、source package:qtremoteobjects v5.11.0-rc2\npackage: qtremoteobjects\n\n\nOpen Source Software Licensed under the Rdisc:\n1、source package:iputils-ping 20190709-3_s390x\npackage: iputils-ping\n\n\nOpen Source Software Licensed under the SGI-B-1.1:\n1、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n2、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n\nOpen Source Software Licensed under the SGI-B-2.0:\n1、source package:libegl1-mesa-dev 8.0.5-4+deb7u2_sparc\npackage: libegl1-mesa-dev\n\n2、source package:libgbm-dev 8.0.5-4+deb7u2_sparc\npackage: libgbm-dev\n\n3、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n4、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n\nOpen Source Software Licensed under the SIL-1.1:\n1、source package:fonts-noto-cjk 20190410+repack1-2.debian\npackage: fonts-noto-cjk\n\n\nOpen Source Software Licensed under the SSLeay:\n1、source package:libssl1.1 1.1.1~~pre9-1\npackage: libssl1.1\n\n\nOpen Source Software Licensed under the Sleepycat:\n1、source package:go-difflib v1.0.0\npackage: go-difflib\n\n\nOpen Source Software Licensed under the The Bugly Software License Version 1.0:\n1、source package:crashreport 3.4.4\npackage: crashreport\n\n2、source package:nativecrashreport 3.9.2\npackage: nativecrashreport\n\n\nOpen Source Software Licensed under the Unicode-DFS-2015:\n1、source package:DocxFactory 91131f28\npackage: DocxFactory\n\n\nOpen Source Software Licensed under the Unicode-DFS-2016:\n1、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the Unicode-TOU:\n1、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the Unlicense:\n1、source package:ncompress 4.2.4.6.orig\npackage: ncompress\n\n2、source package:tortellini 4f6795a\npackage: tortellini\n\n3、source package:tweetnacl 0.14.5\npackage: tweetnacl\n\n\nOpen Source Software Licensed under the Vim:\n1、source package:vim 8.2.0716.orig\npackage: vim\n\n\nOpen Source Software Licensed under the X11:\n1、source package:libwayland-dev 1.6.0-2_s390x\npackage: libwayland-dev\n\n2、source package:libxcb-image0-dev 0.4.0-1_s390x\npackage: libxcb-image0-dev\n\n3、source package:libxcb-keysyms1-dev 0.4.0-1_s390x\npackage: libxcb-keysyms1-dev\n\n4、source package:libyaml-cpp-dev 0.6.3-9_s390x\npackage: libyaml-cpp-dev\n\n5、source package:ncurses-base 6.2-1_all\npackage: ncurses-base\n\n6、source package:wordwrap 0.0.2\npackage: wordwrap\n\n\nOpen Source Software Licensed under the Xnet:\n1、source package:onboard 1.4.1-5_s390x\npackage: onboard\n\n\nOpen Source Software Licensed under the Zlib:\n1、source package:avfs 1.1.4-2\npackage: avfs\n\n2、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n3、source package:libminizip-dev 1.1-8_hurd-i386\npackage: libminizip-dev\n\n4、source package:libsdl2-dev 2.0.9+dfsg1-1_s390x\npackage: libsdl2-dev\n\n5、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n6、source package:node 8.16.1\npackage: node\n\n7、source package:pako 1.0.11\npackage: pako\n\n8、source package:pigz 2.6-1\npackage: pigz\n\n9、source package:unalz 0.65-9\npackage: unalz\n\n10、source package:zlib1g 1.2.8.dfsg-5_s390x\npackage: zlib1g\n\n11、source package:zlib1g-dev 1:1.2.3.3.dfsg-1\npackage: zlib1g-dev\n\n\nOpen Source Software Licensed under the copyleft-next-0.3.0:\n1、source package:crda 4.14+git20191112.9856751.orig\npackage: crda\n\n\nOpen Source Software Licensed under the cryptsetup-OpenSSL-exception:\n1、source package:aria2 1.9.5-1\npackage: aria2\n\n2、source package:libcryptsetup-dev 2:2.4.0-1\npackage: libcryptsetup-dev\n\n\nOpen Source Software Licensed under the curl:\n1、source package:curl 8.0.1-1~exp1\npackage: curl\n\n2、source package:libcurl4-openssl-dev 7.68.0-1_s390x\npackage: libcurl4-openssl-dev\n\n\nOpen Source Software Licensed under the hdparm:\n1、source package:hdparm 9.65+ds-1\npackage: hdparm\n\n\nOpen Source Software Licensed under the nolicense:\n1、source package:FreeBSD-Electron v9.0.3\npackage: FreeBSD-Electron\n\n2、source package:LTSLAM 94d7e0f\npackage: LTSLAM\n\n3、source package:TSFileEditor 0.2.1\npackage: TSFileEditor\n\n4、source package:asio asio-1-29-0\npackage: asio\n\n5、source package:chromium-source-tarball 59.0.3071.57\npackage: chromium-source-tarball\n\n6、source package:geek-navigation 5a521f2\npackage: geek-navigation\n\n7、source package:gentoo 202\npackage: gentoo\n\n8、source package:go-urn v1.1.0\npackage: go-urn\n\n9、source package:imaging v1.6.2\npackage: imaging\n\n10、source package:kcrash 5.103.0-1\npackage: kcrash\n\n11、source package:ncnn_paddleocr 9c054d3\npackage: ncnn_paddleocr\n\n12、source package:plasma-workspace v5.25.90\npackage: plasma-workspace\n\n13、source package:platform/external/qt emu-29.0-release\npackage: platform/external/qt\n\n14、source package:qtbase v6.5.1\npackage: qtbase\n\n15、source package:qtxlsxwriter v0.3.0\npackage: qtxlsxwriter\n\n16、source package:scriptcommunicator_serial-terminal Release_06_02\npackage: scriptcommunicator_serial-terminal\n\n17、source package:socket v0.4.1\npackage: socket\n\n18、source package:strace v4.14\npackage: strace\n\n19、source package:v5 v5.1.0\npackage: v5\n\n20、source package:wlr-protocols d278d20\npackage: wlr-protocols\n\n\nCopy of Licenses\n\n【GPL-2.0】\nGNU GENERAL PUBLIC LICENSE\nVersion 2, June 1991\n\nCopyright (C) 1989, 1991 Free Software Foundation, Inc.\n51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA\n\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\nPreamble\nThe licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n\nWe protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations.\n\nFinally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all.\n\nThe precise terms and conditions for copying, distribution and modification follow.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The \"Program\", below, refers to any such program or work, and a \"work based on the Program\" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does.\n\n1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.\n\n2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:\n\na) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change.\n\nb) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License.\n\nc) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.\n\n3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following:\n\na) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,\n\nb) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,\n\nc) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.\n\nIf distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code.\n\n4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.\n\n5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it.\n\n6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License.\n\n7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.\n\nThis section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.\n\n8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.\n\n9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and \"any later version\", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation.\n\n10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nEND OF TERMS AND CONDITIONS\nHow to Apply These Terms to Your New Programs\nIf you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\n\nTo do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the \"copyright\" line and a pointer to where the full notice is found.\n\none line to give the program's name and an idea of what it does.\nCopyright (C) yyyy  name of author\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this when it starts in an interactive mode:\n\nGnomovision version 69, Copyright (C) year name of author\nGnomovision comes with ABSOLUTELY NO WARRANTY; for details\ntype `show w'.  This is free software, and you are welcome\nto redistribute it under certain conditions; type `show c'\nfor details.\nThe hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program.\n\nYou should also get your employer (if you work as a programmer) or your school, if any, to sign a \"copyright disclaimer\" for the program, if necessary. Here is a sample; alter the names:\n\nYoyodyne, Inc., hereby disclaims all copyright\ninterest in the program `Gnomovision'\n(which makes passes at compilers) written\nby James Hacker.\n\nsignature of Ty Coon, 1 April 1989\nTy Coon, President of Vice\nThis General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License.\n\n【GPL-3.0】\nGNU GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright (C) 2007 Free Software Foundation, Inc. https://fsf.org/\n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nPreamble\nThe GNU General Public License is a free, copyleft license for software and other kinds of works.\n\nThe licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.\n\nTo protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.\n\nFor example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n\nDevelopers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.\n\nFor the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.\n\nSome devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.\n\nFinally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.\n\nThe precise terms and conditions for copying, distribution and modification follow.\n\nTERMS AND CONDITIONS\n0. Definitions.\n\"This License\" refers to version 3 of the GNU General Public License.\n\n\"Copyright\" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\n\n\"The Program\" refers to any copyrightable work licensed under this License. Each licensee is addressed as \"you\". \"Licensees\" and \"recipients\" may be individuals or organizations.\n\nTo \"modify\" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a \"modified version\" of the earlier work or a work \"based on\" the earlier work.\n\nA \"covered work\" means either the unmodified Program or a work based on the Program.\n\nTo \"propagate\" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.\n\nTo \"convey\" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.\n\nAn interactive user interface displays \"Appropriate Legal Notices\" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.\n\n1. Source Code.\nThe \"source code\" for a work means the preferred form of the work for making modifications to it. \"Object code\" means any non-source form of a work.\n\nA \"Standard Interface\" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.\n\nThe \"System Libraries\" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A \"Major Component\", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.\n\nThe \"Corresponding Source\" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.\n\nThe Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.\n\nThe Corresponding Source for a work in source code form is that same work.\n\n2. Basic Permissions.\nAll rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.\n\nYou may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.\n\nConveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.\n\n3. Protecting Users' Legal Rights From Anti-Circumvention Law.\nNo covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.\n\nWhen you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.\n\n4. Conveying Verbatim Copies.\nYou may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.\n\nYou may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.\n\n5. Conveying Modified Source Versions.\nYou may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:\n\na) The work must carry prominent notices stating that you modified it, and giving a relevant date.\nb) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to \"keep intact all notices\".\nc) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.\nd) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.\nA compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an \"aggregate\" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.\n\n6. Conveying Non-Source Forms.\nYou may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:\n\na) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.\nb) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.\nc) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.\nd) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.\ne) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.\nA separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.\n\nA \"User Product\" is either (1) a \"consumer product\", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, \"normally used\" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.\n\n\"Installation Information\" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.\n\nIf you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).\n\nThe requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.\n\nCorresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.\n\n7. Additional Terms.\n\"Additional permissions\" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.\n\nWhen you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.\n\nNotwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:\n\na) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or\nb) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or\nc) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or\nd) Limiting the use for publicity purposes of names of licensors or authors of the material; or\ne) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or\nf) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.\nAll other non-permissive additional terms are considered \"further restrictions\" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.\n\nIf you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.\n\nAdditional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.\n\n8. Termination.\nYou may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).\n\nHowever, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.\n\nTermination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.\n\n9. Acceptance Not Required for Having Copies.\nYou are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.\n\n10. Automatic Licensing of Downstream Recipients.\nEach time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.\n\nAn \"entity transaction\" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.\n\nYou may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.\n\n11. Patents.\nA \"contributor\" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's \"contributor version\".\n\nA contributor's \"essential patent claims\" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, \"control\" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.\n\nEach contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.\n\nIn the following three paragraphs, a \"patent license\" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To \"grant\" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.\n\nIf you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. \"Knowingly relying\" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.\n\nIf, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.\n\nA patent license is \"discriminatory\" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.\n\nNothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.\n\n12. No Surrender of Others' Freedom.\nIf conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.\n\n13. Use with the GNU Affero General Public License.\nNotwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.\n\n14. Revised Versions of this License.\nThe Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License \"or any later version\" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.\n\nIf the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.\n\nLater license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.\n\n15. Disclaimer of Warranty.\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. Limitation of Liability.\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n17. Interpretation of Sections 15 and 16.\nIf the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.\n\nEND OF TERMS AND CONDITIONS\n\nHow to Apply These Terms to Your New Programs\nIf you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\n\nTo do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <https://www.gnu.org/licenses/>.\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\nThe hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an \"about box\".\n\nYou should also get your employer (if you work as a programmer) or school, if any, to sign a \"copyright disclaimer\" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see https://www.gnu.org/licenses/.\n\nThe GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read https://www.gnu.org/licenses/why-not-lgpl.html.\n\n【LGPL-2.1】\nGNU LESSER GENERAL PUBLIC LICENSE\nVersion 2.1, February 1999\n\nCopyright (C) 1991, 1999 Free Software Foundation, Inc.\n51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA\n\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL.  It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\nPreamble\nThe licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users.\n\nThis license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below.\n\nWhen we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it.\n\nFor example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights.\n\nWe protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library.\n\nTo protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others.\n\nFinally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license.\n\nMost GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs.\n\nWhen a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library.\n\nWe call this license the \"Lesser\" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances.\n\nFor example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License.\n\nIn other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system.\n\nAlthough the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library.\n\nThe precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a \"work based on the library\" and a \"work that uses the library\". The former contains code derived from the library, whereas the latter must be combined with the library in order to run.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called \"this License\"). Each licensee is addressed as \"you\".\n\nA \"library\" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables.\n\nThe \"Library\", below, refers to any such software library or work which has been distributed under these terms. A \"work based on the Library\" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term \"modification\".)\n\n\"Source code\" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library.\n\nActivities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does.\n\n1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.\n\n2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:\n\na) The modified work must itself be a software library.\n\nb) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change.\n\nc) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License.\n\nd) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful.\n\n(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.\n\n3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices.\n\nOnce this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy.\n\nThis option is useful when you wish to copy part of the code of the Library into a program that is not a library.\n\n4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange.\n\nIf distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code.\n\n5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a \"work that uses the Library\". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License.\n\nHowever, linking a \"work that uses the Library\" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a \"work that uses the library\". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables.\n\nWhen a \"work that uses the Library\" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law.\n\nIf such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.)\n\nOtherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself.\n\n6. As an exception to the Sections above, you may also combine or link a \"work that uses the Library\" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications.\n\nYou must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things:\n\na) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable \"work that uses the Library\", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.)\nb) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with.\nc) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution.\nd) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place.\ne) Verify that the user has already received a copy of these materials or that you have already sent this user a copy.\nFor an executable, the required form of the \"work that uses the Library\" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.\n\nIt may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute.\n\n7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things:\n\na) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above.\nb) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.\n8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.\n\n9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it.\n\n10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License.\n\n11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.\n\nThis section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.\n\n12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.\n\n13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and \"any later version\", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation.\n\n14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nEND OF TERMS AND CONDITIONS\nHow to Apply These Terms to Your New Libraries\nIf you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License).\n\nTo apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the \"copyright\" line and a pointer to where the full notice is found.\n\none line to give the library's name and an idea of what it does.\nCopyright (C) year  name of author\n\nThis library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public\nLicense along with this library; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your school, if any, to sign a \"copyright disclaimer\" for the library, if necessary. Here is a sample; alter the names:\n\nYoyodyne, Inc., hereby disclaims all copyright interest in\nthe library `Frob' (a library for tweaking knobs) written\nby James Random Hacker.\n\nsignature of Ty Coon, 1 April 1990\nTy Coon, President of Vice\nThat's all there is to it!\n\n【LGPL-3.0】\nGNU LESSER GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright (C) 2007 Free Software Foundation, Inc. https://fsf.org/\n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nThis version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below.\n\n0. Additional Definitions.\nAs used herein, \"this License\" refers to version 3 of the GNU Lesser General Public License, and the \"GNU GPL\" refers to version 3 of the GNU General Public License.\n\n\"The Library\" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.\n\nAn \"Application\" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.\n\nA \"Combined Work\" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the \"Linked Version\".\n\nThe \"Minimal Corresponding Source\" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.\n\nThe \"Corresponding Application Code\" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work.\n\n1. Exception to Section 3 of the GNU GPL.\nYou may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL.\n\n2. Conveying Modified Versions.\nIf you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:\n\na) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or\nb) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.\n3. Object Code Incorporating Material from Library Header Files.\nThe object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:\n\na) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License.\nb) Accompany the object code with a copy of the GNU GPL and this license document.\n4. Combined Works.\nYou may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following:\n\na) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License.\nb) Accompany the Combined Work with a copy of the GNU GPL and this license document.\nc) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document.\nd) Do one of the following:\nConvey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.\nUse a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version.\ne) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)\n5. Combined Libraries.\nYou may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:\n\na) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License.\nb) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.\n6. Revised Versions of the GNU Lesser General Public License.\nThe Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License \"or any later version\" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.\n\nIf the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.\n\n【BSD-2-clause】\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\nTHIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n【BSD-3-clause】\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\nNeither the name of Apple Inc. (\"Apple\") nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\nTHIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n【The Qt Company GPL Exception 1.0】\nException 1:\n\nAs a special exception you may create a larger work which contains the output of this application and distribute that work under terms of your choice, so long as the work is not otherwise derived from or based on this application and so long as the work does not in itself generate output that contains the output from this application in its original or modified form.\n\nException 2:\n\nAs a special exception, you have permission to combine this application with Plugins licensed under the terms of your choice, to produce an executable, and to copy and distribute the resulting executable under the terms of your choice. However, the executable must be accompanied by a prominent notice offering all users of the executable the entire source code to this application, excluding the source code of the independent modules, but including any changes you have made to this application, under the terms of this license.\n\n【The Qt Company LGPL Exception version 1.1】\nAs an additional permission to the GNU Lesser General Public License version 2.1, the object code form of a \"work that uses the Library\" may incorporate material from a header file that is part of the Library. You may distribute such object code under terms of your choice, provided that:\n\n(i) the header files of the Library have not been modified; and\n\n(ii) the incorporated material is limited to numerical parameters, data structure layouts, accessors, macros, inline functions and templates; and\n\n(iii) you comply with the terms of Section 6 of the GNU Lesser General Public License version 2.1.\n\nMoreover, you may apply this exception to a modified version of the Library, provided that such modification does not involve copying material from the Library into the modified Library's header files unless such material is limited to (i) numerical parameters; (ii) data structure layouts; (iii) accessors; and (iv) small macros, templates and inline functions of five lines or less in length.\n\nFurthermore, you are not required to apply this additional permission to a modified version of the Library.\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/gpl/gpl-3.0-en_US-title.txt",
    "content": "Open Source Software Notice\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/gpl/gpl-3.0-zh_CN-body.txt",
    "content": "The notice provides license information of respective open source software contained in this operating system.\n\nOpen Source Software Licensed under the GPL-3.0-or-later:\n1、source package:accountsservice 23.13.9-2\npackage: accountsservice\n\n2、source package:cifs-utils 6.9.orig\npackage: cifs-utils\n\n3、source package:coreutils 9.1-1\npackage: coreutils\n\n4、source package:dosfstools 4.2-1\npackage: dosfstools\n\n5、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n6、source package:fonts-wqy-microhei 0.2.0-beta-3.1\npackage: fonts-wqy-microhei\n\n7、source package:gawk 5.0.1+dfsg.orig\npackage: gawk\n\n8、source package:gettext 0.21.1\npackage: gettext\n\n9、source package:gettext-base 0.19.8.1-9_s390x\npackage: gettext-base\n\n10、source package:gnupg 2.2.19-3_all\npackage: gnupg\n\n11、source package:golang-gir-gobject-2.0-dev 2.2.0-1\npackage: golang-gir-gobject-2.0-dev\n\n12、source package:gpgv 2.2.20-1~bpo9+1_s390x\npackage: gpgv\n\n13、source package:grub-common 2.06-9\npackage: grub-common\n\n14、source package:grub2-common 2.04~rc1-3_ppc64el\npackage: grub2-common\n\n15、source package:grub2-theme-vimix c7ab3ce\npackage: grub2-theme-vimix\n\n16、source package:guvcview 2.0.2\npackage: guvcview\n\n17、source package:hello 2.9-2_kfreebsd-i386\npackage: hello\n\n18、source package:libparted-dev 3.3-4_s390x\npackage: libparted-dev\n\n19、source package:libparted-fs-resize0 3.3-4_s390x\npackage: libparted-fs-resize0\n\n20、source package:live-boot 5.0~a5-2\npackage: live-boot\n\n21、source package:live-boot-initramfs-tools 4.0.2-1_all\npackage: live-boot-initramfs-tools\n\n22、source package:live-config 5.20190519_all\npackage: live-config\n\n23、source package:live-config-systemd 5.20190519_all\npackage: live-config-systemd\n\n24、source package:onboard 1.4.1-5_s390x\npackage: onboard\n\n25、source package:parted 3.6-3\npackage: parted\n\n26、source package:patchelf 0.9.orig\npackage: patchelf\n\n27、source package:pkg-kde-tools 0.9.5\npackage: pkg-kde-tools\n\n28、source package:python3-samba 4.12.5+dfsg-3_s390x\npackage: python3-samba\n\n29、source package:qtchooser 66.orig\npackage: qtchooser\n\n30、source package:qtremoteobjects v5.11.0-rc2\npackage: qtremoteobjects\n\n31、source package:redshift 1.9.1-4_s390x\npackage: redshift\n\n32、source package:rsync 3.2.7-1~bpo11+1\npackage: rsync\n\n33、source package:rsyslog 8.9.0-3\npackage: rsyslog\n\n34、source package:samba 4.9.5+dfsg-5_mips64el\npackage: samba\n\n35、source package:samba-common-bin 4.9.5+dfsg-5_s390x\npackage: samba-common-bin\n\n36、source package:samba-dsdb-modules 4.9.5+dfsg-5_s390x\npackage: samba-dsdb-modules\n\n37、source package:samba-vfs-modules 4.9.5+dfsg-5_s390x\npackage: samba-vfs-modules\n\n38、source package:sed 4.9-1\npackage: sed\n\n39、source package:smbclient 4.9.5+dfsg-5_s390x\npackage: smbclient\n\n40、source package:startdde 6.0.6\npackage: startdde\n\n41、source package:viper v1.3.2\npackage: viper\n\n\nOpen Source Software Licensed under the GPL-3.0-only:\n1、source package:blur-effect 1.1.3-2\npackage: blur-effect\n\n2、source package:distrobox 1.4.2.1-1\npackage: distrobox\n\n3、source package:libcap-ng-dev 0.7.9-2_s390x\npackage: libcap-ng-dev\n\n4、source package:liblightdm-qt-dev 1.26.0-5_s390x\npackage: liblightdm-qt-dev\n\n5、source package:libpoppler-glib-dev 22.12.0-2\npackage: libpoppler-glib-dev\n\n6、source package:lightdm 1.9.9-1\npackage: lightdm\n\n7、source package:lightdm-gtk-greeter 2.0.8-3\npackage: lightdm-gtk-greeter\n\n8、source package:mtools 4.0.9-1\npackage: mtools\n\n9、source package:python-is-python3 8\npackage: python-is-python3\n\n10、source package:tpm2-tools 5.4-1\npackage: tpm2-tools\n\n\nOpen Source Software Licensed under the GPL-2.0-or-later:\n1、source package:ColumnsPlusPlus v0.0.1.2-alpha\npackage: ColumnsPlusPlus\n\n2、source package:Grub-Themes a7ec0fd\npackage: Grub-Themes\n\n3、source package:acl 2.3.1-3\npackage: acl\n\n4、source package:adduser 3.99\npackage: adduser\n\n5、source package:apt 2.7.1\npackage: apt\n\n6、source package:apt-utils 2.1.7_mips64el\npackage: apt-utils\n\n7、source package:aptitude 0.8.9-1\npackage: aptitude\n\n8、source package:aria2 1.9.5-1\npackage: aria2\n\n9、source package:arj 3.10.22.orig\npackage: arj\n\n10、source package:attr 2.4.48-5_s390x\npackage: attr\n\n11、source package:bash-completion 20080705\npackage: bash-completion\n\n12、source package:bc 1.07.1-3\npackage: bc\n\n13、source package:bluez 5.66-1\npackage: bluez\n\n14、source package:bluez-obexd 5.52-1_s390x\npackage: bluez-obexd\n\n15、source package:ca-certificates 20230311\npackage: ca-certificates\n\n16、source package:cornrow v0.8.0\npackage: cornrow\n\n17、source package:cups-filters 1.9.0-2\npackage: cups-filters\n\n18、source package:cyberduck release-4-9-1\npackage: cyberduck\n\n19、source package:debhelper 9.20160814\npackage: debhelper\n\n20、source package:dh-dkms 3.0.9-1\npackage: dh-dkms\n\n21、source package:dh-golang 1.9\npackage: dh-golang\n\n22、source package:dkms 3.0.8-3\npackage: dkms\n\n23、source package:dmidecode 3.5-1\npackage: dmidecode\n\n24、source package:dnsmasq-base 2.89-1\npackage: dnsmasq-base\n\n25、source package:dpkg 1.9.21\npackage: dpkg\n\n26、source package:dpkg-dev 1.9.21\npackage: dpkg-dev\n\n27、source package:efibootmgr 17-2\npackage: efibootmgr\n\n28、source package:eject 2.35.2-7_ppc64el\npackage: eject\n\n29、source package:ethtool 6-0\npackage: ethtool\n\n30、source package:exfat-fuse 1.3.0-2_armel\npackage: exfat-fuse\n\n31、source package:exfatprogs 1.2.1-2\npackage: exfatprogs\n\n32、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n33、source package:foomatic-db-compressed-ppds 20230107-1\npackage: foomatic-db-compressed-ppds\n\n34、source package:fprintd 1.94.2-2\npackage: fprintd\n\n35、source package:geoclue-2.0 2.7.0-2\npackage: geoclue-2.0\n\n36、source package:gnome-keyring 42.1-1\npackage: gnome-keyring\n\n37、source package:hwdata 0.372-1\npackage: hwdata\n\n38、source package:im-config 0.9\npackage: im-config\n\n39、source package:imwheel 1.0.0pre12.orig\npackage: imwheel\n\n40、source package:input-leap v2.4.0\npackage: input-leap\n\n41、source package:ipwatchd 1.3.0\npackage: ipwatchd\n\n42、source package:jfsutils 1.1.8-1\npackage: jfsutils\n\n43、source package:kbd 2.5.1-1\npackage: kbd\n\n44、source package:kscreenlocker-dev 5.8.6-2_s390x\npackage: kscreenlocker-dev\n\n45、source package:lcov 1.9.orig\npackage: lcov\n\n46、source package:libappstreamqt-dev 0.9.8-4_kfreebsd-i386\npackage: libappstreamqt-dev\n\n47、source package:libblkid-dev 2.35.2-7_mipsel\npackage: libblkid-dev\n\n48、source package:libcryptsetup-dev 2:2.4.0-1\npackage: libcryptsetup-dev\n\n49、source package:libddcutil-dev 0.9.8-4_s390x\npackage: libddcutil-dev\n\n50、source package:libdpkg-dev 1.20.5_ppc64el\npackage: libdpkg-dev\n\n51、source package:libdvdnav-dev 6.1.0-1_s390x\npackage: libdvdnav-dev\n\n52、source package:libffmpegthumbnailer-dev 2.1.1-0.2_kfreebsd-amd64\npackage: libffmpegthumbnailer-dev\n\n53、source package:libffmpegthumbnailer4v5 2.1.1-0.2_kfreebsd-amd64\npackage: libffmpegthumbnailer4v5\n\n54、source package:libltdl-dev 2.4.7-6\npackage: libltdl-dev\n\n55、source package:libmount-dev 2.35.2-7_s390x\npackage: libmount-dev\n\n56、source package:libmpv-dev 0.9.2-1+ffmpeg\npackage: libmpv-dev\n\n57、source package:libmpv1 0.6.2-2_s390x\npackage: libmpv1\n\n58、source package:libmpv2 0.36.0+git.20230723.60a26324\npackage: libmpv2\n\n59、source package:libnm-dev 1.6.2-3+deb9u2_s390x\npackage: libnm-dev\n\n60、source package:libpam-fprintd 1.90.1-1_s390x\npackage: libpam-fprintd\n\n61、source package:libvlc-dev 3.0.9.2-1\npackage: libvlc-dev\n\n62、source package:libvlc5 3.0.8-4_s390x\npackage: libvlc5\n\n63、source package:libvlccore-dev 3.0.8-4_s390x\npackage: libvlccore-dev\n\n64、source package:libvncserver LibVNCServer-0.9.14\npackage: libvncserver\n\n65、source package:lzop 1.04-2\npackage: lzop\n\n66、source package:man-db 2.9.4-4\npackage: man-db\n\n67、source package:net-tools 2.10-0.1\npackage: net-tools\n\n68、source package:network-manager 1.9.90-1\npackage: network-manager\n\n69、source package:nilfs-tools 2.2.9-1\npackage: nilfs-tools\n\n70、source package:ntfs-3g 2017.3.23AR.5.orig\npackage: ntfs-3g\n\n71、source package:packagekit 1.2.6-5\npackage: packagekit\n\n72、source package:pandoc 2.9.2.1-3\npackage: pandoc\n\n73、source package:pciutils 3.7.0.orig\npackage: pciutils\n\n74、source package:pinn 0.0\npackage: pinn\n\n75、source package:pkg-config 0.29.2.orig\npackage: pkg-config\n\n76、source package:pkg-kde-tools 0.9.5\npackage: pkg-kde-tools\n\n77、source package:plymouth 22.02.122-3\npackage: plymouth\n\n78、source package:plymouth-label 0.9.4-3_s390x\npackage: plymouth-label\n\n79、source package:pppoe 3.8-3_sparc\npackage: pppoe\n\n80、source package:procps 3.3.9.orig\npackage: procps\n\n81、source package:python3-dbus 1.2.8-3_s390x\npackage: python3-dbus\n\n82、source package:python3-smbc 1.0.23-2\npackage: python3-smbc\n\n83、source package:rfkill 2.35.2-7_s390x\npackage: rfkill\n\n84、source package:rzip 2.1.orig\npackage: rzip\n\n85、source package:sectpmctl 1.1.3\npackage: sectpmctl\n\n86、source package:sensible-utils 0.0.9+nmu1\npackage: sensible-utils\n\n87、source package:socat 2.0.0~beta9-1_ppc64el\npackage: socat\n\n88、source package:squashfs-tools 4.4-2_s390x\npackage: squashfs-tools\n\n89、source package:syslinux 6.04~git20190206.bf6db5b4+dfsg1.orig\npackage: syslinux\n\n90、source package:syslinux-common 6.04~git20190206.bf6db5b4+dfsg1-2_all\npackage: syslinux-common\n\n91、source package:udisks2 2.9.4-4\npackage: udisks2\n\n92、source package:unace 1.2b-9\npackage: unace\n\n93、source package:upower 1.90.2-3\npackage: upower\n\n94、source package:usb-modeswitch 2.6.1.orig\npackage: usb-modeswitch\n\n95、source package:usbmuxd 1.1.1~git20191130.9af2b12-1_s390x\npackage: usbmuxd\n\n96、source package:usbutils 1:015-1\npackage: usbutils\n\n97、source package:user-setup 1.95\npackage: user-setup\n\n98、source package:uuid-dev 2.35.2-7_ppc64el\npackage: uuid-dev\n\n99、source package:vlc-plugin-base 3.0.8-4_s390x\npackage: vlc-plugin-base\n\n100、source package:xdg-user-dirs 0.9-1\npackage: xdg-user-dirs\n\n101、source package:xserver-xorg-input-wacom 1.2.0-1~exp1\npackage: xserver-xorg-input-wacom\n\n102、source package:zssh 1.5c.debian.1-8\npackage: zssh\n\n\nOpen Source Software Licensed under the GPL-2.0-only:\n1、source package:GitQlient v1.4.3\npackage: GitQlient\n\n2、source package:alsa-utils 1.2.9-1\npackage: alsa-utils\n\n3、source package:btrfs-progs 6.3.2-1\npackage: btrfs-progs\n\n4、source package:checkstyle checkstyle-10.3.4\npackage: checkstyle\n\n5、source package:dmsetup 1.02.90-2.2+deb8u1_s390x\npackage: dmsetup\n\n6、source package:doxygen 1.9.4-4\npackage: doxygen\n\n7、source package:e2fsprogs 1.47.0-2\npackage: e2fsprogs\n\n8、source package:gcc 9.2.1-4.1_mips64el\npackage: gcc\n\n9、source package:genisoimage 9:1.1.11-3.4\npackage: genisoimage\n\n10、source package:git 4.3.20-9\npackage: git\n\n11、source package:grub-efi-amd64-signed 1+2.06+8.1\npackage: grub-efi-amd64-signed\n\n12、source package:grub-efi-arm64-signed 1+2.06+8.1\npackage: grub-efi-arm64-signed\n\n13、source package:gtk2-engines 2.20.2.orig\npackage: gtk2-engines\n\n14、source package:gtk2-engines-murrine 0.98.2.orig\npackage: gtk2-engines-murrine\n\n15、source package:iio-sensor-proxy 3.4-2\npackage: iio-sensor-proxy\n\n16、source package:initramfs-tools-core 0.137_all\npackage: initramfs-tools-core\n\n17、source package:kwin v5.27.2\npackage: kwin\n\n18、source package:libcap-ng-dev 0.7.9-2_s390x\npackage: libcap-ng-dev\n\n19、source package:libdjvulibre-dev 3.5.28-2\npackage: libdjvulibre-dev\n\n20、source package:libglib2.0-dev 2.64.4-1_s390x\npackage: libglib2.0-dev\n\n21、source package:liblightdm-qt-dev 1.26.0-5_s390x\npackage: liblightdm-qt-dev\n\n22、source package:libnm-qt 0.9.8.2.orig\npackage: libnm-qt\n\n23、source package:libpoppler-glib-dev 22.12.0-2\npackage: libpoppler-glib-dev\n\n24、source package:libraw-dev 0.9.1-1+deb6u1\npackage: libraw-dev\n\n25、source package:lightdm 1.9.9-1\npackage: lightdm\n\n26、source package:lsb-base 9.20161125_all\npackage: lsb-base\n\n27、source package:lshw 02.19.git.2021.06.19.996aaad9c7-2~bpo11+1\npackage: lshw\n\n28、source package:lvm2 2.03.16-1.1\npackage: lvm2\n\n29、source package:mawk 1.3.4.20230525-1~exp1\npackage: mawk\n\n30、source package:modemmanager 1.8.2.orig\npackage: modemmanager\n\n31、source package:networkmanager-qt 5.54.0.orig\npackage: networkmanager-qt\n\n32、source package:openprinting-ppds 20200427-1_all\npackage: openprinting-ppds\n\n33、source package:proxychains4 4.14-3_s390x\npackage: proxychains4\n\n34、source package:qt-creator tqtc/v2.6.0-rc\npackage: qt-creator\n\n35、source package:qtciphersqliteplugin 0.6\npackage: qtciphersqliteplugin\n\n36、source package:qtermwidget 0.7.1.orig\npackage: qtermwidget\n\n37、source package:reiserfsprogs 3.x.1b-1\npackage: reiserfsprogs\n\n38、source package:sane-airscan 0.99.8-2\npackage: sane-airscan\n\n39、source package:slirp4netns 1.2.0-1\npackage: slirp4netns\n\n40、source package:smartmontools 7.3-1\npackage: smartmontools\n\n41、source package:synergy-stable-builds 1.8.2-stable\npackage: synergy-stable-builds\n\n42、source package:systemd 8-2\npackage: systemd\n\n43、source package:ttf-unifont 9.0.06-2_all\npackage: ttf-unifont\n\n44、source package:wireless-tools 30~pre9.orig\npackage: wireless-tools\n\n45、source package:xfonts-wqy 1.0.0~rc1-7\npackage: xfonts-wqy\n\n46、source package:xfsprogs 6.3.0-1\npackage: xfsprogs\n\n\nOpen Source Software Licensed under the LGPL-3.0-or-later:\n1、source package:kdecoration 4:5.26.90-2\npackage: kdecoration\n\n2、source package:libheif-dev 1.6.1-1_s390x\npackage: libheif-dev\n\n3、source package:libzmq3-dev 4.3.2-2_s390x\npackage: libzmq3-dev\n\n4、source package:python3-ldb 2.1.4-2_s390x\npackage: python3-ldb\n\n5、source package:python3-tdb 1.4.3-1_s390x\npackage: python3-tdb\n\n6、source package:tdb-tools 1.4.3-1_s390x\npackage: tdb-tools\n\n\nOpen Source Software Licensed under the LGPL-3.0-only:\n1、source package:QtZeroConf pre_Android_api30\npackage: QtZeroConf\n\n2、source package:cryfs 0.9.9-2\npackage: cryfs\n\n3、source package:libgsettings-qt-dev 0.2-1_s390x\npackage: libgsettings-qt-dev\n\n4、source package:qt5integration 5.6.3\npackage: qt5integration\n\n5、source package:qtwebengine-opensource-src 5.14.2+dfsg1.orig\npackage: qtwebengine-opensource-src\n\n\nOpen Source Software Licensed under the LGPL-2.1-or-later:\n1、source package:fcitx5 5.0.9-2\npackage: fcitx5\n\n2、source package:fcitx5-chinese-addons 5.0.9-2\npackage: fcitx5-chinese-addons\n\n3、source package:fcitx5-frontend-gtk2 5.0.9-1\npackage: fcitx5-frontend-gtk2\n\n4、source package:fcitx5-frontend-qt5 0.0~git20200615.b6f2ef3-1_s390x\npackage: fcitx5-frontend-qt5\n\n5、source package:fcitx5-module-xorg 0~20191021+ds1-1_s390x\npackage: fcitx5-module-xorg\n\n6、source package:fcitx5-modules 0~20191021+ds1-1_s390x\npackage: fcitx5-modules\n\n7、source package:fcitx5-modules-dev 5.0.23-2~exp1\npackage: fcitx5-modules-dev\n\n8、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n9、source package:gcr 3.8.2-4\npackage: gcr\n\n10、source package:iso-codes 4.9.0-1\npackage: iso-codes\n\n11、source package:kcm-fcitx5 5.0.13-1\npackage: kcm-fcitx5\n\n12、source package:libappstreamqt-dev 0.9.8-4_kfreebsd-i386\npackage: libappstreamqt-dev\n\n13、source package:libavcodec-dev 4.3-3+b1_s390x\npackage: libavcodec-dev\n\n14、source package:libavcodec58 4.3-3+b1_ppc64el\npackage: libavcodec58\n\n15、source package:libavdevice-dev 4.3-3+b1_ppc64el\npackage: libavdevice-dev\n\n16、source package:libavfilter-dev 4.3-3+b1_mips64el\npackage: libavfilter-dev\n\n17、source package:libavformat-dev 4.3-3+b1_ppc64el\npackage: libavformat-dev\n\n18、source package:libavformat58 4.3-3+b1_i386\npackage: libavformat58\n\n19、source package:libavutil-dev 4.3-3+b1_s390x\npackage: libavutil-dev\n\n20、source package:libavutil56 4.3-3+b1_s390x\npackage: libavutil56\n\n21、source package:libblockdev-crypto2 2.24-2_mipsel\npackage: libblockdev-crypto2\n\n22、source package:libdbusextended-qt5-dev 0.0.3-4_s390x\npackage: libdbusextended-qt5-dev\n\n23、source package:libfcitx5-qt-dev 0.0~git20200615.b6f2ef3-1_ppc64el\npackage: libfcitx5-qt-dev\n\n24、source package:libfcitx5core-dev 0~20191021+ds1-1_s390x\npackage: libfcitx5core-dev\n\n25、source package:libfcitx5utils-dev 0~20191021+ds1-1_s390x\npackage: libfcitx5utils-dev\n\n26、source package:libgxps-dev 0.3.1-1_s390x\npackage: libgxps-dev\n\n27、source package:libime-bin 0.0~git20200626.2c85668-1_s390x\npackage: libime-bin\n\n28、source package:libimobiledevice-utils 1.3.0-3_s390x\npackage: libimobiledevice-utils\n\n29、source package:libnss-myhostname 245.6-2_s390x\npackage: libnss-myhostname\n\n30、source package:libprocps-dev 3.3.16-5_s390x\npackage: libprocps-dev\n\n31、source package:libpulse-dev 7.1-2~bpo8+1_s390x\npackage: libpulse-dev\n\n32、source package:libpulse-mainloop-glib0 9.0-5\npackage: libpulse-mainloop-glib0\n\n33、source package:libpulse0 7.1-2~bpo8+1_s390x\npackage: libpulse0\n\n34、source package:libqrencode-dev 4.0.2-2_s390x\npackage: libqrencode-dev\n\n35、source package:libqrencode4 4.1.1-1\npackage: libqrencode4\n\n36、source package:libsecret-1-dev 0.20.5-3\npackage: libsecret-1-dev\n\n37、source package:libswresample-dev 4.3-3+b1_ppc64el\npackage: libswresample-dev\n\n38、source package:libswscale-dev 4.3-3+b1_s390x\npackage: libswscale-dev\n\n39、source package:libsystemd-dev 245.6-2_i386\npackage: libsystemd-dev\n\n40、source package:libsystemd0 245.6-2_s390x\npackage: libsystemd0\n\n41、source package:libudev-dev 245.6-2_s390x\npackage: libudev-dev\n\n42、source package:packagekit 1.2.6-5\npackage: packagekit\n\n43、source package:pulseaudio 9.99.1-1\npackage: pulseaudio\n\n44、source package:pulseaudio-module-bluetooth 7.1-2~bpo8+1_s390x\npackage: pulseaudio-module-bluetooth\n\n45、source package:pulseaudio-utils 7.1-2~bpo8+1_s390x\npackage: pulseaudio-utils\n\n46、source package:python3-gi 3.43.1-1\npackage: python3-gi\n\n47、source package:systemd-coredump 245.6-2_mipsel\npackage: systemd-coredump\n\n48、source package:systemd-timesyncd 245.6-2_ppc64el\npackage: systemd-timesyncd\n\n49、source package:udev 245.6-2_s390x\npackage: udev\n\n50、source package:unar 1.9.1-1\npackage: unar\n\n\nOpen Source Software Licensed under the LGPL-2.1-only:\n1、source package:GitQlient v1.4.3\npackage: GitQlient\n\n2、source package:cgroup-tools 0.41-8.1_s390x\npackage: cgroup-tools\n\n3、source package:checkstyle checkstyle-10.3.4\npackage: checkstyle\n\n4、source package:cracklib-runtime 2.9.6-3_s390x\npackage: cracklib-runtime\n\n5、source package:dialog 1.3-20230209-1\npackage: dialog\n\n6、source package:dmsetup 1.02.90-2.2+deb8u1_s390x\npackage: dmsetup\n\n7、source package:gettext-base 0.19.8.1-9_s390x\npackage: gettext-base\n\n8、source package:gstreamer1.0-libav 1.9.90-1\npackage: gstreamer1.0-libav\n\n9、source package:gstreamer1.0-plugins-base 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-base\n\n10、source package:gstreamer1.0-plugins-good 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-good\n\n11、source package:gstreamer1.0-plugins-ugly 1.9.90-1\npackage: gstreamer1.0-plugins-ugly\n\n12、source package:gstreamer1.0-pulseaudio 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-pulseaudio\n\n13、source package:gstreamer1.0-x 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-x\n\n14、source package:gtk2-engines 2.20.2.orig\npackage: gtk2-engines\n\n15、source package:gtk2-engines-murrine 0.98.2.orig\npackage: gtk2-engines-murrine\n\n16、source package:gtk2-engines-pixbuf 2.8.9-2\npackage: gtk2-engines-pixbuf\n\n17、source package:kmod 9-3_sparc\npackage: kmod\n\n18、source package:libcairo2-dev 1.16.0-4_s390x\npackage: libcairo2-dev\n\n19、source package:libcap-ng-dev 0.7.9-2_s390x\npackage: libcap-ng-dev\n\n20、source package:libcrack2-dev 2.9.6-5\npackage: libcrack2-dev\n\n21、source package:libfprint 20110418git-2\npackage: libfprint\n\n22、source package:libfprint-2-2 1.90.1-2_s390x\npackage: libfprint-2-2\n\n23、source package:libfprint0 1.0-1_s390x\npackage: libfprint0\n\n24、source package:libglib2.0-dev 2.64.4-1_s390x\npackage: libglib2.0-dev\n\n25、source package:libgstreamer-plugins-base1.0-0 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-0\n\n26、source package:libgstreamer-plugins-base1.0-dev 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-dev\n\n27、source package:libgstreamer1.0-0 1.4.4-2_kfreebsd-i386\npackage: libgstreamer1.0-0\n\n28、source package:libgstreamer1.0-dev 1.4.4-2_kfreebsd-i386\npackage: libgstreamer1.0-dev\n\n29、source package:libgtk-3-dev 3.4.2-7+deb7u1_sparc\npackage: libgtk-3-dev\n\n30、source package:liblog4cpp5-dev 1.1.3-3_s390x\npackage: liblog4cpp5-dev\n\n31、source package:liblog4cpp5v5 1.1.3-3_ppc64el\npackage: liblog4cpp5v5\n\n32、source package:libnm-qt 0.9.8.2.orig\npackage: libnm-qt\n\n33、source package:libnotify-bin 0.7.9-1_s390x\npackage: libnotify-bin\n\n34、source package:libraw-dev 0.9.1-1+deb6u1\npackage: libraw-dev\n\n35、source package:librsvg2-dev 2.9.5-6\npackage: librsvg2-dev\n\n36、source package:libsdl1.2debian 1.2.15-5_sparc\npackage: libsdl1.2debian\n\n37、source package:libseccomp-dev 2.4.3-1_s390x\npackage: libseccomp-dev\n\n38、source package:libtag1-dev 1.9.1-2~bpo70+1_sparc\npackage: libtag1-dev\n\n39、source package:libusb-1.0-0-dev 1.0.23-2_s390x\npackage: libusb-1.0-0-dev\n\n40、source package:modemmanager 1.8.2.orig\npackage: modemmanager\n\n41、source package:networkmanager-qt 5.54.0.orig\npackage: networkmanager-qt\n\n42、source package:p7zip 9.20.1~dfsg.1-5\npackage: p7zip\n\n43、source package:p7zip-full 9.20.1~dfsg.1-4.1_kfreebsd-i386\npackage: p7zip-full\n\n44、source package:qrencode 4.0.2.orig\npackage: qrencode\n\n45、source package:qt-creator tqtc/v2.6.0-rc\npackage: qt-creator\n\n46、source package:qtciphersqliteplugin 0.6\npackage: qtciphersqliteplugin\n\n47、source package:smartmontools 7.3-1\npackage: smartmontools\n\n\nOpen Source Software Licensed under the LGPL-3 or GPL-2:\n1、source package:libqt5core5a 5.7.1+dfsg-3+deb9u2_s390x\npackage: libqt5core5a\n\n2、source package:libqt5opengl5-dev 5.7.1+dfsg-3+deb9u2_s390x\npackage: libqt5opengl5-dev\n\n3、source package:libqt5sql5-sqlite 5.7.1+dfsg-3+deb9u2_s390x\npackage: libqt5sql5-sqlite\n\n4、source package:libqt5svg5-dev 5.7.1~20161021-2+b2_s390x\npackage: libqt5svg5-dev\n\n5、source package:libqt5x11extras5-dev 5.9.2-1\npackage: libqt5x11extras5-dev\n\n6、source package:libqt6multimedia6 6.4.2-6\npackage: libqt6multimedia6\n\n7、source package:libqt6opengl6 6.4.2+dfsg~rc1-3+alpha.1\npackage: libqt6opengl6\n\n8、source package:qml-module-qt-labs-platform 5.9.2-2_kfreebsd-amd64\npackage: qml-module-qt-labs-platform\n\n9、source package:qml-module-qtquick-controls2 5.9.2-2_kfreebsd-amd64\npackage: qml-module-qtquick-controls2\n\n10、source package:qml-module-qtquick-dialogs 5.7.1~20161021-2_s390x\npackage: qml-module-qtquick-dialogs\n\n11、source package:qml-module-qtquick-templates2 5.9.2-2_kfreebsd-amd64\npackage: qml-module-qtquick-templates2\n\n12、source package:qt5-qmake 5.7.1+dfsg-3+deb9u2_s390x\npackage: qt5-qmake\n\n13、source package:qt6-svg-dev 6.4.2~rc1-3\npackage: qt6-svg-dev\n\n14、source package:qt6-wayland 6.4.2~rc1-2\npackage: qt6-wayland\n\n15、source package:qtbase5-dev 5.7.1+dfsg-3+deb9u2_s390x\npackage: qtbase5-dev\n\n16、source package:qtbase5-private-dev 5.7.1+dfsg-3+deb9u2_s390x\npackage: qtbase5-private-dev\n\n17、source package:qtmultimedia5-dev 5.7.1~20161021-2_s390x\npackage: qtmultimedia5-dev\n\n18、source package:qtquickcontrols2-5-dev 5.9.2-2_kfreebsd-amd64\npackage: qtquickcontrols2-5-dev\n\n\nOpen Source Software Licensed under the LGPL-3 or GPL-2+:\n1、source package:qml-module-qtqml-models2 5.7.1-2+b2_s390x\npackage: qml-module-qtqml-models2\n\n2、source package:qml-module-qtquick-layouts 5.7.1-2+b2_s390x\npackage: qml-module-qtquick-layouts\n\n3、source package:qml-module-qtquick2 5.7.1-2+b2_s390x\npackage: qml-module-qtquick2\n\n4、source package:qtdeclarative5-dev 5.7.1-2+b2_s390x\npackage: qtdeclarative5-dev\n\n\nOpen Source Software Licensed under the Apache-2.0:\n1、source package:AndroidProject-Kotlin 13.2\npackage: AndroidProject-Kotlin\n\n2、source package:JSONStream 1.3.5\npackage: JSONStream\n\n3、source package:acorn-node 1.8.2\npackage: acorn-node\n\n4、source package:android-pdfium a56ccce4\npackage: android-pdfium\n\n5、source package:androidsvg 1.4\npackage: androidsvg\n\n6、source package:atob 2.1.2\npackage: atob\n\n7、source package:aws-sign2 0.7.0\npackage: aws-sign2\n\n8、source package:caseless 0.12.0\npackage: caseless\n\n9、source package:cilium 1.14.3\npackage: cilium\n\n10、source package:circleindicator 2.1.6\npackage: circleindicator\n\n11、source package:cobra v0.0.3\npackage: cobra\n\n12、source package:compiler 4.12.0\npackage: compiler\n\n13、source package:concurrent 1.0.0\npackage: concurrent\n\n14、source package:coost v3.0.0\npackage: coost\n\n15、source package:core 1.7.0\npackage: core\n\n16、source package:cppdap 87f8b4a\npackage: cppdap\n\n17、source package:crypto v0.23.0\npackage: crypto\n\n18、source package:dash-ast 1.0.0\npackage: dash-ast\n\n19、source package:diff-match-patch 1.0.5\npackage: diff-match-patch\n\n20、source package:dompurify 2.4.1\npackage: dompurify\n\n21、source package:external/github.com/google/benchmark v1.4.1\npackage: external/github.com/google/benchmark\n\n22、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n23、source package:fonts-noto-color-emoji 2.038-1\npackage: fonts-noto-color-emoji\n\n24、source package:forever-agent 0.6.1\npackage: forever-agent\n\n25、source package:get-assigned-identifiers 1.2.0\npackage: get-assigned-identifiers\n\n26、source package:git 4.3.20-9\npackage: git\n\n27、source package:glide 4.12.0\npackage: glide\n\n28、source package:gofuzz v1.0.0\npackage: gofuzz\n\n29、source package:golang-github-golang-groupcache-dev 0.0~git20200121.8c9f03a-2\npackage: golang-github-golang-groupcache-dev\n\n30、source package:golang-gopkg-yaml.v2-dev 2.4.0-3\npackage: golang-gopkg-yaml.v2-dev\n\n31、source package:golang-gopkg-yaml.v3-dev 3.0.1-3\npackage: golang-gopkg-yaml.v3-dev\n\n32、source package:gradle 7.4.2\npackage: gradle\n\n33、source package:gson 2.10.1\npackage: gson\n\n34、source package:imgbrd-grabber v6.0.2\npackage: imgbrd-grabber\n\n35、source package:infratask_scheduler v0.1.0\npackage: infratask_scheduler\n\n36、source package:junit 1.1.5\npackage: junit\n\n37、source package:kata-containers CC-0.7.0\npackage: kata-containers\n\n38、source package:kotlin-gradle-plugin\npackage: kotlin-gradle-plugin\n\n39、source package:kotlin-stdlib-jdk7\npackage: kotlin-stdlib-jdk7\n\n40、source package:kotlinx-serialization-json 1.5.1\npackage: kotlinx-serialization-json\n\n41、source package:libcups2-dev 2.3~rc1-1_s390x\npackage: libcups2-dev\n\n42、source package:libcupsimage2 2.3~rc1-1_s390x\npackage: libcupsimage2\n\n43、source package:libpoppler-cpp-dev 0.85.0-1_s390x\npackage: libpoppler-cpp-dev\n\n44、source package:libpoppler-cpp0v5 0.85.0-1_s390x\npackage: libpoppler-cpp0v5\n\n45、source package:libssl-dev 3.0.0~~alpha4-1_s390x\npackage: libssl-dev\n\n46、source package:libssl3 3.0.0~~alpha4-1_s390x\npackage: libssl3\n\n47、source package:libwebrtc-bin 86.4240.20.0\npackage: libwebrtc-bin\n\n48、source package:libxerces-c-dev 3.2.3+debian-1_s390x\npackage: libxerces-c-dev\n\n49、source package:lottie 4.1.0\npackage: lottie\n\n50、source package:ms365 v2.0.5\npackage: ms365\n\n51、source package:oauth-sign 0.9.0\npackage: oauth-sign\n\n52、source package:okhttp 3.12.13\npackage: okhttp\n\n53、source package:podman 1.6.4+dfsg1-4_armel\npackage: podman\n\n54、source package:preference 1.2.1\npackage: preference\n\n55、source package:request 2.88.0\npackage: request\n\n56、source package:rsyslog 8.9.0-3\npackage: rsyslog\n\n57、source package:sass 1.55.0\npackage: sass\n\n58、source package:spdx-correct 3.1.1\npackage: spdx-correct\n\n59、source package:sse v0.1.0\npackage: sse\n\n60、source package:sync v0.10.0\npackage: sync\n\n61、source package:through 2.3.8\npackage: through\n\n62、source package:timber 4.7.1\npackage: timber\n\n63、source package:tinyrpc 2130294\npackage: tinyrpc\n\n64、source package:tools_oat 373f560\npackage: tools_oat\n\n65、source package:true-case-path 1.0.3\npackage: true-case-path\n\n66、source package:tunnel-agent 0.6.0\npackage: tunnel-agent\n\n67、source package:typescript 4.8.4\npackage: typescript\n\n68、source package:undeclared-identifiers 1.1.3\npackage: undeclared-identifiers\n\n69、source package:validate-npm-package-license 3.0.4\npackage: validate-npm-package-license\n\n70、source package:vimspector 2938438041\npackage: vimspector\n\n\nOpen Source Software Licensed under the MIT:\n1、source package:@antfu/utils 0.7.7\npackage: @antfu/utils\n\n2、source package:@babel/runtime 7.6.0\npackage: @babel/runtime\n\n3、source package:@babel/standalone 7.20.15\npackage: @babel/standalone\n\n4、source package:@ctrl/tinycolor 3.4.1\npackage: @ctrl/tinycolor\n\n5、source package:@element-plus/icons-vue 2.0.9\npackage: @element-plus/icons-vue\n\n6、source package:@esbuild/android-arm 0.15.9\npackage: @esbuild/android-arm\n\n7、source package:@esbuild/linux-loong64 0.15.9\npackage: @esbuild/linux-loong64\n\n8、source package:@floating-ui/core 1.0.1\npackage: @floating-ui/core\n\n9、source package:@floating-ui/dom 1.0.2\npackage: @floating-ui/dom\n\n10、source package:@jridgewell/gen-mapping 0.3.2\npackage: @jridgewell/gen-mapping\n\n11、source package:@jridgewell/resolve-uri 3.1.0\npackage: @jridgewell/resolve-uri\n\n12、source package:@jridgewell/set-array 1.1.2\npackage: @jridgewell/set-array\n\n13、source package:@jridgewell/source-map 0.3.2\npackage: @jridgewell/source-map\n\n14、source package:@jridgewell/sourcemap-codec 1.4.14\npackage: @jridgewell/sourcemap-codec\n\n15、source package:@jridgewell/trace-mapping 0.3.16\npackage: @jridgewell/trace-mapping\n\n16、source package:@nodelib/fs.scandir 2.1.5\npackage: @nodelib/fs.scandir\n\n17、source package:@nodelib/fs.stat 2.0.5\npackage: @nodelib/fs.stat\n\n18、source package:@nodelib/fs.walk 1.2.8\npackage: @nodelib/fs.walk\n\n19、source package:@popperjs/core 2.11.7\npackage: @popperjs/core\n\n20、source package:@rollup/pluginutils 5.1.0\npackage: @rollup/pluginutils\n\n21、source package:@smake/co 1.0.1\npackage: @smake/co\n\n22、source package:@types/estree 1.0.5\npackage: @types/estree\n\n23、source package:@types/json-schema 7.0.6\npackage: @types/json-schema\n\n24、source package:@types/lodash 4.14.185\npackage: @types/lodash\n\n25、source package:@types/lodash-es 4.17.6\npackage: @types/lodash-es\n\n26、source package:@types/node 14.14.6\npackage: @types/node\n\n27、source package:@types/web-bluetooth 0.0.15\npackage: @types/web-bluetooth\n\n28、source package:@vitejs/plugin-legacy 2.3.1\npackage: @vitejs/plugin-legacy\n\n29、source package:@vitejs/plugin-vue 3.1.0\npackage: @vitejs/plugin-vue\n\n30、source package:@vue/devtools-api 6.4.1\npackage: @vue/devtools-api\n\n31、source package:@vueuse/core 9.3.0\npackage: @vueuse/core\n\n32、source package:@vueuse/metadata 9.3.0\npackage: @vueuse/metadata\n\n33、source package:@vueuse/shared 9.3.0\npackage: @vueuse/shared\n\n34、source package:CppLogging 1.0.1.0\npackage: CppLogging\n\n35、source package:abbrev 1.1.1\npackage: abbrev\n\n36、source package:acorn 7.0.0\npackage: acorn\n\n37、source package:acorn-dynamic-import 2.0.2\npackage: acorn-dynamic-import\n\n38、source package:acorn-node 1.8.2\npackage: acorn-node\n\n39、source package:acorn-walk 7.0.0\npackage: acorn-walk\n\n40、source package:add-px-to-style 1.0.0\npackage: add-px-to-style\n\n41、source package:ajv 6.12.6\npackage: ajv\n\n42、source package:ajv-keywords 3.5.2\npackage: ajv-keywords\n\n43、source package:align-text 0.1.4\npackage: align-text\n\n44、source package:amdefine 1.0.1\npackage: amdefine\n\n45、source package:ansi-gray 0.1.1\npackage: ansi-gray\n\n46、source package:ansi-regex 3.0.0\npackage: ansi-regex\n\n47、source package:ansi-styles 2.2.1\npackage: ansi-styles\n\n48、source package:ansi-wrap 0.1.0\npackage: ansi-wrap\n\n49、source package:anyks-lm 2.1.5\npackage: anyks-lm\n\n50、source package:apt 2.7.1\npackage: apt\n\n51、source package:archy 1.0.0\npackage: archy\n\n52、source package:arr-diff 4.0.0\npackage: arr-diff\n\n53、source package:arr-flatten 1.1.0\npackage: arr-flatten\n\n54、source package:arr-union 3.1.0\npackage: arr-union\n\n55、source package:array-differ 1.0.0\npackage: array-differ\n\n56、source package:array-each 1.0.1\npackage: array-each\n\n57、source package:array-find-index 1.0.2\npackage: array-find-index\n\n58、source package:array-slice 1.1.0\npackage: array-slice\n\n59、source package:array-uniq 1.0.3\npackage: array-uniq\n\n60、source package:array-unique 0.3.2\npackage: array-unique\n\n61、source package:asn1 0.2.4\npackage: asn1\n\n62、source package:asn1.js 5.4.1\npackage: asn1.js\n\n63、source package:assert 1.5.0\npackage: assert\n\n64、source package:assert-plus 1.0.0\npackage: assert-plus\n\n65、source package:assign-symbols 1.0.0\npackage: assign-symbols\n\n66、source package:async 2.6.3\npackage: async\n\n67、source package:async-each 1.0.3\npackage: async-each\n\n68、source package:async-foreach 0.1.3\npackage: async-foreach\n\n69、source package:async-validator 4.2.5\npackage: async-validator\n\n70、source package:asynckit 0.4.0\npackage: asynckit\n\n71、source package:atob 2.1.2\npackage: atob\n\n72、source package:aws4 1.8.0\npackage: aws4\n\n73、source package:babel-code-frame 6.26.0\npackage: babel-code-frame\n\n74、source package:babel-core 6.26.3\npackage: babel-core\n\n75、source package:babel-generator 6.26.1\npackage: babel-generator\n\n76、source package:babel-helper-builder-binary-assignment-operator-visitor 6.24.1\npackage: babel-helper-builder-binary-assignment-operator-visitor\n\n77、source package:babel-helper-builder-react-jsx 6.26.0\npackage: babel-helper-builder-react-jsx\n\n78、source package:babel-helper-call-delegate 6.24.1\npackage: babel-helper-call-delegate\n\n79、source package:babel-helper-define-map 6.26.0\npackage: babel-helper-define-map\n\n80、source package:babel-helper-explode-assignable-expression 6.24.1\npackage: babel-helper-explode-assignable-expression\n\n81、source package:babel-helper-function-name 6.24.1\npackage: babel-helper-function-name\n\n82、source package:babel-helper-get-function-arity 6.24.1\npackage: babel-helper-get-function-arity\n\n83、source package:babel-helper-hoist-variables 6.24.1\npackage: babel-helper-hoist-variables\n\n84、source package:babel-helper-optimise-call-expression 6.24.1\npackage: babel-helper-optimise-call-expression\n\n85、source package:babel-helper-regex 6.26.0\npackage: babel-helper-regex\n\n86、source package:babel-helper-remap-async-to-generator 6.24.1\npackage: babel-helper-remap-async-to-generator\n\n87、source package:babel-helper-replace-supers 6.24.1\npackage: babel-helper-replace-supers\n\n88、source package:babel-helpers 6.24.1\npackage: babel-helpers\n\n89、source package:babel-messages 6.23.0\npackage: babel-messages\n\n90、source package:babel-plugin-check-es2015-constants 6.22.0\npackage: babel-plugin-check-es2015-constants\n\n91、source package:babel-plugin-syntax-async-functions 6.13.0\npackage: babel-plugin-syntax-async-functions\n\n92、source package:babel-plugin-syntax-exponentiation-operator 6.13.0\npackage: babel-plugin-syntax-exponentiation-operator\n\n93、source package:babel-plugin-syntax-flow 6.18.0\npackage: babel-plugin-syntax-flow\n\n94、source package:babel-plugin-syntax-jsx 6.18.0\npackage: babel-plugin-syntax-jsx\n\n95、source package:babel-plugin-syntax-trailing-function-commas 6.22.0\npackage: babel-plugin-syntax-trailing-function-commas\n\n96、source package:babel-plugin-transform-async-to-generator 6.24.1\npackage: babel-plugin-transform-async-to-generator\n\n97、source package:babel-plugin-transform-es2015-arrow-functions 6.22.0\npackage: babel-plugin-transform-es2015-arrow-functions\n\n98、source package:babel-plugin-transform-es2015-block-scoped-functions 6.22.0\npackage: babel-plugin-transform-es2015-block-scoped-functions\n\n99、source package:babel-plugin-transform-es2015-block-scoping 6.26.0\npackage: babel-plugin-transform-es2015-block-scoping\n\n100、source package:babel-plugin-transform-es2015-classes 6.24.1\npackage: babel-plugin-transform-es2015-classes\n\n101、source package:babel-plugin-transform-es2015-computed-properties 6.24.1\npackage: babel-plugin-transform-es2015-computed-properties\n\n102、source package:babel-plugin-transform-es2015-destructuring 6.23.0\npackage: babel-plugin-transform-es2015-destructuring\n\n103、source package:babel-plugin-transform-es2015-duplicate-keys 6.24.1\npackage: babel-plugin-transform-es2015-duplicate-keys\n\n104、source package:babel-plugin-transform-es2015-for-of 6.23.0\npackage: babel-plugin-transform-es2015-for-of\n\n105、source package:babel-plugin-transform-es2015-function-name 6.24.1\npackage: babel-plugin-transform-es2015-function-name\n\n106、source package:babel-plugin-transform-es2015-literals 6.22.0\npackage: babel-plugin-transform-es2015-literals\n\n107、source package:babel-plugin-transform-es2015-modules-amd 6.24.1\npackage: babel-plugin-transform-es2015-modules-amd\n\n108、source package:babel-plugin-transform-es2015-modules-commonjs 6.26.2\npackage: babel-plugin-transform-es2015-modules-commonjs\n\n109、source package:babel-plugin-transform-es2015-modules-systemjs 6.24.1\npackage: babel-plugin-transform-es2015-modules-systemjs\n\n110、source package:babel-plugin-transform-es2015-modules-umd 6.24.1\npackage: babel-plugin-transform-es2015-modules-umd\n\n111、source package:babel-plugin-transform-es2015-object-super 6.24.1\npackage: babel-plugin-transform-es2015-object-super\n\n112、source package:babel-plugin-transform-es2015-parameters 6.24.1\npackage: babel-plugin-transform-es2015-parameters\n\n113、source package:babel-plugin-transform-es2015-shorthand-properties 6.24.1\npackage: babel-plugin-transform-es2015-shorthand-properties\n\n114、source package:babel-plugin-transform-es2015-spread 6.22.0\npackage: babel-plugin-transform-es2015-spread\n\n115、source package:babel-plugin-transform-es2015-sticky-regex 6.24.1\npackage: babel-plugin-transform-es2015-sticky-regex\n\n116、source package:babel-plugin-transform-es2015-template-literals 6.22.0\npackage: babel-plugin-transform-es2015-template-literals\n\n117、source package:babel-plugin-transform-es2015-typeof-symbol 6.23.0\npackage: babel-plugin-transform-es2015-typeof-symbol\n\n118、source package:babel-plugin-transform-es2015-unicode-regex 6.24.1\npackage: babel-plugin-transform-es2015-unicode-regex\n\n119、source package:babel-plugin-transform-exponentiation-operator 6.24.1\npackage: babel-plugin-transform-exponentiation-operator\n\n120、source package:babel-plugin-transform-flow-strip-types 6.22.0\npackage: babel-plugin-transform-flow-strip-types\n\n121、source package:babel-plugin-transform-react-display-name 6.25.0\npackage: babel-plugin-transform-react-display-name\n\n122、source package:babel-plugin-transform-react-jsx 6.24.1\npackage: babel-plugin-transform-react-jsx\n\n123、source package:babel-plugin-transform-react-jsx-self 6.22.0\npackage: babel-plugin-transform-react-jsx-self\n\n124、source package:babel-plugin-transform-react-jsx-source 6.22.0\npackage: babel-plugin-transform-react-jsx-source\n\n125、source package:babel-plugin-transform-regenerator 6.26.0\npackage: babel-plugin-transform-regenerator\n\n126、source package:babel-plugin-transform-strict-mode 6.24.1\npackage: babel-plugin-transform-strict-mode\n\n127、source package:babel-polyfill 6.26.0\npackage: babel-polyfill\n\n128、source package:babel-preset-env 1.7.0\npackage: babel-preset-env\n\n129、source package:babel-preset-flow 6.23.0\npackage: babel-preset-flow\n\n130、source package:babel-preset-react 6.24.1\npackage: babel-preset-react\n\n131、source package:babel-register 6.26.0\npackage: babel-register\n\n132、source package:babel-runtime 6.26.0\npackage: babel-runtime\n\n133、source package:babel-template 6.26.0\npackage: babel-template\n\n134、source package:babel-traverse 6.26.0\npackage: babel-traverse\n\n135、source package:babel-types 6.26.0\npackage: babel-types\n\n136、source package:babelify 8.0.0\npackage: babelify\n\n137、source package:babylon 6.18.0\npackage: babylon\n\n138、source package:balanced-match 1.0.2\npackage: balanced-match\n\n139、source package:base 0.11.2\npackage: base\n\n140、source package:base64-js 1.3.1\npackage: base64-js\n\n141、source package:beeper 1.1.1\npackage: beeper\n\n142、source package:big.js 5.2.2\npackage: big.js\n\n143、source package:binary-extensions 2.2.0\npackage: binary-extensions\n\n144、source package:bl 1.2.2\npackage: bl\n\n145、source package:bn.js 5.1.3\npackage: bn.js\n\n146、source package:brace-expansion 2.0.1\npackage: brace-expansion\n\n147、source package:braces 3.0.2\npackage: braces\n\n148、source package:brorand 1.1.0\npackage: brorand\n\n149、source package:browser-pack 6.1.0\npackage: browser-pack\n\n150、source package:browser-resolve 1.11.3\npackage: browser-resolve\n\n151、source package:browserify 14.5.0\npackage: browserify\n\n152、source package:browserify-aes 1.2.0\npackage: browserify-aes\n\n153、source package:browserify-cipher 1.0.1\npackage: browserify-cipher\n\n154、source package:browserify-des 1.0.2\npackage: browserify-des\n\n155、source package:browserify-rsa 4.0.1\npackage: browserify-rsa\n\n156、source package:browserify-zlib 0.2.0\npackage: browserify-zlib\n\n157、source package:browserslist 3.2.8\npackage: browserslist\n\n158、source package:buffer 5.4.2\npackage: buffer\n\n159、source package:buffer-from 1.1.2\npackage: buffer-from\n\n160、source package:buffer-xor 1.0.3\npackage: buffer-xor\n\n161、source package:builtin-status-codes 3.0.0\npackage: builtin-status-codes\n\n162、source package:cache-base 1.0.1\npackage: cache-base\n\n163、source package:cached-path-relative 1.0.2\npackage: cached-path-relative\n\n164、source package:camelcase 4.1.0\npackage: camelcase\n\n165、source package:camelcase-keys 2.1.0\npackage: camelcase-keys\n\n166、source package:center-align 0.1.3\npackage: center-align\n\n167、source package:chalk 1.1.3\npackage: chalk\n\n168、source package:cheerio 1.0.0-rc.3\npackage: cheerio\n\n169、source package:chokidar 3.4.3\npackage: chokidar\n\n170、source package:cipher-base 1.0.4\npackage: cipher-base\n\n171、source package:class-utils 0.3.6\npackage: class-utils\n\n172、source package:clone 2.1.2\npackage: clone\n\n173、source package:clone-buffer 1.0.0\npackage: clone-buffer\n\n174、source package:clone-stats 1.0.0\npackage: clone-stats\n\n175、source package:cloneable-readable 1.1.3\npackage: cloneable-readable\n\n176、source package:code-point-at 1.1.0\npackage: code-point-at\n\n177、source package:collection-visit 1.0.0\npackage: collection-visit\n\n178、source package:combine-source-map 0.8.0\npackage: combine-source-map\n\n179、source package:combined-stream 1.0.8\npackage: combined-stream\n\n180、source package:commander 2.20.3\npackage: commander\n\n181、source package:component-emitter 1.3.0\npackage: component-emitter\n\n182、source package:compute-scroll-into-view 1.0.11\npackage: compute-scroll-into-view\n\n183、source package:concat-map 0.0.1\npackage: concat-map\n\n184、source package:concat-stream 1.6.2\npackage: concat-stream\n\n185、source package:console-browserify 1.2.0\npackage: console-browserify\n\n186、source package:constants-browserify 1.0.0\npackage: constants-browserify\n\n187、source package:convert-source-map 1.6.0\npackage: convert-source-map\n\n188、source package:cookiecutter-golang d372aa0\npackage: cookiecutter-golang\n\n189、source package:coost v3.0.0\npackage: coost\n\n190、source package:copy-descriptor 0.1.1\npackage: copy-descriptor\n\n191、source package:core-js 3.27.2\npackage: core-js\n\n192、source package:core-util-is 1.0.2\npackage: core-util-is\n\n193、source package:create-ecdh 4.0.4\npackage: create-ecdh\n\n194、source package:create-hash 1.2.0\npackage: create-hash\n\n195、source package:create-hmac 1.1.7\npackage: create-hmac\n\n196、source package:crelt 1.0.6\npackage: crelt\n\n197、source package:cross-spawn 5.1.0\npackage: cross-spawn\n\n198、source package:crypto-browserify 3.12.0\npackage: crypto-browserify\n\n199、source package:currently-unhandled 0.4.1\npackage: currently-unhandled\n\n200、source package:dashdash 1.14.1\npackage: dashdash\n\n201、source package:date-now 0.1.4\npackage: date-now\n\n202、source package:dateformat 2.2.0\npackage: dateformat\n\n203、source package:dayjs 1.11.5\npackage: dayjs\n\n204、source package:debug 4.3.4\npackage: debug\n\n205、source package:decamelize 1.2.0\npackage: decamelize\n\n206、source package:decode-uri-component 0.2.0\npackage: decode-uri-component\n\n207、source package:defaults 1.0.3\npackage: defaults\n\n208、source package:define-property 2.0.2\npackage: define-property\n\n209、source package:defined 1.0.0\npackage: defined\n\n210、source package:delayed-stream 1.0.0\npackage: delayed-stream\n\n211、source package:delegates 1.0.0\npackage: delegates\n\n212、source package:deprecated 0.0.1\npackage: deprecated\n\n213、source package:deps-sort 2.0.0\npackage: deps-sort\n\n214、source package:des.js 1.0.1\npackage: des.js\n\n215、source package:detect-file 1.0.0\npackage: detect-file\n\n216、source package:detect-indent 4.0.0\npackage: detect-indent\n\n217、source package:detective 4.7.1\npackage: detective\n\n218、source package:diffie-hellman 5.0.3\npackage: diffie-hellman\n\n219、source package:dom-css 2.1.0\npackage: dom-css\n\n220、source package:dom-serializer 0.1.1\npackage: dom-serializer\n\n221、source package:domain-browser 1.2.0\npackage: domain-browser\n\n222、source package:ecc-jsbn 0.1.2\npackage: ecc-jsbn\n\n223、source package:element-plus 2.2.17\npackage: element-plus\n\n224、source package:elliptic 6.5.3\npackage: elliptic\n\n225、source package:emojis-list 3.0.0\npackage: emojis-list\n\n226、source package:end-of-stream 0.1.5\npackage: end-of-stream\n\n227、source package:enhanced-resolve 3.4.1\npackage: enhanced-resolve\n\n228、source package:errno 0.1.7\npackage: errno\n\n229、source package:error-ex 1.3.2\npackage: error-ex\n\n230、source package:es6-iterator 2.0.3\npackage: es6-iterator\n\n231、source package:es6-map 0.1.5\npackage: es6-map\n\n232、source package:es6-set 0.1.5\npackage: es6-set\n\n233、source package:es6-symbol 3.1.1\npackage: es6-symbol\n\n234、source package:esbuild 0.15.9\npackage: esbuild\n\n235、source package:esbuild-android-64 0.15.9\npackage: esbuild-android-64\n\n236、source package:esbuild-android-arm64 0.15.9\npackage: esbuild-android-arm64\n\n237、source package:esbuild-darwin-64 0.15.9\npackage: esbuild-darwin-64\n\n238、source package:esbuild-darwin-arm64 0.15.9\npackage: esbuild-darwin-arm64\n\n239、source package:esbuild-freebsd-64 0.15.9\npackage: esbuild-freebsd-64\n\n240、source package:esbuild-freebsd-arm64 0.15.9\npackage: esbuild-freebsd-arm64\n\n241、source package:esbuild-linux-32 0.15.9\npackage: esbuild-linux-32\n\n242、source package:esbuild-linux-64 0.15.9\npackage: esbuild-linux-64\n\n243、source package:esbuild-linux-arm 0.15.9\npackage: esbuild-linux-arm\n\n244、source package:esbuild-linux-arm64 0.15.9\npackage: esbuild-linux-arm64\n\n245、source package:esbuild-linux-mips64le 0.15.9\npackage: esbuild-linux-mips64le\n\n246、source package:esbuild-linux-ppc64le 0.15.9\npackage: esbuild-linux-ppc64le\n\n247、source package:esbuild-linux-riscv64 0.15.9\npackage: esbuild-linux-riscv64\n\n248、source package:esbuild-linux-s390x 0.15.9\npackage: esbuild-linux-s390x\n\n249、source package:esbuild-netbsd-64 0.15.9\npackage: esbuild-netbsd-64\n\n250、source package:esbuild-openbsd-64 0.15.9\npackage: esbuild-openbsd-64\n\n251、source package:esbuild-sunos-64 0.15.9\npackage: esbuild-sunos-64\n\n252、source package:esbuild-windows-32 0.15.9\npackage: esbuild-windows-32\n\n253、source package:esbuild-windows-64 0.15.9\npackage: esbuild-windows-64\n\n254、source package:esbuild-windows-arm64 0.15.9\npackage: esbuild-windows-arm64\n\n255、source package:escape-html 1.0.3\npackage: escape-html\n\n256、source package:escape-string-regexp 5.0.0\npackage: escape-string-regexp\n\n257、source package:estree-walker 2.0.2\npackage: estree-walker\n\n258、source package:event-emitter 0.3.5\npackage: event-emitter\n\n259、source package:events 3.2.0\npackage: events\n\n260、source package:evp_bytestokey 1.0.3\npackage: evp_bytestokey\n\n261、source package:execa 0.7.0\npackage: execa\n\n262、source package:expand-brackets 2.1.4\npackage: expand-brackets\n\n263、source package:expand-tilde 2.0.2\npackage: expand-tilde\n\n264、source package:expose-loader 1.0.1\npackage: expose-loader\n\n265、source package:extend 3.0.2\npackage: extend\n\n266、source package:extend-shallow 3.0.2\npackage: extend-shallow\n\n267、source package:extglob 2.0.4\npackage: extglob\n\n268、source package:extsprintf 1.3.0\npackage: extsprintf\n\n269、source package:fancy-log 1.3.3\npackage: fancy-log\n\n270、source package:fast-deep-equal 3.1.3\npackage: fast-deep-equal\n\n271、source package:fast-glob 3.2.12\npackage: fast-glob\n\n272、source package:fast-json-stable-stringify 2.1.0\npackage: fast-json-stable-stringify\n\n273、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n274、source package:fill-range 7.0.1\npackage: fill-range\n\n275、source package:find-index 0.1.1\npackage: find-index\n\n276、source package:find-up 2.1.0\npackage: find-up\n\n277、source package:findup-sync 2.0.0\npackage: findup-sync\n\n278、source package:fined 1.2.0\npackage: fined\n\n279、source package:first-chunk-stream 1.0.0\npackage: first-chunk-stream\n\n280、source package:flagged-respawn 1.0.1\npackage: flagged-respawn\n\n281、source package:for-in 1.0.2\npackage: for-in\n\n282、source package:for-own 1.0.0\npackage: for-own\n\n283、source package:form-data 2.3.3\npackage: form-data\n\n284、source package:fragment-cache 0.2.1\npackage: fragment-cache\n\n285、source package:fs.realpath 1.0.0\npackage: fs.realpath\n\n286、source package:fsevents 2.3.2\npackage: fsevents\n\n287、source package:function-bind 1.1.1\npackage: function-bind\n\n288、source package:gaze 1.1.3\npackage: gaze\n\n289、source package:get-stdin 4.0.1\npackage: get-stdin\n\n290、source package:get-stream 3.0.0\npackage: get-stream\n\n291、source package:get-value 2.0.6\npackage: get-value\n\n292、source package:getpass 0.1.7\npackage: getpass\n\n293、source package:gg v1.3.0\npackage: gg\n\n294、source package:gin v1.5.0\npackage: gin\n\n295、source package:git 4.3.20-9\npackage: git\n\n296、source package:gitea v1.19.3\npackage: gitea\n\n297、source package:glob-stream 3.1.18\npackage: glob-stream\n\n298、source package:glob-watcher 0.0.6\npackage: glob-watcher\n\n299、source package:glob2base 0.0.12\npackage: glob2base\n\n300、source package:global-modules 1.0.0\npackage: global-modules\n\n301、source package:global-prefix 1.0.2\npackage: global-prefix\n\n302、source package:globals 9.18.0\npackage: globals\n\n303、source package:globule 1.2.1\npackage: globule\n\n304、source package:glogg 1.0.2\npackage: glogg\n\n305、source package:go v1.1.7\npackage: go\n\n306、source package:go-isatty v0.0.9\npackage: go-isatty\n\n307、source package:go-pinyin v0.19.0\npackage: go-pinyin\n\n308、source package:go-wav v0.3.2\npackage: go-wav\n\n309、source package:go-windows-terminal-sequences v1.0.1\npackage: go-windows-terminal-sequences\n\n310、source package:goconvey v1.8.1\npackage: goconvey\n\n311、source package:golang-github-gosexy-gettext-dev 0~git20130221-2.1_all\npackage: golang-github-gosexy-gettext-dev\n\n312、source package:gstreamer1.0-fluendo-mp3 0.10.32.debian-1_s390x\npackage: gstreamer1.0-fluendo-mp3\n\n313、source package:gstreamer1.0-plugins-base 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-base\n\n314、source package:gstreamer1.0-plugins-good 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-good\n\n315、source package:gstreamer1.0-plugins-ugly 1.9.90-1\npackage: gstreamer1.0-plugins-ugly\n\n316、source package:gstreamer1.0-pulseaudio 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-pulseaudio\n\n317、source package:gstreamer1.0-x 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-x\n\n318、source package:gulp 3.9.1\npackage: gulp\n\n319、source package:gulp-concat 2.6.1\npackage: gulp-concat\n\n320、source package:gulp-rename 1.4.0\npackage: gulp-rename\n\n321、source package:gulp-sass 3.2.1\npackage: gulp-sass\n\n322、source package:gulp-util 3.0.8\npackage: gulp-util\n\n323、source package:gulplog 1.0.0\npackage: gulplog\n\n324、source package:har-validator 5.1.3\npackage: har-validator\n\n325、source package:has 1.0.3\npackage: has\n\n326、source package:has-ansi 2.0.0\npackage: has-ansi\n\n327、source package:has-flag 2.0.0\npackage: has-flag\n\n328、source package:has-gulplog 0.1.0\npackage: has-gulplog\n\n329、source package:has-value 1.0.0\npackage: has-value\n\n330、source package:has-values 1.0.0\npackage: has-values\n\n331、source package:hash-base 3.1.0\npackage: hash-base\n\n332、source package:hash.js 1.1.7\npackage: hash.js\n\n333、source package:history 4.9.0\npackage: history\n\n334、source package:hmac-drbg 1.0.1\npackage: hmac-drbg\n\n335、source package:home-or-tmp 2.0.0\npackage: home-or-tmp\n\n336、source package:homedir-polyfill 1.0.3\npackage: homedir-polyfill\n\n337、source package:htmlescape 1.1.1\npackage: htmlescape\n\n338、source package:htmlparser2 3.10.1\npackage: htmlparser2\n\n339、source package:http-signature 1.2.0\npackage: http-signature\n\n340、source package:https-browserify 1.0.0\npackage: https-browserify\n\n341、source package:image v0.10.0\npackage: image\n\n342、source package:immutable 4.1.0\npackage: immutable\n\n343、source package:indent-string 2.1.0\npackage: indent-string\n\n344、source package:indexof 0.0.1\npackage: indexof\n\n345、source package:inline-source-map 0.6.2\npackage: inline-source-map\n\n346、source package:insert-module-globals 7.2.0\npackage: insert-module-globals\n\n347、source package:interpret 1.4.0\npackage: interpret\n\n348、source package:invariant 2.2.4\npackage: invariant\n\n349、source package:invert-kv 1.0.0\npackage: invert-kv\n\n350、source package:is-absolute 1.0.0\npackage: is-absolute\n\n351、source package:is-accessor-descriptor 1.0.0\npackage: is-accessor-descriptor\n\n352、source package:is-arrayish 0.2.1\npackage: is-arrayish\n\n353、source package:is-binary-path 2.1.0\npackage: is-binary-path\n\n354、source package:is-buffer 1.1.6\npackage: is-buffer\n\n355、source package:is-core-module 2.10.0\npackage: is-core-module\n\n356、source package:is-data-descriptor 1.0.0\npackage: is-data-descriptor\n\n357、source package:is-descriptor 1.0.2\npackage: is-descriptor\n\n358、source package:is-extendable 1.0.1\npackage: is-extendable\n\n359、source package:is-extglob 2.1.1\npackage: is-extglob\n\n360、source package:is-finite 1.0.2\npackage: is-finite\n\n361、source package:is-fullwidth-code-point 2.0.0\npackage: is-fullwidth-code-point\n\n362、source package:is-glob 4.0.3\npackage: is-glob\n\n363、source package:is-number 7.0.0\npackage: is-number\n\n364、source package:is-plain-object 2.0.4\npackage: is-plain-object\n\n365、source package:is-relative 1.0.0\npackage: is-relative\n\n366、source package:is-stream 1.1.0\npackage: is-stream\n\n367、source package:is-typedarray 1.0.0\npackage: is-typedarray\n\n368、source package:is-unc-path 1.0.0\npackage: is-unc-path\n\n369、source package:is-utf8 0.2.1\npackage: is-utf8\n\n370、source package:is-windows 1.0.2\npackage: is-windows\n\n371、source package:isarray 1.0.0\npackage: isarray\n\n372、source package:isobject 3.0.1\npackage: isobject\n\n373、source package:isstream 0.1.2\npackage: isstream\n\n374、source package:java_fpe_test 0.1.2\npackage: java_fpe_test\n\n375、source package:jq 1.6-2.1\npackage: jq\n\n376、source package:jquery 3.6.1\npackage: jquery\n\n377、source package:js 0.1.0\npackage: js\n\n378、source package:js-tokens 3.0.2\npackage: js-tokens\n\n379、source package:jsbn 0.1.1\npackage: jsbn\n\n380、source package:jsesc 1.3.0\npackage: jsesc\n\n381、source package:json v3.7.0\npackage: json\n\n382、source package:json-loader 0.5.7\npackage: json-loader\n\n383、source package:json-schema-traverse 0.4.1\npackage: json-schema-traverse\n\n384、source package:json-stable-stringify 0.0.1\npackage: json-stable-stringify\n\n385、source package:json5 2.1.3\npackage: json5\n\n386、source package:jsonc-parser 3.2.0\npackage: jsonc-parser\n\n387、source package:jsonparse 1.3.1\npackage: jsonparse\n\n388、source package:jsprim 1.4.1\npackage: jsprim\n\n389、source package:jwt-cpp v0.5.0\npackage: jwt-cpp\n\n390、source package:keypress 0.1.0\npackage: keypress\n\n391、source package:kind-of 6.0.3\npackage: kind-of\n\n392、source package:labeled-stream-splicer 2.0.2\npackage: labeled-stream-splicer\n\n393、source package:lazy-cache 1.0.4\npackage: lazy-cache\n\n394、source package:lcid 1.0.0\npackage: lcid\n\n395、source package:libappimage-dev 0.1.9+dfsg-1_s390x\npackage: libappimage-dev\n\n396、source package:libboost-dev 1.71.0.3_s390x\npackage: libboost-dev\n\n397、source package:libboost-filesystem-dev 1.71.0.3_s390x\npackage: libboost-filesystem-dev\n\n398、source package:libboost-serialization-dev 1.71.0.3_s390x\npackage: libboost-serialization-dev\n\n399、source package:libboost-system-dev 1.71.0.3_s390x\npackage: libboost-system-dev\n\n400、source package:libdrm-dev 2.4.99-1_s390x\npackage: libdrm-dev\n\n401、source package:libegl1-mesa-dev 8.0.5-4+deb7u2_sparc\npackage: libegl1-mesa-dev\n\n402、source package:libgbm-dev 8.0.5-4+deb7u2_sparc\npackage: libgbm-dev\n\n403、source package:libglib2.0-dev 2.64.4-1_s390x\npackage: libglib2.0-dev\n\n404、source package:libgstreamer-plugins-base1.0-0 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-0\n\n405、source package:libgstreamer-plugins-base1.0-dev 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-dev\n\n406、source package:libjson-c3 0.12.1-1.3_s390x\npackage: libjson-c3\n\n407、source package:libjson-rpc-cpp v1.4.1\npackage: libjson-rpc-cpp\n\n408、source package:liblcms2-dev 2.9-4_s390x\npackage: liblcms2-dev\n\n409、source package:libportaudio2 19.6.0-1_s390x\npackage: libportaudio2\n\n410、source package:libx11-dev 2:1.8.4-2+deb12u1\npackage: libx11-dev\n\n411、source package:libx11-xcb-dev 1.6.9-2_s390x\npackage: libx11-xcb-dev\n\n412、source package:libxcb-composite0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-composite0-dev\n\n413、source package:libxcb-cursor-dev 0.1.1-4_s390x\npackage: libxcb-cursor-dev\n\n414、source package:libxcb-damage0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-damage0-dev\n\n415、source package:libxcb-ewmh-dev 0.4.1-1_s390x\npackage: libxcb-ewmh-dev\n\n416、source package:libxcb-image0-dev 0.4.0-1_s390x\npackage: libxcb-image0-dev\n\n417、source package:libxcb-keysyms1-dev 0.4.0-1_s390x\npackage: libxcb-keysyms1-dev\n\n418、source package:libxcb-randr0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-randr0-dev\n\n419、source package:libxcb-record0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-record0-dev\n\n420、source package:libxcb-render-util0-dev 0.3.9-1_s390x\npackage: libxcb-render-util0-dev\n\n421、source package:libxcb-render0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-render0-dev\n\n422、source package:libxcb-res0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-res0-dev\n\n423、source package:libxcb-shape0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-shape0-dev\n\n424、source package:libxcb-sync-dev 1.14-2_s390x\npackage: libxcb-sync-dev\n\n425、source package:libxcb-util0 0.3.8-3_s390x\npackage: libxcb-util0\n\n426、source package:libxcb-util0-dev 0.3.8-3_s390x\npackage: libxcb-util0-dev\n\n427、source package:libxcb-util1 0.4.0-1\npackage: libxcb-util1\n\n428、source package:libxcb-xfixes0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-xfixes0-dev\n\n429、source package:libxcb-xinerama0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-xinerama0-dev\n\n430、source package:libxcb-xinput-dev 1.14-2_s390x\npackage: libxcb-xinput-dev\n\n431、source package:libxcb-xkb-dev 1.14-2_s390x\npackage: libxcb-xkb-dev\n\n432、source package:libxcb-xtest0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-xtest0-dev\n\n433、source package:libxcb1-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb1-dev\n\n434、source package:libxext-dev 1.3.3-1_s390x\npackage: libxext-dev\n\n435、source package:libxfixes-dev 5.0.3-2_s390x\npackage: libxfixes-dev\n\n436、source package:libxinerama-dev 2:1.1.4-3\npackage: libxinerama-dev\n\n437、source package:libxkbcommon-dev 0.9.1-1_s390x\npackage: libxkbcommon-dev\n\n438、source package:libxkbcommon-x11-dev 0.9.1-1_s390x\npackage: libxkbcommon-x11-dev\n\n439、source package:libxss-dev 1.2.3-1_s390x\npackage: libxss-dev\n\n440、source package:libxss1 1.2.3-1_s390x\npackage: libxss1\n\n441、source package:libxtst-dev 1.2.3-1_s390x\npackage: libxtst-dev\n\n442、source package:liftoff 2.5.0\npackage: liftoff\n\n443、source package:load-json-file 2.0.0\npackage: load-json-file\n\n444、source package:loader-runner 2.4.0\npackage: loader-runner\n\n445、source package:loader-utils 2.0.0\npackage: loader-utils\n\n446、source package:local-pkg 0.4.3\npackage: local-pkg\n\n447、source package:locales v0.12.1\npackage: locales\n\n448、source package:locate-path 2.0.0\npackage: locate-path\n\n449、source package:lodash 4.17.21\npackage: lodash\n\n450、source package:lodash-es 4.17.21\npackage: lodash-es\n\n451、source package:lodash-unified 1.0.2\npackage: lodash-unified\n\n452、source package:lodash._basecopy 3.0.1\npackage: lodash._basecopy\n\n453、source package:lodash._basetostring 3.0.1\npackage: lodash._basetostring\n\n454、source package:lodash._basevalues 3.0.0\npackage: lodash._basevalues\n\n455、source package:lodash._getnative 3.9.1\npackage: lodash._getnative\n\n456、source package:lodash._isiterateecall 3.0.9\npackage: lodash._isiterateecall\n\n457、source package:lodash._reescape 3.0.0\npackage: lodash._reescape\n\n458、source package:lodash._reevaluate 3.0.0\npackage: lodash._reevaluate\n\n459、source package:lodash._reinterpolate 3.0.0\npackage: lodash._reinterpolate\n\n460、source package:lodash._root 3.0.1\npackage: lodash._root\n\n461、source package:lodash.clonedeep 4.5.0\npackage: lodash.clonedeep\n\n462、source package:lodash.escape 3.2.0\npackage: lodash.escape\n\n463、source package:lodash.isarguments 3.1.0\npackage: lodash.isarguments\n\n464、source package:lodash.isarray 3.0.4\npackage: lodash.isarray\n\n465、source package:lodash.keys 3.1.2\npackage: lodash.keys\n\n466、source package:lodash.memoize 3.0.4\npackage: lodash.memoize\n\n467、source package:lodash.restparam 3.6.1\npackage: lodash.restparam\n\n468、source package:lodash.template 3.6.2\npackage: lodash.template\n\n469、source package:lodash.templatesettings 3.1.1\npackage: lodash.templatesettings\n\n470、source package:logrus v1.9.3\npackage: logrus\n\n471、source package:longest 1.0.1\npackage: longest\n\n472、source package:loose-envify 1.4.0\npackage: loose-envify\n\n473、source package:loud-rejection 1.6.0\npackage: loud-rejection\n\n474、source package:magic-string 0.27.0\npackage: magic-string\n\n475、source package:make-iterator 1.0.1\npackage: make-iterator\n\n476、source package:map-cache 0.2.2\npackage: map-cache\n\n477、source package:map-obj 1.0.1\npackage: map-obj\n\n478、source package:map-visit 1.0.0\npackage: map-visit\n\n479、source package:marked 1.2.3\npackage: marked\n\n480、source package:md5.js 1.3.5\npackage: md5.js\n\n481、source package:mem 1.1.0\npackage: mem\n\n482、source package:memoize-one 6.0.0\npackage: memoize-one\n\n483、source package:memory-fs 0.4.1\npackage: memory-fs\n\n484、source package:meow 3.7.0\npackage: meow\n\n485、source package:merge2 1.4.1\npackage: merge2\n\n486、source package:mesa-utils 9.0.0-1\npackage: mesa-utils\n\n487、source package:mesa-va-drivers 20.1.2-1_armel\npackage: mesa-va-drivers\n\n488、source package:mesa-vdpau-drivers 20.1.2-1_mipsel\npackage: mesa-vdpau-drivers\n\n489、source package:mesa-vulkan-drivers 20.1.2-1_mips64el\npackage: mesa-vulkan-drivers\n\n490、source package:micromatch 3.1.10\npackage: micromatch\n\n491、source package:miller-rabin 4.0.1\npackage: miller-rabin\n\n492、source package:mime-db 1.40.0\npackage: mime-db\n\n493、source package:mime-types 2.1.24\npackage: mime-types\n\n494、source package:mimic-fn 1.2.0\npackage: mimic-fn\n\n495、source package:minimalistic-crypto-utils 1.0.1\npackage: minimalistic-crypto-utils\n\n496、source package:minimatch 0.2.14\npackage: minimatch\n\n497、source package:minimist 1.2.5\npackage: minimist\n\n498、source package:mitt 3.0.0\npackage: mitt\n\n499、source package:mixin-deep 1.3.2\npackage: mixin-deep\n\n500、source package:mkdirp 0.5.5\npackage: mkdirp\n\n501、source package:mlly 1.4.2\npackage: mlly\n\n502、source package:module-deps 4.1.1\npackage: module-deps\n\n503、source package:moment 2.29.4\npackage: moment\n\n504、source package:mqt.qfr 1.10.0\npackage: mqt.qfr\n\n505、source package:ms 2.1.2\npackage: ms\n\n506、source package:multipipe 0.1.2\npackage: multipipe\n\n507、source package:nan 2.14.0\npackage: nan\n\n508、source package:nanomatch 1.2.13\npackage: nanomatch\n\n509、source package:native v1.1.0\npackage: native\n\n510、source package:ncurses-base 6.2-1_all\npackage: ncurses-base\n\n511、source package:neo-async 2.6.2\npackage: neo-async\n\n512、source package:netlink v1.7.2\npackage: netlink\n\n513、source package:next-tick 1.0.0\npackage: next-tick\n\n514、source package:nlohmann_json nlohmann_json-3.7.3\npackage: nlohmann_json\n\n515、source package:node 8.16.1\npackage: node\n\n516、source package:node-gyp 3.8.0\npackage: node-gyp\n\n517、source package:node-libs-browser 2.2.1\npackage: node-libs-browser\n\n518、source package:node-sass 4.12.0\npackage: node-sass\n\n519、source package:normalize-path 3.0.0\npackage: normalize-path\n\n520、source package:npm-run-path 2.0.2\npackage: npm-run-path\n\n521、source package:number-is-nan 1.0.1\npackage: number-is-nan\n\n522、source package:object-assign 4.1.1\npackage: object-assign\n\n523、source package:object-copy 0.1.0\npackage: object-copy\n\n524、source package:object-visit 1.0.1\npackage: object-visit\n\n525、source package:object.defaults 1.1.0\npackage: object.defaults\n\n526、source package:object.map 1.0.1\npackage: object.map\n\n527、source package:object.pick 1.3.0\npackage: object.pick\n\n528、source package:objx v0.5.2\npackage: objx\n\n529、source package:orchestrator 0.3.8\npackage: orchestrator\n\n530、source package:ordered-read-streams 0.1.0\npackage: ordered-read-streams\n\n531、source package:os-browserify 0.3.0\npackage: os-browserify\n\n532、source package:os-config 0.2.3\npackage: os-config\n\n533、source package:os-homedir 1.0.2\npackage: os-homedir\n\n534、source package:os-locale 2.1.0\npackage: os-locale\n\n535、source package:os-tmpdir 1.0.2\npackage: os-tmpdir\n\n536、source package:p-finally 1.0.0\npackage: p-finally\n\n537、source package:p-limit 1.3.0\npackage: p-limit\n\n538、source package:p-locate 2.0.0\npackage: p-locate\n\n539、source package:p-try 1.0.0\npackage: p-try\n\n540、source package:pako 1.0.11\npackage: pako\n\n541、source package:parents 1.0.1\npackage: parents\n\n542、source package:parse-filepath 1.0.2\npackage: parse-filepath\n\n543、source package:parse-json 2.2.0\npackage: parse-json\n\n544、source package:parse-node-version 1.0.1\npackage: parse-node-version\n\n545、source package:parse-passwd 1.0.0\npackage: parse-passwd\n\n546、source package:parse5 3.0.3\npackage: parse5\n\n547、source package:pascalcase 0.1.1\npackage: pascalcase\n\n548、source package:path-browserify 0.0.1\npackage: path-browserify\n\n549、source package:path-dirname 1.0.2\npackage: path-dirname\n\n550、source package:path-exists 3.0.0\npackage: path-exists\n\n551、source package:path-is-absolute 1.0.1\npackage: path-is-absolute\n\n552、source package:path-key 2.0.1\npackage: path-key\n\n553、source package:path-parse 1.0.7\npackage: path-parse\n\n554、source package:path-platform 0.11.15\npackage: path-platform\n\n555、source package:path-root 0.1.1\npackage: path-root\n\n556、source package:path-root-regex 0.1.2\npackage: path-root-regex\n\n557、source package:path-to-regexp 1.7.0\npackage: path-to-regexp\n\n558、source package:path-type 2.0.0\npackage: path-type\n\n559、source package:pathe 1.1.1\npackage: pathe\n\n560、source package:pbkdf2 3.1.1\npackage: pbkdf2\n\n561、source package:performance-now 2.1.0\npackage: performance-now\n\n562、source package:picomatch 2.3.1\npackage: picomatch\n\n563、source package:pify 2.3.0\npackage: pify\n\n564、source package:pinia 2.0.22\npackage: pinia\n\n565、source package:pinkie 2.0.4\npackage: pinkie\n\n566、source package:pinkie-promise 2.0.1\npackage: pinkie-promise\n\n567、source package:pipewire-pulse 0.3.71\npackage: pipewire-pulse\n\n568、source package:pkg-types 1.0.3\npackage: pkg-types\n\n569、source package:platform/external/fmtlib upstream-master\npackage: platform/external/fmtlib\n\n570、source package:portaudio19-dev 19.6.0-1_s390x\npackage: portaudio19-dev\n\n571、source package:posix-character-classes 0.1.1\npackage: posix-character-classes\n\n572、source package:prefix-style 2.0.1\npackage: prefix-style\n\n573、source package:pretty v0.2.1\npackage: pretty\n\n574、source package:pretty-hrtime 1.0.3\npackage: pretty-hrtime\n\n575、source package:private 0.1.8\npackage: private\n\n576、source package:process 0.11.10\npackage: process\n\n577、source package:process-nextick-args 2.0.1\npackage: process-nextick-args\n\n578、source package:promxy v0.0.81\npackage: promxy\n\n579、source package:prop-types 15.7.2\npackage: prop-types\n\n580、source package:prr 1.0.1\npackage: prr\n\n581、source package:psl 1.4.0\npackage: psl\n\n582、source package:public-encrypt 4.0.3\npackage: public-encrypt\n\n583、source package:punycode 2.1.1\npackage: punycode\n\n584、source package:python3 3.8.2-3_s390x\npackage: python3\n\n585、source package:python3-dbus 1.2.8-3_s390x\npackage: python3-dbus\n\n586、source package:querystring 0.2.0\npackage: querystring\n\n587、source package:querystring-es3 0.2.1\npackage: querystring-es3\n\n588、source package:queue-microtask 1.2.3\npackage: queue-microtask\n\n589、source package:raf 3.4.1\npackage: raf\n\n590、source package:randombytes 2.1.0\npackage: randombytes\n\n591、source package:randomfill 1.0.4\npackage: randomfill\n\n592、source package:react 16.9.0\npackage: react\n\n593、source package:react-custom-scrollbars 4.2.1\npackage: react-custom-scrollbars\n\n594、source package:react-dom 16.9.0\npackage: react-dom\n\n595、source package:react-is 16.9.0\npackage: react-is\n\n596、source package:react-router 4.3.1\npackage: react-router\n\n597、source package:react-router-dom 4.3.1\npackage: react-router-dom\n\n598、source package:read-only-stream 2.0.0\npackage: read-only-stream\n\n599、source package:read-pkg 2.0.0\npackage: read-pkg\n\n600、source package:read-pkg-up 2.0.0\npackage: read-pkg-up\n\n601、source package:readable-stream 3.6.0\npackage: readable-stream\n\n602、source package:readdirp 3.6.0\npackage: readdirp\n\n603、source package:rechoir 0.6.2\npackage: rechoir\n\n604、source package:redent 1.0.0\npackage: redent\n\n605、source package:regenerate 1.4.0\npackage: regenerate\n\n606、source package:regenerator-runtime 0.13.3\npackage: regenerator-runtime\n\n607、source package:regex-not 1.0.2\npackage: regex-not\n\n608、source package:regexpu-core 2.0.0\npackage: regexpu-core\n\n609、source package:regjsgen 0.2.0\npackage: regjsgen\n\n610、source package:repeat-element 1.1.3\npackage: repeat-element\n\n611、source package:repeat-string 1.6.1\npackage: repeat-string\n\n612、source package:repeating 2.0.1\npackage: repeating\n\n613、source package:replace-ext 1.0.0\npackage: replace-ext\n\n614、source package:require-directory 2.1.1\npackage: require-directory\n\n615、source package:resolve 1.22.1\npackage: resolve\n\n616、source package:resolve-dir 1.0.1\npackage: resolve-dir\n\n617、source package:resolve-pathname 2.2.0\npackage: resolve-pathname\n\n618、source package:resolve-url 0.2.1\npackage: resolve-url\n\n619、source package:ret 0.1.15\npackage: ret\n\n620、source package:reusify 1.0.4\npackage: reusify\n\n621、source package:right-align 0.1.3\npackage: right-align\n\n622、source package:ripemd160 2.0.2\npackage: ripemd160\n\n623、source package:rollup 2.79.1\npackage: rollup\n\n624、source package:run-parallel 1.2.0\npackage: run-parallel\n\n625、source package:safe-buffer 5.2.1\npackage: safe-buffer\n\n626、source package:safe-regex 1.1.0\npackage: safe-regex\n\n627、source package:safer-buffer 2.1.2\npackage: safer-buffer\n\n628、source package:sass 1.55.0\npackage: sass\n\n629、source package:sass-graph 2.2.4\npackage: sass-graph\n\n630、source package:scheduler 0.15.0\npackage: scheduler\n\n631、source package:schema-utils 3.0.0\npackage: schema-utils\n\n632、source package:scroll-into-view-if-needed 2.2.20\npackage: scroll-into-view-if-needed\n\n633、source package:scss-tokenizer 0.2.3\npackage: scss-tokenizer\n\n634、source package:scule 1.1.1\npackage: scule\n\n635、source package:sequencify 0.0.7\npackage: sequencify\n\n636、source package:set-value 2.0.1\npackage: set-value\n\n637、source package:setimmediate 1.0.5\npackage: setimmediate\n\n638、source package:sha.js 2.4.11\npackage: sha.js\n\n639、source package:shadered v1.5.3\npackage: shadered\n\n640、source package:shasum 1.0.2\npackage: shasum\n\n641、source package:shebang-command 1.2.0\npackage: shebang-command\n\n642、source package:shebang-regex 1.0.0\npackage: shebang-regex\n\n643、source package:shell-quote 1.7.2\npackage: shell-quote\n\n644、source package:simple-concat 1.0.0\npackage: simple-concat\n\n645、source package:slash 1.0.0\npackage: slash\n\n646、source package:slirp4netns 1.2.0-1\npackage: slirp4netns\n\n647、source package:smooth-scroll-into-view-if-needed 1.1.23\npackage: smooth-scroll-into-view-if-needed\n\n648、source package:snapdragon 0.8.2\npackage: snapdragon\n\n649、source package:snapdragon-node 2.1.1\npackage: snapdragon-node\n\n650、source package:snapdragon-util 3.0.1\npackage: snapdragon-util\n\n651、source package:source-list-map 2.0.1\npackage: source-list-map\n\n652、source package:source-map-resolve 0.5.3\npackage: source-map-resolve\n\n653、source package:source-map-support 0.5.21\npackage: source-map-support\n\n654、source package:source-map-url 0.4.0\npackage: source-map-url\n\n655、source package:sourcemap-codec 1.4.8\npackage: sourcemap-codec\n\n656、source package:sparkles 1.0.1\npackage: sparkles\n\n657、source package:spdx-expression-parse 3.0.1\npackage: spdx-expression-parse\n\n658、source package:split-string 3.1.0\npackage: split-string\n\n659、source package:sqlclosecheck v0.5.0\npackage: sqlclosecheck\n\n660、source package:sse v0.1.0\npackage: sse\n\n661、source package:sshpk 1.16.1\npackage: sshpk\n\n662、source package:static-extend 0.1.2\npackage: static-extend\n\n663、source package:stdout-stream 1.4.1\npackage: stdout-stream\n\n664、source package:stream-browserify 2.0.2\npackage: stream-browserify\n\n665、source package:stream-combiner2 1.1.1\npackage: stream-combiner2\n\n666、source package:stream-consume 0.1.1\npackage: stream-consume\n\n667、source package:stream-http 2.8.3\npackage: stream-http\n\n668、source package:stream-splicer 2.0.1\npackage: stream-splicer\n\n669、source package:string-width 2.1.1\npackage: string-width\n\n670、source package:string_decoder 1.3.0\npackage: string_decoder\n\n671、source package:strip-ansi 4.0.0\npackage: strip-ansi\n\n672、source package:strip-bom 3.0.0\npackage: strip-bom\n\n673、source package:strip-eof 1.0.0\npackage: strip-eof\n\n674、source package:strip-indent 1.0.1\npackage: strip-indent\n\n675、source package:strip-literal 1.3.0\npackage: strip-literal\n\n676、source package:subarg 1.0.0\npackage: subarg\n\n677、source package:sudo 1.9.8p2-1~exp1\npackage: sudo\n\n678、source package:supports-color 4.5.0\npackage: supports-color\n\n679、source package:supports-preserve-symlinks-flag 1.0.0\npackage: supports-preserve-symlinks-flag\n\n680、source package:syntax-error 1.4.0\npackage: syntax-error\n\n681、source package:sys v0.5.0\npackage: sys\n\n682、source package:systemjs 6.13.0\npackage: systemjs\n\n683、source package:tapable 0.2.9\npackage: tapable\n\n684、source package:testify v1.9.0\npackage: testify\n\n685、source package:text v0.1.0\npackage: text\n\n686、source package:through2 2.0.5\npackage: through2\n\n687、source package:tildify 1.2.0\npackage: tildify\n\n688、source package:time-stamp 1.1.0\npackage: time-stamp\n\n689、source package:timers-browserify 2.0.12\npackage: timers-browserify\n\n690、source package:tiny-invariant 1.0.6\npackage: tiny-invariant\n\n691、source package:tiny-warning 1.0.3\npackage: tiny-warning\n\n692、source package:tinyaes 1.0.4rc1\npackage: tinyaes\n\n693、source package:tlp 1.5.0-1~bpo11+1\npackage: tlp\n\n694、source package:to-arraybuffer 1.0.1\npackage: to-arraybuffer\n\n695、source package:to-camel-case 1.0.0\npackage: to-camel-case\n\n696、source package:to-fast-properties 1.0.3\npackage: to-fast-properties\n\n697、source package:to-no-case 1.0.2\npackage: to-no-case\n\n698、source package:to-object-path 0.3.0\npackage: to-object-path\n\n699、source package:to-regex 3.0.2\npackage: to-regex\n\n700、source package:to-regex-range 5.0.1\npackage: to-regex-range\n\n701、source package:to-space-case 1.0.0\npackage: to-space-case\n\n702、source package:toml v1.3.2\npackage: toml\n\n703、source package:tools v0.6.0\npackage: tools\n\n704、source package:tortellini 4f6795a\npackage: tortellini\n\n705、source package:trim-newlines 1.0.0\npackage: trim-newlines\n\n706、source package:trim-right 1.0.1\npackage: trim-right\n\n707、source package:tty-browserify 0.0.1\npackage: tty-browserify\n\n708、source package:typedarray 0.0.6\npackage: typedarray\n\n709、source package:uglify-to-browserify 1.0.2\npackage: uglify-to-browserify\n\n710、source package:uglifyjs-webpack-plugin 0.4.6\npackage: uglifyjs-webpack-plugin\n\n711、source package:umd 3.0.3\npackage: umd\n\n712、source package:unc-path-regex 0.1.2\npackage: unc-path-regex\n\n713、source package:unimport 1.3.0\npackage: unimport\n\n714、source package:union-value 1.0.1\npackage: union-value\n\n715、source package:unique-stream 1.0.0\npackage: unique-stream\n\n716、source package:universal-translator v0.16.0\npackage: universal-translator\n\n717、source package:unplugin-auto-import 0.11.5\npackage: unplugin-auto-import\n\n718、source package:unplugin-vue-components 0.22.12\npackage: unplugin-vue-components\n\n719、source package:unset-value 1.0.0\npackage: unset-value\n\n720、source package:upath 1.2.0\npackage: upath\n\n721、source package:urix 0.1.0\npackage: urix\n\n722、source package:url 0.11.0\npackage: url\n\n723、source package:use 3.1.1\npackage: use\n\n724、source package:user-home 1.1.1\npackage: user-home\n\n725、source package:util 0.11.1\npackage: util\n\n726、source package:util-deprecate 1.0.2\npackage: util-deprecate\n\n727、source package:uuid 3.3.3\npackage: uuid\n\n728、source package:v-drag 3.0.9\npackage: v-drag\n\n729、source package:v8flags 2.1.1\npackage: v8flags\n\n730、source package:value-equal 0.4.0\npackage: value-equal\n\n731、source package:verror 1.10.0\npackage: verror\n\n732、source package:vinyl 2.2.0\npackage: vinyl\n\n733、source package:vinyl-buffer 1.0.1\npackage: vinyl-buffer\n\n734、source package:vinyl-fs 0.3.14\npackage: vinyl-fs\n\n735、source package:vinyl-source-stream 2.0.0\npackage: vinyl-source-stream\n\n736、source package:vm-browserify 1.1.2\npackage: vm-browserify\n\n737、source package:vue-codemirror 6.1.1\npackage: vue-codemirror\n\n738、source package:vue-demi 0.13.11\npackage: vue-demi\n\n739、source package:vue-router 4.1.5\npackage: vue-router\n\n740、source package:w3c-keyname 2.2.8\npackage: w3c-keyname\n\n741、source package:warning 4.0.3\npackage: warning\n\n742、source package:watchpack 1.7.4\npackage: watchpack\n\n743、source package:watchpack-chokidar2 2.0.0\npackage: watchpack-chokidar2\n\n744、source package:webpack 3.12.0\npackage: webpack\n\n745、source package:webpack-sources 3.2.3\npackage: webpack-sources\n\n746、source package:webpack-virtual-modules 0.6.1\npackage: webpack-virtual-modules\n\n747、source package:window-size 0.1.0\npackage: window-size\n\n748、source package:wireplumber 0.4.9-1\npackage: wireplumber\n\n749、source package:wordwrap 0.0.2\npackage: wordwrap\n\n750、source package:wrap-ansi 2.1.0\npackage: wrap-ansi\n\n751、source package:x11-utils 7.7~1_sparc\npackage: x11-utils\n\n752、source package:x11-xserver-utils 7.7~3_sparc\npackage: x11-xserver-utils\n\n753、source package:x11proto-record-dev 2020.1-1_all\npackage: x11proto-record-dev\n\n754、source package:x11proto-xext-dev 7.3.0-1_all\npackage: x11proto-xext-dev\n\n755、source package:xcb-proto 1.7.1.orig\npackage: xcb-proto\n\n756、source package:xdg-utils 1.1.3-4.1\npackage: xdg-utils\n\n757、source package:xkb-data 2.5.1-3_all\npackage: xkb-data\n\n758、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n759、source package:xserver-xorg-input-all 7.7+7_s390x\npackage: xserver-xorg-input-all\n\n760、source package:xserver-xorg-video-all 7.7+7_s390x\npackage: xserver-xorg-video-all\n\n761、source package:xtend 4.0.2\npackage: xtend\n\n762、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n763、source package:yargs 8.0.2\npackage: yargs\n\n\nOpen Source Software Licensed under the Expat:\n1、source package:golang-github-adrg-xdg-dev 0.4.0-2\npackage: golang-github-adrg-xdg-dev\n\n2、source package:golang-github-disintegration-imaging-dev 1.6.2-2\npackage: golang-github-disintegration-imaging-dev\n\n3、source package:golang-github-smartystreets-goconvey-dev 1.6.4+dfsg-1_all\npackage: golang-github-smartystreets-goconvey-dev\n\n4、source package:golang-github-stretchr-testify-dev 1.8.0-1~bpo11+1\npackage: golang-github-stretchr-testify-dev\n\n5、source package:golang-github-teambition-rrule-go-dev 1.8.1-1\npackage: golang-github-teambition-rrule-go-dev\n\n6、source package:golang-gopkg-alecthomas-kingpin.v2-dev 2.2.6-4\npackage: golang-gopkg-alecthomas-kingpin.v2-dev\n\n7、source package:intel-media-va-driver-non-free 23.2.3+ds1-1\npackage: intel-media-va-driver-non-free\n\n8、source package:libepoxy-dev 1.5.9-2\npackage: libepoxy-dev\n\n9、source package:libiniparser-dev 4.1-4_s390x\npackage: libiniparser-dev\n\n10、source package:libinput-dev 1.6.3-1_s390x\npackage: libinput-dev\n\n11、source package:libjson-c-dev 0.16-2\npackage: libjson-c-dev\n\n12、source package:libmtdev-dev 1.1.6-1_s390x\npackage: libmtdev-dev\n\n13、source package:libsass-dev 3.6.4-4~exp_s390x\npackage: libsass-dev\n\n14、source package:libspdlog-dev 1:1.3.1-1\npackage: libspdlog-dev\n\n15、source package:libutf8proc-dev 2.7.0-4\npackage: libutf8proc-dev\n\n16、source package:libva-dev 2.8.0-1_s390x\npackage: libva-dev\n\n17、source package:nlohmann-json3-dev 3.9.1-1\npackage: nlohmann-json3-dev\n\n18、source package:rapidjson-dev 1.1.0-1\npackage: rapidjson-dev\n\n19、source package:va-driver-all 2.8.0-1_s390x\npackage: va-driver-all\n\n20、source package:wayland-protocols 1.9-1\npackage: wayland-protocols\n\n\nOpen Source Software Licensed under the BSD-3-Clause:\n1、source package:DocxFactory 91131f28\npackage: DocxFactory\n\n2、source package:alsa-topology-conf 1.2.5.1-2\npackage: alsa-topology-conf\n\n3、source package:alsa-ucm-conf 1.2.9-1\npackage: alsa-ucm-conf\n\n4、source package:amdefine 1.0.1\npackage: amdefine\n\n5、source package:android-pdfium a56ccce4\npackage: android-pdfium\n\n6、source package:apt 2.7.1\npackage: apt\n\n7、source package:bcrypt-pbkdf 1.0.2\npackage: bcrypt-pbkdf\n\n8、source package:browserify 14.5.0\npackage: browserify\n\n9、source package:charenc 0.0.2\npackage: charenc\n\n10、source package:chromium 87.0.4280.88-0.4\npackage: chromium\n\n11、source package:cmake v3.27.0-rc5\npackage: cmake\n\n12、source package:coost v3.0.0\npackage: coost\n\n13、source package:crypt 0.0.2\npackage: crypt\n\n14、source package:crypto v0.13.0\npackage: crypto\n\n15、source package:css-select 1.2.0\npackage: css-select\n\n16、source package:css-what 2.1.3\npackage: css-what\n\n17、source package:dns v1.1.52\npackage: dns\n\n18、source package:dnsutils 970203-0.1\npackage: dnsutils\n\n19、source package:duplexer2 0.1.4\npackage: duplexer2\n\n20、source package:entities 1.1.2\npackage: entities\n\n21、source package:errwrap v1.5.0\npackage: errwrap\n\n22、source package:external/github.com/protocolbuffers/protobuf v3.7.0-rc.3\npackage: external/github.com/protocolbuffers/protobuf\n\n23、source package:extra-cmake-modules 5.98.0-2\npackage: extra-cmake-modules\n\n24、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n25、source package:fsnotify v1.6.0\npackage: fsnotify\n\n26、source package:go-cmp v0.6.0\npackage: go-cmp\n\n27、source package:golang 2:1.7~5~bpo8+1\npackage: golang\n\n28、source package:golang-any 1.7~5~bpo8+1_s390x\npackage: golang-any\n\n29、source package:golang-github-fsnotify-fsnotify-dev 1.6.0-1\npackage: golang-github-fsnotify-fsnotify-dev\n\n30、source package:golang-github-miekg-dns-dev 1.1.50-2\npackage: golang-github-miekg-dns-dev\n\n31、source package:golang-github-rickb777-date-dev 1.20.1-1\npackage: golang-github-rickb777-date-dev\n\n32、source package:golang-go 1.7~5~bpo8+1_ppc64el\npackage: golang-go\n\n33、source package:golang-golang-x-sys-dev 0.3.0-1+hurd.1\npackage: golang-golang-x-sys-dev\n\n34、source package:golang-golang-x-xerrors-dev 0.0~git20191204.9bdfabe-1~bpo10+1\npackage: golang-golang-x-xerrors-dev\n\n35、source package:golang-google-protobuf-dev 1.28.1-3\npackage: golang-google-protobuf-dev\n\n36、source package:gstreamer1.0-plugins-base 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-base\n\n37、source package:gstreamer1.0-plugins-good 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-good\n\n38、source package:gstreamer1.0-pulseaudio 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-pulseaudio\n\n39、source package:gstreamer1.0-x 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-x\n\n40、source package:hoist-non-react-statics 2.5.5\npackage: hoist-non-react-statics\n\n41、source package:ieee754 1.2.1\npackage: ieee754\n\n42、source package:init 1.65~exp2\npackage: init\n\n43、source package:iputils-ping 20190709-3_s390x\npackage: iputils-ping\n\n44、source package:js-base64 2.5.1\npackage: js-base64\n\n45、source package:json-schema 0.2.3\npackage: json-schema\n\n46、source package:libcli11-dev 2.1.2+ds-1\npackage: libcli11-dev\n\n47、source package:libgmock-dev 1.9.0.20190831-3\npackage: libgmock-dev\n\n48、source package:libgoogle-glog-dev 0.4.0-1_s390x\npackage: libgoogle-glog-dev\n\n49、source package:libgstreamer-plugins-base1.0-0 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-0\n\n50、source package:libgstreamer-plugins-base1.0-dev 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-dev\n\n51、source package:libgtest-dev 1.9.0.20190831-1_s390x\npackage: libgtest-dev\n\n52、source package:libjpeg-dev 2.0.5-1_all\npackage: libjpeg-dev\n\n53、source package:libnl-3-dev 3.4.0-1~bpo9+1_s390x\npackage: libnl-3-dev\n\n54、source package:libnl-genl-3-dev 3.4.0-1~bpo9+1_s390x\npackage: libnl-genl-3-dev\n\n55、source package:libnl-route-3-dev 3.4.0-1~bpo9+1_s390x\npackage: libnl-route-3-dev\n\n56、source package:libpcap-dev 1.9.1-4~bpo10+1_s390x\npackage: libpcap-dev\n\n57、source package:libtirpc-common 1.2.6-1_all\npackage: libtirpc-common\n\n58、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n59、source package:locales 2.31-0experimental0_all\npackage: locales\n\n60、source package:lxqt-build-tools 0.8.0-1\npackage: lxqt-build-tools\n\n61、source package:marked 1.2.3\npackage: marked\n\n62、source package:md5 2.2.1\npackage: md5\n\n63、source package:mmkv-static 1.2.10\npackage: mmkv-static\n\n64、source package:mod v0.8.0\npackage: mod\n\n65、source package:mount 2.9g-6\npackage: mount\n\n66、source package:net v0.15.0\npackage: net\n\n67、source package:node 8.16.1\npackage: node\n\n68、source package:normalize-wheel-es 1.2.0\npackage: normalize-wheel-es\n\n69、source package:nth-check 1.0.2\npackage: nth-check\n\n70、source package:onboard 1.4.1-5_s390x\npackage: onboard\n\n71、source package:passwd 980403-0.3\npackage: passwd\n\n72、source package:pflag v1.0.5\npackage: pflag\n\n73、source package:protobuf v1.3.2\npackage: protobuf\n\n74、source package:python3-click 8.1.6-1\npackage: python3-click\n\n75、source package:qml-module-qtgraphicaleffects 5.7.1~20161021-3_s390x\npackage: qml-module-qtgraphicaleffects\n\n76、source package:qs 6.5.2\npackage: qs\n\n77、source package:qtermwidget 0.14.1\npackage: qtermwidget\n\n78、source package:regenerator-transform 0.10.1\npackage: regenerator-transform\n\n79、source package:regjsparser 0.1.5\npackage: regjsparser\n\n80、source package:sass 1.55.0\npackage: sass\n\n81、source package:sha.js 2.4.11\npackage: sha.js\n\n82、source package:source-map 0.6.1\npackage: source-map\n\n83、source package:spdx-license-ids 3.0.6\npackage: spdx-license-ids\n\n84、source package:sys v0.6.0\npackage: sys\n\n85、source package:syscall_intercept 4b3a3b5\npackage: syscall_intercept\n\n86、source package:term v0.13.0\npackage: term\n\n87、source package:terser 5.15.1\npackage: terser\n\n88、source package:text v0.13.0\npackage: text\n\n89、source package:tough-cookie 2.4.3\npackage: tough-cookie\n\n90、source package:uglify-js 2.8.29\npackage: uglify-js\n\n91、source package:util-linux 2.5-12\npackage: util-linux\n\n92、source package:uuid v1.3.0\npackage: uuid\n\n93、source package:wpasupplicant 2.9.0-12_s390x\npackage: wpasupplicant\n\n94、source package:xdotool 3.20160805.1-4_s390x\npackage: xdotool\n\n95、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n96、source package:xsettingsd 1.0.2-1\npackage: xsettingsd\n\n97、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n\nOpen Source Software Licensed under the BSD-2-Clause:\n1、source package:DocxFactory 91131f28\npackage: DocxFactory\n\n2、source package:block-stream 0.0.9\npackage: block-stream\n\n3、source package:coost v3.0.0\npackage: coost\n\n4、source package:domelementtype 1.3.1\npackage: domelementtype\n\n5、source package:domhandler 2.4.2\npackage: domhandler\n\n6、source package:domutils 1.5.1\npackage: domutils\n\n7、source package:doxyqml 0.3.0-1.1.debian\npackage: doxyqml\n\n8、source package:escope 3.6.0\npackage: escope\n\n9、source package:esrecurse 4.3.0\npackage: esrecurse\n\n10、source package:estraverse 5.2.0\npackage: estraverse\n\n11、source package:esutils 2.0.3\npackage: esutils\n\n12、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n13、source package:glob 3.1.21\npackage: glob\n\n14、source package:golang-dbus-dev 5.1.0-1~bpo11+1\npackage: golang-dbus-dev\n\n15、source package:golang-github-msteinert-pam-dev 1.1.0-1\npackage: golang-github-msteinert-pam-dev\n\n16、source package:golang-gopkg-check.v1-dev 0.0+git20200902.038fdea-1\npackage: golang-gopkg-check.v1-dev\n\n17、source package:graceful-fs 1.2.3\npackage: graceful-fs\n\n18、source package:libarchive-dev 3.4.0-2~bpo9+1_amd64\npackage: libarchive-dev\n\n19、source package:libtag1-dev 1.9.1-2~bpo70+1_sparc\npackage: libtag1-dev\n\n20、source package:libtss2-dev 2.4.0-1_s390x\npackage: libtss2-dev\n\n21、source package:libtss2-tcti-tabrmd0 3.0.0-1\npackage: libtss2-tcti-tabrmd0\n\n22、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n23、source package:normalize-package-data 2.5.0\npackage: normalize-package-data\n\n24、source package:sdparm 1.12-1\npackage: sdparm\n\n25、source package:shim-signed 1.39~1+deb11u1\npackage: shim-signed\n\n26、source package:shim-unsigned 15+1533136590.3beb971-9_i386\npackage: shim-unsigned\n\n27、source package:smartmontools 7.3-1\npackage: smartmontools\n\n28、source package:tpm2-abrmd 3.0.0-1\npackage: tpm2-abrmd\n\n29、source package:tt v1.0.1\npackage: tt\n\n30、source package:uri-js 4.4.0\npackage: uri-js\n\n31、source package:usb-modeswitch 2.6.1.orig\npackage: usb-modeswitch\n\n\nOpen Source Software Licensed under the MPL-2.0:\n1、source package:browser-desktop 87.0-729282885\npackage: browser-desktop\n\n2、source package:dompurify 2.4.1\npackage: dompurify\n\n3、source package:libjwt-dev 1.9.0-4_mips64el\npackage: libjwt-dev\n\n4、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n\nOpen Source Software Licensed under the MPL-1.1:\n1、source package:libcairo2-dev 1.16.0-4_s390x\npackage: libcairo2-dev\n\n2、source package:libchardet 1.0.3\npackage: libchardet\n\n3、source package:libpam-gnome-keyring 3.4.1-5_sparc\npackage: libpam-gnome-keyring\n\n4、source package:libtag1-dev 1.9.1-2~bpo70+1_sparc\npackage: libtag1-dev\n\n\nOpen Source Software Licensed under the AFL-2.1:\n1、source package:python3-dbus 1.2.8-3_s390x\npackage: python3-dbus\n\n\nOpen Source Software Licensed under the AGPL-1.0-only:\n1、source package:spdx-license-ids 3.0.6\npackage: spdx-license-ids\n\n\nOpen Source Software Licensed under the AGPL-3.0-only:\n1、source package:nging v3.5.2\npackage: nging\n\n2、source package:sobjectizer 1.2.3\npackage: sobjectizer\n\n\nOpen Source Software Licensed under the Apache-2.0 or LGPL-3+:\n1、source package:liblucene++-dev 3.0.7-8+b2_s390x\npackage: liblucene++-dev\n\n\nOpen Source Software Licensed under the Apache-2.0-with-GPL2-LGPL2-Exception:\n1、source package:cups 2.4.2-3+deb12u1\npackage: cups\n\n\nOpen Source Software Licensed under the Artistic or GPL-1+:\n1、source package:libfile-mimeinfo-perl 0.33-1\npackage: libfile-mimeinfo-perl\n\n2、source package:perl-openssl-defaults 7\npackage: perl-openssl-defaults\n\n\nOpen Source Software Licensed under the Artistic-2.0:\n1、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the BSD:\n1、source package:compiler 4.12.0\npackage: compiler\n\n2、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n3、source package:glide 4.12.0\npackage: glide\n\n4、source package:libnet-dev 1.2-rc3\npackage: libnet-dev\n\n5、source package:libvncserver LibVNCServer-0.9.14\npackage: libvncserver\n\n6、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n7、source package:node 8.16.1\npackage: node\n\n8、source package:smartmontools 7.3-1\npackage: smartmontools\n\n9、source package:zip 3.0-9\npackage: zip\n\n\nOpen Source Software Licensed under the BSD-1-Clause:\n1、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n\nOpen Source Software Licensed under the BSD-3-clause:\n1、source package:tpm2-tools 5.4-1\npackage: tpm2-tools\n\n\nOpen Source Software Licensed under the BSD-3-clause or GPL-2:\n1、source package:libcap-dev 2.36-1_mips64el\npackage: libcap-dev\n\n2、source package:libcap2-bin 2.36-1_s390x\npackage: libcap2-bin\n\n\nOpen Source Software Licensed under the BSD-4-Clause:\n1、source package:unalz 0.65-9\npackage: unalz\n\n\nOpen Source Software Licensed under the BSD-Source-Code:\n1、source package:iputils-ping 20190709-3_s390x\npackage: iputils-ping\n\n\nOpen Source Software Licensed under the BSL-1.0:\n1、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n\nOpen Source Software Licensed under the Bitstream-Vera:\n1、source package:fontconfig 2.9.0.orig\npackage: fontconfig\n\n\nOpen Source Software Licensed under the Brian-Gladman-3-Clause:\n1、source package:libzip-dev 1.6.1-3_s390x\npackage: libzip-dev\n\n2、source package:libzip4 1.6.1-3_s390x\npackage: libzip4\n\n\nOpen Source Software Licensed under the CC-BY-3.0:\n1、source package:spdx-exceptions 2.3.0\npackage: spdx-exceptions\n\n\nOpen Source Software Licensed under the CC-BY-4.0:\n1、source package:caniuse-lite 1.0.30000989\npackage: caniuse-lite\n\n\nOpen Source Software Licensed under the CC-BY-SA-4.0:\n1、source package:glob 7.1.4\npackage: glob\n\n\nOpen Source Software Licensed under the CC0-1.0:\n1、source package:spdx-license-ids 3.0.6\npackage: spdx-license-ids\n\n\nOpen Source Software Licensed under the CDDL-1.0:\n1、source package:libraw-dev 0.9.1-1+deb6u1\npackage: libraw-dev\n\n\nOpen Source Software Licensed under the CPL-1.0:\n1、source package:graphviz 2.8-3+etch1\npackage: graphviz\n\n2、source package:junit 4.11\npackage: junit\n\n\nOpen Source Software Licensed under the EPL-1.0:\n1、source package:aspectjrt 1.9.6\npackage: aspectjrt\n\n2、source package:junit 4.13.2\npackage: junit\n\n\nOpen Source Software Licensed under the FTL:\n1、source package:freetype VER-2-10-3\npackage: freetype\n\n2、source package:libfreetype-dev 2.13.0+dfsg-1\npackage: libfreetype-dev\n\n\nOpen Source Software Licensed under the Font-exception-2.0:\n1、source package:ttf-unifont 9.0.06-2_all\npackage: ttf-unifont\n\n2、source package:xfonts-wqy 1.0.0~rc1-7\npackage: xfonts-wqy\n\n\nOpen Source Software Licensed under the GFDL-1.2-only:\n1、source package:kdevelop v22.11.80\npackage: kdevelop\n\n\nOpen Source Software Licensed under the GPL+ and GPLv2+ and MIT and Redistributable no modification permitted:\n1、source package:linux-firmware 20230824\npackage: linux-firmware\n\n\nOpen Source Software Licensed under the GPL-2 or GPL-2+:\n1、source package:ipheth-utils 1.0-5_s390x\npackage: ipheth-utils\n\n\nOpen Source Software Licensed under the GPL-2 with Font embedding exception and M+ FONTS License:\n1、source package:fonts-wqy-zenhei 0.9.45-8\npackage: fonts-wqy-zenhei\n\n\nOpen Source Software Licensed under the GPL-2 with OpenSSL exception:\n1、source package:barrier 2.4.0+dfsg-2\npackage: barrier\n\n\nOpen Source Software Licensed under the GPL-2+ and LGPL-2+:\n1、source package:xdg-desktop-portal-gtk 1.8.0-1~bpo10+1\npackage: xdg-desktop-portal-gtk\n\n\nOpen Source Software Licensed under the GPL-2+ or AFL-2.1:\n1、source package:dbus 1.9.8-1\npackage: dbus\n\n2、source package:dbus-user-session 1.13.8-1_s390x\npackage: dbus-user-session\n\n3、source package:dbus-x11 1.8.22-0+deb8u1_s390x\npackage: dbus-x11\n\n4、source package:libdbus-1-dev 1.8.22-0+deb8u1_s390x\npackage: libdbus-1-dev\n\n\nOpen Source Software Licensed under the GPL-2+ or FTL:\n1、source package:libfreetype6-dev 2.9.1-4_s390x\npackage: libfreetype6-dev\n\n\nOpen Source Software Licensed under the GPL-2+ or LGPL-2.1 or LGPL-3.0:\n1、source package:libquazip5-dev 0.7.6-6_s390x\npackage: libquazip5-dev\n\n\nOpen Source Software Licensed under the GPL-2+ with OpenSSL exception:\n1、source package:cryptsetup 2:2.6.1-4\npackage: cryptsetup\n\n2、source package:cryptsetup-initramfs 2.3.1-1_all\npackage: cryptsetup-initramfs\n\n3、source package:libcryptsetup12 2.3.1-1_s390x\npackage: libcryptsetup12\n\n\nOpen Source Software Licensed under the GPL-2+ with SSL exception:\n1、source package:remmina 1.4.8+dfsg-2~bpo10+2\npackage: remmina\n\n2、source package:remmina-plugin-rdp 1.4.7+dfsg-1_s390x\npackage: remmina-plugin-rdp\n\n3、source package:remmina-plugin-vnc 1.4.7+dfsg-1_s390x\npackage: remmina-plugin-vnc\n\n\nOpen Source Software Licensed under the GPL-2+ with sane exception:\n1、source package:libsane-dev 1.2.1-4\npackage: libsane-dev\n\n\nOpen Source Software Licensed under the GPL-2.0 or GPL-3.0 or FIPL-1.0:\n1、source package:libfreeimage-dev 3.18.0+ds2-3_s390x\npackage: libfreeimage-dev\n\n\nOpen Source Software Licensed under the GPL-2.0+ or LGPL-2.1+:\n1、source package:fcitx5-frontend-gtk3 0.0~git20200606.fc335f1-2_s390x\npackage: fcitx5-frontend-gtk3\n\n\nOpen Source Software Licensed under the GPL-3 with Qt-1.0 exception:\n1、source package:qttools5-dev 5.9.2-4_kfreebsd-i386\npackage: qttools5-dev\n\n2、source package:qttools5-dev-tools 5.9.2-4_kfreebsd-i386\npackage: qttools5-dev-tools\n\n3、source package:qttranslations5-l10n 5.9.2-1\npackage: qttranslations5-l10n\n\n\nOpen Source Software Licensed under the GPL-3+ or Less:\n1、source package:less 590-2\npackage: less\n\n\nOpen Source Software Licensed under the GPL-3+ with OpenSSL exception:\n1、source package:libdmr-dev 5.7.6.147-1\npackage: libdmr-dev\n\n\nOpen Source Software Licensed under the GPL-3.0-with-Qt-1.0-exception:\n1、source package:libqt5webchannel5-dev 5.7.1-2_s390x\npackage: libqt5webchannel5-dev\n\n2、source package:qml-module-qtwebchannel 5.9.2-3\npackage: qml-module-qtwebchannel\n\n\nOpen Source Software Licensed under the GPL-any:\n1、source package:command-not-found 23.04.0-1\npackage: command-not-found\n\n\nOpen Source Software Licensed under the Hylafax:\n1、source package:libtiff-dev 4.1.0+git191117-2~deb10u1_s390x\npackage: libtiff-dev\n\n\nOpen Source Software Licensed under the ICU:\n1、source package:node 8.16.1\npackage: node\n\n2、source package:x11-xserver-utils 7.7~3_sparc\npackage: x11-xserver-utils\n\n3、source package:xkb-data 2.5.1-3_all\npackage: xkb-data\n\n4、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n5、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n\nOpen Source Software Licensed under the ISC:\n1、source package:abbrev 1.1.1\npackage: abbrev\n\n2、source package:anymatch 3.1.2\npackage: anymatch\n\n3、source package:aproba 1.2.0\npackage: aproba\n\n4、source package:are-we-there-yet 1.1.5\npackage: are-we-there-yet\n\n5、source package:boolbase 1.0.0\npackage: boolbase\n\n6、source package:browserify-sign 4.2.1\npackage: browserify-sign\n\n7、source package:cliui 4.1.0\npackage: cliui\n\n8、source package:color-support 1.1.3\npackage: color-support\n\n9、source package:concat-with-sourcemaps 1.1.0\npackage: concat-with-sourcemaps\n\n10、source package:console-control-strings 1.1.0\npackage: console-control-strings\n\n11、source package:crda 4.14+git20191112.9856751.orig\npackage: crda\n\n12、source package:d 1.0.1\npackage: d\n\n13、source package:distro-info-data 0.9~bpo60+1\npackage: distro-info-data\n\n14、source package:electron-to-chromium 1.3.254\npackage: electron-to-chromium\n\n15、source package:es5-ext 0.10.53\npackage: es5-ext\n\n16、source package:es6-symbol 3.1.3\npackage: es6-symbol\n\n17、source package:es6-weak-map 2.0.3\npackage: es6-weak-map\n\n18、source package:ext 1.4.0\npackage: ext\n\n19、source package:fastq 1.13.0\npackage: fastq\n\n20、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n21、source package:fs 0.0.1-security\npackage: fs\n\n22、source package:fs.realpath 1.0.0\npackage: fs.realpath\n\n23、source package:fstream 1.0.12\npackage: fstream\n\n24、source package:gauge 2.7.4\npackage: gauge\n\n25、source package:get-caller-file 1.0.3\npackage: get-caller-file\n\n26、source package:glob 7.1.4\npackage: glob\n\n27、source package:glob-parent 5.1.2\npackage: glob-parent\n\n28、source package:go-spew v1.1.1\npackage: go-spew\n\n29、source package:go-wav v0.3.2\npackage: go-wav\n\n30、source package:golang-github-nfnt-resize-dev 0.0~git20180221.83c6a99-2_all\npackage: golang-github-nfnt-resize-dev\n\n31、source package:graceful-fs 4.2.4\npackage: graceful-fs\n\n32、source package:har-schema 2.0.0\npackage: har-schema\n\n33、source package:has-unicode 2.0.1\npackage: has-unicode\n\n34、source package:hosted-git-info 2.8.8\npackage: hosted-git-info\n\n35、source package:in-publish 2.0.0\npackage: in-publish\n\n36、source package:inflight 1.0.6\npackage: inflight\n\n37、source package:inherits 2.0.4\npackage: inherits\n\n38、source package:ini 1.3.5\npackage: ini\n\n39、source package:isexe 2.0.0\npackage: isexe\n\n40、source package:json-stringify-safe 5.0.1\npackage: json-stringify-safe\n\n41、source package:lru-cache 4.1.5\npackage: lru-cache\n\n42、source package:minimalistic-assert 1.0.1\npackage: minimalistic-assert\n\n43、source package:minimatch 5.1.6\npackage: minimatch\n\n44、source package:natives 1.1.6\npackage: natives\n\n45、source package:node 8.16.1\npackage: node\n\n46、source package:node-bin-setup 1.0.6\npackage: node-bin-setup\n\n47、source package:nopt 3.0.6\npackage: nopt\n\n48、source package:npmlog 4.1.2\npackage: npmlog\n\n49、source package:once 1.4.0\npackage: once\n\n50、source package:osenv 0.1.5\npackage: osenv\n\n51、source package:parse-asn1 5.1.6\npackage: parse-asn1\n\n52、source package:pkgconf 1.8.1-2\npackage: pkgconf\n\n53、source package:pseudomap 1.0.2\npackage: pseudomap\n\n54、source package:python3-dnspython 2.4.0~rc1-1\npackage: python3-dnspython\n\n55、source package:remove-trailing-separator 1.1.0\npackage: remove-trailing-separator\n\n56、source package:require-main-filename 1.0.1\npackage: require-main-filename\n\n57、source package:rimraf 2.7.1\npackage: rimraf\n\n58、source package:rollup 2.79.1\npackage: rollup\n\n59、source package:semver 5.7.1\npackage: semver\n\n60、source package:set-blocking 2.0.0\npackage: set-blocking\n\n61、source package:sigmund 1.0.1\npackage: sigmund\n\n62、source package:signal-exit 3.0.3\npackage: signal-exit\n\n63、source package:tar 2.2.2\npackage: tar\n\n64、source package:type 2.1.0\npackage: type\n\n65、source package:vinyl-sourcemaps-apply 0.2.1\npackage: vinyl-sourcemaps-apply\n\n66、source package:which 1.3.1\npackage: which\n\n67、source package:which-module 2.0.0\npackage: which-module\n\n68、source package:wide-align 1.1.3\npackage: wide-align\n\n69、source package:wrappy 1.0.2\npackage: wrappy\n\n70、source package:y18n 3.2.1\npackage: y18n\n\n71、source package:yallist 2.1.2\npackage: yallist\n\n72、source package:yargs-parser 8.1.0\npackage: yargs-parser\n\n\nOpen Source Software Licensed under the ImageMagick:\n1、source package:DocxFactory 91131f28\npackage: DocxFactory\n\n\nOpen Source Software Licensed under the Info-ZIP:\n1、source package:unzip 6.0.orig\npackage: unzip\n\n\nOpen Source Software Licensed under the LGPL:\n1、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n2、source package:libatspi2.0-dev 2.5.3-2_sparc\npackage: libatspi2.0-dev\n\n3、source package:liblightdm-qt-dev 1.26.0-5_s390x\npackage: liblightdm-qt-dev\n\n4、source package:lightdm 1.9.9-1\npackage: lightdm\n\n5、source package:slirp4netns 1.2.0-1\npackage: slirp4netns\n\n6、source package:smartmontools 7.3-1\npackage: smartmontools\n\n\nOpen Source Software Licensed under the LGPL-2+ and LGPL-2.1+:\n1、source package:ostree 2023.3-2\npackage: ostree\n\n\nOpen Source Software Licensed under the LGPL-2+ and LGPL-2.1+ and FSFULLR and CC0-1.0 and Janik-permissive and Iconv-PD and Mingw-PD and Old-GLib-Tests-permissive:\n1、source package:libglib2.0-bin 2.76.4-1\npackage: libglib2.0-bin\n\n\nOpen Source Software Licensed under the LGPL-2.0+ and Expat:\n1、source package:policykit-1 122-4\npackage: policykit-1\n\n\nOpen Source Software Licensed under the LGPL-2.0-or-later:\n1、source package:bubblewrap 0~git160513-2\npackage: bubblewrap\n\n2、source package:gvfs-backends 1.44.1-1_s390x\npackage: gvfs-backends\n\n3、source package:gvfs-bin 1.44.1-1_s390x\npackage: gvfs-bin\n\n4、source package:gvfs-fuse 1.44.1-1_s390x\npackage: gvfs-fuse\n\n5、source package:kcalcore 5:5.85.0-2\npackage: kcalcore\n\n6、source package:kdeclarative 5.100.0-1\npackage: kdeclarative\n\n7、source package:libasound2-dev 1.2.2-2.3_ppc64el\npackage: libasound2-dev\n\n8、source package:libgdk-pixbuf2.0-0 2.40.2-3\npackage: libgdk-pixbuf2.0-0\n\n9、source package:libgdk-pixbuf2.0-dev 2.40.0+dfsg-5_s390x\npackage: libgdk-pixbuf2.0-dev\n\n10、source package:libkf5itemviews-dev 5.70.0-1_s390x\npackage: libkf5itemviews-dev\n\n11、source package:libkf5widgetsaddons-dev 5.70.0-1_s390x\npackage: libkf5widgetsaddons-dev\n\n12、source package:libmtp-runtime 1.1.9-3~bpo8+1\npackage: libmtp-runtime\n\n13、source package:libpolkit-agent-1-dev 0.116-2_s390x\npackage: libpolkit-agent-1-dev\n\n14、source package:libpolkit-qt5-1-dev 0.112.0-7_s390x\npackage: libpolkit-qt5-1-dev\n\n15、source package:librsvg2-bin 2.48.7-1_ppc64el\npackage: librsvg2-bin\n\n16、source package:platform/external/e2fsprogs lollipop-dev\npackage: platform/external/e2fsprogs\n\n17、source package:xdg-desktop-portal 1.8.1-1~bpo10+1\npackage: xdg-desktop-portal\n\n\nOpen Source Software Licensed under the LGPL-2.1 or MPL-2.0:\n1、source package:libical-dev 3.0.8-2_mipsel\npackage: libical-dev\n\n\nOpen Source Software Licensed under the LGPL-3 or GPL-2-or-3 with KDE Exception:\n1、source package:qml6-module-qtwebchannel 6.4.2~rc1-3\npackage: qml6-module-qtwebchannel\n\n\nOpen Source Software Licensed under the LGPL-3Qt-1.1Exception or GPL-2Qt-1.1Exception:\n1、source package:qml-module-qtwebengine 5.7.1+dfsg-6.1_mipsel\npackage: qml-module-qtwebengine\n\n2、source package:qtwebengine5-dev 5.7.1+dfsg-6.1_mipsel\npackage: qtwebengine5-dev\n\n\nOpen Source Software Licensed under the LGPLv2 with exceptions or GPLv3 with exceptions and GFDL:\n1、source package:libqt6svg6 6.4.1\npackage: libqt6svg6\n\n\nOpen Source Software Licensed under the Libpng:\n1、source package:libpng-dev 1.6.37-2_s390x\npackage: libpng-dev\n\n2、source package:libsdl2-dev 2.0.9+dfsg1-1_s390x\npackage: libsdl2-dev\n\n\nOpen Source Software Licensed under the Linux-syscall-note:\n1、source package:pinn 0.0\npackage: pinn\n\n\nOpen Source Software Licensed under the MITNFA:\n1、source package:through2 0.6.5\npackage: through2\n\n\nOpen Source Software Licensed under the MPL-1.1 or GPL-2+ or LGPL-2.1+:\n1、source package:libchardet-dev 1.0.4-1_s390x\npackage: libchardet-dev\n\n2、source package:libchardet1 1.0.4-1_s390x\npackage: libchardet1\n\n3、source package:libuchardet-dev 0.0.7-1_s390x\npackage: libuchardet-dev\n\n4、source package:libuchardet0 0.0.7-1_s390x\npackage: libuchardet0\n\n\nOpen Source Software Licensed under the NAIST-2003:\n1、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the Net-SNMP:\n1、source package:sudo 1.9.8p2-1~exp1\npackage: sudo\n\n\nOpen Source Software Licensed under the OFL-1.1:\n1、source package:fonts-intel-one-mono 1.2.1-2\npackage: fonts-intel-one-mono\n\n2、source package:fonts-lohit-deva 2.95.4.orig\npackage: fonts-lohit-deva\n\n3、source package:fonts-noto 20201225-1\npackage: fonts-noto\n\n4、source package:fonts-noto-mono 20200323-1_all\npackage: fonts-noto-mono\n\n\nOpen Source Software Licensed under the OpenSSL:\n1、source package:libssl1.1 1.1.1~~pre9-1\npackage: libssl1.1\n\n2、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the PD:\n1、source package:xz-utils 5.4.1-0.2\npackage: xz-utils\n\n\nOpen Source Software Licensed under the Public Domain:\n1、source package:debianutils 5.8-1\npackage: debianutils\n\n2、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n3、source package:grub-efi-amd64-signed 1+2.06+8.1\npackage: grub-efi-amd64-signed\n\n4、source package:grub-efi-arm64-signed 1+2.06+8.1\npackage: grub-efi-arm64-signed\n\n5、source package:jsonify 0.0.0\npackage: jsonify\n\n6、source package:libatspi2.0-dev 2.5.3-2_sparc\npackage: libatspi2.0-dev\n\n7、source package:libsqlite3-0 3.8.7.1-1_kfreebsd-i386\npackage: libsqlite3-0\n\n8、source package:libsqlite3-dev 3.8.7.1-1_kfreebsd-i386\npackage: libsqlite3-dev\n\n9、source package:sqlite3 3.9.2-1\npackage: sqlite3\n\n10、source package:tzdata 2023c-7\npackage: tzdata\n\n\nOpen Source Software Licensed under the Python-2.0:\n1、source package:python3 3.8.2-3_s390x\npackage: python3\n\n\nOpen Source Software Licensed under the Qt-GPL-exception-1.0:\n1、source package:qtremoteobjects v5.11.0-rc2\npackage: qtremoteobjects\n\n\nOpen Source Software Licensed under the Rdisc:\n1、source package:iputils-ping 20190709-3_s390x\npackage: iputils-ping\n\n\nOpen Source Software Licensed under the SGI-B-1.1:\n1、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n2、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n\nOpen Source Software Licensed under the SGI-B-2.0:\n1、source package:libegl1-mesa-dev 8.0.5-4+deb7u2_sparc\npackage: libegl1-mesa-dev\n\n2、source package:libgbm-dev 8.0.5-4+deb7u2_sparc\npackage: libgbm-dev\n\n3、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n4、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n\nOpen Source Software Licensed under the SIL-1.1:\n1、source package:fonts-noto-cjk 20190410+repack1-2.debian\npackage: fonts-noto-cjk\n\n\nOpen Source Software Licensed under the SSLeay:\n1、source package:libssl1.1 1.1.1~~pre9-1\npackage: libssl1.1\n\n\nOpen Source Software Licensed under the Sleepycat:\n1、source package:go-difflib v1.0.0\npackage: go-difflib\n\n\nOpen Source Software Licensed under the The Bugly Software License Version 1.0:\n1、source package:crashreport 3.4.4\npackage: crashreport\n\n2、source package:nativecrashreport 3.9.2\npackage: nativecrashreport\n\n\nOpen Source Software Licensed under the Unicode-DFS-2015:\n1、source package:DocxFactory 91131f28\npackage: DocxFactory\n\n\nOpen Source Software Licensed under the Unicode-DFS-2016:\n1、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the Unicode-TOU:\n1、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the Unlicense:\n1、source package:ncompress 4.2.4.6.orig\npackage: ncompress\n\n2、source package:tortellini 4f6795a\npackage: tortellini\n\n3、source package:tweetnacl 0.14.5\npackage: tweetnacl\n\n\nOpen Source Software Licensed under the Vim:\n1、source package:vim 8.2.0716.orig\npackage: vim\n\n\nOpen Source Software Licensed under the X11:\n1、source package:libwayland-dev 1.6.0-2_s390x\npackage: libwayland-dev\n\n2、source package:libxcb-image0-dev 0.4.0-1_s390x\npackage: libxcb-image0-dev\n\n3、source package:libxcb-keysyms1-dev 0.4.0-1_s390x\npackage: libxcb-keysyms1-dev\n\n4、source package:libyaml-cpp-dev 0.6.3-9_s390x\npackage: libyaml-cpp-dev\n\n5、source package:ncurses-base 6.2-1_all\npackage: ncurses-base\n\n6、source package:wordwrap 0.0.2\npackage: wordwrap\n\n\nOpen Source Software Licensed under the Xnet:\n1、source package:onboard 1.4.1-5_s390x\npackage: onboard\n\n\nOpen Source Software Licensed under the Zlib:\n1、source package:avfs 1.1.4-2\npackage: avfs\n\n2、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n3、source package:libminizip-dev 1.1-8_hurd-i386\npackage: libminizip-dev\n\n4、source package:libsdl2-dev 2.0.9+dfsg1-1_s390x\npackage: libsdl2-dev\n\n5、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n6、source package:node 8.16.1\npackage: node\n\n7、source package:pako 1.0.11\npackage: pako\n\n8、source package:pigz 2.6-1\npackage: pigz\n\n9、source package:unalz 0.65-9\npackage: unalz\n\n10、source package:zlib1g 1.2.8.dfsg-5_s390x\npackage: zlib1g\n\n11、source package:zlib1g-dev 1:1.2.3.3.dfsg-1\npackage: zlib1g-dev\n\n\nOpen Source Software Licensed under the copyleft-next-0.3.0:\n1、source package:crda 4.14+git20191112.9856751.orig\npackage: crda\n\n\nOpen Source Software Licensed under the cryptsetup-OpenSSL-exception:\n1、source package:aria2 1.9.5-1\npackage: aria2\n\n2、source package:libcryptsetup-dev 2:2.4.0-1\npackage: libcryptsetup-dev\n\n\nOpen Source Software Licensed under the curl:\n1、source package:curl 8.0.1-1~exp1\npackage: curl\n\n2、source package:libcurl4-openssl-dev 7.68.0-1_s390x\npackage: libcurl4-openssl-dev\n\n\nOpen Source Software Licensed under the hdparm:\n1、source package:hdparm 9.65+ds-1\npackage: hdparm\n\n\nOpen Source Software Licensed under the nolicense:\n1、source package:FreeBSD-Electron v9.0.3\npackage: FreeBSD-Electron\n\n2、source package:LTSLAM 94d7e0f\npackage: LTSLAM\n\n3、source package:TSFileEditor 0.2.1\npackage: TSFileEditor\n\n4、source package:asio asio-1-29-0\npackage: asio\n\n5、source package:chromium-source-tarball 59.0.3071.57\npackage: chromium-source-tarball\n\n6、source package:geek-navigation 5a521f2\npackage: geek-navigation\n\n7、source package:gentoo 202\npackage: gentoo\n\n8、source package:go-urn v1.1.0\npackage: go-urn\n\n9、source package:imaging v1.6.2\npackage: imaging\n\n10、source package:kcrash 5.103.0-1\npackage: kcrash\n\n11、source package:ncnn_paddleocr 9c054d3\npackage: ncnn_paddleocr\n\n12、source package:plasma-workspace v5.25.90\npackage: plasma-workspace\n\n13、source package:platform/external/qt emu-29.0-release\npackage: platform/external/qt\n\n14、source package:qtbase v6.5.1\npackage: qtbase\n\n15、source package:qtxlsxwriter v0.3.0\npackage: qtxlsxwriter\n\n16、source package:scriptcommunicator_serial-terminal Release_06_02\npackage: scriptcommunicator_serial-terminal\n\n17、source package:socket v0.4.1\npackage: socket\n\n18、source package:strace v4.14\npackage: strace\n\n19、source package:v5 v5.1.0\npackage: v5\n\n20、source package:wlr-protocols d278d20\npackage: wlr-protocols\n\n\nCopy of Licenses\n\n【GPL-2.0】\nGNU GENERAL PUBLIC LICENSE\nVersion 2, June 1991\n\nCopyright (C) 1989, 1991 Free Software Foundation, Inc.\n51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA\n\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\nPreamble\nThe licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n\nWe protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations.\n\nFinally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all.\n\nThe precise terms and conditions for copying, distribution and modification follow.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The \"Program\", below, refers to any such program or work, and a \"work based on the Program\" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does.\n\n1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.\n\n2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:\n\na) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change.\n\nb) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License.\n\nc) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.\n\n3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following:\n\na) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,\n\nb) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,\n\nc) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.\n\nIf distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code.\n\n4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.\n\n5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it.\n\n6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License.\n\n7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.\n\nThis section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.\n\n8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.\n\n9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and \"any later version\", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation.\n\n10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nEND OF TERMS AND CONDITIONS\nHow to Apply These Terms to Your New Programs\nIf you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\n\nTo do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the \"copyright\" line and a pointer to where the full notice is found.\n\none line to give the program's name and an idea of what it does.\nCopyright (C) yyyy  name of author\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this when it starts in an interactive mode:\n\nGnomovision version 69, Copyright (C) year name of author\nGnomovision comes with ABSOLUTELY NO WARRANTY; for details\ntype `show w'.  This is free software, and you are welcome\nto redistribute it under certain conditions; type `show c'\nfor details.\nThe hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program.\n\nYou should also get your employer (if you work as a programmer) or your school, if any, to sign a \"copyright disclaimer\" for the program, if necessary. Here is a sample; alter the names:\n\nYoyodyne, Inc., hereby disclaims all copyright\ninterest in the program `Gnomovision'\n(which makes passes at compilers) written\nby James Hacker.\n\nsignature of Ty Coon, 1 April 1989\nTy Coon, President of Vice\nThis General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License.\n\n【GPL-3.0】\nGNU GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright (C) 2007 Free Software Foundation, Inc. https://fsf.org/\n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nPreamble\nThe GNU General Public License is a free, copyleft license for software and other kinds of works.\n\nThe licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.\n\nTo protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.\n\nFor example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n\nDevelopers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.\n\nFor the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.\n\nSome devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.\n\nFinally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.\n\nThe precise terms and conditions for copying, distribution and modification follow.\n\nTERMS AND CONDITIONS\n0. Definitions.\n\"This License\" refers to version 3 of the GNU General Public License.\n\n\"Copyright\" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\n\n\"The Program\" refers to any copyrightable work licensed under this License. Each licensee is addressed as \"you\". \"Licensees\" and \"recipients\" may be individuals or organizations.\n\nTo \"modify\" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a \"modified version\" of the earlier work or a work \"based on\" the earlier work.\n\nA \"covered work\" means either the unmodified Program or a work based on the Program.\n\nTo \"propagate\" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.\n\nTo \"convey\" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.\n\nAn interactive user interface displays \"Appropriate Legal Notices\" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.\n\n1. Source Code.\nThe \"source code\" for a work means the preferred form of the work for making modifications to it. \"Object code\" means any non-source form of a work.\n\nA \"Standard Interface\" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.\n\nThe \"System Libraries\" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A \"Major Component\", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.\n\nThe \"Corresponding Source\" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.\n\nThe Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.\n\nThe Corresponding Source for a work in source code form is that same work.\n\n2. Basic Permissions.\nAll rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.\n\nYou may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.\n\nConveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.\n\n3. Protecting Users' Legal Rights From Anti-Circumvention Law.\nNo covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.\n\nWhen you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.\n\n4. Conveying Verbatim Copies.\nYou may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.\n\nYou may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.\n\n5. Conveying Modified Source Versions.\nYou may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:\n\na) The work must carry prominent notices stating that you modified it, and giving a relevant date.\nb) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to \"keep intact all notices\".\nc) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.\nd) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.\nA compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an \"aggregate\" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.\n\n6. Conveying Non-Source Forms.\nYou may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:\n\na) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.\nb) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.\nc) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.\nd) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.\ne) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.\nA separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.\n\nA \"User Product\" is either (1) a \"consumer product\", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, \"normally used\" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.\n\n\"Installation Information\" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.\n\nIf you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).\n\nThe requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.\n\nCorresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.\n\n7. Additional Terms.\n\"Additional permissions\" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.\n\nWhen you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.\n\nNotwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:\n\na) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or\nb) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or\nc) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or\nd) Limiting the use for publicity purposes of names of licensors or authors of the material; or\ne) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or\nf) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.\nAll other non-permissive additional terms are considered \"further restrictions\" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.\n\nIf you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.\n\nAdditional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.\n\n8. Termination.\nYou may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).\n\nHowever, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.\n\nTermination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.\n\n9. Acceptance Not Required for Having Copies.\nYou are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.\n\n10. Automatic Licensing of Downstream Recipients.\nEach time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.\n\nAn \"entity transaction\" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.\n\nYou may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.\n\n11. Patents.\nA \"contributor\" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's \"contributor version\".\n\nA contributor's \"essential patent claims\" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, \"control\" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.\n\nEach contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.\n\nIn the following three paragraphs, a \"patent license\" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To \"grant\" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.\n\nIf you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. \"Knowingly relying\" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.\n\nIf, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.\n\nA patent license is \"discriminatory\" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.\n\nNothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.\n\n12. No Surrender of Others' Freedom.\nIf conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.\n\n13. Use with the GNU Affero General Public License.\nNotwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.\n\n14. Revised Versions of this License.\nThe Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License \"or any later version\" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.\n\nIf the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.\n\nLater license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.\n\n15. Disclaimer of Warranty.\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. Limitation of Liability.\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n17. Interpretation of Sections 15 and 16.\nIf the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.\n\nEND OF TERMS AND CONDITIONS\n\nHow to Apply These Terms to Your New Programs\nIf you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\n\nTo do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <https://www.gnu.org/licenses/>.\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\nThe hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an \"about box\".\n\nYou should also get your employer (if you work as a programmer) or school, if any, to sign a \"copyright disclaimer\" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see https://www.gnu.org/licenses/.\n\nThe GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read https://www.gnu.org/licenses/why-not-lgpl.html.\n\n【LGPL-2.1】\nGNU LESSER GENERAL PUBLIC LICENSE\nVersion 2.1, February 1999\n\nCopyright (C) 1991, 1999 Free Software Foundation, Inc.\n51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA\n\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL.  It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\nPreamble\nThe licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users.\n\nThis license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below.\n\nWhen we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it.\n\nFor example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights.\n\nWe protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library.\n\nTo protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others.\n\nFinally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license.\n\nMost GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs.\n\nWhen a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library.\n\nWe call this license the \"Lesser\" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances.\n\nFor example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License.\n\nIn other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system.\n\nAlthough the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library.\n\nThe precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a \"work based on the library\" and a \"work that uses the library\". The former contains code derived from the library, whereas the latter must be combined with the library in order to run.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called \"this License\"). Each licensee is addressed as \"you\".\n\nA \"library\" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables.\n\nThe \"Library\", below, refers to any such software library or work which has been distributed under these terms. A \"work based on the Library\" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term \"modification\".)\n\n\"Source code\" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library.\n\nActivities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does.\n\n1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.\n\n2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:\n\na) The modified work must itself be a software library.\n\nb) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change.\n\nc) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License.\n\nd) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful.\n\n(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.\n\n3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices.\n\nOnce this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy.\n\nThis option is useful when you wish to copy part of the code of the Library into a program that is not a library.\n\n4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange.\n\nIf distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code.\n\n5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a \"work that uses the Library\". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License.\n\nHowever, linking a \"work that uses the Library\" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a \"work that uses the library\". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables.\n\nWhen a \"work that uses the Library\" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law.\n\nIf such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.)\n\nOtherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself.\n\n6. As an exception to the Sections above, you may also combine or link a \"work that uses the Library\" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications.\n\nYou must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things:\n\na) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable \"work that uses the Library\", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.)\nb) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with.\nc) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution.\nd) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place.\ne) Verify that the user has already received a copy of these materials or that you have already sent this user a copy.\nFor an executable, the required form of the \"work that uses the Library\" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.\n\nIt may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute.\n\n7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things:\n\na) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above.\nb) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.\n8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.\n\n9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it.\n\n10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License.\n\n11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.\n\nThis section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.\n\n12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.\n\n13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and \"any later version\", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation.\n\n14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nEND OF TERMS AND CONDITIONS\nHow to Apply These Terms to Your New Libraries\nIf you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License).\n\nTo apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the \"copyright\" line and a pointer to where the full notice is found.\n\none line to give the library's name and an idea of what it does.\nCopyright (C) year  name of author\n\nThis library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public\nLicense along with this library; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your school, if any, to sign a \"copyright disclaimer\" for the library, if necessary. Here is a sample; alter the names:\n\nYoyodyne, Inc., hereby disclaims all copyright interest in\nthe library `Frob' (a library for tweaking knobs) written\nby James Random Hacker.\n\nsignature of Ty Coon, 1 April 1990\nTy Coon, President of Vice\nThat's all there is to it!\n\n【LGPL-3.0】\nGNU LESSER GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright (C) 2007 Free Software Foundation, Inc. https://fsf.org/\n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nThis version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below.\n\n0. Additional Definitions.\nAs used herein, \"this License\" refers to version 3 of the GNU Lesser General Public License, and the \"GNU GPL\" refers to version 3 of the GNU General Public License.\n\n\"The Library\" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.\n\nAn \"Application\" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.\n\nA \"Combined Work\" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the \"Linked Version\".\n\nThe \"Minimal Corresponding Source\" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.\n\nThe \"Corresponding Application Code\" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work.\n\n1. Exception to Section 3 of the GNU GPL.\nYou may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL.\n\n2. Conveying Modified Versions.\nIf you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:\n\na) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or\nb) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.\n3. Object Code Incorporating Material from Library Header Files.\nThe object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:\n\na) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License.\nb) Accompany the object code with a copy of the GNU GPL and this license document.\n4. Combined Works.\nYou may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following:\n\na) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License.\nb) Accompany the Combined Work with a copy of the GNU GPL and this license document.\nc) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document.\nd) Do one of the following:\nConvey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.\nUse a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version.\ne) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)\n5. Combined Libraries.\nYou may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:\n\na) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License.\nb) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.\n6. Revised Versions of the GNU Lesser General Public License.\nThe Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License \"or any later version\" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.\n\nIf the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.\n\n【BSD-2-clause】\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\nTHIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n【BSD-3-clause】\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\nNeither the name of Apple Inc. (\"Apple\") nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\nTHIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n【The Qt Company GPL Exception 1.0】\nException 1:\n\nAs a special exception you may create a larger work which contains the output of this application and distribute that work under terms of your choice, so long as the work is not otherwise derived from or based on this application and so long as the work does not in itself generate output that contains the output from this application in its original or modified form.\n\nException 2:\n\nAs a special exception, you have permission to combine this application with Plugins licensed under the terms of your choice, to produce an executable, and to copy and distribute the resulting executable under the terms of your choice. However, the executable must be accompanied by a prominent notice offering all users of the executable the entire source code to this application, excluding the source code of the independent modules, but including any changes you have made to this application, under the terms of this license.\n\n【The Qt Company LGPL Exception version 1.1】\nAs an additional permission to the GNU Lesser General Public License version 2.1, the object code form of a \"work that uses the Library\" may incorporate material from a header file that is part of the Library. You may distribute such object code under terms of your choice, provided that:\n\n(i) the header files of the Library have not been modified; and\n\n(ii) the incorporated material is limited to numerical parameters, data structure layouts, accessors, macros, inline functions and templates; and\n\n(iii) you comply with the terms of Section 6 of the GNU Lesser General Public License version 2.1.\n\nMoreover, you may apply this exception to a modified version of the Library, provided that such modification does not involve copying material from the Library into the modified Library's header files unless such material is limited to (i) numerical parameters; (ii) data structure layouts; (iii) accessors; and (iv) small macros, templates and inline functions of five lines or less in length.\n\nFurthermore, you are not required to apply this additional permission to a modified version of the Library.\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/gpl/gpl-3.0-zh_CN-title.txt",
    "content": "Open Source Software Notice\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/gpl/gpl-3.0-zh_TW-body.txt",
    "content": "The notice provides license information of respective open source software contained in this operating system.\n\nOpen Source Software Licensed under the GPL-3.0-or-later:\n1、source package:accountsservice 23.13.9-2\npackage: accountsservice\n\n2、source package:cifs-utils 6.9.orig\npackage: cifs-utils\n\n3、source package:coreutils 9.1-1\npackage: coreutils\n\n4、source package:dosfstools 4.2-1\npackage: dosfstools\n\n5、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n6、source package:fonts-wqy-microhei 0.2.0-beta-3.1\npackage: fonts-wqy-microhei\n\n7、source package:gawk 5.0.1+dfsg.orig\npackage: gawk\n\n8、source package:gettext 0.21.1\npackage: gettext\n\n9、source package:gettext-base 0.19.8.1-9_s390x\npackage: gettext-base\n\n10、source package:gnupg 2.2.19-3_all\npackage: gnupg\n\n11、source package:golang-gir-gobject-2.0-dev 2.2.0-1\npackage: golang-gir-gobject-2.0-dev\n\n12、source package:gpgv 2.2.20-1~bpo9+1_s390x\npackage: gpgv\n\n13、source package:grub-common 2.06-9\npackage: grub-common\n\n14、source package:grub2-common 2.04~rc1-3_ppc64el\npackage: grub2-common\n\n15、source package:grub2-theme-vimix c7ab3ce\npackage: grub2-theme-vimix\n\n16、source package:guvcview 2.0.2\npackage: guvcview\n\n17、source package:hello 2.9-2_kfreebsd-i386\npackage: hello\n\n18、source package:libparted-dev 3.3-4_s390x\npackage: libparted-dev\n\n19、source package:libparted-fs-resize0 3.3-4_s390x\npackage: libparted-fs-resize0\n\n20、source package:live-boot 5.0~a5-2\npackage: live-boot\n\n21、source package:live-boot-initramfs-tools 4.0.2-1_all\npackage: live-boot-initramfs-tools\n\n22、source package:live-config 5.20190519_all\npackage: live-config\n\n23、source package:live-config-systemd 5.20190519_all\npackage: live-config-systemd\n\n24、source package:onboard 1.4.1-5_s390x\npackage: onboard\n\n25、source package:parted 3.6-3\npackage: parted\n\n26、source package:patchelf 0.9.orig\npackage: patchelf\n\n27、source package:pkg-kde-tools 0.9.5\npackage: pkg-kde-tools\n\n28、source package:python3-samba 4.12.5+dfsg-3_s390x\npackage: python3-samba\n\n29、source package:qtchooser 66.orig\npackage: qtchooser\n\n30、source package:qtremoteobjects v5.11.0-rc2\npackage: qtremoteobjects\n\n31、source package:redshift 1.9.1-4_s390x\npackage: redshift\n\n32、source package:rsync 3.2.7-1~bpo11+1\npackage: rsync\n\n33、source package:rsyslog 8.9.0-3\npackage: rsyslog\n\n34、source package:samba 4.9.5+dfsg-5_mips64el\npackage: samba\n\n35、source package:samba-common-bin 4.9.5+dfsg-5_s390x\npackage: samba-common-bin\n\n36、source package:samba-dsdb-modules 4.9.5+dfsg-5_s390x\npackage: samba-dsdb-modules\n\n37、source package:samba-vfs-modules 4.9.5+dfsg-5_s390x\npackage: samba-vfs-modules\n\n38、source package:sed 4.9-1\npackage: sed\n\n39、source package:smbclient 4.9.5+dfsg-5_s390x\npackage: smbclient\n\n40、source package:startdde 6.0.6\npackage: startdde\n\n41、source package:viper v1.3.2\npackage: viper\n\n\nOpen Source Software Licensed under the GPL-3.0-only:\n1、source package:blur-effect 1.1.3-2\npackage: blur-effect\n\n2、source package:distrobox 1.4.2.1-1\npackage: distrobox\n\n3、source package:libcap-ng-dev 0.7.9-2_s390x\npackage: libcap-ng-dev\n\n4、source package:liblightdm-qt-dev 1.26.0-5_s390x\npackage: liblightdm-qt-dev\n\n5、source package:libpoppler-glib-dev 22.12.0-2\npackage: libpoppler-glib-dev\n\n6、source package:lightdm 1.9.9-1\npackage: lightdm\n\n7、source package:lightdm-gtk-greeter 2.0.8-3\npackage: lightdm-gtk-greeter\n\n8、source package:mtools 4.0.9-1\npackage: mtools\n\n9、source package:python-is-python3 8\npackage: python-is-python3\n\n10、source package:tpm2-tools 5.4-1\npackage: tpm2-tools\n\n\nOpen Source Software Licensed under the GPL-2.0-or-later:\n1、source package:ColumnsPlusPlus v0.0.1.2-alpha\npackage: ColumnsPlusPlus\n\n2、source package:Grub-Themes a7ec0fd\npackage: Grub-Themes\n\n3、source package:acl 2.3.1-3\npackage: acl\n\n4、source package:adduser 3.99\npackage: adduser\n\n5、source package:apt 2.7.1\npackage: apt\n\n6、source package:apt-utils 2.1.7_mips64el\npackage: apt-utils\n\n7、source package:aptitude 0.8.9-1\npackage: aptitude\n\n8、source package:aria2 1.9.5-1\npackage: aria2\n\n9、source package:arj 3.10.22.orig\npackage: arj\n\n10、source package:attr 2.4.48-5_s390x\npackage: attr\n\n11、source package:bash-completion 20080705\npackage: bash-completion\n\n12、source package:bc 1.07.1-3\npackage: bc\n\n13、source package:bluez 5.66-1\npackage: bluez\n\n14、source package:bluez-obexd 5.52-1_s390x\npackage: bluez-obexd\n\n15、source package:ca-certificates 20230311\npackage: ca-certificates\n\n16、source package:cornrow v0.8.0\npackage: cornrow\n\n17、source package:cups-filters 1.9.0-2\npackage: cups-filters\n\n18、source package:cyberduck release-4-9-1\npackage: cyberduck\n\n19、source package:debhelper 9.20160814\npackage: debhelper\n\n20、source package:dh-dkms 3.0.9-1\npackage: dh-dkms\n\n21、source package:dh-golang 1.9\npackage: dh-golang\n\n22、source package:dkms 3.0.8-3\npackage: dkms\n\n23、source package:dmidecode 3.5-1\npackage: dmidecode\n\n24、source package:dnsmasq-base 2.89-1\npackage: dnsmasq-base\n\n25、source package:dpkg 1.9.21\npackage: dpkg\n\n26、source package:dpkg-dev 1.9.21\npackage: dpkg-dev\n\n27、source package:efibootmgr 17-2\npackage: efibootmgr\n\n28、source package:eject 2.35.2-7_ppc64el\npackage: eject\n\n29、source package:ethtool 6-0\npackage: ethtool\n\n30、source package:exfat-fuse 1.3.0-2_armel\npackage: exfat-fuse\n\n31、source package:exfatprogs 1.2.1-2\npackage: exfatprogs\n\n32、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n33、source package:foomatic-db-compressed-ppds 20230107-1\npackage: foomatic-db-compressed-ppds\n\n34、source package:fprintd 1.94.2-2\npackage: fprintd\n\n35、source package:geoclue-2.0 2.7.0-2\npackage: geoclue-2.0\n\n36、source package:gnome-keyring 42.1-1\npackage: gnome-keyring\n\n37、source package:hwdata 0.372-1\npackage: hwdata\n\n38、source package:im-config 0.9\npackage: im-config\n\n39、source package:imwheel 1.0.0pre12.orig\npackage: imwheel\n\n40、source package:input-leap v2.4.0\npackage: input-leap\n\n41、source package:ipwatchd 1.3.0\npackage: ipwatchd\n\n42、source package:jfsutils 1.1.8-1\npackage: jfsutils\n\n43、source package:kbd 2.5.1-1\npackage: kbd\n\n44、source package:kscreenlocker-dev 5.8.6-2_s390x\npackage: kscreenlocker-dev\n\n45、source package:lcov 1.9.orig\npackage: lcov\n\n46、source package:libappstreamqt-dev 0.9.8-4_kfreebsd-i386\npackage: libappstreamqt-dev\n\n47、source package:libblkid-dev 2.35.2-7_mipsel\npackage: libblkid-dev\n\n48、source package:libcryptsetup-dev 2:2.4.0-1\npackage: libcryptsetup-dev\n\n49、source package:libddcutil-dev 0.9.8-4_s390x\npackage: libddcutil-dev\n\n50、source package:libdpkg-dev 1.20.5_ppc64el\npackage: libdpkg-dev\n\n51、source package:libdvdnav-dev 6.1.0-1_s390x\npackage: libdvdnav-dev\n\n52、source package:libffmpegthumbnailer-dev 2.1.1-0.2_kfreebsd-amd64\npackage: libffmpegthumbnailer-dev\n\n53、source package:libffmpegthumbnailer4v5 2.1.1-0.2_kfreebsd-amd64\npackage: libffmpegthumbnailer4v5\n\n54、source package:libltdl-dev 2.4.7-6\npackage: libltdl-dev\n\n55、source package:libmount-dev 2.35.2-7_s390x\npackage: libmount-dev\n\n56、source package:libmpv-dev 0.9.2-1+ffmpeg\npackage: libmpv-dev\n\n57、source package:libmpv1 0.6.2-2_s390x\npackage: libmpv1\n\n58、source package:libmpv2 0.36.0+git.20230723.60a26324\npackage: libmpv2\n\n59、source package:libnm-dev 1.6.2-3+deb9u2_s390x\npackage: libnm-dev\n\n60、source package:libpam-fprintd 1.90.1-1_s390x\npackage: libpam-fprintd\n\n61、source package:libvlc-dev 3.0.9.2-1\npackage: libvlc-dev\n\n62、source package:libvlc5 3.0.8-4_s390x\npackage: libvlc5\n\n63、source package:libvlccore-dev 3.0.8-4_s390x\npackage: libvlccore-dev\n\n64、source package:libvncserver LibVNCServer-0.9.14\npackage: libvncserver\n\n65、source package:lzop 1.04-2\npackage: lzop\n\n66、source package:man-db 2.9.4-4\npackage: man-db\n\n67、source package:net-tools 2.10-0.1\npackage: net-tools\n\n68、source package:network-manager 1.9.90-1\npackage: network-manager\n\n69、source package:nilfs-tools 2.2.9-1\npackage: nilfs-tools\n\n70、source package:ntfs-3g 2017.3.23AR.5.orig\npackage: ntfs-3g\n\n71、source package:packagekit 1.2.6-5\npackage: packagekit\n\n72、source package:pandoc 2.9.2.1-3\npackage: pandoc\n\n73、source package:pciutils 3.7.0.orig\npackage: pciutils\n\n74、source package:pinn 0.0\npackage: pinn\n\n75、source package:pkg-config 0.29.2.orig\npackage: pkg-config\n\n76、source package:pkg-kde-tools 0.9.5\npackage: pkg-kde-tools\n\n77、source package:plymouth 22.02.122-3\npackage: plymouth\n\n78、source package:plymouth-label 0.9.4-3_s390x\npackage: plymouth-label\n\n79、source package:pppoe 3.8-3_sparc\npackage: pppoe\n\n80、source package:procps 3.3.9.orig\npackage: procps\n\n81、source package:python3-dbus 1.2.8-3_s390x\npackage: python3-dbus\n\n82、source package:python3-smbc 1.0.23-2\npackage: python3-smbc\n\n83、source package:rfkill 2.35.2-7_s390x\npackage: rfkill\n\n84、source package:rzip 2.1.orig\npackage: rzip\n\n85、source package:sectpmctl 1.1.3\npackage: sectpmctl\n\n86、source package:sensible-utils 0.0.9+nmu1\npackage: sensible-utils\n\n87、source package:socat 2.0.0~beta9-1_ppc64el\npackage: socat\n\n88、source package:squashfs-tools 4.4-2_s390x\npackage: squashfs-tools\n\n89、source package:syslinux 6.04~git20190206.bf6db5b4+dfsg1.orig\npackage: syslinux\n\n90、source package:syslinux-common 6.04~git20190206.bf6db5b4+dfsg1-2_all\npackage: syslinux-common\n\n91、source package:udisks2 2.9.4-4\npackage: udisks2\n\n92、source package:unace 1.2b-9\npackage: unace\n\n93、source package:upower 1.90.2-3\npackage: upower\n\n94、source package:usb-modeswitch 2.6.1.orig\npackage: usb-modeswitch\n\n95、source package:usbmuxd 1.1.1~git20191130.9af2b12-1_s390x\npackage: usbmuxd\n\n96、source package:usbutils 1:015-1\npackage: usbutils\n\n97、source package:user-setup 1.95\npackage: user-setup\n\n98、source package:uuid-dev 2.35.2-7_ppc64el\npackage: uuid-dev\n\n99、source package:vlc-plugin-base 3.0.8-4_s390x\npackage: vlc-plugin-base\n\n100、source package:xdg-user-dirs 0.9-1\npackage: xdg-user-dirs\n\n101、source package:xserver-xorg-input-wacom 1.2.0-1~exp1\npackage: xserver-xorg-input-wacom\n\n102、source package:zssh 1.5c.debian.1-8\npackage: zssh\n\n\nOpen Source Software Licensed under the GPL-2.0-only:\n1、source package:GitQlient v1.4.3\npackage: GitQlient\n\n2、source package:alsa-utils 1.2.9-1\npackage: alsa-utils\n\n3、source package:btrfs-progs 6.3.2-1\npackage: btrfs-progs\n\n4、source package:checkstyle checkstyle-10.3.4\npackage: checkstyle\n\n5、source package:dmsetup 1.02.90-2.2+deb8u1_s390x\npackage: dmsetup\n\n6、source package:doxygen 1.9.4-4\npackage: doxygen\n\n7、source package:e2fsprogs 1.47.0-2\npackage: e2fsprogs\n\n8、source package:gcc 9.2.1-4.1_mips64el\npackage: gcc\n\n9、source package:genisoimage 9:1.1.11-3.4\npackage: genisoimage\n\n10、source package:git 4.3.20-9\npackage: git\n\n11、source package:grub-efi-amd64-signed 1+2.06+8.1\npackage: grub-efi-amd64-signed\n\n12、source package:grub-efi-arm64-signed 1+2.06+8.1\npackage: grub-efi-arm64-signed\n\n13、source package:gtk2-engines 2.20.2.orig\npackage: gtk2-engines\n\n14、source package:gtk2-engines-murrine 0.98.2.orig\npackage: gtk2-engines-murrine\n\n15、source package:iio-sensor-proxy 3.4-2\npackage: iio-sensor-proxy\n\n16、source package:initramfs-tools-core 0.137_all\npackage: initramfs-tools-core\n\n17、source package:kwin v5.27.2\npackage: kwin\n\n18、source package:libcap-ng-dev 0.7.9-2_s390x\npackage: libcap-ng-dev\n\n19、source package:libdjvulibre-dev 3.5.28-2\npackage: libdjvulibre-dev\n\n20、source package:libglib2.0-dev 2.64.4-1_s390x\npackage: libglib2.0-dev\n\n21、source package:liblightdm-qt-dev 1.26.0-5_s390x\npackage: liblightdm-qt-dev\n\n22、source package:libnm-qt 0.9.8.2.orig\npackage: libnm-qt\n\n23、source package:libpoppler-glib-dev 22.12.0-2\npackage: libpoppler-glib-dev\n\n24、source package:libraw-dev 0.9.1-1+deb6u1\npackage: libraw-dev\n\n25、source package:lightdm 1.9.9-1\npackage: lightdm\n\n26、source package:lsb-base 9.20161125_all\npackage: lsb-base\n\n27、source package:lshw 02.19.git.2021.06.19.996aaad9c7-2~bpo11+1\npackage: lshw\n\n28、source package:lvm2 2.03.16-1.1\npackage: lvm2\n\n29、source package:mawk 1.3.4.20230525-1~exp1\npackage: mawk\n\n30、source package:modemmanager 1.8.2.orig\npackage: modemmanager\n\n31、source package:networkmanager-qt 5.54.0.orig\npackage: networkmanager-qt\n\n32、source package:openprinting-ppds 20200427-1_all\npackage: openprinting-ppds\n\n33、source package:proxychains4 4.14-3_s390x\npackage: proxychains4\n\n34、source package:qt-creator tqtc/v2.6.0-rc\npackage: qt-creator\n\n35、source package:qtciphersqliteplugin 0.6\npackage: qtciphersqliteplugin\n\n36、source package:qtermwidget 0.7.1.orig\npackage: qtermwidget\n\n37、source package:reiserfsprogs 3.x.1b-1\npackage: reiserfsprogs\n\n38、source package:sane-airscan 0.99.8-2\npackage: sane-airscan\n\n39、source package:slirp4netns 1.2.0-1\npackage: slirp4netns\n\n40、source package:smartmontools 7.3-1\npackage: smartmontools\n\n41、source package:synergy-stable-builds 1.8.2-stable\npackage: synergy-stable-builds\n\n42、source package:systemd 8-2\npackage: systemd\n\n43、source package:ttf-unifont 9.0.06-2_all\npackage: ttf-unifont\n\n44、source package:wireless-tools 30~pre9.orig\npackage: wireless-tools\n\n45、source package:xfonts-wqy 1.0.0~rc1-7\npackage: xfonts-wqy\n\n46、source package:xfsprogs 6.3.0-1\npackage: xfsprogs\n\n\nOpen Source Software Licensed under the LGPL-3.0-or-later:\n1、source package:kdecoration 4:5.26.90-2\npackage: kdecoration\n\n2、source package:libheif-dev 1.6.1-1_s390x\npackage: libheif-dev\n\n3、source package:libzmq3-dev 4.3.2-2_s390x\npackage: libzmq3-dev\n\n4、source package:python3-ldb 2.1.4-2_s390x\npackage: python3-ldb\n\n5、source package:python3-tdb 1.4.3-1_s390x\npackage: python3-tdb\n\n6、source package:tdb-tools 1.4.3-1_s390x\npackage: tdb-tools\n\n\nOpen Source Software Licensed under the LGPL-3.0-only:\n1、source package:QtZeroConf pre_Android_api30\npackage: QtZeroConf\n\n2、source package:cryfs 0.9.9-2\npackage: cryfs\n\n3、source package:libgsettings-qt-dev 0.2-1_s390x\npackage: libgsettings-qt-dev\n\n4、source package:qt5integration 5.6.3\npackage: qt5integration\n\n5、source package:qtwebengine-opensource-src 5.14.2+dfsg1.orig\npackage: qtwebengine-opensource-src\n\n\nOpen Source Software Licensed under the LGPL-2.1-or-later:\n1、source package:fcitx5 5.0.9-2\npackage: fcitx5\n\n2、source package:fcitx5-chinese-addons 5.0.9-2\npackage: fcitx5-chinese-addons\n\n3、source package:fcitx5-frontend-gtk2 5.0.9-1\npackage: fcitx5-frontend-gtk2\n\n4、source package:fcitx5-frontend-qt5 0.0~git20200615.b6f2ef3-1_s390x\npackage: fcitx5-frontend-qt5\n\n5、source package:fcitx5-module-xorg 0~20191021+ds1-1_s390x\npackage: fcitx5-module-xorg\n\n6、source package:fcitx5-modules 0~20191021+ds1-1_s390x\npackage: fcitx5-modules\n\n7、source package:fcitx5-modules-dev 5.0.23-2~exp1\npackage: fcitx5-modules-dev\n\n8、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n9、source package:gcr 3.8.2-4\npackage: gcr\n\n10、source package:iso-codes 4.9.0-1\npackage: iso-codes\n\n11、source package:kcm-fcitx5 5.0.13-1\npackage: kcm-fcitx5\n\n12、source package:libappstreamqt-dev 0.9.8-4_kfreebsd-i386\npackage: libappstreamqt-dev\n\n13、source package:libavcodec-dev 4.3-3+b1_s390x\npackage: libavcodec-dev\n\n14、source package:libavcodec58 4.3-3+b1_ppc64el\npackage: libavcodec58\n\n15、source package:libavdevice-dev 4.3-3+b1_ppc64el\npackage: libavdevice-dev\n\n16、source package:libavfilter-dev 4.3-3+b1_mips64el\npackage: libavfilter-dev\n\n17、source package:libavformat-dev 4.3-3+b1_ppc64el\npackage: libavformat-dev\n\n18、source package:libavformat58 4.3-3+b1_i386\npackage: libavformat58\n\n19、source package:libavutil-dev 4.3-3+b1_s390x\npackage: libavutil-dev\n\n20、source package:libavutil56 4.3-3+b1_s390x\npackage: libavutil56\n\n21、source package:libblockdev-crypto2 2.24-2_mipsel\npackage: libblockdev-crypto2\n\n22、source package:libdbusextended-qt5-dev 0.0.3-4_s390x\npackage: libdbusextended-qt5-dev\n\n23、source package:libfcitx5-qt-dev 0.0~git20200615.b6f2ef3-1_ppc64el\npackage: libfcitx5-qt-dev\n\n24、source package:libfcitx5core-dev 0~20191021+ds1-1_s390x\npackage: libfcitx5core-dev\n\n25、source package:libfcitx5utils-dev 0~20191021+ds1-1_s390x\npackage: libfcitx5utils-dev\n\n26、source package:libgxps-dev 0.3.1-1_s390x\npackage: libgxps-dev\n\n27、source package:libime-bin 0.0~git20200626.2c85668-1_s390x\npackage: libime-bin\n\n28、source package:libimobiledevice-utils 1.3.0-3_s390x\npackage: libimobiledevice-utils\n\n29、source package:libnss-myhostname 245.6-2_s390x\npackage: libnss-myhostname\n\n30、source package:libprocps-dev 3.3.16-5_s390x\npackage: libprocps-dev\n\n31、source package:libpulse-dev 7.1-2~bpo8+1_s390x\npackage: libpulse-dev\n\n32、source package:libpulse-mainloop-glib0 9.0-5\npackage: libpulse-mainloop-glib0\n\n33、source package:libpulse0 7.1-2~bpo8+1_s390x\npackage: libpulse0\n\n34、source package:libqrencode-dev 4.0.2-2_s390x\npackage: libqrencode-dev\n\n35、source package:libqrencode4 4.1.1-1\npackage: libqrencode4\n\n36、source package:libsecret-1-dev 0.20.5-3\npackage: libsecret-1-dev\n\n37、source package:libswresample-dev 4.3-3+b1_ppc64el\npackage: libswresample-dev\n\n38、source package:libswscale-dev 4.3-3+b1_s390x\npackage: libswscale-dev\n\n39、source package:libsystemd-dev 245.6-2_i386\npackage: libsystemd-dev\n\n40、source package:libsystemd0 245.6-2_s390x\npackage: libsystemd0\n\n41、source package:libudev-dev 245.6-2_s390x\npackage: libudev-dev\n\n42、source package:packagekit 1.2.6-5\npackage: packagekit\n\n43、source package:pulseaudio 9.99.1-1\npackage: pulseaudio\n\n44、source package:pulseaudio-module-bluetooth 7.1-2~bpo8+1_s390x\npackage: pulseaudio-module-bluetooth\n\n45、source package:pulseaudio-utils 7.1-2~bpo8+1_s390x\npackage: pulseaudio-utils\n\n46、source package:python3-gi 3.43.1-1\npackage: python3-gi\n\n47、source package:systemd-coredump 245.6-2_mipsel\npackage: systemd-coredump\n\n48、source package:systemd-timesyncd 245.6-2_ppc64el\npackage: systemd-timesyncd\n\n49、source package:udev 245.6-2_s390x\npackage: udev\n\n50、source package:unar 1.9.1-1\npackage: unar\n\n\nOpen Source Software Licensed under the LGPL-2.1-only:\n1、source package:GitQlient v1.4.3\npackage: GitQlient\n\n2、source package:cgroup-tools 0.41-8.1_s390x\npackage: cgroup-tools\n\n3、source package:checkstyle checkstyle-10.3.4\npackage: checkstyle\n\n4、source package:cracklib-runtime 2.9.6-3_s390x\npackage: cracklib-runtime\n\n5、source package:dialog 1.3-20230209-1\npackage: dialog\n\n6、source package:dmsetup 1.02.90-2.2+deb8u1_s390x\npackage: dmsetup\n\n7、source package:gettext-base 0.19.8.1-9_s390x\npackage: gettext-base\n\n8、source package:gstreamer1.0-libav 1.9.90-1\npackage: gstreamer1.0-libav\n\n9、source package:gstreamer1.0-plugins-base 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-base\n\n10、source package:gstreamer1.0-plugins-good 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-good\n\n11、source package:gstreamer1.0-plugins-ugly 1.9.90-1\npackage: gstreamer1.0-plugins-ugly\n\n12、source package:gstreamer1.0-pulseaudio 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-pulseaudio\n\n13、source package:gstreamer1.0-x 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-x\n\n14、source package:gtk2-engines 2.20.2.orig\npackage: gtk2-engines\n\n15、source package:gtk2-engines-murrine 0.98.2.orig\npackage: gtk2-engines-murrine\n\n16、source package:gtk2-engines-pixbuf 2.8.9-2\npackage: gtk2-engines-pixbuf\n\n17、source package:kmod 9-3_sparc\npackage: kmod\n\n18、source package:libcairo2-dev 1.16.0-4_s390x\npackage: libcairo2-dev\n\n19、source package:libcap-ng-dev 0.7.9-2_s390x\npackage: libcap-ng-dev\n\n20、source package:libcrack2-dev 2.9.6-5\npackage: libcrack2-dev\n\n21、source package:libfprint 20110418git-2\npackage: libfprint\n\n22、source package:libfprint-2-2 1.90.1-2_s390x\npackage: libfprint-2-2\n\n23、source package:libfprint0 1.0-1_s390x\npackage: libfprint0\n\n24、source package:libglib2.0-dev 2.64.4-1_s390x\npackage: libglib2.0-dev\n\n25、source package:libgstreamer-plugins-base1.0-0 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-0\n\n26、source package:libgstreamer-plugins-base1.0-dev 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-dev\n\n27、source package:libgstreamer1.0-0 1.4.4-2_kfreebsd-i386\npackage: libgstreamer1.0-0\n\n28、source package:libgstreamer1.0-dev 1.4.4-2_kfreebsd-i386\npackage: libgstreamer1.0-dev\n\n29、source package:libgtk-3-dev 3.4.2-7+deb7u1_sparc\npackage: libgtk-3-dev\n\n30、source package:liblog4cpp5-dev 1.1.3-3_s390x\npackage: liblog4cpp5-dev\n\n31、source package:liblog4cpp5v5 1.1.3-3_ppc64el\npackage: liblog4cpp5v5\n\n32、source package:libnm-qt 0.9.8.2.orig\npackage: libnm-qt\n\n33、source package:libnotify-bin 0.7.9-1_s390x\npackage: libnotify-bin\n\n34、source package:libraw-dev 0.9.1-1+deb6u1\npackage: libraw-dev\n\n35、source package:librsvg2-dev 2.9.5-6\npackage: librsvg2-dev\n\n36、source package:libsdl1.2debian 1.2.15-5_sparc\npackage: libsdl1.2debian\n\n37、source package:libseccomp-dev 2.4.3-1_s390x\npackage: libseccomp-dev\n\n38、source package:libtag1-dev 1.9.1-2~bpo70+1_sparc\npackage: libtag1-dev\n\n39、source package:libusb-1.0-0-dev 1.0.23-2_s390x\npackage: libusb-1.0-0-dev\n\n40、source package:modemmanager 1.8.2.orig\npackage: modemmanager\n\n41、source package:networkmanager-qt 5.54.0.orig\npackage: networkmanager-qt\n\n42、source package:p7zip 9.20.1~dfsg.1-5\npackage: p7zip\n\n43、source package:p7zip-full 9.20.1~dfsg.1-4.1_kfreebsd-i386\npackage: p7zip-full\n\n44、source package:qrencode 4.0.2.orig\npackage: qrencode\n\n45、source package:qt-creator tqtc/v2.6.0-rc\npackage: qt-creator\n\n46、source package:qtciphersqliteplugin 0.6\npackage: qtciphersqliteplugin\n\n47、source package:smartmontools 7.3-1\npackage: smartmontools\n\n\nOpen Source Software Licensed under the LGPL-3 or GPL-2:\n1、source package:libqt5core5a 5.7.1+dfsg-3+deb9u2_s390x\npackage: libqt5core5a\n\n2、source package:libqt5opengl5-dev 5.7.1+dfsg-3+deb9u2_s390x\npackage: libqt5opengl5-dev\n\n3、source package:libqt5sql5-sqlite 5.7.1+dfsg-3+deb9u2_s390x\npackage: libqt5sql5-sqlite\n\n4、source package:libqt5svg5-dev 5.7.1~20161021-2+b2_s390x\npackage: libqt5svg5-dev\n\n5、source package:libqt5x11extras5-dev 5.9.2-1\npackage: libqt5x11extras5-dev\n\n6、source package:libqt6multimedia6 6.4.2-6\npackage: libqt6multimedia6\n\n7、source package:libqt6opengl6 6.4.2+dfsg~rc1-3+alpha.1\npackage: libqt6opengl6\n\n8、source package:qml-module-qt-labs-platform 5.9.2-2_kfreebsd-amd64\npackage: qml-module-qt-labs-platform\n\n9、source package:qml-module-qtquick-controls2 5.9.2-2_kfreebsd-amd64\npackage: qml-module-qtquick-controls2\n\n10、source package:qml-module-qtquick-dialogs 5.7.1~20161021-2_s390x\npackage: qml-module-qtquick-dialogs\n\n11、source package:qml-module-qtquick-templates2 5.9.2-2_kfreebsd-amd64\npackage: qml-module-qtquick-templates2\n\n12、source package:qt5-qmake 5.7.1+dfsg-3+deb9u2_s390x\npackage: qt5-qmake\n\n13、source package:qt6-svg-dev 6.4.2~rc1-3\npackage: qt6-svg-dev\n\n14、source package:qt6-wayland 6.4.2~rc1-2\npackage: qt6-wayland\n\n15、source package:qtbase5-dev 5.7.1+dfsg-3+deb9u2_s390x\npackage: qtbase5-dev\n\n16、source package:qtbase5-private-dev 5.7.1+dfsg-3+deb9u2_s390x\npackage: qtbase5-private-dev\n\n17、source package:qtmultimedia5-dev 5.7.1~20161021-2_s390x\npackage: qtmultimedia5-dev\n\n18、source package:qtquickcontrols2-5-dev 5.9.2-2_kfreebsd-amd64\npackage: qtquickcontrols2-5-dev\n\n\nOpen Source Software Licensed under the LGPL-3 or GPL-2+:\n1、source package:qml-module-qtqml-models2 5.7.1-2+b2_s390x\npackage: qml-module-qtqml-models2\n\n2、source package:qml-module-qtquick-layouts 5.7.1-2+b2_s390x\npackage: qml-module-qtquick-layouts\n\n3、source package:qml-module-qtquick2 5.7.1-2+b2_s390x\npackage: qml-module-qtquick2\n\n4、source package:qtdeclarative5-dev 5.7.1-2+b2_s390x\npackage: qtdeclarative5-dev\n\n\nOpen Source Software Licensed under the Apache-2.0:\n1、source package:AndroidProject-Kotlin 13.2\npackage: AndroidProject-Kotlin\n\n2、source package:JSONStream 1.3.5\npackage: JSONStream\n\n3、source package:acorn-node 1.8.2\npackage: acorn-node\n\n4、source package:android-pdfium a56ccce4\npackage: android-pdfium\n\n5、source package:androidsvg 1.4\npackage: androidsvg\n\n6、source package:atob 2.1.2\npackage: atob\n\n7、source package:aws-sign2 0.7.0\npackage: aws-sign2\n\n8、source package:caseless 0.12.0\npackage: caseless\n\n9、source package:cilium 1.14.3\npackage: cilium\n\n10、source package:circleindicator 2.1.6\npackage: circleindicator\n\n11、source package:cobra v0.0.3\npackage: cobra\n\n12、source package:compiler 4.12.0\npackage: compiler\n\n13、source package:concurrent 1.0.0\npackage: concurrent\n\n14、source package:coost v3.0.0\npackage: coost\n\n15、source package:core 1.7.0\npackage: core\n\n16、source package:cppdap 87f8b4a\npackage: cppdap\n\n17、source package:crypto v0.23.0\npackage: crypto\n\n18、source package:dash-ast 1.0.0\npackage: dash-ast\n\n19、source package:diff-match-patch 1.0.5\npackage: diff-match-patch\n\n20、source package:dompurify 2.4.1\npackage: dompurify\n\n21、source package:external/github.com/google/benchmark v1.4.1\npackage: external/github.com/google/benchmark\n\n22、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n23、source package:fonts-noto-color-emoji 2.038-1\npackage: fonts-noto-color-emoji\n\n24、source package:forever-agent 0.6.1\npackage: forever-agent\n\n25、source package:get-assigned-identifiers 1.2.0\npackage: get-assigned-identifiers\n\n26、source package:git 4.3.20-9\npackage: git\n\n27、source package:glide 4.12.0\npackage: glide\n\n28、source package:gofuzz v1.0.0\npackage: gofuzz\n\n29、source package:golang-github-golang-groupcache-dev 0.0~git20200121.8c9f03a-2\npackage: golang-github-golang-groupcache-dev\n\n30、source package:golang-gopkg-yaml.v2-dev 2.4.0-3\npackage: golang-gopkg-yaml.v2-dev\n\n31、source package:golang-gopkg-yaml.v3-dev 3.0.1-3\npackage: golang-gopkg-yaml.v3-dev\n\n32、source package:gradle 7.4.2\npackage: gradle\n\n33、source package:gson 2.10.1\npackage: gson\n\n34、source package:imgbrd-grabber v6.0.2\npackage: imgbrd-grabber\n\n35、source package:infratask_scheduler v0.1.0\npackage: infratask_scheduler\n\n36、source package:junit 1.1.5\npackage: junit\n\n37、source package:kata-containers CC-0.7.0\npackage: kata-containers\n\n38、source package:kotlin-gradle-plugin\npackage: kotlin-gradle-plugin\n\n39、source package:kotlin-stdlib-jdk7\npackage: kotlin-stdlib-jdk7\n\n40、source package:kotlinx-serialization-json 1.5.1\npackage: kotlinx-serialization-json\n\n41、source package:libcups2-dev 2.3~rc1-1_s390x\npackage: libcups2-dev\n\n42、source package:libcupsimage2 2.3~rc1-1_s390x\npackage: libcupsimage2\n\n43、source package:libpoppler-cpp-dev 0.85.0-1_s390x\npackage: libpoppler-cpp-dev\n\n44、source package:libpoppler-cpp0v5 0.85.0-1_s390x\npackage: libpoppler-cpp0v5\n\n45、source package:libssl-dev 3.0.0~~alpha4-1_s390x\npackage: libssl-dev\n\n46、source package:libssl3 3.0.0~~alpha4-1_s390x\npackage: libssl3\n\n47、source package:libwebrtc-bin 86.4240.20.0\npackage: libwebrtc-bin\n\n48、source package:libxerces-c-dev 3.2.3+debian-1_s390x\npackage: libxerces-c-dev\n\n49、source package:lottie 4.1.0\npackage: lottie\n\n50、source package:ms365 v2.0.5\npackage: ms365\n\n51、source package:oauth-sign 0.9.0\npackage: oauth-sign\n\n52、source package:okhttp 3.12.13\npackage: okhttp\n\n53、source package:podman 1.6.4+dfsg1-4_armel\npackage: podman\n\n54、source package:preference 1.2.1\npackage: preference\n\n55、source package:request 2.88.0\npackage: request\n\n56、source package:rsyslog 8.9.0-3\npackage: rsyslog\n\n57、source package:sass 1.55.0\npackage: sass\n\n58、source package:spdx-correct 3.1.1\npackage: spdx-correct\n\n59、source package:sse v0.1.0\npackage: sse\n\n60、source package:sync v0.10.0\npackage: sync\n\n61、source package:through 2.3.8\npackage: through\n\n62、source package:timber 4.7.1\npackage: timber\n\n63、source package:tinyrpc 2130294\npackage: tinyrpc\n\n64、source package:tools_oat 373f560\npackage: tools_oat\n\n65、source package:true-case-path 1.0.3\npackage: true-case-path\n\n66、source package:tunnel-agent 0.6.0\npackage: tunnel-agent\n\n67、source package:typescript 4.8.4\npackage: typescript\n\n68、source package:undeclared-identifiers 1.1.3\npackage: undeclared-identifiers\n\n69、source package:validate-npm-package-license 3.0.4\npackage: validate-npm-package-license\n\n70、source package:vimspector 2938438041\npackage: vimspector\n\n\nOpen Source Software Licensed under the MIT:\n1、source package:@antfu/utils 0.7.7\npackage: @antfu/utils\n\n2、source package:@babel/runtime 7.6.0\npackage: @babel/runtime\n\n3、source package:@babel/standalone 7.20.15\npackage: @babel/standalone\n\n4、source package:@ctrl/tinycolor 3.4.1\npackage: @ctrl/tinycolor\n\n5、source package:@element-plus/icons-vue 2.0.9\npackage: @element-plus/icons-vue\n\n6、source package:@esbuild/android-arm 0.15.9\npackage: @esbuild/android-arm\n\n7、source package:@esbuild/linux-loong64 0.15.9\npackage: @esbuild/linux-loong64\n\n8、source package:@floating-ui/core 1.0.1\npackage: @floating-ui/core\n\n9、source package:@floating-ui/dom 1.0.2\npackage: @floating-ui/dom\n\n10、source package:@jridgewell/gen-mapping 0.3.2\npackage: @jridgewell/gen-mapping\n\n11、source package:@jridgewell/resolve-uri 3.1.0\npackage: @jridgewell/resolve-uri\n\n12、source package:@jridgewell/set-array 1.1.2\npackage: @jridgewell/set-array\n\n13、source package:@jridgewell/source-map 0.3.2\npackage: @jridgewell/source-map\n\n14、source package:@jridgewell/sourcemap-codec 1.4.14\npackage: @jridgewell/sourcemap-codec\n\n15、source package:@jridgewell/trace-mapping 0.3.16\npackage: @jridgewell/trace-mapping\n\n16、source package:@nodelib/fs.scandir 2.1.5\npackage: @nodelib/fs.scandir\n\n17、source package:@nodelib/fs.stat 2.0.5\npackage: @nodelib/fs.stat\n\n18、source package:@nodelib/fs.walk 1.2.8\npackage: @nodelib/fs.walk\n\n19、source package:@popperjs/core 2.11.7\npackage: @popperjs/core\n\n20、source package:@rollup/pluginutils 5.1.0\npackage: @rollup/pluginutils\n\n21、source package:@smake/co 1.0.1\npackage: @smake/co\n\n22、source package:@types/estree 1.0.5\npackage: @types/estree\n\n23、source package:@types/json-schema 7.0.6\npackage: @types/json-schema\n\n24、source package:@types/lodash 4.14.185\npackage: @types/lodash\n\n25、source package:@types/lodash-es 4.17.6\npackage: @types/lodash-es\n\n26、source package:@types/node 14.14.6\npackage: @types/node\n\n27、source package:@types/web-bluetooth 0.0.15\npackage: @types/web-bluetooth\n\n28、source package:@vitejs/plugin-legacy 2.3.1\npackage: @vitejs/plugin-legacy\n\n29、source package:@vitejs/plugin-vue 3.1.0\npackage: @vitejs/plugin-vue\n\n30、source package:@vue/devtools-api 6.4.1\npackage: @vue/devtools-api\n\n31、source package:@vueuse/core 9.3.0\npackage: @vueuse/core\n\n32、source package:@vueuse/metadata 9.3.0\npackage: @vueuse/metadata\n\n33、source package:@vueuse/shared 9.3.0\npackage: @vueuse/shared\n\n34、source package:CppLogging 1.0.1.0\npackage: CppLogging\n\n35、source package:abbrev 1.1.1\npackage: abbrev\n\n36、source package:acorn 7.0.0\npackage: acorn\n\n37、source package:acorn-dynamic-import 2.0.2\npackage: acorn-dynamic-import\n\n38、source package:acorn-node 1.8.2\npackage: acorn-node\n\n39、source package:acorn-walk 7.0.0\npackage: acorn-walk\n\n40、source package:add-px-to-style 1.0.0\npackage: add-px-to-style\n\n41、source package:ajv 6.12.6\npackage: ajv\n\n42、source package:ajv-keywords 3.5.2\npackage: ajv-keywords\n\n43、source package:align-text 0.1.4\npackage: align-text\n\n44、source package:amdefine 1.0.1\npackage: amdefine\n\n45、source package:ansi-gray 0.1.1\npackage: ansi-gray\n\n46、source package:ansi-regex 3.0.0\npackage: ansi-regex\n\n47、source package:ansi-styles 2.2.1\npackage: ansi-styles\n\n48、source package:ansi-wrap 0.1.0\npackage: ansi-wrap\n\n49、source package:anyks-lm 2.1.5\npackage: anyks-lm\n\n50、source package:apt 2.7.1\npackage: apt\n\n51、source package:archy 1.0.0\npackage: archy\n\n52、source package:arr-diff 4.0.0\npackage: arr-diff\n\n53、source package:arr-flatten 1.1.0\npackage: arr-flatten\n\n54、source package:arr-union 3.1.0\npackage: arr-union\n\n55、source package:array-differ 1.0.0\npackage: array-differ\n\n56、source package:array-each 1.0.1\npackage: array-each\n\n57、source package:array-find-index 1.0.2\npackage: array-find-index\n\n58、source package:array-slice 1.1.0\npackage: array-slice\n\n59、source package:array-uniq 1.0.3\npackage: array-uniq\n\n60、source package:array-unique 0.3.2\npackage: array-unique\n\n61、source package:asn1 0.2.4\npackage: asn1\n\n62、source package:asn1.js 5.4.1\npackage: asn1.js\n\n63、source package:assert 1.5.0\npackage: assert\n\n64、source package:assert-plus 1.0.0\npackage: assert-plus\n\n65、source package:assign-symbols 1.0.0\npackage: assign-symbols\n\n66、source package:async 2.6.3\npackage: async\n\n67、source package:async-each 1.0.3\npackage: async-each\n\n68、source package:async-foreach 0.1.3\npackage: async-foreach\n\n69、source package:async-validator 4.2.5\npackage: async-validator\n\n70、source package:asynckit 0.4.0\npackage: asynckit\n\n71、source package:atob 2.1.2\npackage: atob\n\n72、source package:aws4 1.8.0\npackage: aws4\n\n73、source package:babel-code-frame 6.26.0\npackage: babel-code-frame\n\n74、source package:babel-core 6.26.3\npackage: babel-core\n\n75、source package:babel-generator 6.26.1\npackage: babel-generator\n\n76、source package:babel-helper-builder-binary-assignment-operator-visitor 6.24.1\npackage: babel-helper-builder-binary-assignment-operator-visitor\n\n77、source package:babel-helper-builder-react-jsx 6.26.0\npackage: babel-helper-builder-react-jsx\n\n78、source package:babel-helper-call-delegate 6.24.1\npackage: babel-helper-call-delegate\n\n79、source package:babel-helper-define-map 6.26.0\npackage: babel-helper-define-map\n\n80、source package:babel-helper-explode-assignable-expression 6.24.1\npackage: babel-helper-explode-assignable-expression\n\n81、source package:babel-helper-function-name 6.24.1\npackage: babel-helper-function-name\n\n82、source package:babel-helper-get-function-arity 6.24.1\npackage: babel-helper-get-function-arity\n\n83、source package:babel-helper-hoist-variables 6.24.1\npackage: babel-helper-hoist-variables\n\n84、source package:babel-helper-optimise-call-expression 6.24.1\npackage: babel-helper-optimise-call-expression\n\n85、source package:babel-helper-regex 6.26.0\npackage: babel-helper-regex\n\n86、source package:babel-helper-remap-async-to-generator 6.24.1\npackage: babel-helper-remap-async-to-generator\n\n87、source package:babel-helper-replace-supers 6.24.1\npackage: babel-helper-replace-supers\n\n88、source package:babel-helpers 6.24.1\npackage: babel-helpers\n\n89、source package:babel-messages 6.23.0\npackage: babel-messages\n\n90、source package:babel-plugin-check-es2015-constants 6.22.0\npackage: babel-plugin-check-es2015-constants\n\n91、source package:babel-plugin-syntax-async-functions 6.13.0\npackage: babel-plugin-syntax-async-functions\n\n92、source package:babel-plugin-syntax-exponentiation-operator 6.13.0\npackage: babel-plugin-syntax-exponentiation-operator\n\n93、source package:babel-plugin-syntax-flow 6.18.0\npackage: babel-plugin-syntax-flow\n\n94、source package:babel-plugin-syntax-jsx 6.18.0\npackage: babel-plugin-syntax-jsx\n\n95、source package:babel-plugin-syntax-trailing-function-commas 6.22.0\npackage: babel-plugin-syntax-trailing-function-commas\n\n96、source package:babel-plugin-transform-async-to-generator 6.24.1\npackage: babel-plugin-transform-async-to-generator\n\n97、source package:babel-plugin-transform-es2015-arrow-functions 6.22.0\npackage: babel-plugin-transform-es2015-arrow-functions\n\n98、source package:babel-plugin-transform-es2015-block-scoped-functions 6.22.0\npackage: babel-plugin-transform-es2015-block-scoped-functions\n\n99、source package:babel-plugin-transform-es2015-block-scoping 6.26.0\npackage: babel-plugin-transform-es2015-block-scoping\n\n100、source package:babel-plugin-transform-es2015-classes 6.24.1\npackage: babel-plugin-transform-es2015-classes\n\n101、source package:babel-plugin-transform-es2015-computed-properties 6.24.1\npackage: babel-plugin-transform-es2015-computed-properties\n\n102、source package:babel-plugin-transform-es2015-destructuring 6.23.0\npackage: babel-plugin-transform-es2015-destructuring\n\n103、source package:babel-plugin-transform-es2015-duplicate-keys 6.24.1\npackage: babel-plugin-transform-es2015-duplicate-keys\n\n104、source package:babel-plugin-transform-es2015-for-of 6.23.0\npackage: babel-plugin-transform-es2015-for-of\n\n105、source package:babel-plugin-transform-es2015-function-name 6.24.1\npackage: babel-plugin-transform-es2015-function-name\n\n106、source package:babel-plugin-transform-es2015-literals 6.22.0\npackage: babel-plugin-transform-es2015-literals\n\n107、source package:babel-plugin-transform-es2015-modules-amd 6.24.1\npackage: babel-plugin-transform-es2015-modules-amd\n\n108、source package:babel-plugin-transform-es2015-modules-commonjs 6.26.2\npackage: babel-plugin-transform-es2015-modules-commonjs\n\n109、source package:babel-plugin-transform-es2015-modules-systemjs 6.24.1\npackage: babel-plugin-transform-es2015-modules-systemjs\n\n110、source package:babel-plugin-transform-es2015-modules-umd 6.24.1\npackage: babel-plugin-transform-es2015-modules-umd\n\n111、source package:babel-plugin-transform-es2015-object-super 6.24.1\npackage: babel-plugin-transform-es2015-object-super\n\n112、source package:babel-plugin-transform-es2015-parameters 6.24.1\npackage: babel-plugin-transform-es2015-parameters\n\n113、source package:babel-plugin-transform-es2015-shorthand-properties 6.24.1\npackage: babel-plugin-transform-es2015-shorthand-properties\n\n114、source package:babel-plugin-transform-es2015-spread 6.22.0\npackage: babel-plugin-transform-es2015-spread\n\n115、source package:babel-plugin-transform-es2015-sticky-regex 6.24.1\npackage: babel-plugin-transform-es2015-sticky-regex\n\n116、source package:babel-plugin-transform-es2015-template-literals 6.22.0\npackage: babel-plugin-transform-es2015-template-literals\n\n117、source package:babel-plugin-transform-es2015-typeof-symbol 6.23.0\npackage: babel-plugin-transform-es2015-typeof-symbol\n\n118、source package:babel-plugin-transform-es2015-unicode-regex 6.24.1\npackage: babel-plugin-transform-es2015-unicode-regex\n\n119、source package:babel-plugin-transform-exponentiation-operator 6.24.1\npackage: babel-plugin-transform-exponentiation-operator\n\n120、source package:babel-plugin-transform-flow-strip-types 6.22.0\npackage: babel-plugin-transform-flow-strip-types\n\n121、source package:babel-plugin-transform-react-display-name 6.25.0\npackage: babel-plugin-transform-react-display-name\n\n122、source package:babel-plugin-transform-react-jsx 6.24.1\npackage: babel-plugin-transform-react-jsx\n\n123、source package:babel-plugin-transform-react-jsx-self 6.22.0\npackage: babel-plugin-transform-react-jsx-self\n\n124、source package:babel-plugin-transform-react-jsx-source 6.22.0\npackage: babel-plugin-transform-react-jsx-source\n\n125、source package:babel-plugin-transform-regenerator 6.26.0\npackage: babel-plugin-transform-regenerator\n\n126、source package:babel-plugin-transform-strict-mode 6.24.1\npackage: babel-plugin-transform-strict-mode\n\n127、source package:babel-polyfill 6.26.0\npackage: babel-polyfill\n\n128、source package:babel-preset-env 1.7.0\npackage: babel-preset-env\n\n129、source package:babel-preset-flow 6.23.0\npackage: babel-preset-flow\n\n130、source package:babel-preset-react 6.24.1\npackage: babel-preset-react\n\n131、source package:babel-register 6.26.0\npackage: babel-register\n\n132、source package:babel-runtime 6.26.0\npackage: babel-runtime\n\n133、source package:babel-template 6.26.0\npackage: babel-template\n\n134、source package:babel-traverse 6.26.0\npackage: babel-traverse\n\n135、source package:babel-types 6.26.0\npackage: babel-types\n\n136、source package:babelify 8.0.0\npackage: babelify\n\n137、source package:babylon 6.18.0\npackage: babylon\n\n138、source package:balanced-match 1.0.2\npackage: balanced-match\n\n139、source package:base 0.11.2\npackage: base\n\n140、source package:base64-js 1.3.1\npackage: base64-js\n\n141、source package:beeper 1.1.1\npackage: beeper\n\n142、source package:big.js 5.2.2\npackage: big.js\n\n143、source package:binary-extensions 2.2.0\npackage: binary-extensions\n\n144、source package:bl 1.2.2\npackage: bl\n\n145、source package:bn.js 5.1.3\npackage: bn.js\n\n146、source package:brace-expansion 2.0.1\npackage: brace-expansion\n\n147、source package:braces 3.0.2\npackage: braces\n\n148、source package:brorand 1.1.0\npackage: brorand\n\n149、source package:browser-pack 6.1.0\npackage: browser-pack\n\n150、source package:browser-resolve 1.11.3\npackage: browser-resolve\n\n151、source package:browserify 14.5.0\npackage: browserify\n\n152、source package:browserify-aes 1.2.0\npackage: browserify-aes\n\n153、source package:browserify-cipher 1.0.1\npackage: browserify-cipher\n\n154、source package:browserify-des 1.0.2\npackage: browserify-des\n\n155、source package:browserify-rsa 4.0.1\npackage: browserify-rsa\n\n156、source package:browserify-zlib 0.2.0\npackage: browserify-zlib\n\n157、source package:browserslist 3.2.8\npackage: browserslist\n\n158、source package:buffer 5.4.2\npackage: buffer\n\n159、source package:buffer-from 1.1.2\npackage: buffer-from\n\n160、source package:buffer-xor 1.0.3\npackage: buffer-xor\n\n161、source package:builtin-status-codes 3.0.0\npackage: builtin-status-codes\n\n162、source package:cache-base 1.0.1\npackage: cache-base\n\n163、source package:cached-path-relative 1.0.2\npackage: cached-path-relative\n\n164、source package:camelcase 4.1.0\npackage: camelcase\n\n165、source package:camelcase-keys 2.1.0\npackage: camelcase-keys\n\n166、source package:center-align 0.1.3\npackage: center-align\n\n167、source package:chalk 1.1.3\npackage: chalk\n\n168、source package:cheerio 1.0.0-rc.3\npackage: cheerio\n\n169、source package:chokidar 3.4.3\npackage: chokidar\n\n170、source package:cipher-base 1.0.4\npackage: cipher-base\n\n171、source package:class-utils 0.3.6\npackage: class-utils\n\n172、source package:clone 2.1.2\npackage: clone\n\n173、source package:clone-buffer 1.0.0\npackage: clone-buffer\n\n174、source package:clone-stats 1.0.0\npackage: clone-stats\n\n175、source package:cloneable-readable 1.1.3\npackage: cloneable-readable\n\n176、source package:code-point-at 1.1.0\npackage: code-point-at\n\n177、source package:collection-visit 1.0.0\npackage: collection-visit\n\n178、source package:combine-source-map 0.8.0\npackage: combine-source-map\n\n179、source package:combined-stream 1.0.8\npackage: combined-stream\n\n180、source package:commander 2.20.3\npackage: commander\n\n181、source package:component-emitter 1.3.0\npackage: component-emitter\n\n182、source package:compute-scroll-into-view 1.0.11\npackage: compute-scroll-into-view\n\n183、source package:concat-map 0.0.1\npackage: concat-map\n\n184、source package:concat-stream 1.6.2\npackage: concat-stream\n\n185、source package:console-browserify 1.2.0\npackage: console-browserify\n\n186、source package:constants-browserify 1.0.0\npackage: constants-browserify\n\n187、source package:convert-source-map 1.6.0\npackage: convert-source-map\n\n188、source package:cookiecutter-golang d372aa0\npackage: cookiecutter-golang\n\n189、source package:coost v3.0.0\npackage: coost\n\n190、source package:copy-descriptor 0.1.1\npackage: copy-descriptor\n\n191、source package:core-js 3.27.2\npackage: core-js\n\n192、source package:core-util-is 1.0.2\npackage: core-util-is\n\n193、source package:create-ecdh 4.0.4\npackage: create-ecdh\n\n194、source package:create-hash 1.2.0\npackage: create-hash\n\n195、source package:create-hmac 1.1.7\npackage: create-hmac\n\n196、source package:crelt 1.0.6\npackage: crelt\n\n197、source package:cross-spawn 5.1.0\npackage: cross-spawn\n\n198、source package:crypto-browserify 3.12.0\npackage: crypto-browserify\n\n199、source package:currently-unhandled 0.4.1\npackage: currently-unhandled\n\n200、source package:dashdash 1.14.1\npackage: dashdash\n\n201、source package:date-now 0.1.4\npackage: date-now\n\n202、source package:dateformat 2.2.0\npackage: dateformat\n\n203、source package:dayjs 1.11.5\npackage: dayjs\n\n204、source package:debug 4.3.4\npackage: debug\n\n205、source package:decamelize 1.2.0\npackage: decamelize\n\n206、source package:decode-uri-component 0.2.0\npackage: decode-uri-component\n\n207、source package:defaults 1.0.3\npackage: defaults\n\n208、source package:define-property 2.0.2\npackage: define-property\n\n209、source package:defined 1.0.0\npackage: defined\n\n210、source package:delayed-stream 1.0.0\npackage: delayed-stream\n\n211、source package:delegates 1.0.0\npackage: delegates\n\n212、source package:deprecated 0.0.1\npackage: deprecated\n\n213、source package:deps-sort 2.0.0\npackage: deps-sort\n\n214、source package:des.js 1.0.1\npackage: des.js\n\n215、source package:detect-file 1.0.0\npackage: detect-file\n\n216、source package:detect-indent 4.0.0\npackage: detect-indent\n\n217、source package:detective 4.7.1\npackage: detective\n\n218、source package:diffie-hellman 5.0.3\npackage: diffie-hellman\n\n219、source package:dom-css 2.1.0\npackage: dom-css\n\n220、source package:dom-serializer 0.1.1\npackage: dom-serializer\n\n221、source package:domain-browser 1.2.0\npackage: domain-browser\n\n222、source package:ecc-jsbn 0.1.2\npackage: ecc-jsbn\n\n223、source package:element-plus 2.2.17\npackage: element-plus\n\n224、source package:elliptic 6.5.3\npackage: elliptic\n\n225、source package:emojis-list 3.0.0\npackage: emojis-list\n\n226、source package:end-of-stream 0.1.5\npackage: end-of-stream\n\n227、source package:enhanced-resolve 3.4.1\npackage: enhanced-resolve\n\n228、source package:errno 0.1.7\npackage: errno\n\n229、source package:error-ex 1.3.2\npackage: error-ex\n\n230、source package:es6-iterator 2.0.3\npackage: es6-iterator\n\n231、source package:es6-map 0.1.5\npackage: es6-map\n\n232、source package:es6-set 0.1.5\npackage: es6-set\n\n233、source package:es6-symbol 3.1.1\npackage: es6-symbol\n\n234、source package:esbuild 0.15.9\npackage: esbuild\n\n235、source package:esbuild-android-64 0.15.9\npackage: esbuild-android-64\n\n236、source package:esbuild-android-arm64 0.15.9\npackage: esbuild-android-arm64\n\n237、source package:esbuild-darwin-64 0.15.9\npackage: esbuild-darwin-64\n\n238、source package:esbuild-darwin-arm64 0.15.9\npackage: esbuild-darwin-arm64\n\n239、source package:esbuild-freebsd-64 0.15.9\npackage: esbuild-freebsd-64\n\n240、source package:esbuild-freebsd-arm64 0.15.9\npackage: esbuild-freebsd-arm64\n\n241、source package:esbuild-linux-32 0.15.9\npackage: esbuild-linux-32\n\n242、source package:esbuild-linux-64 0.15.9\npackage: esbuild-linux-64\n\n243、source package:esbuild-linux-arm 0.15.9\npackage: esbuild-linux-arm\n\n244、source package:esbuild-linux-arm64 0.15.9\npackage: esbuild-linux-arm64\n\n245、source package:esbuild-linux-mips64le 0.15.9\npackage: esbuild-linux-mips64le\n\n246、source package:esbuild-linux-ppc64le 0.15.9\npackage: esbuild-linux-ppc64le\n\n247、source package:esbuild-linux-riscv64 0.15.9\npackage: esbuild-linux-riscv64\n\n248、source package:esbuild-linux-s390x 0.15.9\npackage: esbuild-linux-s390x\n\n249、source package:esbuild-netbsd-64 0.15.9\npackage: esbuild-netbsd-64\n\n250、source package:esbuild-openbsd-64 0.15.9\npackage: esbuild-openbsd-64\n\n251、source package:esbuild-sunos-64 0.15.9\npackage: esbuild-sunos-64\n\n252、source package:esbuild-windows-32 0.15.9\npackage: esbuild-windows-32\n\n253、source package:esbuild-windows-64 0.15.9\npackage: esbuild-windows-64\n\n254、source package:esbuild-windows-arm64 0.15.9\npackage: esbuild-windows-arm64\n\n255、source package:escape-html 1.0.3\npackage: escape-html\n\n256、source package:escape-string-regexp 5.0.0\npackage: escape-string-regexp\n\n257、source package:estree-walker 2.0.2\npackage: estree-walker\n\n258、source package:event-emitter 0.3.5\npackage: event-emitter\n\n259、source package:events 3.2.0\npackage: events\n\n260、source package:evp_bytestokey 1.0.3\npackage: evp_bytestokey\n\n261、source package:execa 0.7.0\npackage: execa\n\n262、source package:expand-brackets 2.1.4\npackage: expand-brackets\n\n263、source package:expand-tilde 2.0.2\npackage: expand-tilde\n\n264、source package:expose-loader 1.0.1\npackage: expose-loader\n\n265、source package:extend 3.0.2\npackage: extend\n\n266、source package:extend-shallow 3.0.2\npackage: extend-shallow\n\n267、source package:extglob 2.0.4\npackage: extglob\n\n268、source package:extsprintf 1.3.0\npackage: extsprintf\n\n269、source package:fancy-log 1.3.3\npackage: fancy-log\n\n270、source package:fast-deep-equal 3.1.3\npackage: fast-deep-equal\n\n271、source package:fast-glob 3.2.12\npackage: fast-glob\n\n272、source package:fast-json-stable-stringify 2.1.0\npackage: fast-json-stable-stringify\n\n273、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n274、source package:fill-range 7.0.1\npackage: fill-range\n\n275、source package:find-index 0.1.1\npackage: find-index\n\n276、source package:find-up 2.1.0\npackage: find-up\n\n277、source package:findup-sync 2.0.0\npackage: findup-sync\n\n278、source package:fined 1.2.0\npackage: fined\n\n279、source package:first-chunk-stream 1.0.0\npackage: first-chunk-stream\n\n280、source package:flagged-respawn 1.0.1\npackage: flagged-respawn\n\n281、source package:for-in 1.0.2\npackage: for-in\n\n282、source package:for-own 1.0.0\npackage: for-own\n\n283、source package:form-data 2.3.3\npackage: form-data\n\n284、source package:fragment-cache 0.2.1\npackage: fragment-cache\n\n285、source package:fs.realpath 1.0.0\npackage: fs.realpath\n\n286、source package:fsevents 2.3.2\npackage: fsevents\n\n287、source package:function-bind 1.1.1\npackage: function-bind\n\n288、source package:gaze 1.1.3\npackage: gaze\n\n289、source package:get-stdin 4.0.1\npackage: get-stdin\n\n290、source package:get-stream 3.0.0\npackage: get-stream\n\n291、source package:get-value 2.0.6\npackage: get-value\n\n292、source package:getpass 0.1.7\npackage: getpass\n\n293、source package:gg v1.3.0\npackage: gg\n\n294、source package:gin v1.5.0\npackage: gin\n\n295、source package:git 4.3.20-9\npackage: git\n\n296、source package:gitea v1.19.3\npackage: gitea\n\n297、source package:glob-stream 3.1.18\npackage: glob-stream\n\n298、source package:glob-watcher 0.0.6\npackage: glob-watcher\n\n299、source package:glob2base 0.0.12\npackage: glob2base\n\n300、source package:global-modules 1.0.0\npackage: global-modules\n\n301、source package:global-prefix 1.0.2\npackage: global-prefix\n\n302、source package:globals 9.18.0\npackage: globals\n\n303、source package:globule 1.2.1\npackage: globule\n\n304、source package:glogg 1.0.2\npackage: glogg\n\n305、source package:go v1.1.7\npackage: go\n\n306、source package:go-isatty v0.0.9\npackage: go-isatty\n\n307、source package:go-pinyin v0.19.0\npackage: go-pinyin\n\n308、source package:go-wav v0.3.2\npackage: go-wav\n\n309、source package:go-windows-terminal-sequences v1.0.1\npackage: go-windows-terminal-sequences\n\n310、source package:goconvey v1.8.1\npackage: goconvey\n\n311、source package:golang-github-gosexy-gettext-dev 0~git20130221-2.1_all\npackage: golang-github-gosexy-gettext-dev\n\n312、source package:gstreamer1.0-fluendo-mp3 0.10.32.debian-1_s390x\npackage: gstreamer1.0-fluendo-mp3\n\n313、source package:gstreamer1.0-plugins-base 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-base\n\n314、source package:gstreamer1.0-plugins-good 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-good\n\n315、source package:gstreamer1.0-plugins-ugly 1.9.90-1\npackage: gstreamer1.0-plugins-ugly\n\n316、source package:gstreamer1.0-pulseaudio 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-pulseaudio\n\n317、source package:gstreamer1.0-x 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-x\n\n318、source package:gulp 3.9.1\npackage: gulp\n\n319、source package:gulp-concat 2.6.1\npackage: gulp-concat\n\n320、source package:gulp-rename 1.4.0\npackage: gulp-rename\n\n321、source package:gulp-sass 3.2.1\npackage: gulp-sass\n\n322、source package:gulp-util 3.0.8\npackage: gulp-util\n\n323、source package:gulplog 1.0.0\npackage: gulplog\n\n324、source package:har-validator 5.1.3\npackage: har-validator\n\n325、source package:has 1.0.3\npackage: has\n\n326、source package:has-ansi 2.0.0\npackage: has-ansi\n\n327、source package:has-flag 2.0.0\npackage: has-flag\n\n328、source package:has-gulplog 0.1.0\npackage: has-gulplog\n\n329、source package:has-value 1.0.0\npackage: has-value\n\n330、source package:has-values 1.0.0\npackage: has-values\n\n331、source package:hash-base 3.1.0\npackage: hash-base\n\n332、source package:hash.js 1.1.7\npackage: hash.js\n\n333、source package:history 4.9.0\npackage: history\n\n334、source package:hmac-drbg 1.0.1\npackage: hmac-drbg\n\n335、source package:home-or-tmp 2.0.0\npackage: home-or-tmp\n\n336、source package:homedir-polyfill 1.0.3\npackage: homedir-polyfill\n\n337、source package:htmlescape 1.1.1\npackage: htmlescape\n\n338、source package:htmlparser2 3.10.1\npackage: htmlparser2\n\n339、source package:http-signature 1.2.0\npackage: http-signature\n\n340、source package:https-browserify 1.0.0\npackage: https-browserify\n\n341、source package:image v0.10.0\npackage: image\n\n342、source package:immutable 4.1.0\npackage: immutable\n\n343、source package:indent-string 2.1.0\npackage: indent-string\n\n344、source package:indexof 0.0.1\npackage: indexof\n\n345、source package:inline-source-map 0.6.2\npackage: inline-source-map\n\n346、source package:insert-module-globals 7.2.0\npackage: insert-module-globals\n\n347、source package:interpret 1.4.0\npackage: interpret\n\n348、source package:invariant 2.2.4\npackage: invariant\n\n349、source package:invert-kv 1.0.0\npackage: invert-kv\n\n350、source package:is-absolute 1.0.0\npackage: is-absolute\n\n351、source package:is-accessor-descriptor 1.0.0\npackage: is-accessor-descriptor\n\n352、source package:is-arrayish 0.2.1\npackage: is-arrayish\n\n353、source package:is-binary-path 2.1.0\npackage: is-binary-path\n\n354、source package:is-buffer 1.1.6\npackage: is-buffer\n\n355、source package:is-core-module 2.10.0\npackage: is-core-module\n\n356、source package:is-data-descriptor 1.0.0\npackage: is-data-descriptor\n\n357、source package:is-descriptor 1.0.2\npackage: is-descriptor\n\n358、source package:is-extendable 1.0.1\npackage: is-extendable\n\n359、source package:is-extglob 2.1.1\npackage: is-extglob\n\n360、source package:is-finite 1.0.2\npackage: is-finite\n\n361、source package:is-fullwidth-code-point 2.0.0\npackage: is-fullwidth-code-point\n\n362、source package:is-glob 4.0.3\npackage: is-glob\n\n363、source package:is-number 7.0.0\npackage: is-number\n\n364、source package:is-plain-object 2.0.4\npackage: is-plain-object\n\n365、source package:is-relative 1.0.0\npackage: is-relative\n\n366、source package:is-stream 1.1.0\npackage: is-stream\n\n367、source package:is-typedarray 1.0.0\npackage: is-typedarray\n\n368、source package:is-unc-path 1.0.0\npackage: is-unc-path\n\n369、source package:is-utf8 0.2.1\npackage: is-utf8\n\n370、source package:is-windows 1.0.2\npackage: is-windows\n\n371、source package:isarray 1.0.0\npackage: isarray\n\n372、source package:isobject 3.0.1\npackage: isobject\n\n373、source package:isstream 0.1.2\npackage: isstream\n\n374、source package:java_fpe_test 0.1.2\npackage: java_fpe_test\n\n375、source package:jq 1.6-2.1\npackage: jq\n\n376、source package:jquery 3.6.1\npackage: jquery\n\n377、source package:js 0.1.0\npackage: js\n\n378、source package:js-tokens 3.0.2\npackage: js-tokens\n\n379、source package:jsbn 0.1.1\npackage: jsbn\n\n380、source package:jsesc 1.3.0\npackage: jsesc\n\n381、source package:json v3.7.0\npackage: json\n\n382、source package:json-loader 0.5.7\npackage: json-loader\n\n383、source package:json-schema-traverse 0.4.1\npackage: json-schema-traverse\n\n384、source package:json-stable-stringify 0.0.1\npackage: json-stable-stringify\n\n385、source package:json5 2.1.3\npackage: json5\n\n386、source package:jsonc-parser 3.2.0\npackage: jsonc-parser\n\n387、source package:jsonparse 1.3.1\npackage: jsonparse\n\n388、source package:jsprim 1.4.1\npackage: jsprim\n\n389、source package:jwt-cpp v0.5.0\npackage: jwt-cpp\n\n390、source package:keypress 0.1.0\npackage: keypress\n\n391、source package:kind-of 6.0.3\npackage: kind-of\n\n392、source package:labeled-stream-splicer 2.0.2\npackage: labeled-stream-splicer\n\n393、source package:lazy-cache 1.0.4\npackage: lazy-cache\n\n394、source package:lcid 1.0.0\npackage: lcid\n\n395、source package:libappimage-dev 0.1.9+dfsg-1_s390x\npackage: libappimage-dev\n\n396、source package:libboost-dev 1.71.0.3_s390x\npackage: libboost-dev\n\n397、source package:libboost-filesystem-dev 1.71.0.3_s390x\npackage: libboost-filesystem-dev\n\n398、source package:libboost-serialization-dev 1.71.0.3_s390x\npackage: libboost-serialization-dev\n\n399、source package:libboost-system-dev 1.71.0.3_s390x\npackage: libboost-system-dev\n\n400、source package:libdrm-dev 2.4.99-1_s390x\npackage: libdrm-dev\n\n401、source package:libegl1-mesa-dev 8.0.5-4+deb7u2_sparc\npackage: libegl1-mesa-dev\n\n402、source package:libgbm-dev 8.0.5-4+deb7u2_sparc\npackage: libgbm-dev\n\n403、source package:libglib2.0-dev 2.64.4-1_s390x\npackage: libglib2.0-dev\n\n404、source package:libgstreamer-plugins-base1.0-0 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-0\n\n405、source package:libgstreamer-plugins-base1.0-dev 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-dev\n\n406、source package:libjson-c3 0.12.1-1.3_s390x\npackage: libjson-c3\n\n407、source package:libjson-rpc-cpp v1.4.1\npackage: libjson-rpc-cpp\n\n408、source package:liblcms2-dev 2.9-4_s390x\npackage: liblcms2-dev\n\n409、source package:libportaudio2 19.6.0-1_s390x\npackage: libportaudio2\n\n410、source package:libx11-dev 2:1.8.4-2+deb12u1\npackage: libx11-dev\n\n411、source package:libx11-xcb-dev 1.6.9-2_s390x\npackage: libx11-xcb-dev\n\n412、source package:libxcb-composite0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-composite0-dev\n\n413、source package:libxcb-cursor-dev 0.1.1-4_s390x\npackage: libxcb-cursor-dev\n\n414、source package:libxcb-damage0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-damage0-dev\n\n415、source package:libxcb-ewmh-dev 0.4.1-1_s390x\npackage: libxcb-ewmh-dev\n\n416、source package:libxcb-image0-dev 0.4.0-1_s390x\npackage: libxcb-image0-dev\n\n417、source package:libxcb-keysyms1-dev 0.4.0-1_s390x\npackage: libxcb-keysyms1-dev\n\n418、source package:libxcb-randr0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-randr0-dev\n\n419、source package:libxcb-record0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-record0-dev\n\n420、source package:libxcb-render-util0-dev 0.3.9-1_s390x\npackage: libxcb-render-util0-dev\n\n421、source package:libxcb-render0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-render0-dev\n\n422、source package:libxcb-res0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-res0-dev\n\n423、source package:libxcb-shape0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-shape0-dev\n\n424、source package:libxcb-sync-dev 1.14-2_s390x\npackage: libxcb-sync-dev\n\n425、source package:libxcb-util0 0.3.8-3_s390x\npackage: libxcb-util0\n\n426、source package:libxcb-util0-dev 0.3.8-3_s390x\npackage: libxcb-util0-dev\n\n427、source package:libxcb-util1 0.4.0-1\npackage: libxcb-util1\n\n428、source package:libxcb-xfixes0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-xfixes0-dev\n\n429、source package:libxcb-xinerama0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-xinerama0-dev\n\n430、source package:libxcb-xinput-dev 1.14-2_s390x\npackage: libxcb-xinput-dev\n\n431、source package:libxcb-xkb-dev 1.14-2_s390x\npackage: libxcb-xkb-dev\n\n432、source package:libxcb-xtest0-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb-xtest0-dev\n\n433、source package:libxcb1-dev 1.8.1-2+deb7u1_sparc\npackage: libxcb1-dev\n\n434、source package:libxext-dev 1.3.3-1_s390x\npackage: libxext-dev\n\n435、source package:libxfixes-dev 5.0.3-2_s390x\npackage: libxfixes-dev\n\n436、source package:libxinerama-dev 2:1.1.4-3\npackage: libxinerama-dev\n\n437、source package:libxkbcommon-dev 0.9.1-1_s390x\npackage: libxkbcommon-dev\n\n438、source package:libxkbcommon-x11-dev 0.9.1-1_s390x\npackage: libxkbcommon-x11-dev\n\n439、source package:libxss-dev 1.2.3-1_s390x\npackage: libxss-dev\n\n440、source package:libxss1 1.2.3-1_s390x\npackage: libxss1\n\n441、source package:libxtst-dev 1.2.3-1_s390x\npackage: libxtst-dev\n\n442、source package:liftoff 2.5.0\npackage: liftoff\n\n443、source package:load-json-file 2.0.0\npackage: load-json-file\n\n444、source package:loader-runner 2.4.0\npackage: loader-runner\n\n445、source package:loader-utils 2.0.0\npackage: loader-utils\n\n446、source package:local-pkg 0.4.3\npackage: local-pkg\n\n447、source package:locales v0.12.1\npackage: locales\n\n448、source package:locate-path 2.0.0\npackage: locate-path\n\n449、source package:lodash 4.17.21\npackage: lodash\n\n450、source package:lodash-es 4.17.21\npackage: lodash-es\n\n451、source package:lodash-unified 1.0.2\npackage: lodash-unified\n\n452、source package:lodash._basecopy 3.0.1\npackage: lodash._basecopy\n\n453、source package:lodash._basetostring 3.0.1\npackage: lodash._basetostring\n\n454、source package:lodash._basevalues 3.0.0\npackage: lodash._basevalues\n\n455、source package:lodash._getnative 3.9.1\npackage: lodash._getnative\n\n456、source package:lodash._isiterateecall 3.0.9\npackage: lodash._isiterateecall\n\n457、source package:lodash._reescape 3.0.0\npackage: lodash._reescape\n\n458、source package:lodash._reevaluate 3.0.0\npackage: lodash._reevaluate\n\n459、source package:lodash._reinterpolate 3.0.0\npackage: lodash._reinterpolate\n\n460、source package:lodash._root 3.0.1\npackage: lodash._root\n\n461、source package:lodash.clonedeep 4.5.0\npackage: lodash.clonedeep\n\n462、source package:lodash.escape 3.2.0\npackage: lodash.escape\n\n463、source package:lodash.isarguments 3.1.0\npackage: lodash.isarguments\n\n464、source package:lodash.isarray 3.0.4\npackage: lodash.isarray\n\n465、source package:lodash.keys 3.1.2\npackage: lodash.keys\n\n466、source package:lodash.memoize 3.0.4\npackage: lodash.memoize\n\n467、source package:lodash.restparam 3.6.1\npackage: lodash.restparam\n\n468、source package:lodash.template 3.6.2\npackage: lodash.template\n\n469、source package:lodash.templatesettings 3.1.1\npackage: lodash.templatesettings\n\n470、source package:logrus v1.9.3\npackage: logrus\n\n471、source package:longest 1.0.1\npackage: longest\n\n472、source package:loose-envify 1.4.0\npackage: loose-envify\n\n473、source package:loud-rejection 1.6.0\npackage: loud-rejection\n\n474、source package:magic-string 0.27.0\npackage: magic-string\n\n475、source package:make-iterator 1.0.1\npackage: make-iterator\n\n476、source package:map-cache 0.2.2\npackage: map-cache\n\n477、source package:map-obj 1.0.1\npackage: map-obj\n\n478、source package:map-visit 1.0.0\npackage: map-visit\n\n479、source package:marked 1.2.3\npackage: marked\n\n480、source package:md5.js 1.3.5\npackage: md5.js\n\n481、source package:mem 1.1.0\npackage: mem\n\n482、source package:memoize-one 6.0.0\npackage: memoize-one\n\n483、source package:memory-fs 0.4.1\npackage: memory-fs\n\n484、source package:meow 3.7.0\npackage: meow\n\n485、source package:merge2 1.4.1\npackage: merge2\n\n486、source package:mesa-utils 9.0.0-1\npackage: mesa-utils\n\n487、source package:mesa-va-drivers 20.1.2-1_armel\npackage: mesa-va-drivers\n\n488、source package:mesa-vdpau-drivers 20.1.2-1_mipsel\npackage: mesa-vdpau-drivers\n\n489、source package:mesa-vulkan-drivers 20.1.2-1_mips64el\npackage: mesa-vulkan-drivers\n\n490、source package:micromatch 3.1.10\npackage: micromatch\n\n491、source package:miller-rabin 4.0.1\npackage: miller-rabin\n\n492、source package:mime-db 1.40.0\npackage: mime-db\n\n493、source package:mime-types 2.1.24\npackage: mime-types\n\n494、source package:mimic-fn 1.2.0\npackage: mimic-fn\n\n495、source package:minimalistic-crypto-utils 1.0.1\npackage: minimalistic-crypto-utils\n\n496、source package:minimatch 0.2.14\npackage: minimatch\n\n497、source package:minimist 1.2.5\npackage: minimist\n\n498、source package:mitt 3.0.0\npackage: mitt\n\n499、source package:mixin-deep 1.3.2\npackage: mixin-deep\n\n500、source package:mkdirp 0.5.5\npackage: mkdirp\n\n501、source package:mlly 1.4.2\npackage: mlly\n\n502、source package:module-deps 4.1.1\npackage: module-deps\n\n503、source package:moment 2.29.4\npackage: moment\n\n504、source package:mqt.qfr 1.10.0\npackage: mqt.qfr\n\n505、source package:ms 2.1.2\npackage: ms\n\n506、source package:multipipe 0.1.2\npackage: multipipe\n\n507、source package:nan 2.14.0\npackage: nan\n\n508、source package:nanomatch 1.2.13\npackage: nanomatch\n\n509、source package:native v1.1.0\npackage: native\n\n510、source package:ncurses-base 6.2-1_all\npackage: ncurses-base\n\n511、source package:neo-async 2.6.2\npackage: neo-async\n\n512、source package:netlink v1.7.2\npackage: netlink\n\n513、source package:next-tick 1.0.0\npackage: next-tick\n\n514、source package:nlohmann_json nlohmann_json-3.7.3\npackage: nlohmann_json\n\n515、source package:node 8.16.1\npackage: node\n\n516、source package:node-gyp 3.8.0\npackage: node-gyp\n\n517、source package:node-libs-browser 2.2.1\npackage: node-libs-browser\n\n518、source package:node-sass 4.12.0\npackage: node-sass\n\n519、source package:normalize-path 3.0.0\npackage: normalize-path\n\n520、source package:npm-run-path 2.0.2\npackage: npm-run-path\n\n521、source package:number-is-nan 1.0.1\npackage: number-is-nan\n\n522、source package:object-assign 4.1.1\npackage: object-assign\n\n523、source package:object-copy 0.1.0\npackage: object-copy\n\n524、source package:object-visit 1.0.1\npackage: object-visit\n\n525、source package:object.defaults 1.1.0\npackage: object.defaults\n\n526、source package:object.map 1.0.1\npackage: object.map\n\n527、source package:object.pick 1.3.0\npackage: object.pick\n\n528、source package:objx v0.5.2\npackage: objx\n\n529、source package:orchestrator 0.3.8\npackage: orchestrator\n\n530、source package:ordered-read-streams 0.1.0\npackage: ordered-read-streams\n\n531、source package:os-browserify 0.3.0\npackage: os-browserify\n\n532、source package:os-config 0.2.3\npackage: os-config\n\n533、source package:os-homedir 1.0.2\npackage: os-homedir\n\n534、source package:os-locale 2.1.0\npackage: os-locale\n\n535、source package:os-tmpdir 1.0.2\npackage: os-tmpdir\n\n536、source package:p-finally 1.0.0\npackage: p-finally\n\n537、source package:p-limit 1.3.0\npackage: p-limit\n\n538、source package:p-locate 2.0.0\npackage: p-locate\n\n539、source package:p-try 1.0.0\npackage: p-try\n\n540、source package:pako 1.0.11\npackage: pako\n\n541、source package:parents 1.0.1\npackage: parents\n\n542、source package:parse-filepath 1.0.2\npackage: parse-filepath\n\n543、source package:parse-json 2.2.0\npackage: parse-json\n\n544、source package:parse-node-version 1.0.1\npackage: parse-node-version\n\n545、source package:parse-passwd 1.0.0\npackage: parse-passwd\n\n546、source package:parse5 3.0.3\npackage: parse5\n\n547、source package:pascalcase 0.1.1\npackage: pascalcase\n\n548、source package:path-browserify 0.0.1\npackage: path-browserify\n\n549、source package:path-dirname 1.0.2\npackage: path-dirname\n\n550、source package:path-exists 3.0.0\npackage: path-exists\n\n551、source package:path-is-absolute 1.0.1\npackage: path-is-absolute\n\n552、source package:path-key 2.0.1\npackage: path-key\n\n553、source package:path-parse 1.0.7\npackage: path-parse\n\n554、source package:path-platform 0.11.15\npackage: path-platform\n\n555、source package:path-root 0.1.1\npackage: path-root\n\n556、source package:path-root-regex 0.1.2\npackage: path-root-regex\n\n557、source package:path-to-regexp 1.7.0\npackage: path-to-regexp\n\n558、source package:path-type 2.0.0\npackage: path-type\n\n559、source package:pathe 1.1.1\npackage: pathe\n\n560、source package:pbkdf2 3.1.1\npackage: pbkdf2\n\n561、source package:performance-now 2.1.0\npackage: performance-now\n\n562、source package:picomatch 2.3.1\npackage: picomatch\n\n563、source package:pify 2.3.0\npackage: pify\n\n564、source package:pinia 2.0.22\npackage: pinia\n\n565、source package:pinkie 2.0.4\npackage: pinkie\n\n566、source package:pinkie-promise 2.0.1\npackage: pinkie-promise\n\n567、source package:pipewire-pulse 0.3.71\npackage: pipewire-pulse\n\n568、source package:pkg-types 1.0.3\npackage: pkg-types\n\n569、source package:platform/external/fmtlib upstream-master\npackage: platform/external/fmtlib\n\n570、source package:portaudio19-dev 19.6.0-1_s390x\npackage: portaudio19-dev\n\n571、source package:posix-character-classes 0.1.1\npackage: posix-character-classes\n\n572、source package:prefix-style 2.0.1\npackage: prefix-style\n\n573、source package:pretty v0.2.1\npackage: pretty\n\n574、source package:pretty-hrtime 1.0.3\npackage: pretty-hrtime\n\n575、source package:private 0.1.8\npackage: private\n\n576、source package:process 0.11.10\npackage: process\n\n577、source package:process-nextick-args 2.0.1\npackage: process-nextick-args\n\n578、source package:promxy v0.0.81\npackage: promxy\n\n579、source package:prop-types 15.7.2\npackage: prop-types\n\n580、source package:prr 1.0.1\npackage: prr\n\n581、source package:psl 1.4.0\npackage: psl\n\n582、source package:public-encrypt 4.0.3\npackage: public-encrypt\n\n583、source package:punycode 2.1.1\npackage: punycode\n\n584、source package:python3 3.8.2-3_s390x\npackage: python3\n\n585、source package:python3-dbus 1.2.8-3_s390x\npackage: python3-dbus\n\n586、source package:querystring 0.2.0\npackage: querystring\n\n587、source package:querystring-es3 0.2.1\npackage: querystring-es3\n\n588、source package:queue-microtask 1.2.3\npackage: queue-microtask\n\n589、source package:raf 3.4.1\npackage: raf\n\n590、source package:randombytes 2.1.0\npackage: randombytes\n\n591、source package:randomfill 1.0.4\npackage: randomfill\n\n592、source package:react 16.9.0\npackage: react\n\n593、source package:react-custom-scrollbars 4.2.1\npackage: react-custom-scrollbars\n\n594、source package:react-dom 16.9.0\npackage: react-dom\n\n595、source package:react-is 16.9.0\npackage: react-is\n\n596、source package:react-router 4.3.1\npackage: react-router\n\n597、source package:react-router-dom 4.3.1\npackage: react-router-dom\n\n598、source package:read-only-stream 2.0.0\npackage: read-only-stream\n\n599、source package:read-pkg 2.0.0\npackage: read-pkg\n\n600、source package:read-pkg-up 2.0.0\npackage: read-pkg-up\n\n601、source package:readable-stream 3.6.0\npackage: readable-stream\n\n602、source package:readdirp 3.6.0\npackage: readdirp\n\n603、source package:rechoir 0.6.2\npackage: rechoir\n\n604、source package:redent 1.0.0\npackage: redent\n\n605、source package:regenerate 1.4.0\npackage: regenerate\n\n606、source package:regenerator-runtime 0.13.3\npackage: regenerator-runtime\n\n607、source package:regex-not 1.0.2\npackage: regex-not\n\n608、source package:regexpu-core 2.0.0\npackage: regexpu-core\n\n609、source package:regjsgen 0.2.0\npackage: regjsgen\n\n610、source package:repeat-element 1.1.3\npackage: repeat-element\n\n611、source package:repeat-string 1.6.1\npackage: repeat-string\n\n612、source package:repeating 2.0.1\npackage: repeating\n\n613、source package:replace-ext 1.0.0\npackage: replace-ext\n\n614、source package:require-directory 2.1.1\npackage: require-directory\n\n615、source package:resolve 1.22.1\npackage: resolve\n\n616、source package:resolve-dir 1.0.1\npackage: resolve-dir\n\n617、source package:resolve-pathname 2.2.0\npackage: resolve-pathname\n\n618、source package:resolve-url 0.2.1\npackage: resolve-url\n\n619、source package:ret 0.1.15\npackage: ret\n\n620、source package:reusify 1.0.4\npackage: reusify\n\n621、source package:right-align 0.1.3\npackage: right-align\n\n622、source package:ripemd160 2.0.2\npackage: ripemd160\n\n623、source package:rollup 2.79.1\npackage: rollup\n\n624、source package:run-parallel 1.2.0\npackage: run-parallel\n\n625、source package:safe-buffer 5.2.1\npackage: safe-buffer\n\n626、source package:safe-regex 1.1.0\npackage: safe-regex\n\n627、source package:safer-buffer 2.1.2\npackage: safer-buffer\n\n628、source package:sass 1.55.0\npackage: sass\n\n629、source package:sass-graph 2.2.4\npackage: sass-graph\n\n630、source package:scheduler 0.15.0\npackage: scheduler\n\n631、source package:schema-utils 3.0.0\npackage: schema-utils\n\n632、source package:scroll-into-view-if-needed 2.2.20\npackage: scroll-into-view-if-needed\n\n633、source package:scss-tokenizer 0.2.3\npackage: scss-tokenizer\n\n634、source package:scule 1.1.1\npackage: scule\n\n635、source package:sequencify 0.0.7\npackage: sequencify\n\n636、source package:set-value 2.0.1\npackage: set-value\n\n637、source package:setimmediate 1.0.5\npackage: setimmediate\n\n638、source package:sha.js 2.4.11\npackage: sha.js\n\n639、source package:shadered v1.5.3\npackage: shadered\n\n640、source package:shasum 1.0.2\npackage: shasum\n\n641、source package:shebang-command 1.2.0\npackage: shebang-command\n\n642、source package:shebang-regex 1.0.0\npackage: shebang-regex\n\n643、source package:shell-quote 1.7.2\npackage: shell-quote\n\n644、source package:simple-concat 1.0.0\npackage: simple-concat\n\n645、source package:slash 1.0.0\npackage: slash\n\n646、source package:slirp4netns 1.2.0-1\npackage: slirp4netns\n\n647、source package:smooth-scroll-into-view-if-needed 1.1.23\npackage: smooth-scroll-into-view-if-needed\n\n648、source package:snapdragon 0.8.2\npackage: snapdragon\n\n649、source package:snapdragon-node 2.1.1\npackage: snapdragon-node\n\n650、source package:snapdragon-util 3.0.1\npackage: snapdragon-util\n\n651、source package:source-list-map 2.0.1\npackage: source-list-map\n\n652、source package:source-map-resolve 0.5.3\npackage: source-map-resolve\n\n653、source package:source-map-support 0.5.21\npackage: source-map-support\n\n654、source package:source-map-url 0.4.0\npackage: source-map-url\n\n655、source package:sourcemap-codec 1.4.8\npackage: sourcemap-codec\n\n656、source package:sparkles 1.0.1\npackage: sparkles\n\n657、source package:spdx-expression-parse 3.0.1\npackage: spdx-expression-parse\n\n658、source package:split-string 3.1.0\npackage: split-string\n\n659、source package:sqlclosecheck v0.5.0\npackage: sqlclosecheck\n\n660、source package:sse v0.1.0\npackage: sse\n\n661、source package:sshpk 1.16.1\npackage: sshpk\n\n662、source package:static-extend 0.1.2\npackage: static-extend\n\n663、source package:stdout-stream 1.4.1\npackage: stdout-stream\n\n664、source package:stream-browserify 2.0.2\npackage: stream-browserify\n\n665、source package:stream-combiner2 1.1.1\npackage: stream-combiner2\n\n666、source package:stream-consume 0.1.1\npackage: stream-consume\n\n667、source package:stream-http 2.8.3\npackage: stream-http\n\n668、source package:stream-splicer 2.0.1\npackage: stream-splicer\n\n669、source package:string-width 2.1.1\npackage: string-width\n\n670、source package:string_decoder 1.3.0\npackage: string_decoder\n\n671、source package:strip-ansi 4.0.0\npackage: strip-ansi\n\n672、source package:strip-bom 3.0.0\npackage: strip-bom\n\n673、source package:strip-eof 1.0.0\npackage: strip-eof\n\n674、source package:strip-indent 1.0.1\npackage: strip-indent\n\n675、source package:strip-literal 1.3.0\npackage: strip-literal\n\n676、source package:subarg 1.0.0\npackage: subarg\n\n677、source package:sudo 1.9.8p2-1~exp1\npackage: sudo\n\n678、source package:supports-color 4.5.0\npackage: supports-color\n\n679、source package:supports-preserve-symlinks-flag 1.0.0\npackage: supports-preserve-symlinks-flag\n\n680、source package:syntax-error 1.4.0\npackage: syntax-error\n\n681、source package:sys v0.5.0\npackage: sys\n\n682、source package:systemjs 6.13.0\npackage: systemjs\n\n683、source package:tapable 0.2.9\npackage: tapable\n\n684、source package:testify v1.9.0\npackage: testify\n\n685、source package:text v0.1.0\npackage: text\n\n686、source package:through2 2.0.5\npackage: through2\n\n687、source package:tildify 1.2.0\npackage: tildify\n\n688、source package:time-stamp 1.1.0\npackage: time-stamp\n\n689、source package:timers-browserify 2.0.12\npackage: timers-browserify\n\n690、source package:tiny-invariant 1.0.6\npackage: tiny-invariant\n\n691、source package:tiny-warning 1.0.3\npackage: tiny-warning\n\n692、source package:tinyaes 1.0.4rc1\npackage: tinyaes\n\n693、source package:tlp 1.5.0-1~bpo11+1\npackage: tlp\n\n694、source package:to-arraybuffer 1.0.1\npackage: to-arraybuffer\n\n695、source package:to-camel-case 1.0.0\npackage: to-camel-case\n\n696、source package:to-fast-properties 1.0.3\npackage: to-fast-properties\n\n697、source package:to-no-case 1.0.2\npackage: to-no-case\n\n698、source package:to-object-path 0.3.0\npackage: to-object-path\n\n699、source package:to-regex 3.0.2\npackage: to-regex\n\n700、source package:to-regex-range 5.0.1\npackage: to-regex-range\n\n701、source package:to-space-case 1.0.0\npackage: to-space-case\n\n702、source package:toml v1.3.2\npackage: toml\n\n703、source package:tools v0.6.0\npackage: tools\n\n704、source package:tortellini 4f6795a\npackage: tortellini\n\n705、source package:trim-newlines 1.0.0\npackage: trim-newlines\n\n706、source package:trim-right 1.0.1\npackage: trim-right\n\n707、source package:tty-browserify 0.0.1\npackage: tty-browserify\n\n708、source package:typedarray 0.0.6\npackage: typedarray\n\n709、source package:uglify-to-browserify 1.0.2\npackage: uglify-to-browserify\n\n710、source package:uglifyjs-webpack-plugin 0.4.6\npackage: uglifyjs-webpack-plugin\n\n711、source package:umd 3.0.3\npackage: umd\n\n712、source package:unc-path-regex 0.1.2\npackage: unc-path-regex\n\n713、source package:unimport 1.3.0\npackage: unimport\n\n714、source package:union-value 1.0.1\npackage: union-value\n\n715、source package:unique-stream 1.0.0\npackage: unique-stream\n\n716、source package:universal-translator v0.16.0\npackage: universal-translator\n\n717、source package:unplugin-auto-import 0.11.5\npackage: unplugin-auto-import\n\n718、source package:unplugin-vue-components 0.22.12\npackage: unplugin-vue-components\n\n719、source package:unset-value 1.0.0\npackage: unset-value\n\n720、source package:upath 1.2.0\npackage: upath\n\n721、source package:urix 0.1.0\npackage: urix\n\n722、source package:url 0.11.0\npackage: url\n\n723、source package:use 3.1.1\npackage: use\n\n724、source package:user-home 1.1.1\npackage: user-home\n\n725、source package:util 0.11.1\npackage: util\n\n726、source package:util-deprecate 1.0.2\npackage: util-deprecate\n\n727、source package:uuid 3.3.3\npackage: uuid\n\n728、source package:v-drag 3.0.9\npackage: v-drag\n\n729、source package:v8flags 2.1.1\npackage: v8flags\n\n730、source package:value-equal 0.4.0\npackage: value-equal\n\n731、source package:verror 1.10.0\npackage: verror\n\n732、source package:vinyl 2.2.0\npackage: vinyl\n\n733、source package:vinyl-buffer 1.0.1\npackage: vinyl-buffer\n\n734、source package:vinyl-fs 0.3.14\npackage: vinyl-fs\n\n735、source package:vinyl-source-stream 2.0.0\npackage: vinyl-source-stream\n\n736、source package:vm-browserify 1.1.2\npackage: vm-browserify\n\n737、source package:vue-codemirror 6.1.1\npackage: vue-codemirror\n\n738、source package:vue-demi 0.13.11\npackage: vue-demi\n\n739、source package:vue-router 4.1.5\npackage: vue-router\n\n740、source package:w3c-keyname 2.2.8\npackage: w3c-keyname\n\n741、source package:warning 4.0.3\npackage: warning\n\n742、source package:watchpack 1.7.4\npackage: watchpack\n\n743、source package:watchpack-chokidar2 2.0.0\npackage: watchpack-chokidar2\n\n744、source package:webpack 3.12.0\npackage: webpack\n\n745、source package:webpack-sources 3.2.3\npackage: webpack-sources\n\n746、source package:webpack-virtual-modules 0.6.1\npackage: webpack-virtual-modules\n\n747、source package:window-size 0.1.0\npackage: window-size\n\n748、source package:wireplumber 0.4.9-1\npackage: wireplumber\n\n749、source package:wordwrap 0.0.2\npackage: wordwrap\n\n750、source package:wrap-ansi 2.1.0\npackage: wrap-ansi\n\n751、source package:x11-utils 7.7~1_sparc\npackage: x11-utils\n\n752、source package:x11-xserver-utils 7.7~3_sparc\npackage: x11-xserver-utils\n\n753、source package:x11proto-record-dev 2020.1-1_all\npackage: x11proto-record-dev\n\n754、source package:x11proto-xext-dev 7.3.0-1_all\npackage: x11proto-xext-dev\n\n755、source package:xcb-proto 1.7.1.orig\npackage: xcb-proto\n\n756、source package:xdg-utils 1.1.3-4.1\npackage: xdg-utils\n\n757、source package:xkb-data 2.5.1-3_all\npackage: xkb-data\n\n758、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n759、source package:xserver-xorg-input-all 7.7+7_s390x\npackage: xserver-xorg-input-all\n\n760、source package:xserver-xorg-video-all 7.7+7_s390x\npackage: xserver-xorg-video-all\n\n761、source package:xtend 4.0.2\npackage: xtend\n\n762、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n763、source package:yargs 8.0.2\npackage: yargs\n\n\nOpen Source Software Licensed under the Expat:\n1、source package:golang-github-adrg-xdg-dev 0.4.0-2\npackage: golang-github-adrg-xdg-dev\n\n2、source package:golang-github-disintegration-imaging-dev 1.6.2-2\npackage: golang-github-disintegration-imaging-dev\n\n3、source package:golang-github-smartystreets-goconvey-dev 1.6.4+dfsg-1_all\npackage: golang-github-smartystreets-goconvey-dev\n\n4、source package:golang-github-stretchr-testify-dev 1.8.0-1~bpo11+1\npackage: golang-github-stretchr-testify-dev\n\n5、source package:golang-github-teambition-rrule-go-dev 1.8.1-1\npackage: golang-github-teambition-rrule-go-dev\n\n6、source package:golang-gopkg-alecthomas-kingpin.v2-dev 2.2.6-4\npackage: golang-gopkg-alecthomas-kingpin.v2-dev\n\n7、source package:intel-media-va-driver-non-free 23.2.3+ds1-1\npackage: intel-media-va-driver-non-free\n\n8、source package:libepoxy-dev 1.5.9-2\npackage: libepoxy-dev\n\n9、source package:libiniparser-dev 4.1-4_s390x\npackage: libiniparser-dev\n\n10、source package:libinput-dev 1.6.3-1_s390x\npackage: libinput-dev\n\n11、source package:libjson-c-dev 0.16-2\npackage: libjson-c-dev\n\n12、source package:libmtdev-dev 1.1.6-1_s390x\npackage: libmtdev-dev\n\n13、source package:libsass-dev 3.6.4-4~exp_s390x\npackage: libsass-dev\n\n14、source package:libspdlog-dev 1:1.3.1-1\npackage: libspdlog-dev\n\n15、source package:libutf8proc-dev 2.7.0-4\npackage: libutf8proc-dev\n\n16、source package:libva-dev 2.8.0-1_s390x\npackage: libva-dev\n\n17、source package:nlohmann-json3-dev 3.9.1-1\npackage: nlohmann-json3-dev\n\n18、source package:rapidjson-dev 1.1.0-1\npackage: rapidjson-dev\n\n19、source package:va-driver-all 2.8.0-1_s390x\npackage: va-driver-all\n\n20、source package:wayland-protocols 1.9-1\npackage: wayland-protocols\n\n\nOpen Source Software Licensed under the BSD-3-Clause:\n1、source package:DocxFactory 91131f28\npackage: DocxFactory\n\n2、source package:alsa-topology-conf 1.2.5.1-2\npackage: alsa-topology-conf\n\n3、source package:alsa-ucm-conf 1.2.9-1\npackage: alsa-ucm-conf\n\n4、source package:amdefine 1.0.1\npackage: amdefine\n\n5、source package:android-pdfium a56ccce4\npackage: android-pdfium\n\n6、source package:apt 2.7.1\npackage: apt\n\n7、source package:bcrypt-pbkdf 1.0.2\npackage: bcrypt-pbkdf\n\n8、source package:browserify 14.5.0\npackage: browserify\n\n9、source package:charenc 0.0.2\npackage: charenc\n\n10、source package:chromium 87.0.4280.88-0.4\npackage: chromium\n\n11、source package:cmake v3.27.0-rc5\npackage: cmake\n\n12、source package:coost v3.0.0\npackage: coost\n\n13、source package:crypt 0.0.2\npackage: crypt\n\n14、source package:crypto v0.13.0\npackage: crypto\n\n15、source package:css-select 1.2.0\npackage: css-select\n\n16、source package:css-what 2.1.3\npackage: css-what\n\n17、source package:dns v1.1.52\npackage: dns\n\n18、source package:dnsutils 970203-0.1\npackage: dnsutils\n\n19、source package:duplexer2 0.1.4\npackage: duplexer2\n\n20、source package:entities 1.1.2\npackage: entities\n\n21、source package:errwrap v1.5.0\npackage: errwrap\n\n22、source package:external/github.com/protocolbuffers/protobuf v3.7.0-rc.3\npackage: external/github.com/protocolbuffers/protobuf\n\n23、source package:extra-cmake-modules 5.98.0-2\npackage: extra-cmake-modules\n\n24、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n25、source package:fsnotify v1.6.0\npackage: fsnotify\n\n26、source package:go-cmp v0.6.0\npackage: go-cmp\n\n27、source package:golang 2:1.7~5~bpo8+1\npackage: golang\n\n28、source package:golang-any 1.7~5~bpo8+1_s390x\npackage: golang-any\n\n29、source package:golang-github-fsnotify-fsnotify-dev 1.6.0-1\npackage: golang-github-fsnotify-fsnotify-dev\n\n30、source package:golang-github-miekg-dns-dev 1.1.50-2\npackage: golang-github-miekg-dns-dev\n\n31、source package:golang-github-rickb777-date-dev 1.20.1-1\npackage: golang-github-rickb777-date-dev\n\n32、source package:golang-go 1.7~5~bpo8+1_ppc64el\npackage: golang-go\n\n33、source package:golang-golang-x-sys-dev 0.3.0-1+hurd.1\npackage: golang-golang-x-sys-dev\n\n34、source package:golang-golang-x-xerrors-dev 0.0~git20191204.9bdfabe-1~bpo10+1\npackage: golang-golang-x-xerrors-dev\n\n35、source package:golang-google-protobuf-dev 1.28.1-3\npackage: golang-google-protobuf-dev\n\n36、source package:gstreamer1.0-plugins-base 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-base\n\n37、source package:gstreamer1.0-plugins-good 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-plugins-good\n\n38、source package:gstreamer1.0-pulseaudio 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-pulseaudio\n\n39、source package:gstreamer1.0-x 1.4.4-2_kfreebsd-i386\npackage: gstreamer1.0-x\n\n40、source package:hoist-non-react-statics 2.5.5\npackage: hoist-non-react-statics\n\n41、source package:ieee754 1.2.1\npackage: ieee754\n\n42、source package:init 1.65~exp2\npackage: init\n\n43、source package:iputils-ping 20190709-3_s390x\npackage: iputils-ping\n\n44、source package:js-base64 2.5.1\npackage: js-base64\n\n45、source package:json-schema 0.2.3\npackage: json-schema\n\n46、source package:libcli11-dev 2.1.2+ds-1\npackage: libcli11-dev\n\n47、source package:libgmock-dev 1.9.0.20190831-3\npackage: libgmock-dev\n\n48、source package:libgoogle-glog-dev 0.4.0-1_s390x\npackage: libgoogle-glog-dev\n\n49、source package:libgstreamer-plugins-base1.0-0 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-0\n\n50、source package:libgstreamer-plugins-base1.0-dev 1.4.4-2_kfreebsd-i386\npackage: libgstreamer-plugins-base1.0-dev\n\n51、source package:libgtest-dev 1.9.0.20190831-1_s390x\npackage: libgtest-dev\n\n52、source package:libjpeg-dev 2.0.5-1_all\npackage: libjpeg-dev\n\n53、source package:libnl-3-dev 3.4.0-1~bpo9+1_s390x\npackage: libnl-3-dev\n\n54、source package:libnl-genl-3-dev 3.4.0-1~bpo9+1_s390x\npackage: libnl-genl-3-dev\n\n55、source package:libnl-route-3-dev 3.4.0-1~bpo9+1_s390x\npackage: libnl-route-3-dev\n\n56、source package:libpcap-dev 1.9.1-4~bpo10+1_s390x\npackage: libpcap-dev\n\n57、source package:libtirpc-common 1.2.6-1_all\npackage: libtirpc-common\n\n58、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n59、source package:locales 2.31-0experimental0_all\npackage: locales\n\n60、source package:lxqt-build-tools 0.8.0-1\npackage: lxqt-build-tools\n\n61、source package:marked 1.2.3\npackage: marked\n\n62、source package:md5 2.2.1\npackage: md5\n\n63、source package:mmkv-static 1.2.10\npackage: mmkv-static\n\n64、source package:mod v0.8.0\npackage: mod\n\n65、source package:mount 2.9g-6\npackage: mount\n\n66、source package:net v0.15.0\npackage: net\n\n67、source package:node 8.16.1\npackage: node\n\n68、source package:normalize-wheel-es 1.2.0\npackage: normalize-wheel-es\n\n69、source package:nth-check 1.0.2\npackage: nth-check\n\n70、source package:onboard 1.4.1-5_s390x\npackage: onboard\n\n71、source package:passwd 980403-0.3\npackage: passwd\n\n72、source package:pflag v1.0.5\npackage: pflag\n\n73、source package:protobuf v1.3.2\npackage: protobuf\n\n74、source package:python3-click 8.1.6-1\npackage: python3-click\n\n75、source package:qml-module-qtgraphicaleffects 5.7.1~20161021-3_s390x\npackage: qml-module-qtgraphicaleffects\n\n76、source package:qs 6.5.2\npackage: qs\n\n77、source package:qtermwidget 0.14.1\npackage: qtermwidget\n\n78、source package:regenerator-transform 0.10.1\npackage: regenerator-transform\n\n79、source package:regjsparser 0.1.5\npackage: regjsparser\n\n80、source package:sass 1.55.0\npackage: sass\n\n81、source package:sha.js 2.4.11\npackage: sha.js\n\n82、source package:source-map 0.6.1\npackage: source-map\n\n83、source package:spdx-license-ids 3.0.6\npackage: spdx-license-ids\n\n84、source package:sys v0.6.0\npackage: sys\n\n85、source package:syscall_intercept 4b3a3b5\npackage: syscall_intercept\n\n86、source package:term v0.13.0\npackage: term\n\n87、source package:terser 5.15.1\npackage: terser\n\n88、source package:text v0.13.0\npackage: text\n\n89、source package:tough-cookie 2.4.3\npackage: tough-cookie\n\n90、source package:uglify-js 2.8.29\npackage: uglify-js\n\n91、source package:util-linux 2.5-12\npackage: util-linux\n\n92、source package:uuid v1.3.0\npackage: uuid\n\n93、source package:wpasupplicant 2.9.0-12_s390x\npackage: wpasupplicant\n\n94、source package:xdotool 3.20160805.1-4_s390x\npackage: xdotool\n\n95、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n96、source package:xsettingsd 1.0.2-1\npackage: xsettingsd\n\n97、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n\nOpen Source Software Licensed under the BSD-2-Clause:\n1、source package:DocxFactory 91131f28\npackage: DocxFactory\n\n2、source package:block-stream 0.0.9\npackage: block-stream\n\n3、source package:coost v3.0.0\npackage: coost\n\n4、source package:domelementtype 1.3.1\npackage: domelementtype\n\n5、source package:domhandler 2.4.2\npackage: domhandler\n\n6、source package:domutils 1.5.1\npackage: domutils\n\n7、source package:doxyqml 0.3.0-1.1.debian\npackage: doxyqml\n\n8、source package:escope 3.6.0\npackage: escope\n\n9、source package:esrecurse 4.3.0\npackage: esrecurse\n\n10、source package:estraverse 5.2.0\npackage: estraverse\n\n11、source package:esutils 2.0.3\npackage: esutils\n\n12、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n13、source package:glob 3.1.21\npackage: glob\n\n14、source package:golang-dbus-dev 5.1.0-1~bpo11+1\npackage: golang-dbus-dev\n\n15、source package:golang-github-msteinert-pam-dev 1.1.0-1\npackage: golang-github-msteinert-pam-dev\n\n16、source package:golang-gopkg-check.v1-dev 0.0+git20200902.038fdea-1\npackage: golang-gopkg-check.v1-dev\n\n17、source package:graceful-fs 1.2.3\npackage: graceful-fs\n\n18、source package:libarchive-dev 3.4.0-2~bpo9+1_amd64\npackage: libarchive-dev\n\n19、source package:libtag1-dev 1.9.1-2~bpo70+1_sparc\npackage: libtag1-dev\n\n20、source package:libtss2-dev 2.4.0-1_s390x\npackage: libtss2-dev\n\n21、source package:libtss2-tcti-tabrmd0 3.0.0-1\npackage: libtss2-tcti-tabrmd0\n\n22、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n23、source package:normalize-package-data 2.5.0\npackage: normalize-package-data\n\n24、source package:sdparm 1.12-1\npackage: sdparm\n\n25、source package:shim-signed 1.39~1+deb11u1\npackage: shim-signed\n\n26、source package:shim-unsigned 15+1533136590.3beb971-9_i386\npackage: shim-unsigned\n\n27、source package:smartmontools 7.3-1\npackage: smartmontools\n\n28、source package:tpm2-abrmd 3.0.0-1\npackage: tpm2-abrmd\n\n29、source package:tt v1.0.1\npackage: tt\n\n30、source package:uri-js 4.4.0\npackage: uri-js\n\n31、source package:usb-modeswitch 2.6.1.orig\npackage: usb-modeswitch\n\n\nOpen Source Software Licensed under the MPL-2.0:\n1、source package:browser-desktop 87.0-729282885\npackage: browser-desktop\n\n2、source package:dompurify 2.4.1\npackage: dompurify\n\n3、source package:libjwt-dev 1.9.0-4_mips64el\npackage: libjwt-dev\n\n4、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n\nOpen Source Software Licensed under the MPL-1.1:\n1、source package:libcairo2-dev 1.16.0-4_s390x\npackage: libcairo2-dev\n\n2、source package:libchardet 1.0.3\npackage: libchardet\n\n3、source package:libpam-gnome-keyring 3.4.1-5_sparc\npackage: libpam-gnome-keyring\n\n4、source package:libtag1-dev 1.9.1-2~bpo70+1_sparc\npackage: libtag1-dev\n\n\nOpen Source Software Licensed under the AFL-2.1:\n1、source package:python3-dbus 1.2.8-3_s390x\npackage: python3-dbus\n\n\nOpen Source Software Licensed under the AGPL-1.0-only:\n1、source package:spdx-license-ids 3.0.6\npackage: spdx-license-ids\n\n\nOpen Source Software Licensed under the AGPL-3.0-only:\n1、source package:nging v3.5.2\npackage: nging\n\n2、source package:sobjectizer 1.2.3\npackage: sobjectizer\n\n\nOpen Source Software Licensed under the Apache-2.0 or LGPL-3+:\n1、source package:liblucene++-dev 3.0.7-8+b2_s390x\npackage: liblucene++-dev\n\n\nOpen Source Software Licensed under the Apache-2.0-with-GPL2-LGPL2-Exception:\n1、source package:cups 2.4.2-3+deb12u1\npackage: cups\n\n\nOpen Source Software Licensed under the Artistic or GPL-1+:\n1、source package:libfile-mimeinfo-perl 0.33-1\npackage: libfile-mimeinfo-perl\n\n2、source package:perl-openssl-defaults 7\npackage: perl-openssl-defaults\n\n\nOpen Source Software Licensed under the Artistic-2.0:\n1、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the BSD:\n1、source package:compiler 4.12.0\npackage: compiler\n\n2、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n3、source package:glide 4.12.0\npackage: glide\n\n4、source package:libnet-dev 1.2-rc3\npackage: libnet-dev\n\n5、source package:libvncserver LibVNCServer-0.9.14\npackage: libvncserver\n\n6、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n7、source package:node 8.16.1\npackage: node\n\n8、source package:smartmontools 7.3-1\npackage: smartmontools\n\n9、source package:zip 3.0-9\npackage: zip\n\n\nOpen Source Software Licensed under the BSD-1-Clause:\n1、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n\nOpen Source Software Licensed under the BSD-3-clause:\n1、source package:tpm2-tools 5.4-1\npackage: tpm2-tools\n\n\nOpen Source Software Licensed under the BSD-3-clause or GPL-2:\n1、source package:libcap-dev 2.36-1_mips64el\npackage: libcap-dev\n\n2、source package:libcap2-bin 2.36-1_s390x\npackage: libcap2-bin\n\n\nOpen Source Software Licensed under the BSD-4-Clause:\n1、source package:unalz 0.65-9\npackage: unalz\n\n\nOpen Source Software Licensed under the BSD-Source-Code:\n1、source package:iputils-ping 20190709-3_s390x\npackage: iputils-ping\n\n\nOpen Source Software Licensed under the BSL-1.0:\n1、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n\nOpen Source Software Licensed under the Bitstream-Vera:\n1、source package:fontconfig 2.9.0.orig\npackage: fontconfig\n\n\nOpen Source Software Licensed under the Brian-Gladman-3-Clause:\n1、source package:libzip-dev 1.6.1-3_s390x\npackage: libzip-dev\n\n2、source package:libzip4 1.6.1-3_s390x\npackage: libzip4\n\n\nOpen Source Software Licensed under the CC-BY-3.0:\n1、source package:spdx-exceptions 2.3.0\npackage: spdx-exceptions\n\n\nOpen Source Software Licensed under the CC-BY-4.0:\n1、source package:caniuse-lite 1.0.30000989\npackage: caniuse-lite\n\n\nOpen Source Software Licensed under the CC-BY-SA-4.0:\n1、source package:glob 7.1.4\npackage: glob\n\n\nOpen Source Software Licensed under the CC0-1.0:\n1、source package:spdx-license-ids 3.0.6\npackage: spdx-license-ids\n\n\nOpen Source Software Licensed under the CDDL-1.0:\n1、source package:libraw-dev 0.9.1-1+deb6u1\npackage: libraw-dev\n\n\nOpen Source Software Licensed under the CPL-1.0:\n1、source package:graphviz 2.8-3+etch1\npackage: graphviz\n\n2、source package:junit 4.11\npackage: junit\n\n\nOpen Source Software Licensed under the EPL-1.0:\n1、source package:aspectjrt 1.9.6\npackage: aspectjrt\n\n2、source package:junit 4.13.2\npackage: junit\n\n\nOpen Source Software Licensed under the FTL:\n1、source package:freetype VER-2-10-3\npackage: freetype\n\n2、source package:libfreetype-dev 2.13.0+dfsg-1\npackage: libfreetype-dev\n\n\nOpen Source Software Licensed under the Font-exception-2.0:\n1、source package:ttf-unifont 9.0.06-2_all\npackage: ttf-unifont\n\n2、source package:xfonts-wqy 1.0.0~rc1-7\npackage: xfonts-wqy\n\n\nOpen Source Software Licensed under the GFDL-1.2-only:\n1、source package:kdevelop v22.11.80\npackage: kdevelop\n\n\nOpen Source Software Licensed under the GPL+ and GPLv2+ and MIT and Redistributable no modification permitted:\n1、source package:linux-firmware 20230824\npackage: linux-firmware\n\n\nOpen Source Software Licensed under the GPL-2 or GPL-2+:\n1、source package:ipheth-utils 1.0-5_s390x\npackage: ipheth-utils\n\n\nOpen Source Software Licensed under the GPL-2 with Font embedding exception and M+ FONTS License:\n1、source package:fonts-wqy-zenhei 0.9.45-8\npackage: fonts-wqy-zenhei\n\n\nOpen Source Software Licensed under the GPL-2 with OpenSSL exception:\n1、source package:barrier 2.4.0+dfsg-2\npackage: barrier\n\n\nOpen Source Software Licensed under the GPL-2+ and LGPL-2+:\n1、source package:xdg-desktop-portal-gtk 1.8.0-1~bpo10+1\npackage: xdg-desktop-portal-gtk\n\n\nOpen Source Software Licensed under the GPL-2+ or AFL-2.1:\n1、source package:dbus 1.9.8-1\npackage: dbus\n\n2、source package:dbus-user-session 1.13.8-1_s390x\npackage: dbus-user-session\n\n3、source package:dbus-x11 1.8.22-0+deb8u1_s390x\npackage: dbus-x11\n\n4、source package:libdbus-1-dev 1.8.22-0+deb8u1_s390x\npackage: libdbus-1-dev\n\n\nOpen Source Software Licensed under the GPL-2+ or FTL:\n1、source package:libfreetype6-dev 2.9.1-4_s390x\npackage: libfreetype6-dev\n\n\nOpen Source Software Licensed under the GPL-2+ or LGPL-2.1 or LGPL-3.0:\n1、source package:libquazip5-dev 0.7.6-6_s390x\npackage: libquazip5-dev\n\n\nOpen Source Software Licensed under the GPL-2+ with OpenSSL exception:\n1、source package:cryptsetup 2:2.6.1-4\npackage: cryptsetup\n\n2、source package:cryptsetup-initramfs 2.3.1-1_all\npackage: cryptsetup-initramfs\n\n3、source package:libcryptsetup12 2.3.1-1_s390x\npackage: libcryptsetup12\n\n\nOpen Source Software Licensed under the GPL-2+ with SSL exception:\n1、source package:remmina 1.4.8+dfsg-2~bpo10+2\npackage: remmina\n\n2、source package:remmina-plugin-rdp 1.4.7+dfsg-1_s390x\npackage: remmina-plugin-rdp\n\n3、source package:remmina-plugin-vnc 1.4.7+dfsg-1_s390x\npackage: remmina-plugin-vnc\n\n\nOpen Source Software Licensed under the GPL-2+ with sane exception:\n1、source package:libsane-dev 1.2.1-4\npackage: libsane-dev\n\n\nOpen Source Software Licensed under the GPL-2.0 or GPL-3.0 or FIPL-1.0:\n1、source package:libfreeimage-dev 3.18.0+ds2-3_s390x\npackage: libfreeimage-dev\n\n\nOpen Source Software Licensed under the GPL-2.0+ or LGPL-2.1+:\n1、source package:fcitx5-frontend-gtk3 0.0~git20200606.fc335f1-2_s390x\npackage: fcitx5-frontend-gtk3\n\n\nOpen Source Software Licensed under the GPL-3 with Qt-1.0 exception:\n1、source package:qttools5-dev 5.9.2-4_kfreebsd-i386\npackage: qttools5-dev\n\n2、source package:qttools5-dev-tools 5.9.2-4_kfreebsd-i386\npackage: qttools5-dev-tools\n\n3、source package:qttranslations5-l10n 5.9.2-1\npackage: qttranslations5-l10n\n\n\nOpen Source Software Licensed under the GPL-3+ or Less:\n1、source package:less 590-2\npackage: less\n\n\nOpen Source Software Licensed under the GPL-3+ with OpenSSL exception:\n1、source package:libdmr-dev 5.7.6.147-1\npackage: libdmr-dev\n\n\nOpen Source Software Licensed under the GPL-3.0-with-Qt-1.0-exception:\n1、source package:libqt5webchannel5-dev 5.7.1-2_s390x\npackage: libqt5webchannel5-dev\n\n2、source package:qml-module-qtwebchannel 5.9.2-3\npackage: qml-module-qtwebchannel\n\n\nOpen Source Software Licensed under the GPL-any:\n1、source package:command-not-found 23.04.0-1\npackage: command-not-found\n\n\nOpen Source Software Licensed under the Hylafax:\n1、source package:libtiff-dev 4.1.0+git191117-2~deb10u1_s390x\npackage: libtiff-dev\n\n\nOpen Source Software Licensed under the ICU:\n1、source package:node 8.16.1\npackage: node\n\n2、source package:x11-xserver-utils 7.7~3_sparc\npackage: x11-xserver-utils\n\n3、source package:xkb-data 2.5.1-3_all\npackage: xkb-data\n\n4、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n5、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n\nOpen Source Software Licensed under the ISC:\n1、source package:abbrev 1.1.1\npackage: abbrev\n\n2、source package:anymatch 3.1.2\npackage: anymatch\n\n3、source package:aproba 1.2.0\npackage: aproba\n\n4、source package:are-we-there-yet 1.1.5\npackage: are-we-there-yet\n\n5、source package:boolbase 1.0.0\npackage: boolbase\n\n6、source package:browserify-sign 4.2.1\npackage: browserify-sign\n\n7、source package:cliui 4.1.0\npackage: cliui\n\n8、source package:color-support 1.1.3\npackage: color-support\n\n9、source package:concat-with-sourcemaps 1.1.0\npackage: concat-with-sourcemaps\n\n10、source package:console-control-strings 1.1.0\npackage: console-control-strings\n\n11、source package:crda 4.14+git20191112.9856751.orig\npackage: crda\n\n12、source package:d 1.0.1\npackage: d\n\n13、source package:distro-info-data 0.9~bpo60+1\npackage: distro-info-data\n\n14、source package:electron-to-chromium 1.3.254\npackage: electron-to-chromium\n\n15、source package:es5-ext 0.10.53\npackage: es5-ext\n\n16、source package:es6-symbol 3.1.3\npackage: es6-symbol\n\n17、source package:es6-weak-map 2.0.3\npackage: es6-weak-map\n\n18、source package:ext 1.4.0\npackage: ext\n\n19、source package:fastq 1.13.0\npackage: fastq\n\n20、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n21、source package:fs 0.0.1-security\npackage: fs\n\n22、source package:fs.realpath 1.0.0\npackage: fs.realpath\n\n23、source package:fstream 1.0.12\npackage: fstream\n\n24、source package:gauge 2.7.4\npackage: gauge\n\n25、source package:get-caller-file 1.0.3\npackage: get-caller-file\n\n26、source package:glob 7.1.4\npackage: glob\n\n27、source package:glob-parent 5.1.2\npackage: glob-parent\n\n28、source package:go-spew v1.1.1\npackage: go-spew\n\n29、source package:go-wav v0.3.2\npackage: go-wav\n\n30、source package:golang-github-nfnt-resize-dev 0.0~git20180221.83c6a99-2_all\npackage: golang-github-nfnt-resize-dev\n\n31、source package:graceful-fs 4.2.4\npackage: graceful-fs\n\n32、source package:har-schema 2.0.0\npackage: har-schema\n\n33、source package:has-unicode 2.0.1\npackage: has-unicode\n\n34、source package:hosted-git-info 2.8.8\npackage: hosted-git-info\n\n35、source package:in-publish 2.0.0\npackage: in-publish\n\n36、source package:inflight 1.0.6\npackage: inflight\n\n37、source package:inherits 2.0.4\npackage: inherits\n\n38、source package:ini 1.3.5\npackage: ini\n\n39、source package:isexe 2.0.0\npackage: isexe\n\n40、source package:json-stringify-safe 5.0.1\npackage: json-stringify-safe\n\n41、source package:lru-cache 4.1.5\npackage: lru-cache\n\n42、source package:minimalistic-assert 1.0.1\npackage: minimalistic-assert\n\n43、source package:minimatch 5.1.6\npackage: minimatch\n\n44、source package:natives 1.1.6\npackage: natives\n\n45、source package:node 8.16.1\npackage: node\n\n46、source package:node-bin-setup 1.0.6\npackage: node-bin-setup\n\n47、source package:nopt 3.0.6\npackage: nopt\n\n48、source package:npmlog 4.1.2\npackage: npmlog\n\n49、source package:once 1.4.0\npackage: once\n\n50、source package:osenv 0.1.5\npackage: osenv\n\n51、source package:parse-asn1 5.1.6\npackage: parse-asn1\n\n52、source package:pkgconf 1.8.1-2\npackage: pkgconf\n\n53、source package:pseudomap 1.0.2\npackage: pseudomap\n\n54、source package:python3-dnspython 2.4.0~rc1-1\npackage: python3-dnspython\n\n55、source package:remove-trailing-separator 1.1.0\npackage: remove-trailing-separator\n\n56、source package:require-main-filename 1.0.1\npackage: require-main-filename\n\n57、source package:rimraf 2.7.1\npackage: rimraf\n\n58、source package:rollup 2.79.1\npackage: rollup\n\n59、source package:semver 5.7.1\npackage: semver\n\n60、source package:set-blocking 2.0.0\npackage: set-blocking\n\n61、source package:sigmund 1.0.1\npackage: sigmund\n\n62、source package:signal-exit 3.0.3\npackage: signal-exit\n\n63、source package:tar 2.2.2\npackage: tar\n\n64、source package:type 2.1.0\npackage: type\n\n65、source package:vinyl-sourcemaps-apply 0.2.1\npackage: vinyl-sourcemaps-apply\n\n66、source package:which 1.3.1\npackage: which\n\n67、source package:which-module 2.0.0\npackage: which-module\n\n68、source package:wide-align 1.1.3\npackage: wide-align\n\n69、source package:wrappy 1.0.2\npackage: wrappy\n\n70、source package:y18n 3.2.1\npackage: y18n\n\n71、source package:yallist 2.1.2\npackage: yallist\n\n72、source package:yargs-parser 8.1.0\npackage: yargs-parser\n\n\nOpen Source Software Licensed under the ImageMagick:\n1、source package:DocxFactory 91131f28\npackage: DocxFactory\n\n\nOpen Source Software Licensed under the Info-ZIP:\n1、source package:unzip 6.0.orig\npackage: unzip\n\n\nOpen Source Software Licensed under the LGPL:\n1、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n2、source package:libatspi2.0-dev 2.5.3-2_sparc\npackage: libatspi2.0-dev\n\n3、source package:liblightdm-qt-dev 1.26.0-5_s390x\npackage: liblightdm-qt-dev\n\n4、source package:lightdm 1.9.9-1\npackage: lightdm\n\n5、source package:slirp4netns 1.2.0-1\npackage: slirp4netns\n\n6、source package:smartmontools 7.3-1\npackage: smartmontools\n\n\nOpen Source Software Licensed under the LGPL-2+ and LGPL-2.1+:\n1、source package:ostree 2023.3-2\npackage: ostree\n\n\nOpen Source Software Licensed under the LGPL-2+ and LGPL-2.1+ and FSFULLR and CC0-1.0 and Janik-permissive and Iconv-PD and Mingw-PD and Old-GLib-Tests-permissive:\n1、source package:libglib2.0-bin 2.76.4-1\npackage: libglib2.0-bin\n\n\nOpen Source Software Licensed under the LGPL-2.0+ and Expat:\n1、source package:policykit-1 122-4\npackage: policykit-1\n\n\nOpen Source Software Licensed under the LGPL-2.0-or-later:\n1、source package:bubblewrap 0~git160513-2\npackage: bubblewrap\n\n2、source package:gvfs-backends 1.44.1-1_s390x\npackage: gvfs-backends\n\n3、source package:gvfs-bin 1.44.1-1_s390x\npackage: gvfs-bin\n\n4、source package:gvfs-fuse 1.44.1-1_s390x\npackage: gvfs-fuse\n\n5、source package:kcalcore 5:5.85.0-2\npackage: kcalcore\n\n6、source package:kdeclarative 5.100.0-1\npackage: kdeclarative\n\n7、source package:libasound2-dev 1.2.2-2.3_ppc64el\npackage: libasound2-dev\n\n8、source package:libgdk-pixbuf2.0-0 2.40.2-3\npackage: libgdk-pixbuf2.0-0\n\n9、source package:libgdk-pixbuf2.0-dev 2.40.0+dfsg-5_s390x\npackage: libgdk-pixbuf2.0-dev\n\n10、source package:libkf5itemviews-dev 5.70.0-1_s390x\npackage: libkf5itemviews-dev\n\n11、source package:libkf5widgetsaddons-dev 5.70.0-1_s390x\npackage: libkf5widgetsaddons-dev\n\n12、source package:libmtp-runtime 1.1.9-3~bpo8+1\npackage: libmtp-runtime\n\n13、source package:libpolkit-agent-1-dev 0.116-2_s390x\npackage: libpolkit-agent-1-dev\n\n14、source package:libpolkit-qt5-1-dev 0.112.0-7_s390x\npackage: libpolkit-qt5-1-dev\n\n15、source package:librsvg2-bin 2.48.7-1_ppc64el\npackage: librsvg2-bin\n\n16、source package:platform/external/e2fsprogs lollipop-dev\npackage: platform/external/e2fsprogs\n\n17、source package:xdg-desktop-portal 1.8.1-1~bpo10+1\npackage: xdg-desktop-portal\n\n\nOpen Source Software Licensed under the LGPL-2.1 or MPL-2.0:\n1、source package:libical-dev 3.0.8-2_mipsel\npackage: libical-dev\n\n\nOpen Source Software Licensed under the LGPL-3 or GPL-2-or-3 with KDE Exception:\n1、source package:qml6-module-qtwebchannel 6.4.2~rc1-3\npackage: qml6-module-qtwebchannel\n\n\nOpen Source Software Licensed under the LGPL-3Qt-1.1Exception or GPL-2Qt-1.1Exception:\n1、source package:qml-module-qtwebengine 5.7.1+dfsg-6.1_mipsel\npackage: qml-module-qtwebengine\n\n2、source package:qtwebengine5-dev 5.7.1+dfsg-6.1_mipsel\npackage: qtwebengine5-dev\n\n\nOpen Source Software Licensed under the LGPLv2 with exceptions or GPLv3 with exceptions and GFDL:\n1、source package:libqt6svg6 6.4.1\npackage: libqt6svg6\n\n\nOpen Source Software Licensed under the Libpng:\n1、source package:libpng-dev 1.6.37-2_s390x\npackage: libpng-dev\n\n2、source package:libsdl2-dev 2.0.9+dfsg1-1_s390x\npackage: libsdl2-dev\n\n\nOpen Source Software Licensed under the Linux-syscall-note:\n1、source package:pinn 0.0\npackage: pinn\n\n\nOpen Source Software Licensed under the MITNFA:\n1、source package:through2 0.6.5\npackage: through2\n\n\nOpen Source Software Licensed under the MPL-1.1 or GPL-2+ or LGPL-2.1+:\n1、source package:libchardet-dev 1.0.4-1_s390x\npackage: libchardet-dev\n\n2、source package:libchardet1 1.0.4-1_s390x\npackage: libchardet1\n\n3、source package:libuchardet-dev 0.0.7-1_s390x\npackage: libuchardet-dev\n\n4、source package:libuchardet0 0.0.7-1_s390x\npackage: libuchardet0\n\n\nOpen Source Software Licensed under the NAIST-2003:\n1、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the Net-SNMP:\n1、source package:sudo 1.9.8p2-1~exp1\npackage: sudo\n\n\nOpen Source Software Licensed under the OFL-1.1:\n1、source package:fonts-intel-one-mono 1.2.1-2\npackage: fonts-intel-one-mono\n\n2、source package:fonts-lohit-deva 2.95.4.orig\npackage: fonts-lohit-deva\n\n3、source package:fonts-noto 20201225-1\npackage: fonts-noto\n\n4、source package:fonts-noto-mono 20200323-1_all\npackage: fonts-noto-mono\n\n\nOpen Source Software Licensed under the OpenSSL:\n1、source package:libssl1.1 1.1.1~~pre9-1\npackage: libssl1.1\n\n2、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the PD:\n1、source package:xz-utils 5.4.1-0.2\npackage: xz-utils\n\n\nOpen Source Software Licensed under the Public Domain:\n1、source package:debianutils 5.8-1\npackage: debianutils\n\n2、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n3、source package:grub-efi-amd64-signed 1+2.06+8.1\npackage: grub-efi-amd64-signed\n\n4、source package:grub-efi-arm64-signed 1+2.06+8.1\npackage: grub-efi-arm64-signed\n\n5、source package:jsonify 0.0.0\npackage: jsonify\n\n6、source package:libatspi2.0-dev 2.5.3-2_sparc\npackage: libatspi2.0-dev\n\n7、source package:libsqlite3-0 3.8.7.1-1_kfreebsd-i386\npackage: libsqlite3-0\n\n8、source package:libsqlite3-dev 3.8.7.1-1_kfreebsd-i386\npackage: libsqlite3-dev\n\n9、source package:sqlite3 3.9.2-1\npackage: sqlite3\n\n10、source package:tzdata 2023c-7\npackage: tzdata\n\n\nOpen Source Software Licensed under the Python-2.0:\n1、source package:python3 3.8.2-3_s390x\npackage: python3\n\n\nOpen Source Software Licensed under the Qt-GPL-exception-1.0:\n1、source package:qtremoteobjects v5.11.0-rc2\npackage: qtremoteobjects\n\n\nOpen Source Software Licensed under the Rdisc:\n1、source package:iputils-ping 20190709-3_s390x\npackage: iputils-ping\n\n\nOpen Source Software Licensed under the SGI-B-1.1:\n1、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n2、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n\nOpen Source Software Licensed under the SGI-B-2.0:\n1、source package:libegl1-mesa-dev 8.0.5-4+deb7u2_sparc\npackage: libegl1-mesa-dev\n\n2、source package:libgbm-dev 8.0.5-4+deb7u2_sparc\npackage: libgbm-dev\n\n3、source package:xserver-xorg-core 1.20.8-2_s390x\npackage: xserver-xorg-core\n\n4、source package:xwayland 2:23.1.1-1\npackage: xwayland\n\n\nOpen Source Software Licensed under the SIL-1.1:\n1、source package:fonts-noto-cjk 20190410+repack1-2.debian\npackage: fonts-noto-cjk\n\n\nOpen Source Software Licensed under the SSLeay:\n1、source package:libssl1.1 1.1.1~~pre9-1\npackage: libssl1.1\n\n\nOpen Source Software Licensed under the Sleepycat:\n1、source package:go-difflib v1.0.0\npackage: go-difflib\n\n\nOpen Source Software Licensed under the The Bugly Software License Version 1.0:\n1、source package:crashreport 3.4.4\npackage: crashreport\n\n2、source package:nativecrashreport 3.9.2\npackage: nativecrashreport\n\n\nOpen Source Software Licensed under the Unicode-DFS-2015:\n1、source package:DocxFactory 91131f28\npackage: DocxFactory\n\n\nOpen Source Software Licensed under the Unicode-DFS-2016:\n1、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the Unicode-TOU:\n1、source package:node 8.16.1\npackage: node\n\n\nOpen Source Software Licensed under the Unlicense:\n1、source package:ncompress 4.2.4.6.orig\npackage: ncompress\n\n2、source package:tortellini 4f6795a\npackage: tortellini\n\n3、source package:tweetnacl 0.14.5\npackage: tweetnacl\n\n\nOpen Source Software Licensed under the Vim:\n1、source package:vim 8.2.0716.orig\npackage: vim\n\n\nOpen Source Software Licensed under the X11:\n1、source package:libwayland-dev 1.6.0-2_s390x\npackage: libwayland-dev\n\n2、source package:libxcb-image0-dev 0.4.0-1_s390x\npackage: libxcb-image0-dev\n\n3、source package:libxcb-keysyms1-dev 0.4.0-1_s390x\npackage: libxcb-keysyms1-dev\n\n4、source package:libyaml-cpp-dev 0.6.3-9_s390x\npackage: libyaml-cpp-dev\n\n5、source package:ncurses-base 6.2-1_all\npackage: ncurses-base\n\n6、source package:wordwrap 0.0.2\npackage: wordwrap\n\n\nOpen Source Software Licensed under the Xnet:\n1、source package:onboard 1.4.1-5_s390x\npackage: onboard\n\n\nOpen Source Software Licensed under the Zlib:\n1、source package:avfs 1.1.4-2\npackage: avfs\n\n2、source package:ffmpeg 7:6.0-3\npackage: ffmpeg\n\n3、source package:libminizip-dev 1.1-8_hurd-i386\npackage: libminizip-dev\n\n4、source package:libsdl2-dev 2.0.9+dfsg1-1_s390x\npackage: libsdl2-dev\n\n5、source package:libxlsxwriter RELEASE_1.0.0\npackage: libxlsxwriter\n\n6、source package:node 8.16.1\npackage: node\n\n7、source package:pako 1.0.11\npackage: pako\n\n8、source package:pigz 2.6-1\npackage: pigz\n\n9、source package:unalz 0.65-9\npackage: unalz\n\n10、source package:zlib1g 1.2.8.dfsg-5_s390x\npackage: zlib1g\n\n11、source package:zlib1g-dev 1:1.2.3.3.dfsg-1\npackage: zlib1g-dev\n\n\nOpen Source Software Licensed under the copyleft-next-0.3.0:\n1、source package:crda 4.14+git20191112.9856751.orig\npackage: crda\n\n\nOpen Source Software Licensed under the cryptsetup-OpenSSL-exception:\n1、source package:aria2 1.9.5-1\npackage: aria2\n\n2、source package:libcryptsetup-dev 2:2.4.0-1\npackage: libcryptsetup-dev\n\n\nOpen Source Software Licensed under the curl:\n1、source package:curl 8.0.1-1~exp1\npackage: curl\n\n2、source package:libcurl4-openssl-dev 7.68.0-1_s390x\npackage: libcurl4-openssl-dev\n\n\nOpen Source Software Licensed under the hdparm:\n1、source package:hdparm 9.65+ds-1\npackage: hdparm\n\n\nOpen Source Software Licensed under the nolicense:\n1、source package:FreeBSD-Electron v9.0.3\npackage: FreeBSD-Electron\n\n2、source package:LTSLAM 94d7e0f\npackage: LTSLAM\n\n3、source package:TSFileEditor 0.2.1\npackage: TSFileEditor\n\n4、source package:asio asio-1-29-0\npackage: asio\n\n5、source package:chromium-source-tarball 59.0.3071.57\npackage: chromium-source-tarball\n\n6、source package:geek-navigation 5a521f2\npackage: geek-navigation\n\n7、source package:gentoo 202\npackage: gentoo\n\n8、source package:go-urn v1.1.0\npackage: go-urn\n\n9、source package:imaging v1.6.2\npackage: imaging\n\n10、source package:kcrash 5.103.0-1\npackage: kcrash\n\n11、source package:ncnn_paddleocr 9c054d3\npackage: ncnn_paddleocr\n\n12、source package:plasma-workspace v5.25.90\npackage: plasma-workspace\n\n13、source package:platform/external/qt emu-29.0-release\npackage: platform/external/qt\n\n14、source package:qtbase v6.5.1\npackage: qtbase\n\n15、source package:qtxlsxwriter v0.3.0\npackage: qtxlsxwriter\n\n16、source package:scriptcommunicator_serial-terminal Release_06_02\npackage: scriptcommunicator_serial-terminal\n\n17、source package:socket v0.4.1\npackage: socket\n\n18、source package:strace v4.14\npackage: strace\n\n19、source package:v5 v5.1.0\npackage: v5\n\n20、source package:wlr-protocols d278d20\npackage: wlr-protocols\n\n\nCopy of Licenses\n\n【GPL-2.0】\nGNU GENERAL PUBLIC LICENSE\nVersion 2, June 1991\n\nCopyright (C) 1989, 1991 Free Software Foundation, Inc.\n51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA\n\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\nPreamble\nThe licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n\nWe protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations.\n\nFinally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all.\n\nThe precise terms and conditions for copying, distribution and modification follow.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The \"Program\", below, refers to any such program or work, and a \"work based on the Program\" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does.\n\n1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.\n\n2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:\n\na) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change.\n\nb) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License.\n\nc) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.\n\n3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following:\n\na) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,\n\nb) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or,\n\nc) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.\n\nIf distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code.\n\n4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.\n\n5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it.\n\n6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License.\n\n7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.\n\nThis section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.\n\n8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.\n\n9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and \"any later version\", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation.\n\n10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nEND OF TERMS AND CONDITIONS\nHow to Apply These Terms to Your New Programs\nIf you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\n\nTo do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the \"copyright\" line and a pointer to where the full notice is found.\n\none line to give the program's name and an idea of what it does.\nCopyright (C) yyyy  name of author\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License\nas published by the Free Software Foundation; either version 2\nof the License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this when it starts in an interactive mode:\n\nGnomovision version 69, Copyright (C) year name of author\nGnomovision comes with ABSOLUTELY NO WARRANTY; for details\ntype `show w'.  This is free software, and you are welcome\nto redistribute it under certain conditions; type `show c'\nfor details.\nThe hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program.\n\nYou should also get your employer (if you work as a programmer) or your school, if any, to sign a \"copyright disclaimer\" for the program, if necessary. Here is a sample; alter the names:\n\nYoyodyne, Inc., hereby disclaims all copyright\ninterest in the program `Gnomovision'\n(which makes passes at compilers) written\nby James Hacker.\n\nsignature of Ty Coon, 1 April 1989\nTy Coon, President of Vice\nThis General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License.\n\n【GPL-3.0】\nGNU GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright (C) 2007 Free Software Foundation, Inc. https://fsf.org/\n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nPreamble\nThe GNU General Public License is a free, copyleft license for software and other kinds of works.\n\nThe licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.\n\nTo protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.\n\nFor example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\n\nDevelopers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.\n\nFor the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.\n\nSome devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.\n\nFinally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.\n\nThe precise terms and conditions for copying, distribution and modification follow.\n\nTERMS AND CONDITIONS\n0. Definitions.\n\"This License\" refers to version 3 of the GNU General Public License.\n\n\"Copyright\" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\n\n\"The Program\" refers to any copyrightable work licensed under this License. Each licensee is addressed as \"you\". \"Licensees\" and \"recipients\" may be individuals or organizations.\n\nTo \"modify\" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a \"modified version\" of the earlier work or a work \"based on\" the earlier work.\n\nA \"covered work\" means either the unmodified Program or a work based on the Program.\n\nTo \"propagate\" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.\n\nTo \"convey\" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.\n\nAn interactive user interface displays \"Appropriate Legal Notices\" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.\n\n1. Source Code.\nThe \"source code\" for a work means the preferred form of the work for making modifications to it. \"Object code\" means any non-source form of a work.\n\nA \"Standard Interface\" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.\n\nThe \"System Libraries\" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A \"Major Component\", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.\n\nThe \"Corresponding Source\" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.\n\nThe Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.\n\nThe Corresponding Source for a work in source code form is that same work.\n\n2. Basic Permissions.\nAll rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.\n\nYou may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.\n\nConveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.\n\n3. Protecting Users' Legal Rights From Anti-Circumvention Law.\nNo covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.\n\nWhen you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.\n\n4. Conveying Verbatim Copies.\nYou may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.\n\nYou may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.\n\n5. Conveying Modified Source Versions.\nYou may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:\n\na) The work must carry prominent notices stating that you modified it, and giving a relevant date.\nb) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to \"keep intact all notices\".\nc) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.\nd) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.\nA compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an \"aggregate\" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.\n\n6. Conveying Non-Source Forms.\nYou may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:\n\na) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.\nb) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.\nc) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.\nd) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.\ne) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.\nA separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.\n\nA \"User Product\" is either (1) a \"consumer product\", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, \"normally used\" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.\n\n\"Installation Information\" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.\n\nIf you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).\n\nThe requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.\n\nCorresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.\n\n7. Additional Terms.\n\"Additional permissions\" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.\n\nWhen you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.\n\nNotwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:\n\na) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or\nb) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or\nc) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or\nd) Limiting the use for publicity purposes of names of licensors or authors of the material; or\ne) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or\nf) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.\nAll other non-permissive additional terms are considered \"further restrictions\" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.\n\nIf you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.\n\nAdditional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.\n\n8. Termination.\nYou may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).\n\nHowever, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.\n\nMoreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.\n\nTermination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.\n\n9. Acceptance Not Required for Having Copies.\nYou are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.\n\n10. Automatic Licensing of Downstream Recipients.\nEach time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.\n\nAn \"entity transaction\" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.\n\nYou may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.\n\n11. Patents.\nA \"contributor\" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's \"contributor version\".\n\nA contributor's \"essential patent claims\" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, \"control\" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.\n\nEach contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.\n\nIn the following three paragraphs, a \"patent license\" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To \"grant\" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.\n\nIf you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. \"Knowingly relying\" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.\n\nIf, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.\n\nA patent license is \"discriminatory\" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.\n\nNothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.\n\n12. No Surrender of Others' Freedom.\nIf conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.\n\n13. Use with the GNU Affero General Public License.\nNotwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.\n\n14. Revised Versions of this License.\nThe Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License \"or any later version\" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.\n\nIf the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.\n\nLater license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.\n\n15. Disclaimer of Warranty.\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. Limitation of Liability.\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n17. Interpretation of Sections 15 and 16.\nIf the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.\n\nEND OF TERMS AND CONDITIONS\n\nHow to Apply These Terms to Your New Programs\nIf you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\n\nTo do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <https://www.gnu.org/licenses/>.\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\nThe hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an \"about box\".\n\nYou should also get your employer (if you work as a programmer) or school, if any, to sign a \"copyright disclaimer\" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see https://www.gnu.org/licenses/.\n\nThe GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read https://www.gnu.org/licenses/why-not-lgpl.html.\n\n【LGPL-2.1】\nGNU LESSER GENERAL PUBLIC LICENSE\nVersion 2.1, February 1999\n\nCopyright (C) 1991, 1999 Free Software Foundation, Inc.\n51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA\n\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL.  It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\nPreamble\nThe licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users.\n\nThis license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below.\n\nWhen we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it.\n\nFor example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights.\n\nWe protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library.\n\nTo protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is not the original version, so that the original author's reputation will not be affected by problems that might be introduced by others.\n\nFinally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license.\n\nMost GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs.\n\nWhen a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library.\n\nWe call this license the \"Lesser\" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances.\n\nFor example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License.\n\nIn other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system.\n\nAlthough the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library.\n\nThe precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a \"work based on the library\" and a \"work that uses the library\". The former contains code derived from the library, whereas the latter must be combined with the library in order to run.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called \"this License\"). Each licensee is addressed as \"you\".\n\nA \"library\" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables.\n\nThe \"Library\", below, refers to any such software library or work which has been distributed under these terms. A \"work based on the Library\" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term \"modification\".)\n\n\"Source code\" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library.\n\nActivities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does.\n\n1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.\n\n2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:\n\na) The modified work must itself be a software library.\n\nb) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change.\n\nc) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License.\n\nd) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful.\n\n(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.\n\n3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices.\n\nOnce this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy.\n\nThis option is useful when you wish to copy part of the code of the Library into a program that is not a library.\n\n4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange.\n\nIf distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code.\n\n5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a \"work that uses the Library\". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License.\n\nHowever, linking a \"work that uses the Library\" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a \"work that uses the library\". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables.\n\nWhen a \"work that uses the Library\" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law.\n\nIf such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.)\n\nOtherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself.\n\n6. As an exception to the Sections above, you may also combine or link a \"work that uses the Library\" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications.\n\nYou must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things:\n\na) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable \"work that uses the Library\", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.)\nb) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with.\nc) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution.\nd) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place.\ne) Verify that the user has already received a copy of these materials or that you have already sent this user a copy.\nFor an executable, the required form of the \"work that uses the Library\" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.\n\nIt may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute.\n\n7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things:\n\na) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above.\nb) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.\n8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.\n\n9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it.\n\n10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License.\n\n11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.\n\nThis section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.\n\n12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.\n\n13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and \"any later version\", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation.\n\n14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\nEND OF TERMS AND CONDITIONS\nHow to Apply These Terms to Your New Libraries\nIf you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License).\n\nTo apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the \"copyright\" line and a pointer to where the full notice is found.\n\none line to give the library's name and an idea of what it does.\nCopyright (C) year  name of author\n\nThis library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public\nLicense along with this library; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your school, if any, to sign a \"copyright disclaimer\" for the library, if necessary. Here is a sample; alter the names:\n\nYoyodyne, Inc., hereby disclaims all copyright interest in\nthe library `Frob' (a library for tweaking knobs) written\nby James Random Hacker.\n\nsignature of Ty Coon, 1 April 1990\nTy Coon, President of Vice\nThat's all there is to it!\n\n【LGPL-3.0】\nGNU LESSER GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright (C) 2007 Free Software Foundation, Inc. https://fsf.org/\n\nEveryone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\n\nThis version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below.\n\n0. Additional Definitions.\nAs used herein, \"this License\" refers to version 3 of the GNU Lesser General Public License, and the \"GNU GPL\" refers to version 3 of the GNU General Public License.\n\n\"The Library\" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.\n\nAn \"Application\" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.\n\nA \"Combined Work\" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the \"Linked Version\".\n\nThe \"Minimal Corresponding Source\" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.\n\nThe \"Corresponding Application Code\" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work.\n\n1. Exception to Section 3 of the GNU GPL.\nYou may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL.\n\n2. Conveying Modified Versions.\nIf you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:\n\na) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or\nb) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.\n3. Object Code Incorporating Material from Library Header Files.\nThe object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:\n\na) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License.\nb) Accompany the object code with a copy of the GNU GPL and this license document.\n4. Combined Works.\nYou may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following:\n\na) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License.\nb) Accompany the Combined Work with a copy of the GNU GPL and this license document.\nc) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document.\nd) Do one of the following:\nConvey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.\nUse a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version.\ne) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)\n5. Combined Libraries.\nYou may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:\n\na) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License.\nb) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.\n6. Revised Versions of the GNU Lesser General Public License.\nThe Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License \"or any later version\" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.\n\nIf the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.\n\n【BSD-2-clause】\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\nTHIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n【BSD-3-clause】\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\nNeither the name of Apple Inc. (\"Apple\") nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\nTHIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n【The Qt Company GPL Exception 1.0】\nException 1:\n\nAs a special exception you may create a larger work which contains the output of this application and distribute that work under terms of your choice, so long as the work is not otherwise derived from or based on this application and so long as the work does not in itself generate output that contains the output from this application in its original or modified form.\n\nException 2:\n\nAs a special exception, you have permission to combine this application with Plugins licensed under the terms of your choice, to produce an executable, and to copy and distribute the resulting executable under the terms of your choice. However, the executable must be accompanied by a prominent notice offering all users of the executable the entire source code to this application, excluding the source code of the independent modules, but including any changes you have made to this application, under the terms of this license.\n\n【The Qt Company LGPL Exception version 1.1】\nAs an additional permission to the GNU Lesser General Public License version 2.1, the object code form of a \"work that uses the Library\" may incorporate material from a header file that is part of the Library. You may distribute such object code under terms of your choice, provided that:\n\n(i) the header files of the Library have not been modified; and\n\n(ii) the incorporated material is limited to numerical parameters, data structure layouts, accessors, macros, inline functions and templates; and\n\n(iii) you comply with the terms of Section 6 of the GNU Lesser General Public License version 2.1.\n\nMoreover, you may apply this exception to a modified version of the Library, provided that such modification does not involve copying material from the Library into the modified Library's header files unless such material is limited to (i) numerical parameters; (ii) data structure layouts; (iii) accessors; and (iv) small macros, templates and inline functions of five lines or less in length.\n\nFurthermore, you are not required to apply this additional permission to a modified version of the Library.\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/gpl/gpl-3.0-zh_TW-title.txt",
    "content": "Open Source Software Notice\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/license/deepin-end-user-license-agreement_community_en_US.txt",
    "content": "Deepin OS Privacy Policy\r\n\r\nLatest update date:December 8th, 2020\r\n\r\nThe Privacy Policy sets forth the personal information processed by UnionTech Software as well as its affiliates (including but not limited to Wuhan Deepin Technology Co., Ltd. (hereinafter referred to as “UnionTech Software” or “We”) as well as the way and purpose for processing the personal information. The Privacy Policy applies to the Deepin OS and the related applications (“the software”) that we provides to you, which will be listed and described one by one.\r\n\r\nYou can contact us through the following ways:     \r\nUnionTech Software Technology Co., Ltd.              \r\n[Address] Floor 18, Building 12, Yard 10, Kegu First Street, Beijing Economic and Technological Development Zone, Beijing City, PRC\r\n[Email] support@UnionTech.com\r\n[Tel] 400-8588-488\r\n\r\nWe are deeply aware of the importance of your personal information to you and will try our utmost to maintain the reliability and security of your personal information. We are committed to maintaining your trust in us and will make unremitting efforts to protect your personal information strictly by the following principles: consistency of rights and responsibilities, clear purposes, choice of consent, minimum sufficiency, ensuring safety, subject participation, openness and transparency, etc. In the meantime, we promise to adopt corresponding security protection measures to protect your personal information according to the mature security standard in the industry.\r\nWe strive to present the Privacy Policy in a concise, clear and understandable manner. In order to facilitate your reading and understanding, we have defined the special terms about personal information protection. Please go to the “Appendix 1: Definition” in the Privacy Policy for the detailed information about these terms so that you can grasp the information we wish to convene to you accurately.\r\n\r\nThe Privacy Policy will help you to understand the following:\r\nI.How we collect and use your personal information\r\nII.How we use Cookies and similar technologies\r\nIII.How we share, transfer and disclose to the public your personal information\r\nIV.How we protect your personal information\r\nV.How we store your personal information\r\nVI.Your rights\r\nVII.How we process the minor’s personal information\r\nVIII.How we transfer your personal information globally\r\nIX.How to update the Privacy Policy\r\nX.Our personal information protection department/specialist\r\nXI.Your rights to appeal and sue to the regulatory authority\r\n\r\nBefore using our products and services, please read and understand carefully the Privacy Policy, in particular the black and bold part, so that you can better understand our products and services and make an appropriate choice.\r\n\r\nI. How We Collect and Use Your Personal Information\r\nWhen you use the software products and services, your relevant personal information will be recorded and stored automatically in your local devices, including:\r\nNetwork Identification Information\r\ne.g. your IP address, MAC address, etc.;\r\nDevice Information\r\nIncluding your device motherboard information, BIOS information, CPU information, memory information, hard disk information, partition information, network card information, etc.;\r\nOperation System Information\r\nIncluding the operation system software version, the latest update date of the system, system language, system sound effects, power supply, mouse, system theme, wallpaper, launcher, dock, configuration information for hot corners, daily login times and source for each download;\r\nApplication Software Information\r\nFor example, the version, installation location, start and exist time of your applications installed in the system.\r\n\r\n1.Personal Information You Voluntarily Authorize Us to Collect\r\nOnly when you actively enable the corresponding business feature, can information of this kind be transmitted through the server to UnionTech Software for processing. Your refusal to enable such features or provide corresponding personal information to UnionTech Software will not affect your normal use of the software. Such business features include:\r\n1.1User Experience Program\r\nIf you enable the “User Experience Program”, we are authorized to read, record and store the information in your local devices. We will stop collecting such information after “User Experience Program” being disabled by you, including:\r\n1.1.1.Device and System Information\r\nThe device information includes your device motherboard information, BIOS information, CPU information, memory information, hard disk information, partition information, network card information, etc. The system information includes the system software version, the latest update date of the system, system language, daily active users, source for each download and the operation system performance information during runtime.\r\n1.1.2.Application Software Information\r\nFor example, the version, installation location, start and exist time of your applications installed in the system and the performance information during runtime.\r\n1.1.3.Exception Information\r\nThe exception information of the operation system and/or the application during runtime.\r\n1.2Deepin ID Service\r\nYou can register your Deepin ID in www.deepin.com and log into the software or the products provided by our partners. You can make synchronization of the software configuration and application software of the software between different devices after login. However, such synchronization will be expired after the Deepin ID service being disabled by you.\r\n1.2.1.Deepin ID Registration\r\nTo realize the service feature and meet the relevant regulatory requirement in the P.R.C, personal mobile number is needed to complete the Deepin ID registration. Due to the regulatory requirements of the P.R.C, it will be unavailable for us to provide you with Deepin ID services if you refuse to provide your mobile number. If you are located outside the P.R.C, you need to provide your personal email address to complete the Deepin ID registration.\r\n1.2.2.System Configuration Synchronization Service\r\nYou can log into the Deepin ID through the cloud synchronization module of the software control center and authorize to enable the \"cloud synchronization\" service to synchronize the software configuration between different devices under the same Deepin ID. For this synchronization purpose, the cloud synchronization service will read your device information and system information. Your refusal to provide the foregoing information will not affect the normal operation of other services in the software.\r\n1.2.3.Application Software Synchronization Service\r\nYou can log into the Deepin ID through the cloud synchronization module of the software control center to synchronize the software application software between different devices under the same Deepin ID. For this synchronization purpose, the application software synchronization service will read your application software information, application software purchase information (including your real-name authentication information and bank account information necessary to complete the payment), history application review data and history reward data. Your refusal to provide the foregoing information will not affect the normal operation of other services in the software.\r\n1.2.4.Browser Service\r\nWhen you browse and visit the website and platform we provide with the pre-installed browser of the software, we will collect through cookies and other similar technologies your device information, system information and browsing information (including your browser version information, favorites information, browsed website records, browser settings, auto-populated data (we will save your user account and password filling record when permitted.) as well as your IP address. Please refer to [Part II] “How We Use Cookies and Similar Technologies” for details.\r\n1.2.5.Application Store Service\r\nWe will collect your device information, system information and application information when you download, install and uninstall applications with the pre-installed application store of the software. You can comment on and/or rate the applications in the application store after login with your Deepin ID. The comments and/or rating information will be stored in association with your Deepin ID.\r\n\r\n2.Collecting Your Personal Information Automatically When You Use software Products and Services\r\nWhen you use some features of the software products and services, we will automatically collect the relevant information, which may include your personal information. Such features include:\r\n2.1.Desktop AI Assistant/Voice Notepad\r\nThe desktop AI assistant service is integrated into the software and co-provided by our partners and us. When you input texts via the desktop AI assistant or use the voice notepad feature, our partner will directly collect your voice content to conduct technical analysis and convert it to texts. As for the detailed description for the information shared to the partners, please refer to [Part III] “How We Share, Transfer and Disclose Your Personal Information” in Privacy Policy in detail.\r\n2.2.System Upgrade\r\nWhen you upgrade the Deepin OS products and services, we will collect your device ID, system mainline version, system version number and other information for us to clarify your system information, so as to help you update accurately. The collected information will be anonymized.\r\n\r\n3.Conducting Internal Audit, Big Data Analysis and Research\r\n3.1.We will conduct necessary internal audit with the personal information collected within UnionTech Software.\r\n3.2.We will use the personal information collected for big data analysis. For example, the collected information will be used to analyze and form statistical products excluding personal information, display the overall picture of UnionTech Software services, analyze the behavior patterns of different groups, etc. We may disclose to the public or share with our affiliates and partners the processed statistical big data information without identification.\r\n\r\n4.Safety and Security\r\nWe will use your personal information for purposes such as ensuring the security of your personal devices and accounts, the security of our operation as well as fulfilling our legal obligations (for example, saving the information that may involve illegal and criminal activities). \r\n\r\n5.Other Usage\r\n5.1.We will seek your explicit consent in advance when using the information collected for a specific purpose for other purposes.\r\n5.2.However, in accordance with the relevant laws and regulations as well as the national standards, we may collect and use your personal information without seeking your authorization and consent under the following circumstances: \r\n5.2.1.personal information directly related to national security, national defence security and other national interests; personal information directly related to public safety, public health, public information and other major public interests;\r\n5.2.2.personal information directly related to crime investigation, prosecution, trial and judgement execution, etc.; \r\n5.2.3.for the purpose of protecting your and other individual’s important legal rights and interests such as life, property, reputation, etc. but difficult to get the person’s consent;\r\n5.2.4.personal information collected that is disclosed to the public by yourself;\r\n5.2.5.personal information collected from legally and publicly disclosed information, such as legal news report, government information disclosure, etc.;\r\n5.2.6.personal information needed to sign and fulfil a contract at your request;\r\n5.2.7.personal information needed for maintaining the safe and stable operation of the products and services provided, for example, finding and handling the faults of products and services; \r\n5.2.8.personal information needed for legal news reporting;\r\n5.2.9.personal information which is needed for conducting statistical and academic research in public interests but de-identified in the academic research results or its description results offered to the outside world;\r\n5.2.10.other circumstances under the provisions of laws and regulations.\r\n\r\nII.How to Use Cookies and Similar Technologies\r\n\r\n6.Cookie \r\n6.1.We will store on your computer or mobile device a small text file called Cookie, which usually contains the identifier, website name, some numbers and characters. With the assistance of Cookies, we can store your preferences in our web servers and provide you more personalized user experience and services.\r\n6.1.1.We will not use Cookies for other purposes except for those described in this Privacy Policy. You can choose to manage or delete Cookies according to your preference. Please refer to AboutCookies.org for details. \r\n6.1.2.You can clear all the Cookies saved on your computer. Most web browsers have the Cookie blocking feature and you can learn and set it in your browser settings.  \r\n\r\n7.Do Not Track \r\nMany web browsers have a Do Not Track feature that may send Do Not Track requests to websites. At present, major Internet standards organizations have not yet established policies to regulate how websites should respond to such requests. But if your browser has Do Not Track enabled, your choice will be respected in all of our sites. \r\n\r\nIII.How We Share, Transfer and Disclose to the Public Your Personal Information \r\n\r\n1.Sharing\r\n1.1.We will not share your personal information with any company, organization or individual other than UnionTech Software except for the flowing circumstances:\r\n1.1.1.Sharing with explicit consent: We will share with others your personal information after obtaining your explicit consent.\r\n1.1.2.We may share your personal information externally in accordance with the laws and regulations or the mandatory request of the government authorities.\r\n1.1.3.Sharing with authorized partners: For the purpose of the Privacy Policy statement only, some of our services are jointly provided by our authorized partners. We may share with the partners some of your personal information in order to provide better custom services and user experiences. We will share your personal information necessary for providing services only for the legal, proper, necessary, specific and clear purposes. Our partners are not authorized to use the shared information for other purposes. For the company, organization or individual that we share information with, we will sign a strict confidentiality agreement demanding them to deal with the personal information according to our instructions, the Privacy Policy as well as other related confidentiality and security measures. \r\nPlease refer to the below for the detailed information of authorized partner sharing:\r\nCooperation Type: Voice service\r\nPartner Name: IFLYTEK CO., LTD.\r\nCooperation Purpose: Speech content text conversion technology\r\nCooperation Mode: Transmitting the personal information by embedding third-party codes and plugins.\r\nShared Personal Information Field: Voice information content\t\r\nPartner Data Security Capacity Description: National Information Security Level Protection Level 3 Certification\r\n1.1.4.It should be specially noted that when related service providers provide services to you through third-party access such as page jumps to service provider pages, the corresponding service provider will directly reach the corresponding personal information authorization license with you and such information directly collected by the service provider is not within the scope of the information we share with them. In the case where the service is provided directly by a third party, we will clearly identify the third party information on the specific service page. To avoid ambiguity, you should be aware of and understand that the aforementioned links to websites, applications, products and services operated by independent third parties are provided only for the convenience of users to browse relevant pages. When you visit such third-party websites, applications, products and services, you should agree separately to the privacy policy and personal information protection clauses provided for you. We and such third-party websites, applications, products and services providers will assume independent personal information protection responsibilities respectively to you within the scope stipulated by law and agreed by both parties.\r\n\r\n2.Transfer\r\nWe will not transfer your personal information to any company, organization or individual except for the following circumstances:\r\n2.1.Having obtained your explicit authorization and consent in advance;\r\n2.2.When it comes to merger, acquisition or bankruptcy liquidation, if it involves personal information transfer, we will require the new company and organization holding your personal information continue to be bound by the Privacy Policy. Otherwise we will demand the company and organization to seek your authorization and consent again.\r\n\r\n3.Public Disclosure\r\nWe will disclose your personal information publicly only under the following circumstances and under the premise of adopting the security protection measures that conform to the industry standard: \r\n3.1.Disclosing the specified personal information in the manner you explicitly consent according to your needs;\r\n3.2.Where it is necessary to provide your personal information in accordance with the requirements of laws, regulations, mandatory administrative enforcement or judicial requirements, we may publicly disclose your personal information in accordance with the type of personal information and the manner of disclosure required. Subject to laws and regulations, when we receive the above request for information disclosure, we will require the corresponding legal documents, such as subpoenas or investigation letters. We firmly believe that the information we are required to provide should be as transparent as possible to the extent permitted by law. All requests are carefully reviewed to ensure that they have a legitimate basis and are limited to data obtained by law enforcement agencies for specific investigative purposes and with legal rights. To the extent permitted by laws and regulations, the files we disclose are protected by encryption keys.\r\n\r\nIV.How We Protect Your Personal Information\r\n\r\n1.Various security technologies and protective measures meeting the industry standard have been adopted in the website to prevent the personal information of users from unauthorized access, use or leakage. This website strictly complies with domestic and foreign security standards to build a security system and integrates cutting-edge and mainstream security technologies to prevent users' personal information from being accessed, used and leaked without authorization. The sound security protection system established makes it available to intercept the attack timely and actively when the website encounters external network attack and virus infection. Each application platform of this website uses the HTTPS encryption protocol for transmission during the network communication, which can effectively prevent the information from being stolen by third parties during the communication between the user and the platform. The user's privacy and sensitive data is stored in an encrypted manner and is backed up in real time in the website. \r\n\r\n2.A sound data security management system has been established in this website, including grading and classification of user information, encrypted storage as well as division of data access rights. Internal data management system and operation procedure haven been formulated in which the strict process requirements for data acquisition, use and destruction prevent the user information from being illegally used. Here are the details: defining the security management responsibility for each department and responsible personnel accessing the personal information of users; formulating the workflow and security management process for personal information collection and use and related activities of users; implementing authority management for staff and agents, reviewing the information exported, copied and destroyed in batch and adopting anti-leakage measures; properly keeping the paper media, optical media and electromagnetic media and other carriers that record the personal information of users and adopting corresponding security storage measures; implementing access review for the information system that stores personal information of users and adopting anti-intrusion and anti-virus measures, etc.; recording the processing information for the personal information of users, such as operation staff, time, place and events; holding security and privacy training periodically to raise the staff’s awareness of information protection.\r\n\r\n3.We will adopt all reasonable and feasible measures to ensure that irrelevant personal information is not collected. Unless permitted by law or the retention period needs to extend, we will only retain your personal information for the period needed to achieve the purposes in this Privacy Policy.\r\n\r\n4.We will regularly update and disclose the relevant contents of reports such as security risks and personal information security impact assessments in accordance with the laws and regulations and the requirements of competent authorities.\r\n\r\n5.The Internet environment is not 100% secure and we will try our utmost to ensure or guarantee the security of any information you send us. If our physical, technical, or management protection facilities are damaged, resulting in unauthorized access, public disclosure, tampering or destruction of information, resulting in damage to your legitimate rights and interests, we will assume corresponding legal responsibility.\r\n\r\n6.In the unfortunate event of a personal information security incident, we will promptly inform you of the basic situation and possible impact of the security incident, the emergency response taken or to be taken, other relevant disposal measures, remedies for you, etc. in accordance with the laws and regulations, through the station letter/the contact information you reserve, etc. in a timely manner. If it is difficult to notify the individual information subjects one by one, we will take a reasonable and effective way to issue an announcement and will actively report the disposition of personal information security incidents to the relevant regulatory authorities.\r\n\r\n7.If you have any questions about the protection of our personal information, you can contact us through the contact information in [Part X] of this Policy. If you find that your personal information has been leaked, please contact us immediately through the contact methods stipulated in this policy so that we can take appropriate measures in a timely manner.\r\nV.How We Store Your Personal Information\r\nWe will adopt all reasonable and feasible measures to ensure that irrelevant personal information is not collected. We will store your personal information within the scope permitted by the laws and regulations and within the scope agreed by you. As for the information storage time exceeding the scope permitted by law, we delete or anonymize it.\r\nIf there is no other agreement, you commit that we can permanently store your personal information collected based on the “User Experience Program” to maintain and improve the stability and security of our services. Meanwhile, you agree that after disabling your Deepin ID account, we have the right to keep your purchase, comment and rating records in the Application Store generated during your use of Deepin ID till the expiration period of three years due to the transaction security requirements. The remaining personal information of the Deepin ID account will be deleted in time after you disable your account.\r\n\r\nVI.Your Rights\r\nWe will try our utmost to adopt appropriate technical measures to ensure that you can access, update and correct your registration information or other personal information provided when using the website services.\r\n\r\n1.Accessing Your Personal Information\r\nUnless otherwise provided by the laws and regulations, you have the right to access your personal information. You can access your information yourself by:\r\n1.1.Account Information/Basic User Information: If you want to access or edit basic personal information in your Deepin ID, such as mobile phone number, email address, gender, education information, career information or other personal information, you can log into the Deepin ID registration website and perform such operations in “[User Center]”.\r\n1.2.Transaction Information: If you expect to access your history reward records, you can inquire your purchase records and other information related to application purchase in “Personal Center” in Application Store.\r\n1.3.If you cannot access your personal information through the methods aforementioned, you can contact us at any time via the contact information described in [Part X] and we will respond to your access request within [15] days.\r\n1.4.As for the personal information generated during your use of our products and services, we will provide it according to relevant arrangement in item (7) “Responding to Your Requests Aforementioned” of this part.\r\n\r\n2.Correcting Inaccurate or incomplete Personal Information\r\n2.1.You can correct or supplement some of your personal information yourself in your [Personal Center]. In particular, please pay attention to verifying the authenticity, timeliness, completeness and accuracy of the personal information submitted, otherwise we will not be able to contact you effectively and provide you with some services. If we have reasonable grounds to suspect that your information provided is incorrect, incomplete or untrue, we have the right to ask you or notify you to correct it or even suspend or terminate some of the services provided to you.\r\n2.2.Some special information may not be corrected by yourself. You can contact us through the contact information published in [Part X] of this Policy. We will respond to your access request within [15] days. To ensure the security of your account, we may require you to verify your identity.\r\n\r\n3.Revoking Consent or Processing Restrictions\r\n3.1.You can change the scope of your personal information that you authorize us to collect and use by deleting information, turning off features of the device/tool or performing other feasible privacy settings (depending on the system version).\r\n3.2.If you are unable to revoke your authorized consent through the methods aforementioned, you can contact us at any time via the contact information in [Part X] and explain which consent you expect to revoke to perform such operations. We will respond to your access request within [15] days.\r\n3.3.When you revoke your consent, we will no longer process your corresponding personal information. However, your decision to revoke your consent will not affect the legality of the processing of personal information previously based on your authorization. \r\n\r\n4.Deleting Personal Information\r\n4.1.You can raise your request to delete your personal information from the website under the following circumstances:\r\n4.1.1.Our processing of personal information is inconsistent with the laws and regulations or the agreement with you;\r\n4.1.2.Our collection and use of your personal information without your explicit consent;\r\n4.1.3.We terminate to provide or you terminate actively the product and service of this website.\r\n4.2.If we decide to respond to your request for deletion, we will also notify the third parties (including affiliates of this website) who have obtained your personal information from us at the same time and ask these third parties to delete your personal information in a timely manner, unless otherwise provided by the laws and regulations or such third parties have obtained your independent authorization.\r\n4.3.We may not delete the corresponding information from our backup system after you delete your personal information from the website but will delete it when the backup is updated.\r\n4.4.If you are unable to delete such personal information through the above path, you can contact us at any time through the customer service of this website. To ensure the security of your account, we may require you to verify your identity. \r\n\r\n5.Canceling Accounts\r\n5.1.Deepin ID supports account cancellation. You can cancel it yourself by accessing [Account Information in Personal Center] or contact us to cancel your Deepin ID through the contact information published in [Part X] of this Policy. To ensure the security of your account, we may require you to verify your identity.\r\n5.2.After canceling your account, we will terminate the services provided for you and delete your personal information at your request within the time limit stipulated by law unless otherwise provided by the laws and regulations or agreed between us.\r\n\r\n6.Obtaining the Copy of Personal Information\r\n6.1.You have the right to send a written request to obtain your copy of personal information through the contact information published in the Policy.\r\n6.2.As long as the technology is feasible, such as data interface matching, we can also directly transfer a copy of your personal information to your designated third party according to your requirements and existing common technologies. If the transmission fails due to the third-party’s refusal to receive a copy of your personal information, you should coordinate with these third parties to resolve it by yourself and we will not be responsible for it.\r\n\r\n7.Responding to Your Requests Aforementioned\r\n7.1.To ensure the security of your account, you may need to offer a written request or otherwise verify your identity. We may demand you to verify your identity before processing your request.\r\n7.2.We will respond within [15] days. If you are not satisfied, you can complain through the channels in [Part X] of this Policy.\r\n7.3.For your reasonable request, we do not charge fees in principle, but for repeated requests that exceed a reasonable limit, we will charge a certain cost as appropriate. For those that are unreasonably repetitive, requiring excessive technical means (for example, needing to develop new systems or fundamentally changing existing practices), posing risks to the legitimate rights and interests of others or highly impractical (for example, involving information stored on backup tapes), we may reject them.\r\n7.4.Subject to the laws and regulations, we will be unable to respond to your request under the following circumstances:\r\n7.4.1.Directly related to national security and national defence security;\r\n7.4.2.Directly related to public safety, public health and major public interests;\r\n7.4.3.Directly related to crime investigation, prosecution, trial and judgment enforcement;\r\n7.4.4.Having sufficient evidence to prove that you use your rights subjectively, maliciously and abusively;\r\n7.4.5.Responding to your request will result in severe damage to your, other people or organization’s legitimate rights and interests;\r\n7.4.6.Involving trade secrets;\r\n7.4.7.Other circumstances stipulated by law.  \r\n\r\nVII.How we Process the Minor’s Personal Information\r\n\r\n1.Our products and services are only available to users over 14 years old. If you are under 14 years, you should provide your legal guardian's contact information (such as email address and phone number). We will contact your legal guardian through the contact information and take reasonable steps to obtain the express authorization and consent of your legal guardian; you should clearly understand that if we discover or suspect that you are under the age of 14, we can suspend or terminate the service to you at any time until you provide us with proof that you are over 14 years old, or assist us in obtaining express authorization and consent from your legal guardian.\r\n\r\n2.For the collection of the minor's personal information with the consent of the legal guardian, including the legal guardian's insurance for minors, etc., we will only use or publicly disclose this information when it is permitted by law, expressly agreed by the legal guardian or necessary for the protection of minors.\r\n\r\n3.If we find that we have collected the personal information from a minor without the prior consent of a verifiable parent or other legal guardian, we will try to delete the data as soon as possible.\r\n\r\nVIII.How We Transfer Your Personal Information Globally\r\n\r\n1.We will store personal information collected in each country/region in accordance with the laws and regulations of each country/region.\r\n\r\n2.We will store personal information collected in China in accordance with Chinese laws and regulations.\r\n\r\n3.We reserve the right to transfer your personal information to other government jurisdictions. Your consent to this Privacy Policy and such data you submit or we collect represent your consent to any such transfer. In this case, we will transfer your personal information and provide adequate protection in accordance with the relevant laws and regulations and this Privacy Policy.\r\n\r\nIX.How to Update the Privacy Policy\r\n\r\n1.Our privacy policy may change. We will not reduce your rights under the Privacy Policy without your explicit consent. We will release an updated version of the Privacy Policy.\r\n\r\n2.For significant changes, we will also provide more prominent notices (including sending notifications via email for some services and explaining the specific changes to the Privacy Policy).\r\n\r\n3.Significant changes in Privacy Policy include but not limited to:\r\n3.1.Significant changes in our products and service modes, including the purpose of processing the personal information, the type of the personal information processed, the way in which the personal information is used, etc.;\r\n3.2.Significant changes in ownership structure, organization structure, etc., such as changes caused by business adjustments, bankruptcy, merger and acquisition;\r\n3.3.Changes in the main object of personal information sharing, transfer or disclosure; \r\n3.4.Significant changes in your right to participate in the processing of personal information and how you exercise it;\r\n3.5.Changes in our responsible department for processing personal information security, contact methods and complaint channels;\r\n3.6.Existence of high risks indicated by an impact assessment report on personal data security.\r\n\r\nX.Our Personal Information Protection Department/Specialist\r\n\r\n1.We have appointed a personal information protection organization to be responsible for coordinating and monitoring UnionTech Software in compliance with and implementation of the laws and regulations and internal policies and systems related to the protection of personal information.\r\n\r\n2.If you have any questions, comments or suggestions about this Privacy Policy, you can contact us through the following methods. In general, we will reply within 30 days or a longer period allowed by applicable laws and regulations.\r\nPersonal information protection department/specialist: [Legal Affairs Department]\r\nAddress: [Floor 18, Building 12, Yard 10, Kegu First Street, Beijing Economic and Technological Development Zone, Beijing City, PRC]\r\nTel: [010-62669253]\r\nEmail: [privacy@UnionTech.com]\r\n\r\nXI.Complaining and Suing to the Regulatory Department\r\nIf you are dissatisfied with our response, especially when you believe that our personal information processing actions have harmed your legitimate rights and interests and no agreement can be reached through negotiation, you have the right to lodge a complaint with the relevant personal information protection supervision authority or either party can bring a law suit to the People's Court located in [Daxing District, Beijing].\r\n\r\nAppendix 1: Definition\r\nPersonal Information\r\nPersonal information refers to all kinds of information recorded electronically or otherwise that can identify the identity of a specific natural person or reflect the activity of a specific natural person either alone or in combination with other information, including but not limited to the name, date of birth, identification number, personal biometric information, address, and telephone number of a natural person.\r\nPersonal Sensitive Information\r\nPersonal sensitive information refers to the personal information that, if leaked, illegally provided or abused, may endanger personal and property safety and easily lead to damage to personal reputation, physical and mental health, or discriminatory treatment. For example, personal sensitive information includes personal phone numbers, ID numbers, web browsing records, personal biometric information, bank account numbers, communication records and content, property information, credit information, whereabouts, accommodation information, precise positioning information, physiological health Information, transaction information, personal information of minors under 14 years old (including minors of 14 years old), etc.\r\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/license/deepin-end-user-license-agreement_community_zh_CN.txt",
    "content": "深度操作系统隐私政策\r\n\r\n最近更新日期：2020年【12】月【08】日。\r\n\r\n本隐私政策阐述了统信软件技术有限公司及其关联公司（特别是武汉深之度科技有限公司）（以下简称“统信软件”或者“我们”）处理的个人信息以及我们处理个人数据的方式和目的。本隐私政策适用范围包括我们向您提供的深度操作系统及相关应用程序（以下简称为“本软件”），我们会在本隐私政策中逐一列举说明。\r\n\r\n您可以通过以下方式与我们取得联系：\r\n\r\n统信软件技术有限公司\r\n【地址】北京市北京经济技术开发区科谷一街10号院12号楼18层\r\n【邮件】support@uniontech.com\r\n【电话】400-8588-488\r\n\r\n我们深知个人信息对您的重要性，并会尽全力保护您的个人信息安全可靠。我们致力于维持您对我们的信任，恪守以下原则，保护您的个人信息：权责一致原则、目的明确原则、选择同意原则、最少够用原则、确保安全原则、主体参与原则、公开透明原则等。同时，统信软件承诺，我们将按业界成熟的安全标准，采取相应的安全保护措施来保护您的个人信息。\r\n\r\n我们努力以简明、清晰、易于理解的方式展现本隐私政策。为了便于您阅读及理解，我们将涉及个人信息保护的专门术语进行了定义，请前往本隐私政策“附录1：定义”来了解这些术语的具体内容，以便您准确掌握我们希望向您表达的信息。\r\n\r\n本政策将帮助您了解以下内容：\r\n一、我们如何收集和使用您的个人信息 \r\n二、我们如何使用 Cookie 和同类技术 \r\n三、我们如何共享、转让、公开披露您的个人信息 \r\n四、我们如何保护您的个人信息 \r\n五、我们如何存储您的个人信息\r\n六、您的权利 \r\n七、我们如何处理未成年人的个人信息 \r\n八、您的个人信息如何在全球范围转移 \r\n九、本政策如何更新 \r\n十、我们的个人信息保护部门/专员\r\n十一、您向监管部门申诉或者提起诉讼的权利\r\n\r\n请在使用我们的产品或服务前，仔细阅读并了解本隐私政策，尤其是加黑加粗部分，以便您更好地了解我们提供的各项产品及服务，并作出适当的选择。\r\n\r\n一、我们如何收集和使用您的个人信息 \r\n当您使用本软件产品及服务时，相关个人信息将自动记录并存储于您的本地设备中。此类信息包括：\r\n●网络标识信息\r\n例如您的IP地址，MAC地址等\r\n●设备信息\r\n包括您的设备主板信息、BIOS信息、CPU信息、内存信息、硬盘信息、分区信息、网卡信息等；\r\n●操作系统信息\r\n包括操作系统软件版本、系统最后一次更新时间、系统语言、系统音效、电源、鼠标、系统主题、壁纸、启动器、任务栏、热区的配置信息、每日登录系统的次数、每次下载使用源信息。\r\n●应用软件信息\r\n例如您安装在系统内的各应用版本、安装位置、各应用启动/退出时间信息。\r\n\r\n1.您主动授权我们收集的个人信息\r\n仅当您主动开启相应业务功能时，该类信息才会通过服务器传输到统信软件处理。您拒绝开启此类业务功能或向统信软件提供相应个人信息不会影响您使用本软件产品。此类业务功能包括：\r\n1.1.用户体验计划\r\n若您开启“用户体验计划”，则您将授权我们读取记录并存储在您的本地设备中的相关信息。您关闭“用户体验计划”后我们将停止收集此类信息。该类信息包括：\r\n1.1.1.设备及系统信息\r\n设备信息包括您的设备主板信息、BIOS信息、CPU信息、内存信息、硬盘信息、分区信息、网卡信息等；系统信息包括系统软件版本、系统最后一次更新时间、系统语言、日活用户、每次下载使用源信息；运行期间的操作系统性能信息。\r\n1.1.2.应用软件信息\r\n例如您安装在系统内的各应用版本、安装位置、各应用启动/退出时间信息，应用运行期间的性能信息。\r\n1.1.3 异常信息\r\n在操作系统运行期间发生异常和/或应用运行期间发生异常时的运行信息。\r\n1.2.Deepin ID服务\r\n您可以通过我们的网站（www.deepin.com）注册Deepin ID并登录到本软件或我们的合作伙伴提供的产品。在本软件中登录账户后，您可以在不同设备之间实现本软件的系统配置和应用软件同步。您关闭Deepin ID服务后，您的系统配置和应用软件将不能再继续在各设备之间同步。\r\n1.2.1.Deepin ID注册\r\n为实现本服务功能并符合中华人民共和国相关监管要求，您需要提供个人手机号码以完成Deepin ID注册。受限于中华人民共和国监管要求，若您拒绝提供手机号码，我们将无法向您提供Deepin ID服务。若您位于中华人民共和国以外的其他地区，您需要提供个人邮箱地址以完成Deepin ID注册。\r\n1.2.2.系统配置同步服务\r\n若您通过本软件控制中心的云同步模块登录Deepin ID并授权开启“云同步”开关，以实现您在使用同一Deepin ID下不同设备间的配置同步。出于该同步目的，云同步服务将会读取您的设备信息和系统信息。您拒绝提供前述信息不会导致本软件其他服务的正常提供。\r\n1.2.3.应用软件同步服务\r\n您可以通过本软件控制中心的云同步模块登录Deepin ID，以实现同一Deepin ID下不同设备间的本软件应用软件同步。出于该同步目的，应用软件同步服务将会读取您的应用软件信息、应用软件购买信息（包括您为完成支付所必须的实名认证信息和银行账户信息）、历史应用评论数据、历史打赏数据。您拒绝提供前述信息不会导致本软件其他服务的正常提供。\r\n1.2.4.浏览器服务\r\n若您使用本软件预装的浏览器并访问和浏览我们提供的网站或平台时，我们会通过cookie或其他技术方式收集您的设备信息、系统信息和浏览信息（包括您使用浏览器的版本信息、收藏夹信息、网页浏览记录、浏览器设置、自动填充数据（在您的许可下，我们将保存您的用户名和登录密码的填充记录）及您的IP地址，详见【第二部分】“我们如何使用 Cookie 和同类技术”。\r\n1.2.5. 应用商店服务\r\n若您使用本软件预装的应用商店来下载、安装和卸载应用软件时，我们会收集您的设备信息、系统信息和应用软件信息。您在登录了Deepin ID之后可以对应用商店中的应用进行评价和/或评分，该评价和/或评分信息会和您Deepin ID一起关联存储。\r\n\r\n2.在您使用本软件产品及服务时我们自动收集的您的个人信息\r\n在您使用本软件产品及服务的部分功能，我们将自动收集相关信息，该等信息中可能包括您的个人信息。此类功能包括：\r\n2.1.桌面智能助手/语音记事本\r\n桌面智能助手服务集成于本软件中，由我们联合我们的合作方向您提供。当您使用桌面智能助手通过语音输入文字，或使用语音记事本功能时，我们的合作方将会直接收集该等语音内容用以进行技术分析并转化为文字。有关此类信息共享至合作方的详细说明，详见本隐私政策【第三部分】“我们如何共享、转让、公开披露您的个人信息”的说明。\r\n2.2.系统更新\r\n当您升级本软件产品及服务时，我们将会收集您的设备ID、系统主线版本、系统版本号等信息，供我们明确您的系统信息从而帮助您准确更新。该等收集的信息均会进行匿名化处理。\r\n\r\n3.开展内部审计、大数据分析和研究\r\n3.1.我们将使用收集的个人信息在统信软件内部进行必要的内部审计。\r\n3.2.我们会将所收集到的个人信息用于大数据分析。例如，我们将收集到的信息用于分析形成不包含任何个人信息的统计类产品，展示统信软件服务的整体全貌，分析不同群体的行为模式等。我们可能对外公开并与我们的关联方和合作伙伴分享经统计加工后不含身份识别内容的大数据分析信息。\r\n\r\n4.安全保障\r\n我们还会将您的个人信息用于保障您的个人设备安全、账户安全、我们的运营安全及履行我们的法律义务（例如留存可能涉及违法犯罪活动信息）等用途。\r\n\r\n5.其他使用\r\n5.1.当我们要将基于特定目的收集而来的信息用于其他目的时，会事先征求您的明确同意。\r\n5.2.但是，根据相关法律法规及国家标准，以下情形中，我们可能会收集、使用您的相关个人信息无需征求您的授权同意：\r\n5.2.1.与国家安全、国防安全等国家利益直接相关的；与公共安全、公共卫生、公众知情等重大公共利益直接相关的；\r\n5.2.2.与犯罪侦查、起诉、审判和判决执行等直接相关的；\r\n5.2.3.出于维护您或其他个人的生命、财产、声誉等重大合法权益但又很难得到本人同意的；\r\n5.2.4.所收集的个人信息是您自行向社会公众公开的；\r\n5.2.5.从合法公开披露的信息中收集个人信息的，如合法的新闻报道、政府信息公开等渠道；\r\n5.2.6.根据您要求签订和履行合同所必需的；\r\n5.2.7.用于维护所提供的产品或服务的安全稳定运行所必需的，例如发现、处置产品或服务的故障；\r\n5.2.8.为开展合法的新闻报道所必需的；\r\n5.2.9.出于公共利益开展统计或学术研究所必要，且其对外提供学术研究或描述的结果时，对结果中所包含的个人信息进行去标识化处理的；\r\n5.2.10.法律法规规定的其他情形。\r\n\r\n二、我们如何使用 Cookie 和同类技术 \r\n\r\n1.Cookie \r\n1.1.我们会在您的计算机或移动设备上存储称为 Cookie 的小文本文件。Cookie 通常包含标识符、站点名称以及一些号码和字符。借助于 Cookie，我们的网络服务器能够存储您的偏好，为您提供更个性化的用户体验和服务。 \r\n1.1.1.我们不会将 Cookie 用于本政策所述目的之外的任何用途。您可根据自己的偏好管理或删除 Cookie。有关详情，请参见 AboutCookies.org。\r\n1.1.2.您可以清除计算机上保存的所有 Cookie，大部分网络浏览器都设有阻止 Cookie 的功能，您可在您使用的浏览器设置中了解和设置。 \r\n\r\n2.Do Not Track（请勿追踪） \r\n很多网络浏览器均设有Do Not Track功能，该功能可向网站发布 Do Not Track 请求。目前，主要互联网标准组织尚未设立相关政策来规定网站应如何应对此类请求。但如果您的浏览器启用了Do Not Track，那么我们的所有网站都会尊重您的选择。 \r\n\r\n三、我们如何共享、转让、公开披露您的个人信息  \r\n\r\n1.共享\r\n1.1.我们不会与统信软件以外的任何公司、组织和个人分享您的个人信息，但以下情况除外： \r\n1.1.1.在获取明确同意的情况下共享：获得您的明确同意后，我们会与其他方共享您的个人信息。 \r\n1.1.2.我们可能会根据法律法规规定，或按政府主管部门的强制性要求，对外共享您的个人信息。 \r\n1.1.3.与授权合作伙伴共享：仅为实现本隐私政策声明的目的，我们的某些服务将由我们授权合作伙伴共同提供。我们可能会与合作伙伴共享您的某些个人信息，以提供更好的客户服务和用户体验。我们仅会出于合法、正当、必要、特定、明确的目的共享您的个人信息，并且只会共享提供服务所必要的个人信息。我们的合作伙伴无权将共享的个人信息用于任何其他用途。对我们与之共享个人信息的公司、组织和个人，我们会与其签署严格的保密协定，要求他们按照我们的说明、本隐私政策以及其他任何相关的保密和安全措施来处理个人信息。\r\n授权合作伙伴共享的具体情况，请参见如下： \r\n\r\n语音服务\r\n合作伙伴名称：科大讯飞股份有限公司\r\n合作目的：语音内容文本转化技术\r\n合作方式：嵌入第三方代码、插件传输个人信息\r\n共享个人信息字段：语音信息内容\r\n合作伙伴数据安全能力描述：国家信息安全等级保护三级认证\r\n1.1.4.需要特别提请您注意的是，当相关服务提供商以页面跳转至服务商页面等第三方接入的方式向您提供服务时，相应的服务提供商将直接与您达成相应的个人信息授权使用许可，该等由服务提供商直接收集的个人信息并非我们向其共享的个人信息范围。该等由第三方直接提供服务的情形我们将会在具体服务页面中明确标识第三方信息。为避免歧义，您应知悉并了解，前述由独立第三方运营的网站、应用程序、产品和服务的链接，仅为方便用户浏览相关页面而提供。当您访问该等第三方网站、应用程序、产品和服务链接时，应另行同意其为您提供的隐私政策或个人信息保护条款。我们与该等第三方网站、应用程序、产品和服务提供者在法律规定和双方约定的范围内各自向您承担独立的个人信息保护责任。\r\n\r\n2.转让 \r\n我们不会将您的个人信息转让给任何公司、组织和个人，但以下情况除外： \r\n2.1.事先获取您明确的授权同意；\r\n2.2.在涉及合并、收购或破产清算时，如涉及到个人信息转让，我们会在要求新的持有您个人信息的公司、组织继续受此隐私政策的约束，否则我们将要求该公司、组织重新向您征求授权同意。 \r\n\r\n3.公开披露\r\n我们仅会在以下情况下，且采取符合业界标准的安全防护措施的前提下，公开披露您的个人信息： \r\n3.1.根据您的需求，在您明确同意的披露方式下披露您所指定的个人信息； \r\n3.2.根据法律、法规的要求、强制性的行政执法或司法要求所必须提供您个人信息的情况下，我们可能会依据所要求的个人信息类型和披露方式公开披露您的个人信息。在符合法律法规的前提下，当我们收到上述披露信息的请求时，我们会要求必须出具与之相应的法律文件，如传票或调查函。我们坚信，对于要求我们提供的信息，应该在法律允许的范围内尽可能保持透明。我们对所有的请求都进行了慎重的审查，以确保其具备合法依据，且仅限于执法部门因特定调查目的且有合法权利获取的数据。在法律法规许可的前提下，我们披露的文件均在加密密钥的保护之下。\r\n\r\n四、我们如何保护您的个人信息 \r\n\r\n1.本网站已采用符合业界标准的各种安全技术和防护措施保护用户的个人信息不被未经授权地访问、使用或泄漏。本网站严格遵循国内外的安全标准进行安全体系搭建，并结合前沿、主流的安全技术进行落地，防止用户的个人信息在未经授权时被访问、使用、泄露。建立了完善的安全防御体系，当网站受到外部的网络攻击、病毒感染时，能对攻击行为进行及时主动拦截。本网站各应用平台均在网络通信过程中采用HTTPS加密协议传输，能够有效避免用户与平台通信过程中信息被第三方窃取。涉及到用户的隐私、敏感数据，在本网站系统中都采用加密的方式进行保存，并实时进行数据备份。\r\n\r\n2.本网站已经建立了健全的数据安全管理体系，包括对用户信息进行分级分类、加密保存、数据访问权限划分。制定了内部数据管理制度和操作规程，从数据的获取、使用、销毁都有严格的流程要求，避免用户隐私数据被非法使用。确定接触用户个人信息的各部门及其负责人安全管理责任；建立用户个人信息收集、使用及其相关活动的工作流程和安全管理制度；对工作人员及代理人实行权限管理，对批量导出、复制、销毁信息实行审查，并采取防泄密措施；妥善保管记录用户个人信息的纸介质、光介质、电磁介质等载体，并采取相应的安全储存措施；对储存用户个人信息的信息系统实行接入审查，并采取防入侵、防病毒等措施；记录对用户个人信息进行操作的人员、时间、地点、事项等信息；定期举办安全和隐私保护培训，提高员工的个人信息保护意识。\r\n\r\n3.我们会采取一切合理可行的措施，确保未收集无关的个人信息。我们只会在达成本政策所述目的所需的期限内保留您的个人信息，除非需要延长保留期或受到法律的允许。\r\n\r\n4.我们将根据法律法规和主管部门的要求，定期更新并公开安全风险、个人信息安全影响评估等报告的有关内容。\r\n\r\n5.互联网环境并非百分之百安全，我们将尽力确保或担保您发送给我们的任何信息的安全性。如果我们的物理、技术、或管理防护设施遭到破坏，导致信息被非授权访问、公开披露、篡改、或毁坏，导致您的合法权益受损，我们将承担相应的法律责任。\r\n\r\n6.若不幸发生个人信息安全事件的，我们将按照法律法规要求，及时通过站内信/您预留的联系方式等向您告知安全事件的基本情况和可能的影响、我们已采取或将采取的应急响应及其他有关处置措施、对您的补救措施等。若难以逐一告知个人信息主体时，我们将采取合理、有效的方式发布公告并将主动向有关监管部门上报个人信息安全事件的处置情况。\r\n\r\n7.如果您对我们的个人信息保护有任何疑问，可通过本政策【第十部分】的联系方式联系我们。若您发现您的个人信息泄露时，请您立即通过本政策约定的联系方式与我们联系，以便我们及时采取相应措施。\r\n\r\n五、我们如何存储您的个人信息 \r\n\r\n1.我们会采取一切合理可行的措施，确保未收集无关的个人信息。我们将在法律法规允许的范围内及与您的约定范围内存储您的个人信息，存储时间如超出法律的允许范围外，我们将进行删除或匿名化处理。\r\n\r\n2.若无其他约定，您同意在您注销Deepin ID账户后，出于交易安全需求，我们有权保留您在使用Deepin ID期间于应用商店产生的购买、评论及评分记录直至届满三年；其余Deepin ID账户个人信息我们将在您注销账户后及时删除。\r\n\r\n六、您的权利 \r\n我们将尽最大努力采取适当的技术手段，保障您可以访问、更新和更正自己的注册信息或使用本网站服务时提供的其他个人信息。\r\n\r\n1.访问您的个人信息\r\n除法律法规另有规定，您有权访问您的个人信息。您可以通过以下方式自行访问您的信息：\r\n\r\n1.1.账户信息/用户基本信息：如果您希望访问或编辑您的Deepin ID中的个人基本信息，如手机号码、邮箱地址、性别、教育信息、职业信息或其他个人资料信息，您可以登录Deepin ID注册网站，通过“[用户中心]”执行此类操作\r\n1.2.交易信息：如果您希望访问您的历史打赏记录，您可以在应用商店“个人中心”查询您的购买记录及其他与应用购买相关的信息。\r\n1.3.如果您无法通过上述方式访问您的个人信息，您可以随时通过【第十部分】的联系方式联系我们。我们将在[15]天内回复您的访问请求。 \r\n1.4.对于您在使用我们的产品或服务过程中产生的其他个人信息，我们将根据本部分第（7）项“响应您的上述请求”中的相关安排向您提供。\r\n\r\n2.更正不准确或不完整的个人信息\r\n2.1.您可以通过您的[个人中心]自行进行更正或补充您的一些个人信息。特别提示的是，请您注意核对您提交的个人信息的真实、及时、完整和准确，否则会导致我们无法与您进行有效联系、无法向您提供部分服务。若我们有合理理由怀疑您提供的资料发生错误、不完整、不真实，我们有权向您询问或通知您改正，甚至暂停或中止对您提供部分服务。\r\n2.2.某些特殊信息的更正可能无法自行操作，您可以通过本政策【第十部分】公布的联系方式与我们联系。我们将在[15]天内回复您的访问请求。为保障您的账户安全，我们可能会要求您进行身份验证。\r\n\r\n3.撤销同意或处理限制\r\n3.1.您可以通过删除信息、关闭有关设备/工具的功能或进行其他可行的隐私设置方式（视系统版本而定）等以变更您授权我们收集和使用的您的个人信息范围。\r\n3.2.如果您无法通过上述方式撤销您的授权同意的，您可以随时通过【第十部分】的联系方式联系我们并说明您要撤销哪一项同意以执行此类操作。我们将在[15]日内回复您的访问请求。\r\n3.3.当您撤销同意后，我们将不再处理相应的个人信息。但您撤销同意的决定，不会影响此前基于您的授权而开展的个人信息处理的合法性。\r\n\r\n4.删除个人信息\r\n4.1.在下列情形中，您可以向本网站提出删除您的个人信息的请求：\r\n4.1.1.我们处理个人信息的行为违反法律法规或与您的约定的；\r\n4.1.2.我们对您的个人信息的收集和使用，未能获得您明确同意的；\r\n4.1.3.我们终止向您提供或您主动终止使用本网站的产品或服务的。\r\n4.2.若我们决定响应您的删除请求，我们还将同时尽可能通知从我们分享获得您的个人信息的第三方（包括本网站的关联公司），要求该等第三方及时删除您的个人信息，除非法律法规另有规定，或该等第三方已获得您的独立授权。\r\n4.3.当您从本网站中删除个人信息后，我们可能不会立即从备份系统中删除相应的信息，但会在备份更新时删除这些信息。\r\n4.4.如果您无法通过上述路径删除该等个人信息，您可以随时通过本网站客服与我们取得联系。为保障您的账户安全，我们可能会要求您进行身份验证。\r\n\r\n5.账户注销\r\n5.1.Deepin ID支持账户注销，您可以访问[个人中心中的账户信息] 页面自行操作或通过本政策【第十部分】公布的联系方式联系我们注销您的Deepin ID，我们可能要求您进行身份验证以保障您的账户安全。 \r\n5.2.在注销账户之后，我们将停止为您提供服务，并依据您的要求，在适用法律规定的时限内删除您的个人信息，法律法规另有规定或您与我们达成其他一致意见的情况除外。\r\n\r\n6.获取个人信息副本\r\n6.1.您有权通过本政策公布的联系方式向我们发出书面请求以获取您的个人信息副本。\r\n6.2.在技术可行的前提下，例如数据接口匹配，我们还可按您的要求和现有的通行技术，直接将您的个人信息副本传输给您指定的第三方。若因该等第三方拒绝接收您的个人信息副本而导致传输失败的，您应自行与该等第三方进行协调解决，我们对此不承担任何责任。\r\n\r\n7.响应您的上述请求 \r\n7.1.为保障您的账户安全，您可能需要提供书面请求，或以其他方式证明您的身份。我们可能会先要求您验证自己的身份，然后再处理您的请求。 \r\n7.2.我们将在[15]天日做出答复。如您不满意，还可以按照本政策【第十部分】规定的途径投诉。\r\n7.3.对于您合理的请求，我们原则上不收取费用，但对多次重复、超出合理限度的请求，我们将视情收取一定成本费用。对于那些无端重复、需要过多技术手段（例如，需要开发新系统或从根本上改变现行惯例）、给他人合法权益带来风险或者非常不切实际（例如，涉及备份磁带上存放的信息）的请求，我们可能会予以拒绝。 \r\n7.4.在以下情形中，按照法律法规要求，我们将无法响应您的请求： \r\n7.4.1.与国家安全、国防安全直接相关的； \r\n7.4.2.与公共安全、公共卫生、重大公共利益直接相关的； \r\n7.4.3.与犯罪侦查、起诉、审判和判决执行等直接相关的； \r\n7.4.4.有充分证据表明您存在主观恶意或滥用权利的； \r\n7.4.5.响应您的请求将导致您或其他个人、组织的合法权益受到严重损害的。 \r\n7.4.6.涉及商业秘密的；\r\n7.4.7.其他适用法律规定的情形。\r\n\r\n七、我们如何处理未成年人的个人信息 \r\n1.我们的产品和服务仅限14周岁以上的用户使用，如果您未满14周岁，您应提供您的法定监护人的联络方式（例如电子邮箱、电话号码），我们将通过该联络方式联系您的法定监护人，并采取合理措施征得您的法定监护人的明示授权同意；您应明确了解，若我们在服务过程中发现或怀疑您未满14周岁的，则我们可以随时中止或终止向您提供服务，直至您向我们提供您已满14周岁的证明，或协助我们获得您的法定监护人的明示授权同意。 \r\n2.对于经法定监护人同意而收集未成年人个人信息的情况，包括法定监护人为未成年人投保等，我们只会在受到法律允许、法定监护人明确同意或者保护未成年人所必要的情况下使用或公开披露此信息。 \r\n3.如果我们发现自己在未事先获得可证实的父母或者其他法定监护人同意的情况下收集了未成年人的个人信息，则会设法尽快删除相关数据。\r\n\r\n八、您的个人信息如何在全球范围转移  \r\n1.我们将遵从各国家/地区的法律法规，对在各国家/地区收集的个人信息进行存储。\r\n2.我们会按照中国的法律法规规定，将中国境内收集的个人信息存储于中国境内。\r\n3.我们保留将您的个人信息传送到其他政府管辖区域的权利。您对本隐私政策的同意，以及您提交或我们收集的此类数据，代表您对任何此类转移的同意。在这种情况下，我们将依据相关法律规定及本政策来对您的个人信息进行转移并提供足够的保护。\r\n\r\n九、本政策如何更新\r\n1.我们的隐私政策可能变更。未经您明确同意，我们不会削减您按照隐私政策所应享有的权利。我们会发布对隐私政策的更新版本。 \r\n2.对于重大变更，我们还会提供更为显著的通知（包括对于某些服务，我们会通过电子邮件发送通知，说明隐私政策的具体变更内容）。 \r\n3.隐私政策的重大变更包括但不限于： \r\n3.1.我们的产品和服务模式发生重大变化。如处理个人信息的目的、处理的个人信息类型、个人信息的使用方式等； \r\n3.2.我们在所有权结构、组织架构等方面发生重大变化。如业务调整、破产并购等引起的所有者变更等； \r\n3.3.个人信息共享、转让或公开披露的主要对象发生变化； \r\n3.4.您参与个人信息处理方面的权利及其行使方式发生重大变化； \r\n3.5.我们负责处理个人信息安全的责任部门、联络方式及投诉渠道发生变化时； \r\n3.6.个人信息安全影响评估报告表明存在高风险时。 \r\n\r\n十、我们的个人信息保护部门/专员 \r\n1.我们已经任命个人信息保护机构，以负责统筹及监察统信软件遵守和实施与个人信息保护相关的法律法规及内部政策制度的情况。\r\n2.如果您对本隐私政策有任何疑问、意见或建议，您可以通过以下方式与其联系，一般情况下，我们将在三十天内或适用法律法规允许的更长时限内回复。 \r\n个人信息保护部门/专员：【法务部】\r\n地址：【北京市北京经济技术开发区科谷一街10号院12号楼18层】\r\n电话：【010-62669253】\r\n电子邮件：【privacy@uniontech.com】\r\n\r\n十一、向监管部门申诉或者提起诉讼\r\n如果您对我们的回复不满意，特别是认为我们的个人信息处理行为损害了您的合法权益，且协商无法达成一致的，您有权向有关个人信息保护监管部门提起申诉或者任何一方均可向【北京市大兴区】人民法院提起诉讼）。\r\n\r\n附录1：定义\r\n●个人信息\r\n个人信息是指以电子或者其他方式记录的能够单独或者与其他信息结合识别特定自然人身份或者反映特定自然人活动情况的各种信息。 包括但不限于自然人的姓名、出生日期、身份证件号码、个人生物识别信息、住址、电话号码等。\r\n●个人敏感信息\r\n个人敏感信息是指一旦泄露、非法提供或滥用可能危害人身和财产安全，极易导致个人名誉、身心健康受到损害或歧视性待遇等的个人信息。例如，个人敏感信息包括个人电话号码、身份证件号码、网页浏览记录、个人生物识别信息、银行账号、通信记录和内容、财产信息、征信信息、行踪轨迹、住宿信息、精准定位信息、健康生理信息、交易信息、14岁以下（含）未成年人的个人信息等。\r\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/license/deepin-end-user-license-agreement_developer_community_en_US.txt",
    "content": "Enabling this feature grants advanced system permissions. Misuse may cause data loss, boot failures, or system errors. Official warranty service is void. Once it is allowed, you cannot exit the developer mode or return to normal user mode. Please carefully consider whether you need root privileges.\n\nTo the maximum extent without any violation of the applicable laws, we do not take any liability for the damages and risks resulting from using or inability to use this product, including, but not limited to direct or indirect personal injuries, commercial profit loss, trade interruption, data loss, or any other economic loss.\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/license/deepin-end-user-license-agreement_developer_community_zh_CN.txt",
    "content": "开启本功能后，您将获得系统高级权限。在此状态下，可能会因为误操作导致数据丢失、系统无法启动或运行故障，且不再享有官方报修服务。本功能一旦开启则无法退出或退回至普通用户模式，您应慎重考虑是否需要开启本功能。\n\n在适用法律允许的最大范围内，对因使用或不能使用本产品所产生的损害及风险，包括但不限于直接或间接的个人损害、商业赢利的丧失、贸易中断、商业信息的丢失或任何其它经济损失，我们恕不承担任何责任。\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/license/deepin-end-user-license-agreement_developer_community_zh_HK.txt",
    "content": "開啟此功能後，您將獲得系統高級權限。在此狀態下，可能會因誤操作導致資料遺失、系統無法啟動或運行故障，且不再享有官方維修服務。本功能一旦開啟則無法退出或退回至普通用戶模式，您應慎重考慮是否需要開啟本功能。\n\n在適用法律允許的最大範圍內，對因使用或不能使用本產品所產生的損害及風險，包括但不限於直接或間接的個人損害、商業贏利的喪失、貿易中斷、商業訊息的丟失或任何其他經濟損失，我們恕不承擔任何責任。\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/license/deepin-end-user-license-agreement_developer_community_zh_TW.txt",
    "content": "開啟此功能後，您將獲得系統進階權限。在此狀態下，可能會因誤操作導致資料遺失、系統無法啟動或運作故障，且不再享有官方維修服務。本功能一旦開啟則無法退出或退回至普通使用者模式，您應慎重考慮是否需要開啟本功能。\n\n在適用法律允許的最大範圍內，對因使用或不能使用本產品所產生的損害及風險，包括但不限於直接或間接的個人損害、商業贏利的喪失、貿易中斷、商業訊息的遺失或任何其它經濟損失，我們恕不承擔任何責任。\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/license/deepin-end-user-license-agreement_en_US.txt",
    "content": "End User License Agreement for Deepin OS\r\n\r\nUpdated date:December 8th, 2020\r\n\r\nWelcome to use Deepin OS (“the software”), which is maintained and issued by Deepin Community. \r\n\r\nBased on Linux kernel, this software is integrated by open-source softwares selected, customized and developed by Deepin Community. This software is an open-source operating system and complies to software license agreements of all open-source software, components, and projects, on which the software relies. \r\n\r\nDeepin Community is a team founded by UnionTech Software Technology Co., Ltd. (“UnionTech Software”) and its affiliate (particularly Wuhan Deepin Technology Co., Ltd.(“Deepin Technology”)) and specialized on open-source technology. On behalf of UnionTech Software, Deepin Community enters into a legal agreement with users, and its rights and obligations under this agreement are ascribed to UnionTech Software. \r\n\r\nPlease read all rights and limitations stated in this End User License Agreement (\"EULA\") carefully before using the software. This is a legal Agreement between UnionTech Software Technology Co., Ltd. (\"UnionTech Software\") and its affiliated companies (especially Wuhan Deepin Technology Co., Ltd. (\"Deepin Technology\") )and you (natural person, legal person or other organization). By installing, copying and/or otherwise using the software, you signify your assent to and acceptance of the EULA, and acknowledge that you have read and understood all the terms of the EULA. If you represent an entity, by installing, copying and/or otherwise using the software, you are deemed to accept these terms on behalf of the entity. If you DO NOT agree any term of this agreement, please do not install, download or use the software and its relevant services by any other means. \r\n\r\nUnless being replaced by a new version, the EULA applies to any version of Deepin software (community Version) and its related updates, and any usage of the source code, regardless the way how the software is delivered.\r\n\r\nCompared with their previous version in any components of the software, any part of the source code and object code that are created or modified by Deepin Technology, attached with the copyright declaration of Deepin Technology, are owned by UnionTech Software. For all purposes of this EULA, using the software includes downloading, installing, copying, redistributing or running a function in other ways.\r\n\r\n1.License Authorization. Subject to the following terms, UnionTech Software grants to you a perpetual, worldwide, and non-exclusive license to the software pursuant to this EULA and “GNU General Public License” (Version 3). The software may contain the components compiled by third-party developers in accordance with the corresponding open source licenses (hereinafter referred to as “open source software component”). Each software component is under a open source license located in its source code, which should be conformed to when you use it. Pertaining solely to the software, this EULA does not limit or change your rights or obligations under the license terms applicable to any particular open source software component.\r\n\r\n2.Intellectual Property Rights. The program owned by UnionTech Software in the software is protected under Copyright Law and other applicable laws. UnionTech Software and its affiliates have legal trademark rights to “统信” “深度” “UOS” “deepin” “统信UOS” trademarks and logos. (1) You shall not remove any copyright mark from the software, meanwhile you shall make the copyright mark exactly as is on all the copies of the software to duly announce the copyright of UnionTech Software and/or other licensors. (2) UnionTech Software owns the copyright and other intellectual property rights of the software (including but not limited to any image, picture, flash, video, record, music, word and additional program, color, user interface-design, structure), attached printing material and any copies of the software (except for trademarks and other rights owned by third parties), or UnionTech Software has the legitimate using rights. (3) The copyright of the software and printing documents are protected under the Copyright Law, Patent Law, Trademark Law, Anti-injustice Competition Law of PRC and international laws and treaties. (4) You shall not remove or destroy any copyright mark regarding the software. You guarantee that you shall also copy this copyright declaration in all copies of the software (whether in whole or part). (5) You agree to prevent any pirates of the software and the printing documents. (6) You shall not copy the printing material attached to the software.\r\n\r\n3.Redistribution. You can only redistribute the software when you have retained the copyright mark and copyright notice of the software in accordance with the requirements of Article 2 above, and have deleted and replaced the trademarks of all unified software. In addition to the above, this Agreement does not allow you to redistribute (including but not limited to software sales, pre-installation, bundling, etc.) the software or its components for any commercial purpose, regardless of whether the software or its components have been modified. You should be aware that modifying this software may cause damage to the application and may not work properly.\r\n\r\n4.Specification. The use of this software is subject to the laws and this EULA. You are not entitled to perform, including but not limited to, the following activities by using the software:\r\n1)to publish, deliver, transmit or store any content that contravenes the laws and regulations belongs to the country where the user resides, or threatens the social security, social stability, or anything that is inappropriate, insulting, defamatory, obscene, violent and against the laws, regulations and policies belongs to the country where the user resides;\r\n2)to publish, deliver, transmit or store content that infringes others intellectual property rights or trade secrets;\r\n3)to issue, deliver or transmit bulk advertisements or spam;\r\n4)to publish, transmit or distribute images, pictures, software or other materials (including but not limited to copyright, trademarks, patents, trade secrets, privacy and related personality rights) that infringe on third parties, unless you have obtained the necessary and effective authorization from the right holder in advance;\r\n5)to take any actions to threaten the security of the network, including but not limited to, using data or entering the server/account without permission; entering public networks or private computers and deleting, copying, amending or adding stored information without permission; without permission, attempting to detect, scan or test the weakness of the Software system or the network or attempt to conduct any other activities to damage the network security system; attempting to intervene with, affect the normal operation of, the Software or the network; intentionally spreading malicious programs or viruses, and taking other actions to damage or intervene with the normal information service of the network; forging part or all of the titles of TCP/IP packages.\r\n6)to use other services provided by the software and UnionTech Software in any illegal way, for any illegal purpose, or in any inconsistent way with the EULA.\r\nIf you fail to comply with the above provisions, Deepin Community does not assume any responsibility and has the right, in its sole discretion, to terminate, completely or partially suspend, or limit its normal function of the software, and reserves all rights to pursue your actions.\r\n\r\n5.Disclaimer of Warranty. No any other form of after-sales warranty is applied to the software. To the maximum extent permitted under the applicable law, the software is licensed \"as is\" by Deepin Community without any other assurance and warranties, whether express, implied or statutory, including, but not limited to, any implied warranties of merchantability, non-infringement or fitness for a particular purpose.\r\nThe software is designed and supplied as a general purpose product and not for the specific use of any user. No software is without errors, so you should always make a backup of your files, and solely be responsible for the risks of using the software. Deepin Community does not take any liability for the damages and risks resulting from using or inability to use the software, including, but not limited to direct or indirect personal injuries, commercial profit loss, trade interruption, data loss, or any other economic loss. Deepin Community does not take any liability for damages caused by telecommunication systems or Internet network failures, or any other force majeure reasons (including hacking attack). \r\n\r\n6.Limited Liability. Deepin Community, is not responsible for any claims or damages arising out of or in connection with the content of the software or others related to the content provided by you or a third party.\r\n\r\n7.Third Party Programs. Deepin Community may distribute third party software programs with the software, which are not the necessity to run the software, provided as a convenience to you, and are subject to their own license terms. In addition, any program you install and run based on the software is considered as the third party software program. If you do not agree to abide by the applicable license terms accompanied with the third party software programs, you should not install or run such Third Party Programs. If you wish to install the third party software programs on more than one system or transfer them to another party, then you must contact the licensors of the third party software programs. \r\n\r\n8.Right Reservation. All rights not expressly granted with the software are owned by Deepin Community.\r\n\r\n9.License Termination. (1) Deepin Community is entitled to terminate the EULA at any time, if any terms or conditions in the EULA are violated. (2) Provided that Deepin Community offers you any replaced, revised or upgraded Version of the software attached with a replacement of the EULA, which stipulates that you can use the replaced, revised or upgraded Version of the software under the condition that you accept the replacement of the EULA, Deepin Community may terminate this EULA.\r\n\r\n10.Jurisdiction and Applicable Law. The establishment, execution, interpretation and resolution of disputes with respect to the EULA shall be governed by the laws of the P.R.C. When any dispute arises between Deepin Community and the user due to the content or the implement of the EULA, the two parties shall resolve it through friendly negotiation; if the negotiation fails, the user hereby agrees that the dispute shall be resolved in the court located in the jurisdiction where UnionTech Software resides.\r\n\r\n11.Interpretation and Modification. Deepin Community has the right to interpret and modify this EULA to the maximum extent without any violation of all the applicable laws and regulations, as well as the agreements that the software complies with, including “GNU General Public License” (Version 3). It also reserves the right to modify this EULA at any time in accordance with the changes in relevant laws and regulations, as well as the open-source strategies of the community. The modified EULA will be shown in the new version of the software for acceptance before you use it. In the event of a dispute, this EULA terminates and the latest EULA shall prevail. If you do not agree with the changes in the EULA, you can uninstall and delete the software and destroy the relevant information. If you continue to use the software, you are deemed to have accepted the modifications in the EULA. \r\n\r\n12.This EULA is published in Simplified Chinese and English. No matter which language version you read, the Simplified Chinese version shall prevail.\r\n\r\n13.Contact Us. If you have any questions regarding this EULA, or need any information, please contact Deepin Community at: support@deepin.org.\r\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/license/deepin-end-user-license-agreement_zh_CN.txt",
    "content": "深度操作系统最终用户许可协议\r\n\r\n版本更新日期：[2020]年[12]月[08]日\r\n\r\n欢迎使用深度操作系统（以下称为“本软件”），深度操作系统由深度社区维护和发行。\r\n\r\n本软件基于Linux内核，并集成了深度社区选择、定制和开发的开源软件搭建而成。本软件为开源操作系统软件，并遵循本软件所依赖的各开源软件、组件和项目的软件许可协议。\r\n\r\n深度社区是统信软件技术有限公司（以下简称“统信软件”）及其关联公司（特别是武汉深之度科技有限公司（以下简称为“深度科技”））成立的、专注于开源技术的团队。深度社区代表统信软件与用户达成法律协议，且深度社区在本协议下的权利和义务归属于统信软件。\r\n\r\n请在使用本软件之前仔细阅读本最终用户许可协议（以下称为“本协议”）中规定的所有权利和限制。本协议是统信软件技术有限公司（以下简称“统信软件”）及其关联公司（特别是武汉深之度科技有限公司（以下简称为“深度科技”））与您（自然人、法人或其他组织）之间达成的法律协议。一旦您安装、复制或以其他方式使用本软件，即表明您同意并接受本协议，并且承认您已阅读和理解了本协议。若您为代表一个实体的个人，一旦您安装、复制或以其他方式使用本软件即承认您已被授权代表该实体接受本协议。如果您不同意本协议中的任何条款，请勿安装、下载或以其他方式使用本软件及其相关服务。\r\n\r\n除非本协议被新协议版本替代，本协议规范适用于任一版本的深度操作系统，以及任何相关的更新、源代码的使用，无论交付的方式如何。\r\n\r\n本软件中所包含的由深度社区提供并附有版权声明的源代码、目标码、以及由前述源代码和/或目标码所构成的所有组件当中，由深度社区创作的内容、或修改的有别于未修改之前版本的内容及形成的相关版权归统信软件所有。为本协议之目的，使用是指下载、安装、复制、再发布或以其它方式对本软件做功能性使用。\r\n\r\n1．许可授权。在下面条款的约束下，统信软件根据本协议和《GNU通用公共许可协议》（第3版）授予您有关本软件永久的，全世界范围内，非独占性的许可。本软件可能包含由第三方开发者根据相应开源协议编制的软件组件（以下简称“开源软件组件”），每一个软件组件的许可协议均位于该软件组件的源代码中，您在使用这些软件组件时应遵守相应开源软件许可协议的规定。本协议仅适用于本软件，且不限制或改变您根据任何特定开源软件组件的许可条款享有的权利或义务。\r\n\r\n2．知识产权。本软件中统信软件享有版权的部分受著作权法和其它相关适用法律的保护，并且统信软件及其关联公司对“统信”“统信UOS” “深度”和“deepin”商标及标识拥有合法商标权。（1）您不得去掉本软件上的任何版权标识和商标标识，并应在其所有复制品上依照其现有表述方式标注其版权属于统信软件及/或其他授权人。（2）本软件（包括但不限于本软件中所含的任何图像、照片、动画、录像、录音、音乐、文字和附加程序、色彩、界面设计、版面框架）、随附的文档印刷材料及本软件任何副本的著作权及其他知识产权，均由统信软件拥有（属于第三方所有之商标及第三方所有之其他权利除外）或统信软件拥有合法使用权。（3）本软件及文档印刷材料享有版权，并受中华人民共和国著作权法、商标法、专利法、反不正当竞争法及国际条约条款的保护。（4）您不可以从本软件中去掉其版权声明；并保证为本软件的复制品（全部或部分）复制版权声明。（5）您同意制止以任何形式非法复制本软件及文档印刷材料。（6）您不可复制本软件随附的文档印刷材料。\r\n\r\n3．再发布。您仅在以下情况下方可进行再发布：您已按照上述第2条的要求保留本软件的版权标识以及版权声明，并且您已删除并替换所有统信软件的商标。除了以上情况之外，本协议不允许您为了任何商业目的再发布（包括但不限于软件销售、预装、捆绑等）本软件或其组件，不管本软件或其组件是否已被修改。您应了解，修改本软件可能造成应用程序受损以及无法正常使用。\r\n\r\n4．使用规范。您在遵守法律及本协议的前提下可依本协议使用本软件。您无权实施包括但不限于下列行为：\r\n1)利用本软件发表、传送、传播、储存违反您所在国家法律、危害社会安全、公序良俗的内容，或任何不当的、侮辱诽谤的、淫秽的、暴力的及任何违反使用者所在国家法律法规政策的内容；\r\n2)利用本软件发表、传送、传播、储存侵害他人知识产权、商业秘密权等合法权利的内容；\r\n3)利用本软件批量发表、传送、传播广告信息及垃圾信息；\r\n4)利用本软件发表、传送或散布以其他方式实现传送含有侵犯第三方合法权利（包括但不限于版权、商标权、专利权、商业秘密、隐私权及相关人格权利）的图像、相片、软件或其他资料的文件，除非您已获得权利人充分有效的事先授权；\r\n5)任何危害网络安全的行为，包括但不限于：使用未经许可的数据或进入未经许可的服务器/账户；未经允许进入公众网络或者他人操作系统并删除、修改、增加存储信息；未经许可，企图探查、扫描、测试本软件系统或网络的弱点或其它实施破坏网络安全的行为；企图干涉、破坏本软件系统正常运行，故意传播恶意程序或病毒以及其他破坏干扰正常网络信息服务的行为；伪造TCP/IP数据包名称或部分名称；\r\n6)其他以任何不合法的方式、为任何不合法的目的、或以任何与本协议不一致的方式使用本软件。\r\n\r\n您若违反上述规定，深度社区不承担因此导致的任何责任，有权自行决定采取终止、完全或部分中止、限制您使用本软件的相关功能并保留追究上述行为的一切权利。\r\n\r\n5．免责说明。本软件不享受任何其他形式的售后担保。在适用法律允许的最大限度内，深度社区对本软件按“现状”向您进行授予许可。深度社区不提供任何明示、默示或法定的保证、保障或条件，包括但不限于有关适销性、针对特定目的的适用性和不侵权的默示保证。\r\n\r\n本软件是作为一般用途的产品而不是为任何用户的具体用途而设计并提供的。您同意没有产品是无错误的，因此，您应该经常对您的文件做出备份。您须自行承担使用该软件的风险。对因使用或不能使用本软件所产生的损害及风险，包括但不限于直接或间接的个人损害、商业盈利的丧失、贸易中断、商业信息的丢失或任何其它经济损失，深度社区不承担任何责任。对于因电信系统或互联网网络故障、配套系统故障问题或其它任何不可抗力原因（包括黑客攻击行为）而产生的损失，深度社区不承担任何责任。\r\n\r\n6．有限责任。深度社区对您或第三方提供的应用于或操作于本软件的内容或与该内容相关的其他内容而引起的任何索赔或损害不承担任何责任。\r\n\r\n7．第三方软件程序。深度社区可能随本软件发行第三方软件程序。这类第三方软件程序不是本软件的运行所必须的，而是为方便您而提供的，且受其自身所带的许可条款约束。此外，您基于本软件安装和运行的其它应用程序，也属于第三方软件程序的范畴。该等许可条款随第三方软件程序附送。如果您不同意遵守第三方软件程序适用的许可条款，则无权安装和运行该等程序。如果您希望在一个以上的系统中安装第三方软件程序，或向其它人转让第三方软件程序，则必须自行联络第三方软件程序许可人。\r\n\r\n8．权利的保留。未明示授予的与本软件相关的一切权利均为深度社区所有。\r\n\r\n9．许可终止。（1）如您未遵守本协议的各项条款和条件，深度社区可终止本协议。（2）通过向您提供本软件的任何替换版本或修改版本或升级版本的一份取代协议，并规定您使用这类替换版本或修改版本或升级版本的条件是您接受这类取代协议，深度社区可以终止本协议。\r\n\r\n10．管辖和法律适用。本协议的订立、执行和解释及争议的解决均应适用中华人民共和国法律。如您与深度社区就本协议内容或其执行发生任何争议，双方应进行友好协商；协商不成时，任何一方均可向统信软件所在地有管辖权的人民法院提起诉讼。\r\n\r\n11．解释以及修改。深度社区在不违背本软件所遵守的包括《GNU通用公共许可协议》（第3版）在内的所有协议及法律规定所允许的最大范围内对本协议拥有解释权与修改权。深度社区有权随时根据有关法律、法规的变化以及社区开源策略的调整等修改本协议。修改后的协议会在随附于新版本软件中在您使用前阅读和选择接受。当发生有关争议时，本协议终止，以最新的协议文本为准。如果您不同意协议变更的内容，您可以自行卸载删除本软件并销毁其相关信息内容。如果您继续使用本软件，则视为您接受本协议的变更。\r\n\r\n12．本协议以简体中文和英文文字书写，无论您收到的是其中哪种语言的版本，均以简体中文版本为最准确释义。\r\n\r\n13．联系我们。如果您对本协议有任何疑问或者希望从深度社区获得任何信息，请按下列联系方式与深度社区直接联系：support@deepin.org。\r\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/qrc/systeminfo.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_systeminfo_42px.svg</file>\n        <file>icons/dcc_nav_systeminfo_84px.svg</file>\n        <file>actions/dcc_privacy_policy_32px.svg</file>\n        <file>actions/dcc_protocol_32px.svg</file>\n        <file>actions/dcc_version_32px.svg</file>\n        <file>texts/dcc_edit_12px.svg</file>\n        <file>light/icons/icon_about_pc_128px.svg</file>\n        <file>light/icons/icon_about_laptop_128px.svg</file>\n        <file>dark/icons/icon_about_pc_128px.svg</file>\n        <file>dark/icons/icon_about_laptop_128px.svg</file>\n        <file>icons/edit.dci</file>\n    </qresource>\n    <qresource prefix=\"/systeminfo\">\n        <file>gpl/gpl-3.0-zh_CN-body.txt</file>\n        <file>gpl/gpl-3.0-zh_CN-title.txt</file>\n        <file>gpl/gpl-3.0-zh_TW-body.txt</file>\n        <file>gpl/gpl-3.0-zh_TW-title.txt</file>\n        <file>license/deepin-end-user-license-agreement_zh_CN.txt</file>\n        <file>license/deepin-end-user-license-agreement_en_US.txt</file>\n        <file>gpl/gpl-3.0-en_US-body.txt</file>\n        <file>gpl/gpl-3.0-en_US-title.txt</file>\n        <file>license/deepin-end-user-license-agreement_community_en_US.txt</file>\n        <file>license/deepin-end-user-license-agreement_community_zh_CN.txt</file>\n        <file>license/deepin-end-user-license-agreement_developer_community_en_US.txt</file>\n        <file>license/deepin-end-user-license-agreement_developer_community_zh_CN.txt</file>\n        <file>license/deepin-end-user-license-agreement_developer_community_zh_HK.txt</file>\n        <file>license/deepin-end-user-license-agreement_developer_community_zh_TW.txt</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/systeminfodbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"systeminfodbusproxy.h\"\n\n#include <qdbusreply.h>\n\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusMessage>\n#include <QDBusPendingReply>\n#include <QMetaObject>\n\nconst QString HostnameService = QStringLiteral(\"org.freedesktop.hostname1\");\nconst QString HostnamePath = QStringLiteral(\"/org/freedesktop/hostname1\");\nconst QString HostnameInterface = QStringLiteral(\"org.freedesktop.hostname1\");\n\nconst QString LicenseInfoService = QStringLiteral(\"com.deepin.license\");\nconst QString LicenseInfoPath = QStringLiteral(\"/com/deepin/license/Info\");\nconst QString LicenseInfoInterface = QStringLiteral(\"com.deepin.license.Info\");\n\nconst QString LicenseActivatorService = QStringLiteral(\"com.deepin.license.activator\");\nconst QString LicenseActivatorPath = QStringLiteral(\"/com/deepin/license/activator\");\nconst QString LicenseActivatorInterface = QStringLiteral(\"com.deepin.license.activator\");\n\nconst QString PropertiesInterface = QStringLiteral(\"org.freedesktop.DBus.Properties\");\nconst QString PropertiesChanged = QStringLiteral(\"PropertiesChanged\");\n\nconst QString &SystemInfoService = QStringLiteral(\"org.deepin.dde.SystemInfo1\");\nconst QString &SystemInfoPath = QStringLiteral(\"/org/deepin/dde/SystemInfo1\");\nconst QString &SystemInfoInterface = QStringLiteral(\"org.deepin.dde.SystemInfo1\");\n\nconst QString &TimedateService = QStringLiteral(\"org.deepin.dde.Timedate1\");\nconst QString &TimedatePath = QStringLiteral(\"/org/deepin/dde/Timedate1\");\nconst QString &TimedateInterface = QStringLiteral(\"org.deepin.dde.Timedate1\");\n\nconst QString &TimeZoneService = QStringLiteral(\"org.freedesktop.timedate1\");\nconst QString &TimeZonePath = QStringLiteral(\"/org/freedesktop/timedate1\");\nconst QString &TimeZoneInterface = QStringLiteral(\"org.freedesktop.timedate1\");\n\nSystemInfoDBusProxy::SystemInfoDBusProxy(QObject *parent)\n    : QObject(parent)\n    , m_hostname1Inter(new DDBusInterface(HostnameService, HostnamePath, HostnameInterface, QDBusConnection::systemBus(), this))\n    , m_licenseInfoInter(new DDBusInterface(LicenseInfoService, LicenseInfoPath, LicenseInfoInterface, QDBusConnection::systemBus(), this))\n    , m_licenseActivatorInter(new DDBusInterface(LicenseActivatorService, LicenseActivatorPath, LicenseActivatorInterface, QDBusConnection::sessionBus(), this))\n    , m_systemInfo(new DDBusInterface(SystemInfoService, SystemInfoPath, SystemInfoInterface, QDBusConnection::sessionBus(), this))\n    , m_systemInfoSysBus(new DDBusInterface(SystemInfoService, SystemInfoPath, SystemInfoInterface, QDBusConnection::systemBus(), this))\n    , m_timedateInter(new DDBusInterface(TimedateService, TimedatePath, TimedateInterface, QDBusConnection::sessionBus(), this))\n    , m_timeZoneInter(new DDBusInterface(TimeZoneService, TimeZonePath, TimeZoneInterface, QDBusConnection::systemBus(), this))\n{\n}\n\nQString SystemInfoDBusProxy::staticHostname()\n{\n    return qvariant_cast<QString>(m_hostname1Inter->property(\"StaticHostname\"));\n}\n\nvoid SystemInfoDBusProxy::setStaticHostname(const QString &value)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(value) << QVariant::fromValue(true);\n    m_hostname1Inter->asyncCallWithArgumentList(\"SetStaticHostname\", argumentList);\n}\n\nvoid SystemInfoDBusProxy::setStaticHostname(const QString &value, QObject *receiver, const char *member, const char *errorSlot)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(value) << QVariant::fromValue(true);\n    m_hostname1Inter->callWithCallback(\"SetStaticHostname\", argumentList, receiver, member, errorSlot);\n}\n\nint SystemInfoDBusProxy::authorizationState()\n{\n    return qvariant_cast<int>(m_licenseInfoInter->property(\"AuthorizationState\"));\n}\n\nvoid SystemInfoDBusProxy::setAuthorizationState(const int value)\n{\n    m_licenseInfoInter->setProperty(\"AuthorizationState\", QVariant::fromValue(value));\n}\n\nQString SystemInfoDBusProxy::timezone()\n{\n    return qvariant_cast<QString>(m_timeZoneInter->property(\"Timezone\"));\n}\n\nvoid SystemInfoDBusProxy::setTimezone(const QString &value)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(value) << QVariant::fromValue(true);\n    m_hostname1Inter->asyncCallWithArgumentList(\"SetTimezone\", argumentList);\n}\n\nint SystemInfoDBusProxy::shortDateFormat()\n{\n    return qvariant_cast<int>(m_timedateInter->property(\"ShortDateFormat\"));\n}\n\nqulonglong SystemInfoDBusProxy::memorySize()\n{\n    return  m_systemInfoSysBus->property(\"MemorySize\").toULongLong();\n}\n\nQString SystemInfoDBusProxy::Processor()\n{\n    return m_systemInfo->property(\"Processor\").toString();\n}\n\nqulonglong SystemInfoDBusProxy::CurrentSpeed()\n{\n    return m_systemInfo->property(\"CurrentSpeed\").toLongLong();\n}\n\nQString SystemInfoDBusProxy::CPUHardware()\n{\n    return m_systemInfo->property(\"CPUHardware\").toString();\n}\n\ndouble SystemInfoDBusProxy::CPUMaxMHz()\n{\n    return m_systemInfo->property(\"CPUMaxMHz\").toDouble();\n}\n\nvoid SystemInfoDBusProxy::Show()\n{\n    m_licenseActivatorInter->asyncCall(\"Show\");\n}\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/systeminfodbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef SYSTEMINFODBUSPROXY_H\n#define SYSTEMINFODBUSPROXY_H\n\n#include <DDBusInterface>\n\nusing Dtk::Core::DDBusInterface;\n\n#include <QObject>\n\nclass SystemInfoDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit SystemInfoDBusProxy(QObject *parent = nullptr);\n\n    Q_PROPERTY(QString StaticHostname READ staticHostname WRITE setStaticHostname NOTIFY StaticHostnameChanged)\n    QString staticHostname();\n    void setStaticHostname(const QString &value);\n    void setStaticHostname(const QString &value, QObject *receiver, const char *member, const char *errorSlot);\n\n    Q_PROPERTY(int AuthorizationState READ authorizationState WRITE setAuthorizationState NOTIFY AuthorizationStateChanged)\n    int authorizationState();\n    void setAuthorizationState(const int value);\n\n    Q_PROPERTY(QString Timezone READ timezone WRITE setTimezone NOTIFY TimezoneChanged)\n    QString timezone();\n    void setTimezone(const QString &value);\n\n    Q_PROPERTY(int ShortDateFormat READ shortDateFormat NOTIFY ShortDateFormatChanged)\n    int shortDateFormat();\n\n    // sysinfo system\n    qulonglong memorySize();\n    // sysinfo\n    QString Processor();\n    qulonglong CurrentSpeed();\n    QString CPUHardware();\n    double CPUMaxMHz();\n\nQ_SIGNALS:\n    void StaticHostnameChanged(const QString &value) const;\n    void AuthorizationStateChanged(const int value) const;\n    void TimezoneChanged(const QString &value) const;\n    void ShortDateFormatChanged(const int value) const;\n\npublic Q_SLOTS:\n    void Show();\n\nprivate:\n    DDBusInterface *m_hostname1Inter;\n    DDBusInterface *m_licenseInfoInter;\n    DDBusInterface *m_licenseActivatorInter;\n    DDBusInterface *m_systemInfo;\n    DDBusInterface *m_systemInfoSysBus;\n    DDBusInterface *m_timedateInter;\n    DDBusInterface *m_timeZoneInter;\n};\n\n#endif // SYSTEMINFODBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/systeminfointeraction.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"systeminfointeraction.h\"\n\n#include \"dccfactory.h\"\n\n#include <QtQml/qqml.h>\n\nusing namespace  dccV25;\n\nSystemInfoInteraction::SystemInfoInteraction(QObject *parent)\n    : QObject{ parent }\n    , m_systemInfoWork(nullptr)\n    , m_systemInfoMode(nullptr)\n{\n    qmlRegisterType<SystemInfoWork>(\"org.deepin.dcc.systemInfo\", 1, 0, \"SystemInfoWork\");\n    qmlRegisterType<SystemInfoModel>(\"org.deepin.dcc.systemInfo\", 1, 0, \"SystemInfoModel\");\n\n    m_systemInfoMode = new SystemInfoModel(this);\n    m_systemInfoWork = new SystemInfoWork(m_systemInfoMode, this);\n\n    connect(m_systemInfoWork, &SystemInfoWork::requestUeProgram, this, &SystemInfoInteraction::requestUeProgram);\n    m_systemInfoWork->activate();\n}\n\nSystemInfoWork *SystemInfoInteraction::systemInfoWork() const\n{\n    return m_systemInfoWork;\n}\n\nvoid SystemInfoInteraction::setSystemInfoWork(SystemInfoWork *newSystemInfoWork)\n{\n    m_systemInfoWork = newSystemInfoWork;\n}\n\nSystemInfoModel *SystemInfoInteraction::systemInfoMode() const\n{\n    return m_systemInfoMode;\n}\n\nvoid SystemInfoInteraction::setSystemInfoMode(SystemInfoModel *newSystemInfoMode)\n{\n    m_systemInfoMode = newSystemInfoMode;\n}\n\nDCC_FACTORY_CLASS(SystemInfoInteraction)\n\n\n#include \"systeminfointeraction.moc\"\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/systeminfointeraction.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef SYSTEMINFOINTERACTION_H\n#define SYSTEMINFOINTERACTION_H\n\n#include \"systeminfomodel.h\"\n#include \"systeminfowork.h\"\n\n#include <QObject>\n\nusing namespace DCC_NAMESPACE;\n\nclass SystemInfoInteraction : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit SystemInfoInteraction(QObject *parent = nullptr);\n\n    Q_INVOKABLE SystemInfoWork *systemInfoWork() const;\n    void setSystemInfoWork(SystemInfoWork *newSystemInfoWork);\n\n    Q_INVOKABLE SystemInfoModel *systemInfoMode() const;\n    void setSystemInfoMode(SystemInfoModel *newSystemInfoMode);\n\nsignals:\n    void requestUeProgram(bool visible) const;\n\nprivate:\n    SystemInfoWork* m_systemInfoWork;\n    SystemInfoModel* m_systemInfoMode;\n};\n\n#endif // SYSTEMINFOINTERACTION_H\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/systeminfomodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"systeminfomodel.h\"\n#include \"QtQml/qqml.h\"\n#include \"dccfactory.h\"\n#include \"math.h\"\n#include \"utils.h\"\n\n#include <qdebug.h>\n\nnamespace DCC_NAMESPACE {\n\nstatic QString formatCap(qulonglong cap, const int size = 1024, quint8 precision = 1)\n{\n    static QStringList type = { \" B\", \" KB\", \" MB\", \" GB\", \" TB\" };\n    qulonglong lc = cap;\n    double dc = cap;\n    double ds = size;\n\n    for (int p = 0; p < type.count(); ++p) {\n        if (cap < pow(size, p + 1) || p == type.count() - 1) {\n            if (!precision) {\n#ifdef __sw_64__\n                return QString::number(ceil(lc / pow(size, p))) + type[p];\n#else\n                return QString::number(round(lc / pow(size, p))) + type[p];\n#endif\n            }\n\n            return QString::number(dc / pow(ds, p), 'f', precision) + type[p];\n        }\n    }\n\n    return \"\";\n}\n\nSystemInfoModel::SystemInfoModel(QObject *parent)\n    : QObject(parent)\n    , m_type(\"64\")\n    , m_licenseState(ActiveState::Unauthorized)\n    , m_privacyPolicy(\"\")\n    , m_gnuLinceseTitle(\"\")\n    , m_gnuLinceseContent(\"\")\n    , m_userLicense(\"\")\n    , m_joinUeProgram(false)\n{\n\n}\n\nvoid SystemInfoModel::setProductName(const QString &name)\n{\n    if (m_productName == name)\n        return;\n\n    m_productName = name;\n    Q_EMIT productNameChanged(m_productName);\n}\n\nvoid SystemInfoModel::setVersionNumber(const QString &number)\n{\n    if (m_versionNumber == number)\n        return;\n\n    m_versionNumber = number;\n    Q_EMIT versionNumberChanged(m_versionNumber);\n}\n\nvoid SystemInfoModel::setVersion(const QString &version)\n{\n    if (m_version == version)\n        return;\n\n    m_version = version;\n    Q_EMIT versionChanged(m_version);\n}\n\nvoid SystemInfoModel::setType(qlonglong type)\n{\n    if (m_type == QString(\"%1\").arg(type))\n        return;\n\n    m_type = QString(\"%1\").arg(type);\n    typeChanged(m_type);\n}\n\nvoid SystemInfoModel::setProcessor(const QString &processor)\n{\n    if (m_processor == processor)\n        return;\n\n    m_processor = processor;\n    Q_EMIT processorChanged(processor);\n}\n\nvoid SystemInfoModel::setHostName(const QString &hostName)\n{\n    m_hostName = hostName;\n    hostNameChanged(hostName);\n}\n\nvoid SystemInfoModel::setEndUserAgreementPath(const QString &path)\n{\n    m_endUserAgreementTextPath = path;\n    bool isMarkdown = path.endsWith(\".md\", Qt::CaseInsensitive);\n    m_userLicenseFormat = isMarkdown ? Qt::MarkdownText : Qt::PlainText;\n    Q_EMIT userLicenseFormatChanged();\n}\n\nQString SystemInfoModel::graphicsPlatform() const\n{\n    return m_graphicsPlatform;\n}\n\nvoid SystemInfoModel::setGraphicsPlatform(const QString &newGraphicsPlatform)\n{\n    if (m_graphicsPlatform == newGraphicsPlatform)\n        return;\n    m_graphicsPlatform = newGraphicsPlatform;\n    Q_EMIT graphicsPlatformChanged();\n}\n\nbool SystemInfoModel::showAuthorization() const\n{\n    return !(IS_COMMUNITY_SYSTEM || DSysInfo::UosEditionUnknown == DSysInfo::uosEditionType()) && DSysInfo::uosEditionType() != DSysInfo::UosEnterpriseC;\n}\n\nbool SystemInfoModel::showUserExperienceProgram() const\n{\n    return !IS_SERVER_SYSTEM && !IS_COMMUNITY_SYSTEM && DSysInfo::isDeepin();\n}\n\nbool SystemInfoModel::showGraphicsPlatform() const\n{\n    return  IS_COMMUNITY_SYSTEM;\n}\n\nQString SystemInfoModel::systemInstallationDate() const\n{\n    return m_systemInstallationDate;\n}\n\nvoid SystemInfoModel::setSystemInstallationDate(const QString &newSystemInstallationDate)\n{\n    if (m_systemInstallationDate == newSystemInstallationDate)\n        return;\n    m_systemInstallationDate = newSystemInstallationDate;\n    Q_EMIT systemInstallationDateChanged();\n}\n\nQString SystemInfoModel::logoPath() const\n{\n    return m_logoPath;\n}\n\nvoid SystemInfoModel::setLogoPath(const QString &newLogoPath)\n{\n    if (m_logoPath == newLogoPath)\n        return;\n    m_logoPath = newLogoPath;\n    Q_EMIT logoPathChanged();\n}\n\nbool SystemInfoModel::showDetail() const\n{\n    return m_showDetail;\n}\n\nvoid SystemInfoModel::setShowDetail(bool newShowDetail)\n{\n    if (m_showDetail == newShowDetail)\n        return;\n    m_showDetail = newShowDetail;\n    Q_EMIT showDetailChanged();\n}\n\nvoid SystemInfoModel::onLicenseStateChanged(const ActiveState &state)\n{\n    if (state == Authorized) {\n        setLicenseStatusText(QObject::tr(\"Activated\"));\n        setLicenseStatusColor(QColor(21, 187, 24));\n        setLicenseActionText(QObject::tr(\"View\"));\n    } else if (state == Unauthorized) {\n        setLicenseStatusText(QObject::tr(\"To be activated\"));\n        setLicenseStatusColor(QColor(255, 87, 54));\n        setLicenseActionText(QObject::tr(\"Activate\"));\n    } else if (state == AuthorizedLapse) {\n        setLicenseStatusText(QObject::tr(\"Expired\"));\n        setLicenseStatusColor(QColor(255, 87, 54));\n        setLicenseActionText(QObject::tr(\"View\"));\n    } else if (state == TrialAuthorized) {\n        setLicenseStatusText(QObject::tr(\"In trial period\"));\n        setLicenseStatusColor(QColor(255, 170, 0));\n        setLicenseActionText(QObject::tr(\"Activate\"));\n    } else if (state == TrialExpired) {\n        setLicenseStatusText(QObject::tr(\"Trial expired\"));\n        setLicenseStatusColor(QColor(255, 87, 54));\n        setLicenseActionText(QObject::tr(\"Activate\"));\n    }\n}\n\nQColor SystemInfoModel::licenseStatusColor() const\n{\n    return m_licenseStatusColor;\n}\n\nvoid SystemInfoModel::setLicenseStatusColor(const QColor &newLicenseStatusColor)\n{\n    if (m_licenseStatusColor == newLicenseStatusColor)\n        return;\n    m_licenseStatusColor = newLicenseStatusColor;\n    Q_EMIT licenseStatusColorChanged();\n}\n\nQString SystemInfoModel::licenseActionText() const\n{\n    return m_licenseActionText;\n}\n\nvoid SystemInfoModel::setLicenseActionText(const QString &newLicenseActionText)\n{\n    if (m_licenseActionText == newLicenseActionText)\n        return;\n    m_licenseActionText = newLicenseActionText;\n    Q_EMIT licenseActionTextChanged();\n}\n\nQString SystemInfoModel::licenseStatusText() const\n{\n    return m_licenseStatusText;\n}\n\nvoid SystemInfoModel::setLicenseStatusText(const QString &newLicenseStatusText)\n{\n    if (m_licenseStatusText == newLicenseStatusText)\n        return;\n    m_licenseStatusText = newLicenseStatusText;\n    Q_EMIT licenseStatusTextChanged();\n}\n\nQString SystemInfoModel::systemCopyright() const\n{\n    return m_systemCopyright;\n}\n\nvoid SystemInfoModel::setSystemCopyright(const QString &newSystemCopyright)\n{\n    if (m_systemCopyright == newSystemCopyright)\n        return;\n    m_systemCopyright = newSystemCopyright;\n    Q_EMIT systemCopyrightChanged();\n}\n\nbool SystemInfoModel::joinUeProgram() const\n{\n    return m_joinUeProgram;\n}\n\nvoid SystemInfoModel::setJoinUeProgram(bool newJoinUeProgram)\n{\n    m_joinUeProgram = newJoinUeProgram;\n    Q_EMIT joinUeProgramChanged(m_joinUeProgram);\n}\n\nQString SystemInfoModel::userExperienceProgramText() const\n{\n    return m_userExperienceProgramText;\n}\n\nvoid SystemInfoModel::setUserExperienceProgramText(const QString &newUserExperienceProgramText)\n{\n    if (m_userExperienceProgramText == newUserExperienceProgramText)\n        return;\n    m_userExperienceProgramText = newUserExperienceProgramText;\n    Q_EMIT userExperienceProgramTextChanged();\n}\n\nQString SystemInfoModel::userLicense() const\n{\n    return m_userLicense;\n}\n\nvoid SystemInfoModel::setUserLicense(const QString &newUserLicense)\n{\n    if (m_userLicense == newUserLicense)\n        return;\n    m_userLicense = newUserLicense;\n    Q_EMIT userLicenseChanged();\n}\n\nQString SystemInfoModel::gnuLinceseContent() const\n{\n    return m_gnuLinceseContent;\n}\n\nvoid SystemInfoModel::setGnuLinceseContent(const QString &newGnuLinceseContent)\n{\n    if (m_gnuLinceseContent == newGnuLinceseContent)\n        return;\n    m_gnuLinceseContent = newGnuLinceseContent;\n    Q_EMIT gnuLinceseContentChanged();\n}\n\nQString SystemInfoModel::gnuLinceseTitle() const\n{\n    return m_gnuLinceseTitle;\n}\n\nvoid SystemInfoModel::setGnuLinceseTitle(const QString &newGnuLinceseTitle)\n{\n    if (m_gnuLinceseTitle == newGnuLinceseTitle)\n        return;\n    m_gnuLinceseTitle = newGnuLinceseTitle;\n    Q_EMIT gnuLinceseTitleChanged();\n}\n\nQString SystemInfoModel::privacyPolicy() const\n{\n    return m_privacyPolicy;\n}\n\nvoid SystemInfoModel::setPrivacyPolicy(const QString &newPrivacyPolicy)\n{\n    if (m_privacyPolicy == newPrivacyPolicy)\n        return;\n    m_privacyPolicy = newPrivacyPolicy;\n    Q_EMIT privacyPolicyChanged();\n}\n\nvoid SystemInfoModel::setMemory(qulonglong totalMemory, qulonglong installedMemory)\n{\n    QString mem_device_size = formatCap(installedMemory, 1024, 0);\n    QString mem = formatCap(totalMemory);\n    if (m_memory == mem)\n        return;\n\n    m_memory = mem;\n    m_memory = QString(\"%1 (%2 %3)\").arg(mem_device_size, mem, tr(\"available\"));\n    memoryChanged(m_memory);\n}\n\n\nvoid SystemInfoModel::setKernel(const QString &kernel)\n{\n    if (m_kernel == kernel)\n        return;\n\n    m_kernel = kernel;\n    kernelChanged(kernel);\n}\n\nvoid SystemInfoModel::setLicenseState(DCC_NAMESPACE::ActiveState state)\n{\n    if (m_licenseState != state) {\n        m_licenseState = state;\n        Q_EMIT licenseStateChanged(state);\n    }\n\n    onLicenseStateChanged(state);\n}\n\n}"
  },
  {
    "path": "src/plugin-systeminfo/operation/systeminfomodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef SYSTEMINFOMODEL_H\n#define SYSTEMINFOMODEL_H\n\n#include <QObject>\n#include <QColor>\n#include <optional>\n\n#include <dsysinfo.h>\n\n\nusing namespace Dtk::Core;\n\nnamespace DCC_NAMESPACE{\n\nenum ActiveState {\n    Unknown = -1,  //未知\n    Unauthorized = 0,  //未授权\n    Authorized,  //已授权\n    AuthorizedLapse,  //授权失效\n    TrialAuthorized, //试用期已授权\n    TrialExpired //试用期已过期\n};\n\n// !!! 不要用C++11的前置声明枚举类型，这里lupdate命令有个bug．具体见\n// https://stackoverflow.com/questions/6504902/lupdate-error-qualifying-with-unknown-namespace-class\n\nclass SystemInfoModel : public QObject\n{\n    Q_OBJECT\n\n    Q_PROPERTY(QString privacyPolicy READ privacyPolicy NOTIFY privacyPolicyChanged FINAL)\n    Q_PROPERTY(QString gnuLinceseTitle READ gnuLinceseTitle NOTIFY gnuLinceseTitleChanged FINAL)\n    Q_PROPERTY(QString gnuLinceseContent READ gnuLinceseContent NOTIFY gnuLinceseContentChanged FINAL)\n    Q_PROPERTY(QString userLicense READ userLicense NOTIFY userLicenseChanged FINAL)\n    Q_PROPERTY(Qt::TextFormat userLicenseFormat READ userLicenseFormat NOTIFY userLicenseFormatChanged FINAL)\n    Q_PROPERTY(QString userExperienceProgramText READ userExperienceProgramText NOTIFY userExperienceProgramTextChanged FINAL)\n    Q_PROPERTY(bool joinUeProgram READ joinUeProgram NOTIFY joinUeProgramChanged FINAL)\n\n    Q_PROPERTY(QString productName READ productName NOTIFY productNameChanged FINAL)\n    Q_PROPERTY(QString systemCopyright READ systemCopyright NOTIFY systemCopyrightChanged FINAL)\n    Q_PROPERTY(QString hostName READ hostName NOTIFY hostNameChanged FINAL)\n    Q_PROPERTY(QString version READ version NOTIFY versionChanged FINAL)\n    Q_PROPERTY(QString versionNumber READ versionNumber NOTIFY versionNumberChanged FINAL)\n    Q_PROPERTY(QString type READ type NOTIFY typeChanged FINAL)\n    Q_PROPERTY(QString memory READ memory NOTIFY memoryChanged FINAL)\n    Q_PROPERTY(QString kernel READ kernel NOTIFY kernelChanged FINAL)\n    Q_PROPERTY(QString processor READ processor NOTIFY processorChanged FINAL)\n    Q_PROPERTY(QString licenseStatusText READ licenseStatusText NOTIFY licenseStatusTextChanged FINAL)\n    Q_PROPERTY(QString licenseActionText READ licenseActionText NOTIFY licenseActionTextChanged FINAL)\n    Q_PROPERTY(QColor licenseStatusColor READ licenseStatusColor NOTIFY licenseStatusColorChanged FINAL)\n    Q_PROPERTY(bool showDetail READ showDetail NOTIFY showDetailChanged FINAL)\n    Q_PROPERTY(QString logoPath READ logoPath NOTIFY logoPathChanged FINAL)\n    Q_PROPERTY(QString systemInstallationDate READ systemInstallationDate NOTIFY systemInstallationDateChanged FINAL)\n    Q_PROPERTY(QString graphicsPlatform READ graphicsPlatform NOTIFY graphicsPlatformChanged FINAL)\n\npublic:\n    explicit SystemInfoModel(QObject *parent = nullptr);\n\n    QString productName() const { return m_productName;}\n    QString versionNumber() const { return m_versionNumber;}\n    QString version() const { return m_version;}\n    QString type() const { return m_type;}\n    QString processor() const { return m_processor;}\n    QString memory() const { return m_memory;}\n    QString kernel() const { return m_kernel;}\n    QString hostName() const { return  m_hostName;}\n\n    inline std::optional<QString> endUserAgreementPath() const { return m_endUserAgreementTextPath; }\n    inline Qt::TextFormat userLicenseFormat() const { return m_userLicenseFormat; }\n    inline ActiveState licenseState() const { return m_licenseState; }\n\n    QString privacyPolicy() const;\n    void setPrivacyPolicy(const QString &newPrivacyPolicy);\n\n    QString gnuLinceseTitle() const;\n    void setGnuLinceseTitle(const QString &newGnuLinceseTitle);\n\n    QString gnuLinceseContent() const;\n    void setGnuLinceseContent(const QString &newGnuLinceseContent);\n\n    QString userLicense() const;\n    void setUserLicense(const QString &newUserLicense);\n\n    QString userExperienceProgramText() const;\n    void setUserExperienceProgramText(const QString &newUserExperienceProgramText);\n\n    bool joinUeProgram() const;\n    void setJoinUeProgram(bool newJoinUeProgram);\n\n    QString systemCopyright() const;\n    void setSystemCopyright(const QString &newSystemCopyright);\n\n    QString licenseStatusText() const;\n    void setLicenseStatusText(const QString &newLicenseStatusText);\n\n    QString licenseActionText() const;\n    void setLicenseActionText(const QString &newLicenseActionText);\n\n    QColor licenseStatusColor() const;\n    void setLicenseStatusColor(const QColor &newLicenseStatusColor);\n\n    void onLicenseStateChanged(const ActiveState &state);\n\n    bool showDetail() const;\n    void setShowDetail(bool newShowDetail);\n\n    QString logoPath() const;\n    void setLogoPath(const QString &newLogoPath);\n\n    QString systemInstallationDate() const;\n    void setSystemInstallationDate(const QString &newSystemInstallationDate);\n\n    Q_INVOKABLE bool showAuthorization() const;\n    Q_INVOKABLE bool showUserExperienceProgram() const;\n    Q_INVOKABLE bool showGraphicsPlatform() const;\n\n    QString graphicsPlatform() const;\n    void setGraphicsPlatform(const QString &newGraphicsPlatform);\n\nQ_SIGNALS:\n    void productNameChanged(const QString& version);\n    void versionNumberChanged(const QString& version);\n    void versionChanged(const QString& version);\n    void typeChanged(const QString& type);\n    void processorChanged(const QString& processor);\n    void memoryChanged(const QString& memory);\n    void kernelChanged(const QString& kernel);\n    void licenseStateChanged(ActiveState state);\n    void hostNameChanged(const QString& hostName);\n    void setHostNameError(const QString& error);\n\n    void privacyPolicyChanged();\n\n    void gnuLinceseTitleChanged();\n    void gnuLinceseContentChanged();\n\n    void userLicenseChanged();\n    void userLicenseFormatChanged();\n\n    void userExperienceProgramTextChanged();\n\n    void joinUeProgramChanged(const bool enable) const;\n\n    void systemCopyrightChanged();\n\n    void licenseStateDataChanged();\n\n    void licenseStatusTextChanged();\n\n    void licenseActionTextChanged();\n\n    void licenseStatusColorChanged();\n\n\n    void showDetailChanged();\n\n    void logoPathChanged();\n\n    void systemInstallationDateChanged();\n\n    void graphicsPlatformChanged();\n\npublic Q_SLOTS:\n    void setProductName(const QString& name);\n    void setVersionNumber(const QString& number);\n    void setVersion(const QString& version);\n    void setType(qlonglong type);\n    void setProcessor(const QString& processor);\n    void setMemory(qulonglong totalMemory, qulonglong installedMemory);\n    void setKernel(const QString &kernel);\n    void setLicenseState(DCC_NAMESPACE::ActiveState state);\n    void setHostName(const QString& hostName);\n    void setEndUserAgreementPath(const QString &path);\n\nprivate:\n    QString m_version;\n    QString m_productName;\n    QString m_versionNumber;\n    QString m_type;\n    QString m_processor;\n    QString m_memory;\n    QString m_kernel;\n    QString m_hostName;\n    std::optional<QString> m_endUserAgreementTextPath;\n    Qt::TextFormat m_userLicenseFormat = Qt::PlainText;\n    DCC_NAMESPACE::ActiveState m_licenseState;\n\n    // 隐私协议\n    QString m_privacyPolicy;\n    // 开源协议\n    QString m_gnuLinceseTitle;\n    QString m_gnuLinceseContent;\n    // 最终用户协议\n    QString m_userLicense;\n    // 用户体验计划文本\n    QString m_userExperienceProgramText;\n    bool m_joinUeProgram;\n\n    QString m_systemCopyright;\n    QString m_licenseStatusText;\n    QColor m_licenseStatusColor;\n    QString m_licenseActionText;\n\n    QString m_logoPath;\n\n    bool m_showDetail;\n    QString m_systemInstallationDate;\n    QString m_graphicsPlatform;\n};\n\n}\nQ_DECLARE_METATYPE(DCC_NAMESPACE::ActiveState);\n#endif // SYSTEMINFOMODEL_H\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/systeminfowork.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"systeminfowork.h\"\n\n#include \"systeminfodbusproxy.h\"\n#include \"systeminfomodel.h\"\n#include \"utils.h\"\n\n#include <QCoreApplication>\n\n#include <DGuiApplicationHelper>\n#include <DSysInfo>\n#include <QDBusInterface>\n\n#include <QDateTime>\n#include <QFutureWatcher>\n#include <QtConcurrent/qtconcurrentrun.h>\n#include <QClipboard>\n\n#include <qregularexpression.h>\n#include <qtimezone.h>\n#include <signal.h>\n#include <DDesktopServices>\n\nDCORE_USE_NAMESPACE\nDGUI_USE_NAMESPACE\n\nconst QString USER_EXPERIENCE_SERVICE = \"com.deepin.userexperience.Daemon\";\n\n\nnamespace DCC_NAMESPACE{\n\nSystemInfoWork::SystemInfoWork(SystemInfoModel *model, QObject *parent)\n    : QObject(parent)\n    , m_model(model)\n    , m_systemInfoDBusProxy(new SystemInfoDBusProxy(this))\n    , m_process(nullptr)\n    , m_content(\"\")\n    , m_title(\"\")\n    , m_dBusUeProgram(nullptr)\n{\n    qRegisterMetaType<ActiveState>(\"ActiveState\");\n    m_dBusUeProgram = new QDBusInterface(\n        \"org.deepin.dde.EventLog1\",\n        \"/org/deepin/dde/EventLog1\",\n        \"org.deepin.dde.EventLog1\",\n        QDBusConnection::sessionBus(), this);\n\n    connect(m_systemInfoDBusProxy,\n            &SystemInfoDBusProxy::StaticHostnameChanged,\n            m_model,\n            &SystemInfoModel::setHostName);\n    connect(m_systemInfoDBusProxy,\n            &SystemInfoDBusProxy::AuthorizationStateChanged,\n            m_model,\n            [this](const int state) {\n                m_model->setLicenseState(static_cast<ActiveState>(state));\n            });\n\n    connect(m_systemInfoDBusProxy,\n            &SystemInfoDBusProxy::TimezoneChanged,\n            this,\n            &SystemInfoWork::onTimezoneChanged);\n    connect(m_systemInfoDBusProxy,\n            &SystemInfoDBusProxy::ShortDateFormatChanged,\n            this,\n            &SystemInfoWork::onShortDateFormatChanged);\n    connect(Dtk::Gui::DGuiApplicationHelper::instance(),\n            &Dtk::Gui::DGuiApplicationHelper::themeTypeChanged,\n            this,\n            &SystemInfoWork::onThemeTypeChanged);\n\n\n    updateFrequency(false);\n\n}\n\nSystemInfoWork::~SystemInfoWork()\n{\n    if (m_process) {\n        //如果控制中心被强制关闭，需要用kill来杀掉没有被关闭的窗口\n        kill(static_cast<__pid_t>(m_process->processId()), 15);\n        m_process->deleteLater();\n        m_process = nullptr;\n    }\n}\n\nvoid SystemInfoWork::activate()\n{\n    //获取主机名\n    m_model->setHostName(m_systemInfoDBusProxy->staticHostname());\n\n    m_model->setLogoPath(DSysInfo::distributionOrgLogo(DSysInfo::Distribution, DSysInfo::Normal));\n    if (DSysInfo::isDeepin()) {\n        m_model->setLicenseState(static_cast<ActiveState>(m_systemInfoDBusProxy->authorizationState()));\n        QString productName = QString(\"%1\").arg(DSysInfo::uosSystemName());\n        m_model->setProductName(productName);\n        QString versionNumber = QString(\"%1\").arg(DSysInfo::majorVersion());\n        m_model->setVersionNumber(versionNumber);\n    }\n    QString version;\n    if (DSysInfo::uosType() == DSysInfo::UosServer || DSysInfo::uosEditionType() == DSysInfo::UosEuler) {\n        version = QString(\"%1%2\").arg(DSysInfo::minorVersion(), DSysInfo::uosEditionName());\n        m_model->setVersion(version);\n    } else if (DSysInfo::isDeepin()) {\n        QDBusConnection::systemBus().connect(\"com.deepin.license\",\n                                     \"/com/deepin/license/Info\",\n                                     \"com.deepin.license.Info\",\n                                     \"LicenseStateChange\",\n                                     this, SLOT(onLicenseAuthorizationProperty()));\n\n        onLicenseAuthorizationProperty();\n    } else {\n        version = QString(\"%1 %2\").arg(DSysInfo::productVersion(), DSysInfo::productTypeString());\n        m_model->setVersion(version);\n    }\n\n    m_model->setType(QSysInfo::WordSize);\n    m_model->setKernel(QSysInfo::kernelVersion());\n    // 注意：不在此处设置 processor，因为构造函数中的 updateFrequency() 已经设置了 processor\n\n    if (m_systemInfoDBusProxy->memorySize() > 0) {\n        m_model->setMemory(static_cast<qulonglong>(DSysInfo::memoryTotalSize()), m_systemInfoDBusProxy->memorySize());\n    } else {\n        m_model->setMemory(static_cast<qulonglong>(DSysInfo::memoryTotalSize()), static_cast<qulonglong>(DSysInfo::memoryInstalledSize()));\n    }\n\n    m_model->setSystemInstallationDate(getSystemInstallDate(m_systemInfoDBusProxy->shortDateFormat(), m_systemInfoDBusProxy->timezone()));\n\n    // 隐私政策文本内容\n    QString http = DSysInfo::productType() != DSysInfo::ProductType::Uos ? tr(\"https://www.deepin.org/en/agreement/privacy/\") : tr(\"https://www.uniontech.com/agreement/privacy-en\");\n    QString email = DSysInfo::productType() != DSysInfo::ProductType::Uos ? \"support@deepin.org\" : \"support@uniontech.com\";\n    QString text = tr(\"<p>We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.</p>\"\n              \"<p>You can <a href=\\\"%1\\\">click here</a> to view our latest privacy policy and/or view it online by visiting <a href=\\\"%1\\\"> %1</a>. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.</p>\")\n               .arg(http)\n               .arg(email);\n    m_model->setPrivacyPolicy(text);\n\n    // 用户体验计划内容\n    m_model->setJoinUeProgram(isUeProgramEnabled());\n\n    updateUserExperienceProgramText();\n\n    m_model->setShowDetail(true);\n\n    QString platformname = QGuiApplication::platformName();\n    if (platformname.contains(\"xcb\")) {\n        platformname = \"X11\";\n    } else if (platformname.contains(\"wayland\")) {\n        platformname = \"Wayland\";\n    }\n    m_model->setGraphicsPlatform(platformname);\n\n    // 初始化开源协议\n    initGnuLicenseData();\n    // 初始化用户最终协议\n    initUserLicenseData();\n\n    initSystemCopyright();\n}\n\nvoid SystemInfoWork::updateUserExperienceProgramText()\n{\n    if (!m_model)\n        return;\n\n    QString http = IS_COMMUNITY_SYSTEM ? tr(\"https://www.deepin.org/en/agreement/privacy/\")\n                                       : tr(\"https://www.uniontech.com/agreement/experience-en\");\n\n    // 根据当前主题选择普通文本颜色：浅色主题用半透明黑，深色主题用半透明白\n    auto themeType = Dtk::Gui::DGuiApplicationHelper::instance()->themeType();\n    const QString normalColor = themeType == Dtk::Gui::DGuiApplicationHelper::DarkType\n            ? QStringLiteral(\"#B3FFFFFF\")\n            : QStringLiteral(\"#64000000\");\n\n    QString text;\n    if (IS_COMMUNITY_SYSTEM) {\n        text = tr(\"<p><span style=\\\"color:%2;\\\">Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. \"\n                   \"If you refuse our collection and use of the aforementioned information, do not join User Experience Program. \"\n                   \"For details, please refer to Deepin Privacy Policy (</span><a href=\\\"%1\\\" style=\\\"text-decoration: none;\\\">%1</a><span style=\\\"color:%2;\\\">).</span></p>\")\n                .arg(http)\n                .arg(normalColor);\n    } else {\n        text = tr(\"<p><span style=\\\"color:%2;\\\">Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. \"\n                   \"If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit </span><a href=\\\"%1\\\" style=\\\"text-decoration: none;\\\">%1</a><span style=\\\"color:%2;\\\">.</span></p>\")\n                .arg(http)\n                .arg(normalColor);\n    }\n\n    m_model->setUserExperienceProgramText(text);\n}\n\nvoid SystemInfoWork::deactivate() { }\n\nQString SystemInfoWork::getEndUserAgreementText()\n{\n    if (DSysInfo::uosEditionType() == DSysInfo::UosEuler) {\n        return DCC_LICENSE::getEulerEndUserAgreement();\n    } else {\n        if (m_model->endUserAgreementPath().has_value()) {\n            return DCC_LICENSE::getEndUserAgreement(m_model->endUserAgreementPath().value());\n        }\n    }\n\n    return \"\";\n}\n\nvoid SystemInfoWork::initGnuLicenseData()\n{\n    QFutureWatcher<QPair<QString, QString>> *w = new QFutureWatcher<QPair<QString, QString>>(this);\n\n    connect(w, &QFutureWatcher<QPair<QString, QString>>::finished, this, [=] {\n        const auto r = w->result();\n        m_model->setGnuLinceseTitle(r.first);\n        m_model->setGnuLinceseContent(r.second);\n    });\n\n    w->setFuture(QtConcurrent::run([] {\n        return DCC_LICENSE::loadLicenses();\n    }));\n}\n\nvoid SystemInfoWork::initUserLicenseData()\n{\n    DCC_LICENSE::LicenseSearchInfo licensepath = DCC_LICENSE::isEndUserAgreementExist();\n    if (licensepath.exist) {\n        m_model->setEndUserAgreementPath(licensepath.path);\n    }\n\n    QFutureWatcher<QString> *w = new QFutureWatcher<QString>(this);\n\n    connect(w, &QFutureWatcher<QString>::finished, this, [=] {\n        const auto r = w->result();\n        m_model->setUserLicense(r);\n    });\n\n    w->setFuture(QtConcurrent::run([this] {\n        return getEndUserAgreementText();\n    }));\n}\n\n// Removed the placeholder comment\nvoid SystemInfoWork::copyTextToClipboard(const QString &text)\n{\n    QClipboard *clipboard = QGuiApplication::clipboard();\n    if (clipboard) {\n        clipboard->setText(text);\n    }\n}\n\nvoid SystemInfoWork::playSystemSound(int soundType)\n{\n    DDesktopServices::playSystemSoundEffect(static_cast<DDesktopServices::SystemSoundEffect>(soundType));\n}\n\nvoid SystemInfoWork::initSystemCopyright()\n{\n    const QSettings settings(\"/etc/deepin-installer.conf\", QSettings::IniFormat);\n    QString oem_copyright = settings.value(\"system_info_vendor_name\").toString().toUtf8();\n\n    const int buildYear = QString(__DATE__).right(4).toInt();\n    int validYear = QDateTime::currentDateTime().date().year();\n    validYear = qMax(buildYear, validYear);\n    if (oem_copyright.isEmpty()) {\n        if (DSysInfo::productType() != DSysInfo::ProductType::Uos)\n            oem_copyright = QCoreApplication::translate(\"LogoModule\", \"Copyright© 2011-%1 Deepin Community\")\n                    .arg(validYear);\n        else\n            oem_copyright =  QCoreApplication::translate(\n                           \"LogoModule\",\n                           \"Copyright© 2019-%1 UnionTech Software Technology Co., LTD\")\n                    .arg(validYear);\n    }\n\n    m_model->setSystemCopyright(oem_copyright);\n}\n\nvoid SystemInfoWork::updateFrequency(bool state)\n{\n    bool useCurrentSpeed = true;\n    double cpuMaxMhz = 0.0;\n    if (state) {\n        useCurrentSpeed = false;\n    } else {\n        QString cpuHardware = m_systemInfoDBusProxy->CPUHardware();\n        qInfo() << \"Current cpu hardware:\" << cpuHardware;\n        if (cpuHardware.contains(\"PANGU\")) {\n            useCurrentSpeed = false;\n        }\n    }\n    if (useCurrentSpeed) {\n        cpuMaxMhz = static_cast<double>(m_systemInfoDBusProxy->CurrentSpeed());\n    } else {\n        cpuMaxMhz = m_systemInfoDBusProxy->CPUMaxMHz();\n    }\n    if (DSysInfo::cpuModelName().contains(\"Hz\")) {\n        m_model->setProcessor(DSysInfo::cpuModelName());\n    } else {\n        QString processor = m_systemInfoDBusProxy->Processor();\n        if (processor.contains(\"Hz\")) {\n            m_model->setProcessor(processor);\n        } else {\n            if (DSysInfo::cpuModelName().isEmpty())\n                m_model->setProcessor(QString(\"%1 @ %2GHz\").arg(processor)\n                                              .arg(cpuMaxMhz / 1000));\n            else\n                m_model->setProcessor(QString(\"%1 @ %2GHz\").arg(DSysInfo::cpuModelName())\n                                              .arg(cpuMaxMhz / 1000));\n        }\n    }\n}\n\nQString SystemInfoWork::getSystemInstallDate(int shortDateFormat, QString timezone)\n{\n    qDebug() << \"ShortDateFormat:\" << shortDateFormat << \"Timezone:\" << timezone;\n    QSettings settings(\"/etc/deepin-installer/deepin-installer.conf\", QSettings::NativeFormat);\n    const QString &inputTime = settings.value(\"DI_INSTALL_FINISH_TIME\").toString();\n    static const QString fotmatShortDate[] = {\"yyyy/M/d\", \"yyyy-M-d\", \"yyyy.M.d\", \"yyyy/MM/dd\", \"yyyy-MM-dd\", \"yyyy.MM.dd\", \"MM.dd.yyyy\",\n                                               \"dd.MM.yyyy\", \"yy/M/d\", \"yy-M-d\", \"yy.M.d\"};\n    int offset = 0;\n    QRegularExpression regexUtc(\"(UTC[+-]\\\\d{2})\");\n    QRegularExpressionMatch matchUtc = regexUtc.match(inputTime);\n    if (matchUtc.hasMatch()) {\n        QRegularExpression regexUtc(\"([+-]\\\\d{2})\");\n        QRegularExpressionMatch matchOffset = regexUtc.match(matchUtc.captured(1));\n        if (matchOffset.hasMatch()) {\n            offset = matchOffset.captured(1).toInt();\n        }\n    }\n    qDebug() << \"Utc offset:\" << offset;\n    QDateTime dateTime = QDateTime::fromString(inputTime, \"yyyy-MM-dd hh:mm:ss 'UTC'tt\");\n\n    QTimeZone offsetTimeZone(offset * 3600);\n    dateTime.setTimeZone(offsetTimeZone);\n    if (dateTime.isValid() && shortDateFormat >= 0 && shortDateFormat <= 10) {\n        // 将时间转换到目标时区\n        QTimeZone targetTimeZone(timezone.toLocal8Bit());\n        qDebug() << \"targetTimeZone :\" << targetTimeZone.isValid() << timezone;\n        QDateTime convertedDateTime = dateTime.toTimeZone(targetTimeZone);\n        qDebug() << \"Converted DateTime:\" << convertedDateTime;\n        return convertedDateTime.toString(fotmatShortDate[shortDateFormat]);\n    }\n    return \"\";\n}\n\nstatic const QString getLicensePath(const QString &filePath, const QString &type)\n{\n    const QString& locale { QLocale::system().name() };\n    QString lang = SYSTEM_LOCAL_LIST.contains(locale) ? locale : \"en_US\";\n\n    QString path = QString(filePath).arg(lang).arg(type);\n    if (QFile(path).exists())\n        return path;\n    else\n        return QString(filePath).arg(\"en_US\").arg(type);\n\n}\n\nstatic QString getUserExpContent()\n{\n    QString userExpContent = getLicensePath(\"/usr/share/protocol/userexperience-agreement/User-Experience-Program-License-Agreement-CN-%1.md\", \"\");\n    if (DSysInfo::isCommunityEdition()) {\n        userExpContent = getLicensePath(\"/usr/share/deepin-deepinid-client/privacy/User-Experience-Program-License-Agreement-Community/User-Experience-Program-License-Agreement-CN-%1.md\", \"\");\n        return userExpContent;\n    }\n    QFile newfile(userExpContent);\n    if (false == newfile.exists()) {\n        userExpContent = getLicensePath(\"/usr/share/deepin-deepinid-client/privacy/User-Experience-Program-License-Agreement/User-Experience-Program-License-Agreement-CN-%1.md\", \"\");\n        QFile file(userExpContent);\n        if (false == file.exists()) {\n            userExpContent = getLicensePath(\"/usr/share/deepin-deepinid-client/privacy/User-Experience-Program-License-Agreement-%1.md\", \"\");\n        }\n    }\n    return userExpContent;\n}\n\n\nvoid SystemInfoWork::setUeProgram(bool enabled)\n{\n    QDateTime current_date_time = QDateTime::currentDateTime();\n    QString current_date = current_date_time.toString(\"yyyy-MM-dd hh:mm::ss.zzz\");\n    if (enabled && (isUeProgramEnabled() != enabled)) {\n        Q_EMIT requestUeProgram(true);\n        qInfo() << \"Suser opened experience project switch\";\n        // 打开license-dialog必要的三个参数:标题、license文件路径、checkBtn的Text\n        QString allowContent(tr(\"Agree and Join User Experience Program\"));\n\n               // license路径\n        m_content = getUserExpContent();\n\n        m_process = new QProcess(this);\n\n        auto pathType = \"-c\";\n        const QStringList &sl {\n            \"zh_CN\",\n            \"zh_HK\",\n            \"zh_TW\",\n            \"ug_CN\", // 维语\n            \"bo_CN\" // 藏语\n        };\n        if (!sl.contains(QLocale::system().name()))\n            pathType = \"-e\";\n            \n        auto themeType = Dtk::Gui::DGuiApplicationHelper::instance()->themeType();\n        QString theme = themeType == Dtk::Gui::DGuiApplicationHelper::DarkType ? \"dark\" : \"light\";\n        \n        m_process->start(\"dde-license-dialog\",\n                         QStringList() << \"-t\" << m_title << pathType << m_content << \"-a\" << allowContent << \"-p\" << theme << \"-i\" << \"preferences-system\");\n        qDebug()<<\" Deliver content QStringList() = \"<<\"dde-license-dialog\"\n                                                     << \"-t\" << m_title << pathType << m_content << \"-a\" << allowContent << \"-p\" << theme << \"-i\" << \"preferences-system\";\n        connect(m_process, static_cast<void (QProcess::*)(int, QProcess::ExitStatus)>(&QProcess::finished), this, [=](int result) {\n            if (96 == result) {\n                if (!m_model->joinUeProgram()) {\n                    m_model->setJoinUeProgram(enabled);\n                    qInfo() << QString(\"On %1, users open the switch to join the user experience program!\").arg(current_date);\n                }\n                setUeProgramEnabled(enabled);\n            } else {\n                m_model->setJoinUeProgram(isUeProgramEnabled());\n                qInfo() << QString(\"On %1, users cancel the switch to join the user experience program!\").arg(current_date);\n            }\n            Q_EMIT requestUeProgram(false);\n            m_process->deleteLater();\n            m_process = nullptr;\n        });\n    } else {\n        if (isUeProgramEnabled() != enabled) {\n            setUeProgramEnabled(enabled);\n            qDebug() << QString(\"On %1, users close the switch to join the user experience program!\").arg(current_date);\n        }\n        if (m_model->joinUeProgram() != enabled) {\n            m_model->setJoinUeProgram(enabled);\n            qDebug() << QString(\"On %1, users cancel the switch to join the user experience program!\").arg(current_date);\n        }\n    }\n}\n\nvoid SystemInfoWork::showActivatorDialog()\n{\n    m_systemInfoDBusProxy->Show();\n}\n\nvoid SystemInfoWork::showDetail()\n{\n    m_model->setShowDetail(true);\n}\n\nvoid SystemInfoWork::onSetHostname(const QString &hostname)\n{\n    m_systemInfoDBusProxy->setStaticHostname(hostname, this, SLOT(onSetHostnameFinish()), SLOT(onSetHostnameFinish()));\n}\n\nvoid SystemInfoWork::onSetHostnameFinish()\n{\n    m_model->setHostName(m_systemInfoDBusProxy->staticHostname());\n}\n\nvoid SystemInfoWork::onTimezoneChanged(const QString)\n{\n    m_model->setSystemInstallationDate(getSystemInstallDate(m_systemInfoDBusProxy->shortDateFormat(), m_systemInfoDBusProxy->timezone()));\n}\n\nvoid SystemInfoWork::onShortDateFormatChanged(const int)\n{\n    m_model->setSystemInstallationDate(getSystemInstallDate(m_systemInfoDBusProxy->shortDateFormat(), m_systemInfoDBusProxy->timezone()));\n}\n\nvoid SystemInfoWork::onThemeTypeChanged()\n{\n    updateUserExperienceProgramText();\n}\n\nbool SystemInfoWork::isUeProgramEnabled()\n{\n    if (!m_dBusUeProgram || !m_dBusUeProgram->isValid())\n        return false;\n\n    if (m_dBusUeProgram->service() == USER_EXPERIENCE_SERVICE) {\n        QDBusMessage reply = m_dBusUeProgram->call(\"IsEnabled\");\n        QList<QVariant> outArgs = reply.arguments();\n        if (QDBusMessage::ReplyMessage == reply.type() && !outArgs.isEmpty()) {\n            return outArgs.first().toBool();\n        }\n    }\n\n    return m_dBusUeProgram->property(\"Enabled\").toBool();\n}\n\nvoid SystemInfoWork::setUeProgramEnabled(bool enabled)\n{\n\n    if (!m_dBusUeProgram || !m_dBusUeProgram->isValid())\n        return;\n\n    if (m_dBusUeProgram->service() == USER_EXPERIENCE_SERVICE) {\n        m_dBusUeProgram->asyncCall(\"Enable\", enabled);\n        return;\n    }\n\n    m_dBusUeProgram->asyncCall(\"Enable\", enabled);\n}\n\nvoid SystemInfoWork::onLicenseAuthorizationProperty()\n{\n    if (DSysInfo::isDeepin()) {\n        ActiveState newLicenseState = static_cast<ActiveState>(m_systemInfoDBusProxy->authorizationState());\n        m_model->setLicenseState(newLicenseState);\n    }\n\n    // 从授权服务器获取授权类型\n    QString authorizationProperty = getLicenseAuthorizationPropertyString();\n    QString version = \"\";\n    if (authorizationProperty != \"\") {\n        version = QString(\"%1 (%2) (%3)\").arg(DSysInfo::uosEditionName())\n                .arg(authorizationProperty)\n                .arg(DSysInfo::minorVersion());\n    } else {\n        version = QString(\"%1 (%2)\").arg(DSysInfo::uosEditionName())\n                .arg(DSysInfo::minorVersion());\n    }\n\n    if (m_model) {\n        m_model->setVersion(version);\n    }\n}\n\nQString SystemInfoWork::getLicenseAuthorizationPropertyString()\n{\n    QDBusInterface licenseInfo(\"com.deepin.license\",\n                               \"/com/deepin/license/Info\",\n                               \"com.deepin.license.Info\",\n                               QDBusConnection::systemBus());\n\n    if (!licenseInfo.isValid()) {\n        qWarning() << \"Servie: com.deepin.license error: \" << licenseInfo.lastError().name();\n        return \"\";\n    }\n\n    return licenseInfo.property(\"AuthorizationPropertyString\").toString();\n}\n\n}\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/systeminfowork.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef SYSTEMINFOWORK_H\n#define SYSTEMINFOWORK_H\n\n#include <qprocess.h>\n\n#include <QDBusInterface>\n#include <QDBusMessage>\n#include <QObject>\n\n\nclass QApplication;\nclass SystemInfoDBusProxy;\nnamespace DCC_NAMESPACE{\n\nclass SystemInfoModel;\nclass SystemInfoWork : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit SystemInfoWork(SystemInfoModel* model, QObject* parent = nullptr);\n    virtual ~SystemInfoWork();\n\n    void activate();\n    void deactivate();\n\n    //void loadGrubSettings();\n    QString getEndUserAgreementText();\n\n    void initGnuLicenseData();\n    void initUserLicenseData();\n    void initSystemCopyright();\n    void updateFrequency(bool state);\n    QString getSystemInstallDate(int shortDateFormat, QString timezone);\n\n    Q_INVOKABLE void setUeProgram(bool enabled);\n    Q_INVOKABLE void showActivatorDialog();\n    Q_INVOKABLE void showDetail();\n    Q_INVOKABLE void copyTextToClipboard(const QString &text); // Add new invokable method\n    Q_INVOKABLE void playSystemSound(int soundType);\n\n    bool isUeProgramEnabled();\n    void setUeProgramEnabled(bool enabled);\n    QString getLicenseAuthorizationPropertyString();\n\nQ_SIGNALS:\n    void requestSetAutoHideDCC(const bool visible) const;\n    void requestUeProgram(bool visible) const;\n\npublic Q_SLOTS:\n    void onSetHostname(const QString &hostname);\n    void onSetHostnameFinish();\n    void onTimezoneChanged(const QString timezone);\n    void onShortDateFormatChanged(const int shortDateFormate);\n    void onLicenseAuthorizationProperty();\n    void onThemeTypeChanged();\n\nprivate:\n    void getLicenseState();\n    void updateUserExperienceProgramText();\n\nprivate:\n    SystemInfoModel *m_model;\n    SystemInfoDBusProxy *m_systemInfoDBusProxy;\n    QProcess *m_process = nullptr;\n    QString m_content;\n    QString m_title;\n    QDBusInterface *m_dBusUeProgram; // for user experience program\n\n};\n\n}\n#endif // SYSTEMINFOWORK_H\n"
  },
  {
    "path": "src/plugin-systeminfo/operation/utils.h",
    "content": "// SPDX-FileCopyrightText: 2018 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef UTILS_H\n#define UTILS_H\n\n#include <dsysinfo.h>\n\n#include <QFile>\n#include <QLocale>\n#include <QSettings>\n\n#define IS_SERVER_SYSTEM (DSysInfo::UosServer == DSysInfo::uosType())                    // 是否是服务器版\n#define IS_COMMUNITY_SYSTEM (DSysInfo::UosCommunity == DSysInfo::uosEditionType())       // 是否是社区版\n#define IS_PROFESSIONAL_SYSTEM (DSysInfo::UosProfessional == DSysInfo::uosEditionType()) // 是否是专业版\n#define IS_HOME_SYSTEM (DSysInfo::UosHome == DSysInfo::uosEditionType())                 // 是否是个人版\n#define IS_EDUCATION_SYSTEM (DSysInfo::UosEducation == DSysInfo::uosEditionType())       // 是否是教育版\n#define IS_DEEPIN_DESKTOP (DSysInfo::DeepinDesktop == DSysInfo::deepinType())            // 是否是Deepin桌面\n\ninline const static QString serverEnduserAgreement_new =\n        \"/usr/share/protocol/enduser-agreement/End-User-License-Agreement-Server-CN-%1.%2\";\ninline const static QString serverEnduserAgreement_old =\n        \"/usr/share/deepin-deepinid-client/privacy/End-User-License-Agreement-Server/\"\n        \"End-User-License-Agreement-Server-CN-%1.%2\";\ninline const static QString eulerServerEnduserAgreement_new =\n        \"/usr/share/protocol/enduser-agreement/End-User-License-Agreement-Server-Euler-%1.%2\";\ninline const static QString homeEnduserAgreement_new =\n        \"/usr/share/protocol/enduser-agreement/End-User-License-Agreement-Home-CN-%1.%2\";\ninline const static QString homeEnduserAgreement_old =\n        \"/usr/share/deepin-deepinid-client/privacy/End-User-License-Agreement-Home/\"\n        \"End-User-License-Agreement-Home-CN-%1.%2\";\ninline const static QString militaryEnduserAgreement =\n        \"/usr/share/protocol/enduser-agreement/End-User-License-Agreement-Military-%1.%2\";\ninline const static QString professionalEnduserAgreement_new =\n        \"/usr/share/protocol/enduser-agreement/End-User-License-Agreement-Professional-CN-%1.%2\";\ninline const static QString professionalEnduserAgreement_old =\n        \"/usr/share/deepin-deepinid-client/privacy/End-User-License-Agreement-Professional/\"\n        \"End-User-License-Agreement-Professional-CN-%1.%2\";\ninline const static QString educationEnduserAgreement =\n        \"/usr/share/protocol/enduser-agreement/End-User-License-Agreement-Education-CN-%1.%2\";\ninline const static QString oldAgreement =\n        \"/usr/share/deepin-deepinid-client/privacy/End-User-License-Agreement-%1.%2\";\ninline static const QStringList DCC_CONFIG_FILES{\n    \"/etc/deepin/dde-control-center.conf\", \"/usr/share/dde-control-center/dde-control-center.conf\"\n};\n\ninline static const QMap<QString, QString> SYSTEM_LOCAL_MAP{\n    { \"zh_CN\", \"zh_CN\" },\n    { \"zh_HK\", \"zh_HK\" },\n    { \"zh_TW\", \"zh_TW\" },\n};\n\ninline static const QStringList SYSTEM_LOCAL_LIST{\n    \"zh_CN\",\n    \"zh_HK\",\n    \"zh_TW\",\n    \"ug_CN\", // 维语\n    \"bo_CN\"  // 藏语\n};\n\ninline bool isFileExist(const QString &path)\n{\n    QFile file(path);\n    return file.exists();\n}\n\nnamespace DCC_LICENSE {\nusing Dtk::Core::DSysInfo;\n\nstatic const QString getLicensePath(const QString &filePath, const QString &type)\n{\n    const QString &locale{ QLocale::system().name() };\n    QString lang = SYSTEM_LOCAL_LIST.contains(locale) ? locale : \"en_US\";\n\n    QString path = QString(filePath).arg(lang).arg(type);\n    if (isFileExist(path))\n        return path;\n    else\n        return QString(filePath).arg(\"en_US\").arg(type);\n}\n\ninline const QString getLicenseText(const QString &filePath, const QString &type)\n{\n    QFile license(getLicensePath(filePath, type));\n    if (!license.open(QIODevice::ReadOnly))\n        return QString();\n\n    const QByteArray buf = license.readAll();\n    license.close();\n\n    return buf;\n}\n\n[[maybe_unused]] inline const QString getDevelopModeLicense(const QString &filePath,\n                                                            const QString &type)\n{\n    const QString &locale{ QLocale::system().name() };\n    QString lang;\n    if (SYSTEM_LOCAL_MAP.keys().contains(locale)) {\n        lang = { SYSTEM_LOCAL_MAP.value(QLocale::system().name(), \"en_US\") };\n    }\n\n    if (lang.isEmpty()) {\n        lang = { SYSTEM_LOCAL_MAP.value(QLocale::system().name(), \"en_US\") };\n    }\n\n    QString path = QString(filePath).arg(lang).arg(type);\n    QFile license(path);\n    if (!license.open(QIODevice::ReadOnly))\n        return QString();\n\n    const QByteArray buf = license.readAll();\n    license.close();\n\n    return buf;\n}\n\n[[maybe_unused]] inline void getPrivacyFile(QString &zhCNContent, QString &enUSContent)\n{\n    // 使用新的协议文档路径\n    const QString newCNContent = \"/usr/share/protocol/privacy-policy/Privacy-Policy-CN-zh_CN.md\";\n    const QString newENContent = \"/usr/share/protocol/privacy-policy/Privacy-Policy-CN-en_US.md\";\n\n    const QString oldCNContent = \"/usr/share/deepin-deepinid-client/privacy/deepinid-CN-zh_CN.md\";\n    const QString oldENContent = \"/usr/share/deepin-deepinid-client/privacy/deepinid-CN-en_US.md\";\n\n    QFile privacyzhCNFile(newCNContent);\n    zhCNContent = privacyzhCNFile.exists() ? newCNContent : oldENContent;\n    QFile privacyenUSFile(newENContent);\n    enUSContent = privacyzhCNFile.exists() ? newENContent : oldENContent;\n    // 目前社区版的协议只放在这个路径下,后续如果修改了,再作适配\n    if (DSysInfo::isCommunityEdition()) {\n        zhCNContent = \"/usr/share/deepin-deepinid-client/privacy/Privacy-Policy-Community/\"\n                      \"Privacy-Policy-CN-zh_CN.md\";\n        enUSContent = \"/usr/share/deepin-deepinid-client/privacy/Privacy-Policy-Community/\"\n                      \"Privacy-Policy-CN-en_US.md\";\n    }\n}\n\n[[maybe_unused]] inline QString getUserExpContent()\n{\n    QString userExpContent = getLicensePath(\"/usr/share/protocol/userexperience-agreement/\"\n                                            \"User-Experience-Program-License-Agreement-CN-%1.%2\",\n                                            \"md\");\n    if (DSysInfo::isCommunityEdition()) {\n        userExpContent = getLicensePath(\"/usr/share/deepin-deepinid-client/privacy/\"\n                                        \"User-Experience-Program-License-Agreement-Community/\"\n                                        \"User-Experience-Program-License-Agreement-CN-%1.%2\",\n                                        \"md\");\n        return userExpContent;\n    }\n    QFile newfile(userExpContent);\n    if (false == newfile.exists()) {\n        userExpContent = getLicensePath(\"/usr/share/deepin-deepinid-client/privacy/\"\n                                        \"User-Experience-Program-License-Agreement/\"\n                                        \"User-Experience-Program-License-Agreement-CN-%1.%2\",\n                                        \"md\");\n        QFile file(userExpContent);\n        if (false == file.exists()) {\n            userExpContent = getLicensePath(\"/usr/share/deepin-deepinid-client/privacy/\"\n                                            \"User-Experience-Program-License-Agreement-%1.%2\",\n                                            \"md\");\n        }\n    }\n    return userExpContent;\n}\n\nstruct LicenseSearchInfo\n{\n    bool exist;\n    QString path;\n};\n\ninline LicenseSearchInfo isEndUserAgreementExist()\n{\n    auto pathIfExists = [](const QString &pattern, const QString &type = \"\") -> QString {\n        if (type.isEmpty()) {\n            const QString mdPath = getLicensePath(pattern, \"md\");\n            if (QFile::exists(mdPath))\n                return mdPath;\n            const QString txtPath = getLicensePath(pattern, \"txt\");\n            return QFile::exists(txtPath) ? txtPath : QString();\n        }\n        const QString p = getLicensePath(pattern, type);\n        return QFile::exists(p) ? p : QString();\n    };\n\n    QString candidate;\n\n    if (DSysInfo::uosType() == DSysInfo::UosType::UosServer) {\n        candidate = pathIfExists(serverEnduserAgreement_new, \"txt\");\n        if (candidate.isEmpty())\n            candidate = pathIfExists(serverEnduserAgreement_old, \"txt\");\n    } else if (DSysInfo::uosEditionType() == DSysInfo::UosEdition::UosHome) {\n        candidate = pathIfExists(homeEnduserAgreement_new, \"txt\");\n        if (candidate.isEmpty())\n            candidate = pathIfExists(homeEnduserAgreement_old, \"txt\");\n    } else if (DSysInfo::isCommunityEdition()) {\n        candidate = pathIfExists(\n            \"/usr/share/deepin-deepinid-client/privacy/End-User-License-Agreement-Community/\"\n            \"End-User-License-Agreement-CN-%1.%2\",\n            \"txt\");\n    } else if (DSysInfo::uosEditionType() == DSysInfo::UosEdition::UosEducation) {\n        candidate = pathIfExists(educationEnduserAgreement, \"txt\");\n    } else if (DSysInfo::uosEditionType() == DSysInfo::UosEdition::UosMilitary) {\n        candidate = pathIfExists(militaryEnduserAgreement, \"txt\");\n    } else {\n        candidate = pathIfExists(professionalEnduserAgreement_new);\n        if (candidate.isEmpty())\n            candidate = pathIfExists(professionalEnduserAgreement_old, \"txt\");\n    }\n\n    if (candidate.isEmpty())\n        candidate = pathIfExists(oldAgreement, \"txt\");\n\n    if (!candidate.isEmpty())\n        return { true, candidate };\n\n    return { false, QString() };\n}\n\ninline QString getEndUserAgreement(const QString &licensePath)\n{\n    QFile license(licensePath);\n    if (!license.open(QIODevice::ReadOnly))\n        return QString();\n\n    const QByteArray buf = license.readAll();\n    license.close();\n\n    return buf;\n}\n\ninline QString getEulerEndUserAgreement()\n{\n    const QString bodypath_new = getLicensePath(eulerServerEnduserAgreement_new, \"txt\");\n    if (QFile::exists(bodypath_new)) {\n        return getLicenseText(eulerServerEnduserAgreement_new, \"txt\");\n    } else {\n        return getLicenseText(\n                \"/usr/share/deepin-deepinid-client/privacy/End-User-License-Agreement-%1.%2\",\n                \"txt\");\n    }\n}\n\ninline QPair<QString, QString> loadLicenses()\n{\n    const QString title = getLicenseText(\":/systeminfo/gpl/gpl-3.0-%1-%2.txt\", \"title\");\n    const QString body = getLicenseText(\":/systeminfo/gpl/gpl-3.0-%1-%2.txt\", \"body\");\n    return QPair<QString, QString>(title, body);\n}\n} // namespace DCC_LICENSE\n\ntemplate<typename T>\nT valueByQSettings(const QStringList &configFiles,\n                   const QString &group,\n                   const QString &key,\n                   const QVariant &failback)\n{\n    for (const QString &path : configFiles) {\n        QSettings settings(path, QSettings::IniFormat);\n        if (!group.isEmpty()) {\n            settings.beginGroup(group);\n        }\n\n        const QVariant &v = settings.value(key);\n        if (v.isValid()) {\n            T t = v.value<T>();\n            return t;\n        }\n    }\n\n    return failback.value<T>();\n}\n\n#endif // UTILS_H\n"
  },
  {
    "path": "src/plugin-systeminfo/qml/NativeInfoPage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n// import org.deepin.dtk 1.0 as D\nimport QtQuick 2.15\nimport QtQuick.Controls 2.15\nimport QtQuick.Controls.Material 2.15\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nimport org.deepin.dtk 1.0\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk.style 1.0 as DS\nDccObject {\n    id: root11\n    DccObject {\n        name: \"systemLogo\"\n        weight: 10\n        parentName: \"systemInfo\"\n        pageType: DccObject.Item\n        backgroundType: DccObject.Normal\n        visible: !dccData.systemInfoMode().showDetail\n        page: RowLayout {\n            Image {\n                source: \"file://\" + DTK.deepinDistributionOrgLogo\n            }\n\n            ColumnLayout {\n                Label {\n                    font.bold: true\n                    font.pixelSize: 22\n                    horizontalAlignment: Text.AlignLeft\n                    text: qsTr(\"UOS\")\n                }\n\n                Label {\n                    Layout.alignment: Qt.AlignHCenter\n                    text: dccData.systemInfoMode().systemCopyright\n                    horizontalAlignment: Text.AlignHCenter\n                    wrapMode: Text.Wrap\n                    Layout.preferredWidth: parent ? parent.width : implicitWidth\n                }\n            }\n        }\n    }\n\n    DccObject {\n        name: \"systemDetailLogo\"\n        weight: 20\n        parentName: \"systemInfo\"\n        pageType: DccObject.Item\n        backgroundType: DccObject.Normal\n        visible: dccData.systemInfoMode().showDetail\n        page: ColumnLayout{\n            Image {\n                Layout.topMargin: 25\n                Layout.alignment: Qt.AlignHCenter\n                source: \"file://\" + dccData.systemInfoMode().logoPath\n            }\n            Label {\n                Layout.alignment: Qt.AlignHCenter\n                text: dccData.systemInfoMode().systemCopyright\n                Layout.bottomMargin: 25\n                horizontalAlignment: Text.AlignHCenter\n                wrapMode: Text.Wrap\n                Layout.preferredWidth: parent ? parent.width : implicitWidth\n            }\n        }\n    }\n\n    DccObject {\n        name: \"nativeInfoGrp\"\n        parentName: \"systemInfo\"\n        weight: 40\n        pageType: DccObject.Item\n        page: ColumnLayout {\n            DccGroupView {\n            }\n        }\n        DccObject {\n            name: \"productName\"\n            weight: 10\n            parentName: \"nativeInfoGrp\"\n            displayName: qsTr(\"Computer name\") + \":\"\n            backgroundType: DccObject.Normal\n            visible: dccData.systemInfoMode().showDetail\n            pageType: DccObject.Editor\n            page: RowLayout {\n\n                Label {\n                    id: hostNameLabel\n                    Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n                    text: dccData.systemInfoMode().hostName\n                    ToolTip {\n                        text: hostNameLabel.text\n                        delay: 500\n                        visible: hostNameArea.containsMouse\n                    }\n\n                    MouseArea {\n                        id: hostNameArea\n                        anchors.fill: parent\n                        hoverEnabled: true\n                    }\n                }\n\n                ActionButton {\n                    id: editBtn\n                    icon.name: \"dcc_systemInfo_edit\"\n                    icon.width: 16\n                    icon.height: 16\n                    implicitWidth: 30\n                    implicitHeight: 30\n                    flat: !hovered\n                    Layout.alignment: Qt.AlignRight | Qt.AlignVCenter\n\n                    palette.windowText: ColorSelector.textColor\n\n                    background: Rectangle {\n                        property Palette pressedColor: Palette {\n                            normal: Qt.rgba(0, 0, 0, 0.2)\n                            normalDark: Qt.rgba(0, 0, 0, 0.15)\n                        }\n                        property Palette hoveredColor: Palette {\n                            normal: Qt.rgba(0, 0, 0, 0.1)\n                            normalDark: Qt.rgba(1, 1, 1, 0.1)\n                        }\n                        radius: DS.Style.control.radius\n                        color: parent.pressed ? ColorSelector.pressedColor : (parent.hovered ? ColorSelector.hoveredColor : \"transparent\")\n\n                        border {\n                            color: parent.palette.highlight\n                            width: parent.visualFocus ? DS.Style.control.focusBorderWidth : 0\n                        }\n                    }\n                    \n                    onClicked: {\n                        editBtn.visible = false\n                        hostNameLabel.visible = false\n                        hostNameEdit.visible = true\n                        hostNameEdit.text = dccData.systemInfoMode().hostName\n                        hostNameEdit.selectAll()\n                        hostNameEdit.forceActiveFocus()\n                    }\n                }\n\n                LineEdit {\n                    id: hostNameEdit\n                    horizontalAlignment: TextInput.AlignLeft\n                    text: dccData.systemInfoMode().hostName\n                    visible: false\n                    showAlert: false\n                    alertDuration: 3000\n                    \n                    MouseArea {\n                        anchors.fill: parent\n                        acceptedButtons: Qt.RightButton\n                        onClicked: function(mouse) {\n                            mouse.accepted = true\n                        }\n                    }\n                    \n                    onVisibleChanged: {\n                        if (!visible && showAlert) {\n                            showAlert = false\n                        }\n                    }\n\n                    Connections {\n                        target: DccApp\n                        function onActiveObjectChanged(object) {\n                            if (hostNameEdit.showAlert) {\n                                hostNameEdit.showAlert = false\n                            }\n                        }\n                    }\n\n                    onTextChanged: {\n                        if (showAlert)\n                            showAlert = false\n                            \n                        if (text.length > 63) {\n                            var cursorPos = cursorPosition\n                            text = text.slice(0, 63)\n                            cursorPosition = Math.min(cursorPos, text.length)\n                            showAlert = true\n                            alertText = qsTr(\"1~63 characters please\")\n                            dccData.systemInfoWork().playSystemSound(14)\n                            return\n                        }\n                        \n                        if (!/^[A-Za-z0-9-]{0,63}$/.test(text)) {\n                            var cursorPos = cursorPosition\n                            var filteredText = text.replace(/[^A-Za-z0-9-]/g, \"\")\n                            \n                            filteredText = filteredText.slice(0, 63)\n                            \n                            if (filteredText !== text) {\n                                text = filteredText\n                                cursorPosition = Math.min(cursorPos, text.length)\n                                dccData.systemInfoWork().playSystemSound(14)\n                            }\n                        }\n                    }\n                    \n                    onEditingFinished: {\n                        editBtn.forceActiveFocus()\n                        if (hostNameEdit.text.length === 0) {\n                            editBtn.visible = true\n                            hostNameLabel.visible = true\n                            hostNameEdit.visible = false\n                            hostNameEdit.showAlert = false\n                            return\n                        }\n\n                        if ((hostNameEdit.text.indexOf('-') === 0 || hostNameEdit.text.lastIndexOf('-') === hostNameEdit.text.length - 1) && hostNameEdit.text.length <= 63) {\n\n                            hostNameEdit.showAlert = true\n                            hostNameEdit.alertText = qsTr(\"It cannot start or end with dashes\")\n                            dccData.systemInfoWork().playSystemSound(14)\n                            return\n                        }\n\n                        editBtn.visible = true\n                        hostNameLabel.visible = true\n                        hostNameEdit.visible = false\n                        hostNameEdit.showAlert = false\n                        dccData.systemInfoWork().onSetHostname(hostNameEdit.text)\n                    }\n                    \n                    Keys.onPressed: function(event) {\n                        if (event.key === Qt.Key_Return) {\n                            hostNameEdit.forceActiveFocus(false);\n                        }\n                        else if ((event.modifiers & Qt.ControlModifier) && \n                                (event.key === Qt.Key_C || event.key === Qt.Key_V || event.key === Qt.Key_X)) {\n                            event.accepted = true\n                        }\n                    }\n                }\n            }\n        }\n        DccObject {\n            name: \"hostName\"\n            weight: 20\n            parentName: \"nativeInfoGrp\"\n            displayName: qsTr(\"OS Name\") + \":\"\n            backgroundType: DccObject.Normal\n            pageType: DccObject.Editor\n            page: Label {\n                Layout.alignment: Qt.AlignRight | Qt.AlignTop\n                text: dccData.systemInfoMode().productName\n            }\n        }\n        DccObject {\n            name: \"version\"\n            weight: 30\n            parentName: \"nativeInfoGrp\"\n            pageType: DccObject.Editor\n            displayName: qsTr(\"Version\") + \":\"\n            page: Label {\n                horizontalAlignment: Text.AlignLeft\n                text: dccData.systemInfoMode().versionNumber\n            }\n        }\n        DccObject {\n            name: \"edition\"\n            weight: 40\n            parentName: \"nativeInfoGrp\"\n            pageType: DccObject.Editor\n            displayName: qsTr(\"Edition\") + \":\"\n            page: Label {\n                horizontalAlignment: Text.AlignLeft\n                text: dccData.systemInfoMode().version\n            }\n        }\n        DccObject {\n            name: \"type\"\n            weight: 50\n            parentName: \"nativeInfoGrp\"\n            pageType: DccObject.Editor\n            displayName: qsTr(\"Type\") + \":\"\n            page: Label {\n                horizontalAlignment: Text.AlignLeft\n                text: dccData.systemInfoMode().type + qsTr(\"bit\")\n            }\n        }\n\n        DccObject {\n            name: \"authorization\"\n            weight: 60\n            parentName: \"nativeInfoGrp\"\n            pageType: DccObject.Editor\n            displayName: qsTr(\"Authorization\") + \":\"\n            visible: dccData.systemInfoMode().showAuthorization()\n            page: RowLayout {\n                spacing: 8\n                Label {\n                    id: jihuo\n                    color: dccData.systemInfoMode().licenseStatusColor\n                    horizontalAlignment: Text.AlignLeft\n                    text: dccData.systemInfoMode().licenseStatusText\n                }\n\n                Button {\n                    id: licenseActionBtn\n                    text: dccData.systemInfoMode().licenseActionText\n                    ColorSelector.family: Palette.CommonColor\n                    implicitHeight: 30\n                    implicitWidth: licenseActionBtnMetrics.width + 2 * (DS.Style.button.hPadding + DS.Style.control.borderWidth)\n                    flat: false\n                    visible: dccData.systemInfoMode().showDetail\n                    onClicked: {\n                        dccData.systemInfoWork().showActivatorDialog()\n                    }\n                    ToolTip.visible: licenseActionBtn.hovered && licenseActionBtnMetrics.width > licenseActionBtn.availableWidth\n                    ToolTip.text: licenseActionBtn.text\n                    ToolTip.delay: 500\n                    TextMetrics {\n                        id: licenseActionBtnMetrics\n                        font: licenseActionBtn.font\n                        text: licenseActionBtn.text\n                    }\n                }\n            }\n        }\n\n        DccObject {\n            name: \"systemInstallationTime\"\n            weight: 70\n            visible: dccData.systemInfoMode().showAuthorization()\n            parentName: \"nativeInfoGrp\"\n            pageType: DccObject.Editor\n            displayName: qsTr(\"System installation time\") + \":\"\n            page: Label {\n                horizontalAlignment: Text.AlignLeft\n                text: dccData.systemInfoMode().systemInstallationDate\n            }\n        }\n\n        DccObject {\n            name: \"kernel\"\n            weight: 80\n            parentName: \"nativeInfoGrp\"\n            pageType: DccObject.Editor\n            displayName: qsTr(\"Kernel\") + \":\"\n            page: Label {\n                horizontalAlignment: Text.AlignLeft\n                text: dccData.systemInfoMode().kernel\n            }\n        }\n\n        DccObject {\n            name: \"graphicsPlatform\"\n            weight: 90\n            parentName: \"nativeInfoGrp\"\n            pageType: DccObject.Editor\n            visible: dccData.systemInfoMode().showGraphicsPlatform()\n            displayName: qsTr(\"Graphics Platform\") + \":\"\n            page: Label {\n                horizontalAlignment: Text.AlignLeft\n                text: dccData.systemInfoMode().graphicsPlatform\n            }\n        }\n\n        DccObject {\n            id: processorObj\n            name: \"processor\"\n            weight: 100\n            parentName: \"nativeInfoGrp\"\n            pageType: DccObject.Editor\n            displayName: qsTr(\"Processor\") + \":\"\n\n            page: Label {\n                id: processorLabel\n                horizontalAlignment: Text.AlignRight\n                wrapMode: Text.Wrap\n                width: processorObj.parentItem \n                    ? Math.max(0, processorObj.parentItem.width - displayNameMetrics.width - processorObj.parentItem.leftPadding - 30) \n                    : implicitWidth\n                \n                TextMetrics {\n                    id: displayNameMetrics\n                    text: processorObj.displayName\n                    font: processorLabel.font\n                }\n                \n                text: dccData.systemInfoMode().processor\n            }\n        }\n\n        DccObject {\n            name: \"memory\"\n            weight: 100\n            parentName: \"nativeInfoGrp\"\n            pageType: DccObject.Editor\n            displayName: qsTr(\"Memory\") + \":\"\n            page: Label {\n                horizontalAlignment: Text.AlignLeft\n                text: dccData.systemInfoMode().memory\n            }\n        }\n    }\n\n    DccObject {\n        name: \"detailBtn\"\n        weight: 60\n        parentName: \"systemInfo\"\n        pageType: DccObject.Item\n        visible: !dccData.systemInfoMode().showDetail\n        page: RowLayout {\n\n            Button {\n                Layout.topMargin: 10\n                implicitWidth: 250\n                implicitHeight: 30\n                Layout.alignment: Qt.AlignHCenter\n                text: \"显示详细信息\"\n                font: DTK.fontManager.t6\n                opacity: 0.7\n                onClicked: {\n                    dccData.systemInfoWork().showDetail()\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-systeminfo/qml/PrivacyPolicyPage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n// import org.deepin.dtk 1.0 as D\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nimport org.deepin.dtk 1.0\nimport org.deepin.dcc 1.0\n//import org.deepin.dcc.systemInfo 1.0\n\nDccObject {\n\n    DccObject {\n        name: \"title\"\n        parentName: \"system/privacyPolicy\"\n        pageType: DccObject.Item\n        weight: 20\n        page: Label {\n            Layout.alignment: Qt.AlignHCenter\n            horizontalAlignment: Text.AlignHCenter\n            font: DTK.fontManager.t4\n            text: qsTr(\"Privacy Policy\")\n        }\n    }\n    DccObject {\n        name: \"content\"\n        parentName: \"system/privacyPolicy\"\n        pageType: DccObject.Item\n        weight: 30\n        page:\n            Label {\n                id: policyLabel\n                textFormat: Text.RichText\n                font: DTK.fontManager.t6\n                horizontalAlignment: Text.AlignLeft\n                text: dccData.systemInfoMode().privacyPolicy\n                wrapMode: Text.WordWrap\n                opacity: 0.7\n\n                property string currentLinkUrl: \"\"\n\n                // 超链接点击事件\n                onLinkActivated: function(url) {\n                    console.log(\"点击的链接是: \" + url)\n                    Qt.openUrlExternally(url) // 使用默认浏览器打开链接\n                }\n\n                MouseArea {\n                    id: labelMouseArea\n                    anchors.fill: parent\n                    acceptedButtons: Qt.LeftButton | Qt.RightButton\n                    hoverEnabled: true\n\n                    cursorShape: policyLabel.linkAt(mouseX, mouseY) ? Qt.PointingHandCursor : Qt.ArrowCursor // Change cursor over links\n\n                    onPressed: (mouse)=> {\n                        if (mouse.button === Qt.RightButton) {\n                            var link = policyLabel.linkAt(mouse.x, mouse.y)\n                            if (link) {\n                                console.log(\"Right-clicked on link: \" + link)\n                                policyLabel.currentLinkUrl = link\n                                contextMenu.popup()\n                            }\n                            mouse.accepted = true\n                        } else {\n                            mouse.accepted = false\n                        }\n                    }\n                }\n\n                Menu {\n                    id: contextMenu\n                    MenuItem {\n                        id: copyLinkMenuItem\n                        text: qsTr(\"Copy Link Address\") + \"(L)\"\n                        onTriggered: {\n                            console.log(\"Copying link: \" + policyLabel.currentLinkUrl)\n                            dccData.systemInfoWork().copyTextToClipboard(policyLabel.currentLinkUrl)\n                        }\n                    }\n                    Shortcut {\n                         sequence: \"L\"\n                         onActivated: {\n                             console.log(\"Shortcut L activated to select copy link\")\n                             if (contextMenu.visible) {\n                                 contextMenu.currentIndex = 0\n                                 contextMenu.focus = true\n                             }\n                         }\n                     }\n                }\n            }\n    }\n}\n"
  },
  {
    "path": "src/plugin-systeminfo/qml/SystemInfo.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.0\nimport QtQuick.Controls 2.0\n\nimport org.deepin.dtk 1.0 as D\n\nimport org.deepin.dcc 1.0\n\nDccTitleObject {\n    id: root\n    name: \"auxiliaryInfo\"\n    parentName: \"system\"\n    displayName: qsTr(\"Auxiliary Information\")\n    weight: 1000\n    onParentItemChanged: {\n        if (parentItem) {\n            parentItem.topPadding = 10\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-systeminfo/qml/SystemInfoMain.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n// import org.deepin.dtk 1.0 as D\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\n\nimport org.deepin.dcc 1.0\nimport QtQuick.Layouts 1.15\n\nDccObject {\n    DccObject {\n        name: \"systemInfo\"\n        parentName: \"system\"\n        displayName: qsTr(\"About This PC\")\n        description: qsTr(\"System version, device information\")\n        icon: \"about\"\n        weight: 1010\n        NativeInfoPage{}\n    }\n    DccObject {\n        name: \"versionProtocol\"\n        parentName: \"system\"\n        displayName: qsTr(\"Open Source Software Notice\")\n        description: qsTr(\"View the notice of open source software\")\n        icon: \"software_declaration\"\n        weight: 1020\n        VersionProtocolPage{}\n    }\n    DccObject {\n        name: \"userExperienceProgram\"\n        parentName: \"system\"\n        displayName: qsTr(\"User Experience Program\")\n        description: qsTr(\"Join the user experience program to help improve the product\")\n        icon: \"user_experience_plan\"\n        weight: 1030\n        visible: dccData.systemInfoMode().showUserExperienceProgram()\n        UserExperienceProgramPage{}\n    }\n    DccObject {\n        name: \"userLicense\"\n        parentName: \"system\"\n        displayName: qsTr(\"End User License Agreement\")\n        description: qsTr(\"View the end  user license agreement\")\n        icon: \"user_license_agreement\"\n        visible: true\n        weight: 1040\n        UserLicensePage{}\n    }\n    DccObject {\n        name: \"privacyPolicy\"\n        parentName: \"system\"\n        displayName: qsTr(\"Privacy Policy\")\n        description: qsTr(\"View information about privacy policy\")\n        icon: \"privacy_policy\"\n        weight: 1050\n        PrivacyPolicyPage{}\n    }\n}\n"
  },
  {
    "path": "src/plugin-systeminfo/qml/UserExperienceProgramPage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n// import org.deepin.dtk 1.0 as D\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dcc 1.0\n\nDccObject {\n    name: \"userExperienceProgramGrp\"\n    parentName: \"system/userExperienceProgram\"\n    pageType: DccObject.Item\n    weight: 20\n    page: DccGroupView {}\n    DccObject {\n        name: \"userExperienceProgramSwitch\"\n        weight: 20\n        parentName: \"system/userExperienceProgram/userExperienceProgramGrp\"\n        displayName: qsTr(\"Join User Experience Program\")\n        pageType: DccObject.Editor\n        page: ColumnLayout {\n            D.Switch {\n                Layout.alignment: Qt.AlignRight | Qt.AlignTop\n                checked: dccData.systemInfoMode().joinUeProgram\n                onCheckedChanged: {\n                    console.log(\"userExperienceProgramSwitch clicked \")\n                    dccData.systemInfoWork().setUeProgram(checked)\n                }\n            }\n\n            Window {\n                id: modalDialog\n                visible: false\n                flags: Qt.Window\n                modality: Qt.ApplicationModal\n                color: \"transparent\"\n                D.DWindow.enabled: true\n                opacity: 0.0\n            }\n\n            Connections {\n                target: dccData\n                function onRequestUeProgram(visible) {\n\n                    if (visible) {\n                        modalDialog.show()\n                    } else {\n                        modalDialog.close()\n                    }\n                }\n            }\n\n        }\n    }\n    DccObject {\n        name: \"userExperienceProgramContent\"\n        weight: 30\n        parentName: \"system/userExperienceProgram/userExperienceProgramGrp\"\n        pageType: DccObject.Item\n        page: D.Label {\n            id: userExperienceLabel\n            leftPadding: 10\n            rightPadding: 10\n            topPadding: 10\n            bottomPadding: 10\n            font: D.DTK.fontManager.t6\n            horizontalAlignment: Text.AlignLeft\n            wrapMode: Text.WordWrap\n            textFormat: Text.RichText\n            width: parent ? parent.width : implicitWidth\n            text: dccData.systemInfoMode().userExperienceProgramText\n\n            property string currentLinkUrl: \"\"\n\n            // 超链接点击事件\n            onLinkActivated: function(url) {\n                console.log(\"点击的链接是: \" + url)\n                Qt.openUrlExternally(url) // 使用默认浏览器打开链接\n            }\n\n            MouseArea {\n                id: labelMouseArea\n                anchors.fill: parent\n                acceptedButtons: Qt.LeftButton | Qt.RightButton\n                hoverEnabled: true\n\n                cursorShape: userExperienceLabel.linkAt(mouseX, mouseY) ? Qt.PointingHandCursor : Qt.ArrowCursor\n\n                onPressed: (mouse)=> {\n                    if (mouse.button === Qt.RightButton) {\n                        var link = userExperienceLabel.linkAt(mouse.x, mouse.y)\n                        if (link) {\n                            userExperienceLabel.currentLinkUrl = link\n                            contextMenu.popup()\n                        }\n                        mouse.accepted = true\n                    } else {\n                        mouse.accepted = false\n                    }\n                }\n            }\n\n            Menu {\n                id: contextMenu\n                MenuItem {\n                    text: qsTr(\"Copy Link Address\") + \"(L)\" \n                    onTriggered: {\n                        dccData.systemInfoWork().copyTextToClipboard(userExperienceLabel.currentLinkUrl)\n                    }\n                }\n                Shortcut {\n                    sequence: \"L\"\n                    onActivated: {\n                        if (contextMenu.visible) {\n                            contextMenu.currentIndex = 0\n                            contextMenu.focus = true\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-systeminfo/qml/UserLicensePage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n// import org.deepin.dtk 1.0 as D\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nimport org.deepin.dtk 1.0\nimport org.deepin.dcc 1.0\n\n\nDccObject {\n    id: userLicensePage\n    name: \"content\"\n    parentName: \"system/userLicense\"\n    pageType: DccObject.Item\n    weight: 20\n    page: Label {\n        Layout.alignment: Qt.AlignHCenter\n        horizontalAlignment: Text.AlignLeft\n        font: DTK.fontManager.t6\n        text: dccData.systemInfoMode().userLicense\n        wrapMode: Text.WordWrap\n        textFormat: dccData.systemInfoMode().userLicenseFormat === Qt.MarkdownText ? Text.MarkdownText : Text.PlainText\n        onLinkActivated: (link) => Qt.openUrlExternally(link)\n\n        HoverHandler {\n            cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor\n        }\n    }\n}\n\n"
  },
  {
    "path": "src/plugin-systeminfo/qml/VersionProtocolPage.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n// import org.deepin.dtk 1.0 as D\nimport QtQuick 2.15\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nimport org.deepin.dtk 1.0\nimport org.deepin.dcc 1.0\n\nDccObject {\n    DccObject {\n        id: versionProtocolPage\n        name: \"title\"\n        parentName: \"system/versionProtocol\"\n        pageType: DccObject.Item\n        weight: 20\n        page: Label {\n                Layout.alignment: Qt.AlignHCenter\n                horizontalAlignment: Text.AlignHCenter\n                font: DTK.fontManager.t4\n                text: dccData.systemInfoMode().gnuLinceseTitle\n            }\n    }\n    DccObject {\n        id: versionProtocolPageContent\n        name: \"content\"\n        parentName: \"system/versionProtocol\"\n        pageType: DccObject.Item\n        weight: 30\n        page: Label {\n            Layout.alignment: Qt.AlignVCenter\n            font: DTK.fontManager.t6\n            horizontalAlignment: Text.AlignLeft\n            text: dccData.systemInfoMode().gnuLinceseContent\n            wrapMode: Text.WordWrap\n            opacity: 0.7\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-systeminfo/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-touchscreen/CMakeLists.txt",
    "content": "if (BUILD_PLUGIN)\n    set(touchscreen_Name touchscreen)\n    file(GLOB_RECURSE touchscreen_SRCS\n        \"operation/*.cpp\"\n        \"operation/qrc/touchscreen.qrc\"\n    )\n    file(GLOB_RECURSE touchscreen_qml_SRCS\n        \"qml/*.qml\"\n    )\n    # pkg_check_modules(QGSettings REQUIRED IMPORTED_TARGET gsettings-qt)\n    add_library(${touchscreen_Name} MODULE\n        ${touchscreen_SRCS}\n    )\n\n    set(touchscreen_Includes\n        src/plugin-touchscreen/operation\n    )\n    set(touchscreen_Libraries\n        ${DCC_FRAME_Library}\n        ${DTK_NS}::Gui\n        ${QT_NS}::DBus\n        ${QT_NS}::Qml\n    )\n    target_include_directories(${touchscreen_Name} PUBLIC\n        ${touchscreen_Includes}\n    )\n    target_link_libraries(${touchscreen_Name} PRIVATE\n        ${touchscreen_Libraries}\n    )\n    dcc_install_plugin(NAME ${touchscreen_Name} TARGET ${touchscreen_Name})\n    # dcc_handle_plugin_translation(NAME ${touchscreen_Name}  QML_FILES ${touchscreen_qml_SRCS} SOURCE_FILES ${touchscreen_SRCS})\nendif()\n"
  },
  {
    "path": "src/plugin-touchscreen/operation/monitordbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"monitordbusproxy.h\"\n\n#include <QMetaObject>\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusPendingReply>\n#include <QDBusMetaType>\n#include <QDebug>\n\nMonitorDBusProxy::MonitorDBusProxy(QString monitorPath, QObject *parent)\n    : QObject(parent)\n    , m_monitorUserPath(monitorPath)\n{\n    init();\n}\n\nvoid MonitorDBusProxy::init()\n{\n    m_dBusMonitorInter = new QDBusInterface(\"org.deepin.dde.Display1\", m_monitorUserPath, \"org.deepin.dde.Display1.Monitor\", QDBusConnection::sessionBus(), this);\n}\n\nQString MonitorDBusProxy::name()\n{\n    return qvariant_cast<QString>(m_dBusMonitorInter->property(\"Name\"));\n}\n"
  },
  {
    "path": "src/plugin-touchscreen/operation/monitordbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef MONITORDBUSPROXY_H\n#define MONITORDBUSPROXY_H\n\n#include <QObject>\n#include <QDBusPendingReply>\n#include <QDBusReply>\n\nclass QDBusInterface;\nclass QDBusMessage;\n\nclass MonitorDBusProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    static inline const char *staticInterfaceName()\n    { return \"org.deepin.dde.Display1.Monitor\"; }\n\npublic:\n    explicit MonitorDBusProxy(QString monitorPath, QObject *parent = nullptr);\n    Q_PROPERTY(QString Name READ name NOTIFY NameChanged)\n    QString name();\n\nprivate:\n    void init();\n\nQ_SIGNALS: // SIGNALS\n    void NameChanged(const QString & value) const;\n\nprivate:\n    QDBusInterface *m_dBusMonitorInter;\n    QDBusInterface *m_dBusMonitorPropertiesInter;\n    QString m_monitorUserPath;\n};\n\n#endif // MONITORDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-touchscreen/operation/qrc/touchscreen.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_touchscreen_42px.svg</file>\n        <file>icons/dcc_nav_touchscreen_84px.svg</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-touchscreen/operation/touchscreenmatchmodel.cpp",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#include \"touchscreenmatchmodel.h\"\n#include \"touchscreenmodel.h\"\n\nTouchScreenMatchModel::TouchScreenMatchModel(TouchScreenModel *parent)\n    : QAbstractItemModel{ parent }\n    , m_touchScreenModel(parent)\n{\n    init();\n}\n\nQHash<int, QByteArray> TouchScreenMatchModel::roleNames() const\n{\n    QHash<int, QByteArray> names= QAbstractItemModel::roleNames();\n    names[IdRole] = \"id\";\n    names[NameRole] = \"name\";\n    names[DeviceNodeRole] = \"deviceNode\";\n    names[SerialNumberRole] = \"serialNumber\";\n    names[UUIDRole] = \"UUID\";\n    names[ScreenNameRole] = \"screenName\";\n    return names;\n}\n\nQModelIndex TouchScreenMatchModel::index(int row, int column, const QModelIndex &) const\n{\n    if (row < 0 || row >= m_touchScreenList.size()) {\n        return QModelIndex();\n    }\n    return createIndex(row, column);\n}\n\nQModelIndex TouchScreenMatchModel::parent(const QModelIndex &) const\n{\n    return QModelIndex();\n}\n\nint TouchScreenMatchModel::rowCount(const QModelIndex &) const\n{\n    return m_touchScreenList.size();\n}\n\nint TouchScreenMatchModel::columnCount(const QModelIndex &) const\n{\n    return 1;\n}\n\nQVariant TouchScreenMatchModel::data(const QModelIndex &index, int role) const\n{\n    if (index.row() < 0 || index.row() >= m_touchScreenList.size()) {\n        return QVariant();\n    }\nqWarning()<<__FUNCTION__<<__LINE__<<index.row()<<role;\n    switch (role) {\n    case Qt::DisplayRole:\n        return QString::number(index.row());//m_touchScreenList.at(index.row()).second;\n    case IdRole:\n        return m_touchScreenList.at(index.row()).first.id;\n    case NameRole:\n        return m_touchScreenList.at(index.row()).first.name;\n    case DeviceNodeRole:\n        return m_touchScreenList.at(index.row()).first.deviceNode;\n    case SerialNumberRole:\n        return m_touchScreenList.at(index.row()).first.serialNumber;\n    case UUIDRole:\n        return m_touchScreenList.at(index.row()).first.UUID;\n    case ScreenNameRole:\n        return m_touchScreenList.at(index.row()).second;\n    default:\n        break;\n    }\n    return QVariant();\n}\n\nvoid TouchScreenMatchModel::init()\n{\n    connect(m_touchScreenModel, &TouchScreenModel::touchMapChanged, this, &TouchScreenMatchModel::resetItems);\n    connect(m_touchScreenModel, &TouchScreenModel::touchScreenListChanged, this, &TouchScreenMatchModel::resetItems);\n    connect(m_touchScreenModel, &TouchScreenModel::monitorsChanged, this, &TouchScreenMatchModel::resetItems);\n    resetItems();\n}\n\nvoid TouchScreenMatchModel::resetItems()\n{\n    beginResetModel();\n    m_touchScreenList.clear();\n    const TouchscreenMap touchMap = m_touchScreenModel->touchMap();\n    for (const auto &touchscreen : m_touchScreenModel->touchScreenList()) {\n        if (touchMap.contains(touchscreen.UUID))\n            m_touchScreenList.append(QPair<TouchscreenInfo_V2, QString>(touchscreen, touchMap[touchscreen.UUID]));\n        else\n            m_touchScreenList.append(QPair<TouchscreenInfo_V2, QString>(touchscreen, QString()));\n    }\n    endResetModel();\n}\n"
  },
  {
    "path": "src/plugin-touchscreen/operation/touchscreenmatchmodel.h",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef TOUCHSCREENMATCHMODEL_H\n#define TOUCHSCREENMATCHMODEL_H\n\n#include \"touchscreenmodel.h\"\n\n#include <QAbstractItemModel>\n\nclass TouchScreenModel;\n\nenum TouchScreenMatchRole\n{\n    IdRole = Qt::UserRole + 1,\n    NameRole,\n    DeviceNodeRole,\n    SerialNumberRole,\n    UUIDRole,\n    ScreenNameRole,\n};\nclass TouchScreenMatchModel : public QAbstractItemModel\n{\n    Q_OBJECT\npublic:\n    explicit TouchScreenMatchModel(TouchScreenModel *parent);\n\n    // Basic functionality:\n    QHash<int, QByteArray> roleNames() const override;\n    QModelIndex index(int row, int column, const QModelIndex &parentIndex = QModelIndex()) const override;\n    QModelIndex parent(const QModelIndex &index) const override;\n\n    int rowCount(const QModelIndex &parent = QModelIndex()) const override;\n    int columnCount(const QModelIndex &parent = QModelIndex()) const override;\n\n    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;\n\nprivate:\n    void init();\n    void resetItems();\n\n    QList<QPair<TouchscreenInfo_V2, QString>> m_touchScreenList;\n    TouchScreenModel *m_touchScreenModel;\n};\n#endif // TOUCHSCREENMATCHMODEL_H\n"
  },
  {
    "path": "src/plugin-touchscreen/operation/touchscreenmodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"touchscreenmodel.h\"\n#include \"touchscreenmodel_p.h\"\n#include \"monitordbusproxy.h\"\n#include \"dccfactory.h\"\n#include \"touchscreenmatchmodel.h\"\n\n#include <ddbussender.h>\n#include <qqml.h>\n\n#include <QDateTime>\n#include <QDebug>\nTouchScreenModel::TouchScreenModel(QObject *parent)\n    : QObject(parent)\n    , DCC_INIT_PRIVATE(TouchScreenModel)\n    , m_touchScreenMatchModel(new TouchScreenMatchModel(this))\n{\n    qmlRegisterType<TouchScreenMatchModel>(\"org.deepin.dcc.touchscreen\", 1, 0, \"TouchScreenMatchModel\");\n}\n\nTouchScreenModel::~TouchScreenModel()\n{\n    m_touchScreenMatchModel->deleteLater();\n}\n\nconst TouchscreenInfoList_V2 &TouchScreenModel::touchScreenList() const\n{\n    Q_D(const TouchScreenModel);\n    return d->m_touchScreenList;\n}\n\nconst QStringList &TouchScreenModel::monitors()\n{\n    Q_D(const TouchScreenModel);\n    return d->m_monitors;\n}\n\nconst TouchscreenMap &TouchScreenModel::touchMap() const\n{\n    Q_D(const TouchScreenModel);\n    return d->m_touchMap;\n}\n\nvoid TouchScreenModel::assoiateTouch(const QString &monitor, const QString &touchscreenUUID)\n{\n    Q_D(TouchScreenModel);\n    d->assoiateTouch(monitor, touchscreenUUID);\n}\n\nvoid TouchScreenModel::assoiateTouchNotify()\n{\n    Q_D(TouchScreenModel);\n    d->assoiateTouchNotify();\n}\n\nvoid TouchScreenModelPrivate::monitorsChanged(const QList<QDBusObjectPath> &monitors)\n{\n    if (monitors.empty())\n        return;\n\n    Q_Q(TouchScreenModel);\n    m_monitors.clear();\n    for (const QDBusObjectPath &path : monitors) {\n        MonitorDBusProxy *inter = new MonitorDBusProxy(path.path());\n        m_monitors << inter->name();\n    }\n    Q_EMIT q->monitorsChanged(m_monitors);\n}\n\nvoid TouchScreenModelPrivate::assoiateTouch(const QString &monitor, const QString &touchscreenUUID)\n{\n    m_displayProxy->AssociateTouchByUUID(monitor, touchscreenUUID);\n}\n\nvoid TouchScreenModelPrivate::assoiateTouchNotify()\n{\n    DDBusSender()\n        .service(\"org.freedesktop.Notifications\")\n        .path(\"/org/freedesktop/Notifications\")\n        .interface(\"org.freedesktop.Notifications\")\n        .method(\"Notify\")\n        .arg(QString(\"dde-control-center\"))\n        .arg(static_cast<uint>(QDateTime::currentMSecsSinceEpoch()))\n        .arg(QString(\"preferences-system\"))\n        .arg(QObject::tr(\"Touch Screen Settings\"))\n        .arg(QObject::tr(\"The settings of touch screen changed\"))\n        .arg(QStringList())\n        .arg(QVariantMap())\n        .arg(3000)\n        .call();\n}\n\nDCC_FACTORY_CLASS(TouchScreenModel)\n#include \"touchscreenmodel.moc\"\n"
  },
  {
    "path": "src/plugin-touchscreen/operation/touchscreenmodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef TOUCHSCREENMODEL_H\n#define TOUCHSCREENMODEL_H\n\n#include \"types/touchscreeninfolist_v2.h\"\n#include \"types/touchscreenmap.h\"\n\n#include <QObject>\n\n#define DCC_DECLARE_PRIVATE(Class) \\\nprivate: \\\n    QScopedPointer<Class##Private> d_ptr##Class; \\\n    Q_DECLARE_PRIVATE_D(d_ptr##Class, Class)\\\n    Q_DISABLE_COPY(Class)\n\n#define DCC_INIT_PRIVATE(Class) d_ptr##Class(new Class##Private(this))\n\nclass TouchScreenMatchModel;\nclass TouchScreenModelPrivate;\n\nclass TouchScreenModel : public QObject\n{\n    Q_OBJECT\n    DCC_DECLARE_PRIVATE(TouchScreenModel)\npublic:\n    explicit TouchScreenModel(QObject *parent = nullptr);\n    ~TouchScreenModel();\n\n    Q_PROPERTY(const TouchscreenInfoList_V2 touchScreenList READ touchScreenList NOTIFY touchScreenListChanged)\n    Q_PROPERTY(const QStringList monitors READ monitors NOTIFY monitorsChanged)\n    Q_PROPERTY(TouchscreenMap touchMap READ touchMap NOTIFY touchMapChanged)\n\n    const TouchscreenInfoList_V2 &touchScreenList() const;\n\n    const QStringList &monitors();\n\n    const TouchscreenMap &touchMap() const;\n\n    Q_INVOKABLE void assoiateTouch(const QString &monitor, const QString &touchscreenUUID);\n    void assoiateTouchNotify();\n\npublic Q_SLOTS:\n\n    inline TouchScreenMatchModel *touchScreenMatchModel() const { return m_touchScreenMatchModel; }\n\nQ_SIGNALS:\n    void touchScreenListChanged(const TouchscreenInfoList_V2 &newTouchScreenList);\n    void monitorsChanged(const QStringList monitors);\n    void touchMapChanged();\n\nprivate:\n    TouchscreenMap m_touchMap;\n    TouchScreenMatchModel *m_touchScreenMatchModel;\n};\n#endif // TOUCHSCREENMODEL_H\n"
  },
  {
    "path": "src/plugin-touchscreen/operation/touchscreenmodel_p.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef TOUCHSCREENMODEL_P_H\n#define TOUCHSCREENMODEL_P_H\n\n#include \"touchscreenmodel.h\"\n#include \"touchscreenproxy.h\"\n\n#include <QDebug>\nusing namespace DCC_NAMESPACE;\nclass TouchScreenModelPrivate\n{\n    Q_DECLARE_PUBLIC(TouchScreenModel)\npublic:\n    explicit TouchScreenModelPrivate(TouchScreenModel *object)\n        : q_ptr(object)\n        , m_displayProxy(new TouchScreenProxy(q_ptr))\n    {\n        init();\n    }\n\npublic:\n    TouchScreenModel *q_ptr;\n\nprotected:\n    void touchScreenListChanged(const TouchscreenInfoList_V2 &newTouchScreenList)\n    {\n        Q_Q(TouchScreenModel);\n        if (m_touchScreenList == newTouchScreenList)\n            return;\n        m_touchScreenList = newTouchScreenList;\n        Q_EMIT q->touchScreenListChanged(m_touchScreenList);\n    }\n\n    void touchMapChanged(const TouchscreenMap &newTouchMap)\n    {\n        Q_Q(TouchScreenModel);\n        if (m_touchMap == newTouchMap)\n            return;\n        m_touchMap = newTouchMap;\n        Q_EMIT q->touchMapChanged();\n    }\n\n    void init()\n    {\n        QObject::connect(m_displayProxy, &TouchScreenProxy::TouchscreensV2Changed, q_ptr,\n                         [this] (const TouchscreenInfoList_V2 &newTouchScreenList) {\n                             touchScreenListChanged({newTouchScreenList});\n                         });\n        QObject::connect(m_displayProxy, &TouchScreenProxy::MonitorsChanged, q_ptr,\n                         [this] (const QList<QDBusObjectPath> & monitors) {\n                             monitorsChanged(monitors);\n                         });\n        QObject::connect(m_displayProxy, &TouchScreenProxy::TouchMapChanged, q_ptr,\n                         [this] (TouchscreenMap  value) {\n                             touchMapChanged(value);\n                         });\n        monitorsChanged(m_displayProxy->monitors());\n        touchScreenListChanged(m_displayProxy->touchscreensV2());\n        touchMapChanged(m_displayProxy->touchMap());\n        return;\n    }\n\n    void monitorsChanged(const QList<QDBusObjectPath> & monitors);\n    void assoiateTouch(const QString &monitor, const QString &touchscreenUUID);\n    void assoiateTouchNotify();\n\nprivate:\n    TouchScreenProxy *m_displayProxy;\n    TouchscreenInfoList_V2 m_touchScreenList;\n    QStringList m_monitors;\n    TouchscreenMap m_touchMap;\n};\n\n#endif // TOUCHSCREENMODEL_P_H\n"
  },
  {
    "path": "src/plugin-touchscreen/operation/touchscreenproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"touchscreenproxy.h\"\n\n#include <QDBusConnection>\n#include <QDBusInterface>\n\nDCORE_USE_NAMESPACE\n\n// using namespace DCC_NAMESPACE;\nnamespace DCC_NAMESPACE {\nTouchScreenProxy::TouchScreenProxy(QObject *parent)\n    : QObject(parent)\n    , m_displayInter(new DDBusInterface(\"org.deepin.dde.Display1\", \"/org/deepin/dde/Display1\", \"org.deepin.dde.Display1\", QDBusConnection::sessionBus(), this))\n{\n    registerTouchscreenInfoList_V2MetaType();\n}\n\nTouchscreenInfoList_V2 TouchScreenProxy::touchscreensV2()\n{\n    return qvariant_cast<TouchscreenInfoList_V2>(m_displayInter->property(\"TouchscreensV2\"));\n}\n\nTouchscreenMap TouchScreenProxy::touchMap()\n{\n    return qvariant_cast<TouchscreenMap>(m_displayInter->property(\"TouchMap\"));\n}\n\nQList<QDBusObjectPath> TouchScreenProxy::monitors()\n{\n    return qvariant_cast<QList<QDBusObjectPath>>(m_displayInter->property(\"Monitors\"));\n}\n\nQDBusPendingReply<> TouchScreenProxy::AssociateTouchByUUID(const QString &in0, const QString &in1)\n{\n    QList<QVariant> argumentList;\n    argumentList << QVariant::fromValue(in0) << QVariant::fromValue(in1);\n    return m_displayInter->asyncCallWithArgumentList(QStringLiteral(\"AssociateTouchByUUID\"), argumentList);\n}\n}\n"
  },
  {
    "path": "src/plugin-touchscreen/operation/touchscreenproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef TOUCHSCREENPROXY_H\n#define TOUCHSCREENPROXY_H\n\n#include \"types/touchscreeninfolist_v2.h\"\n#include \"types/touchscreenmap.h\"\n\n#include <DDBusInterface>\n#include <QDBusReply>\n#include <QObject>\n\nnamespace DCC_NAMESPACE {\n\nclass QDBusMessage;\n\nclass TouchScreenProxy : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit TouchScreenProxy(QObject *parent = nullptr);\n\n    Q_PROPERTY(TouchscreenInfoList_V2 TouchscreensV2 READ touchscreensV2 NOTIFY TouchscreensV2Changed)\n    TouchscreenInfoList_V2 touchscreensV2();\n\n    Q_PROPERTY(TouchscreenMap TouchMap READ touchMap NOTIFY TouchMapChanged)\n    TouchscreenMap touchMap();\n\n    Q_PROPERTY(QList<QDBusObjectPath> Monitors READ monitors NOTIFY MonitorsChanged)\n    QList<QDBusObjectPath> monitors();\n\nQ_SIGNALS:\n    void TouchscreensV2Changed(TouchscreenInfoList_V2 value);\n    void MonitorsChanged(const QList<QDBusObjectPath> & value);\n    void TouchMapChanged(TouchscreenMap value);\n\npublic Q_SLOTS:\n    QDBusPendingReply<> AssociateTouchByUUID(const QString &in0, const QString &in1);\n\nprivate:\n    Dtk::Core::DDBusInterface *m_displayInter;\n    TouchscreenInfoList_V2 m_TouchscreensList;\n    QList<QDBusObjectPath> m_Monitors;\n    TouchscreenMap m_TouchMap;\n};\n}\n#endif // TOUCHSCREENPROXY_H\n"
  },
  {
    "path": "src/plugin-touchscreen/operation/types/touchscreeninfolist_v2.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"touchscreeninfolist_v2.h\"\n\nQDBusArgument &operator<<(QDBusArgument &arg, const TouchscreenInfo_V2 &info)\n{\n    arg.beginStructure();\n    arg << info.id << info.name << info.deviceNode << info.serialNumber << info.UUID;\n    arg.endStructure();\n\n    return arg;\n}\n\nconst QDBusArgument &operator>>(const QDBusArgument &arg, TouchscreenInfo_V2 &info)\n{\n    arg.beginStructure();\n    arg >> info.id >> info.name >> info.deviceNode >> info.serialNumber >> info.UUID;\n    arg.endStructure();\n\n    return arg;\n}\n\nbool operator==(const TouchscreenInfo_V2 &info1, const TouchscreenInfo_V2 &info2) {\n{\n    return info1.id == info2.id && info1.name == info2.name && info1.deviceNode == info2.deviceNode && info1.serialNumber == info2.serialNumber && info1.UUID == info2.UUID;\n}\n}\n\nvoid registerTouchscreenInfoV2MetaType()\n{\n    qRegisterMetaType<TouchscreenInfo_V2>(\"TouchscreenInfo_V2\");\n    qDBusRegisterMetaType<TouchscreenInfo_V2>();\n}\n\nvoid registerTouchscreenInfoList_V2MetaType()\n{\n    registerTouchscreenInfoV2MetaType();\n\n    qRegisterMetaType<TouchscreenInfoList_V2>(\"TouchscreenInfoList_V2\");\n    qDBusRegisterMetaType<TouchscreenInfoList_V2>();\n}\n"
  },
  {
    "path": "src/plugin-touchscreen/operation/types/touchscreeninfolist_v2.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef TOUCHSCREENINFOLISTV2_H\n#define TOUCHSCREENINFOLISTV2_H\n\n#include <QString>\n#include <QList>\n#include <QDBusMetaType>\n\nstruct TouchscreenInfo_V2 {\n    qint32 id;\n    QString name;\n    QString deviceNode;\n    QString serialNumber;\n    QString UUID;\n};\n\nbool operator==(const TouchscreenInfo_V2 &info1, const TouchscreenInfo_V2 &info2);\n\ntypedef QList<TouchscreenInfo_V2> TouchscreenInfoList_V2;\n\nQ_DECLARE_METATYPE(TouchscreenInfo_V2)\nQ_DECLARE_METATYPE(TouchscreenInfoList_V2)\n\nQDBusArgument &operator<<(QDBusArgument &arg, const TouchscreenInfo_V2 &info);\nconst QDBusArgument &operator>>(const QDBusArgument &arg, TouchscreenInfo_V2 &info);\n\nvoid registerTouchscreenInfoList_V2MetaType();\n\n#endif // !TOUCHSCREENINFOLISTV2_H\n"
  },
  {
    "path": "src/plugin-touchscreen/operation/types/touchscreenmap.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"touchscreenmap.h\"\n\nvoid registerTouchscreenMapMetaType()\n{\n    qRegisterMetaType<TouchscreenMap>(\"TouchscreenMap\");\n    qDBusRegisterMetaType<TouchscreenMap>();\n}\n"
  },
  {
    "path": "src/plugin-touchscreen/operation/types/touchscreenmap.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef TOUCHSCREENMAP_H\n#define TOUCHSCREENMAP_H\n\n#include <QMap>\n#include <QDBusMetaType>\n\ntypedef QMap<QString, QString> TouchscreenMap;\n\nvoid registerTouchscreenMapMetaType();\n\n#endif // TOUCHSCREENMAP_H\n"
  },
  {
    "path": "src/plugin-touchscreen/qml/TouchScreen.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.0\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dcc.touchscreen 1.0\n\nDccObject {\n    DccTitleObject {\n        name: \"TouchScreen\"\n        weight: 10\n        parentName: \"touchscreen\"\n        displayName: qsTr(\"TouchScreen\")\n    }\n\n    DccObject {\n        name: \"TouchScreenTips\"\n        parentName: \"touchscreen\"\n        pageType: DccObject.Item\n        displayName: qsTr(\"Set up here when connecting the touch screen\")\n        page: ColumnLayout {\n            DccLabel {\n                Layout.fillWidth: true\n                Layout.leftMargin: 12\n                font: D.DTK.fontManager.t8\n                text: dccObj.displayName\n            }\n        }\n    }\n\n    DccObject {\n        parentName: \"touchscreen\"\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Item\n        page: ColumnLayout {\n            Repeater {\n                model: dccData.touchScreenMatchModel()\n                delegate: ItemDelegate{\n                    id: touchItem\n                    property var data: model\n                    text: model.name\n                    checkable: false\n                    Layout.fillWidth: true\n                    Layout.leftMargin: 8\n                    contentItem: RowLayout {\n                        spacing: 8\n                        DccLabel {\n                            text: touchItem.text\n                            elide: Text.ElideRight\n                            Layout.fillWidth: true\n                            Layout.fillHeight: true\n                        }\n                        D.ComboBox{\n                            id: combo\n                            flat: true\n                            model: dccData.monitors\n                            currentIndex: dccData.monitors.indexOf(touchItem.data.screenName)\n                            onCurrentIndexChanged: {\n                                if (touchItem.data.screenName !== dccData.monitors[currentIndex]) {\n                                    dccData.assoiateTouch(dccData.monitors[currentIndex],touchItem.data.UUID)\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-touchscreen/qml/Touchscreen.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: root\n    name: \"touchscreen\"\n    parentName: \"device\"\n    displayName: qsTr(\"Touchscreen\")\n    description: qsTr(\"Configuring Touchscreen\")\n    icon: \"device_touchscreen\"\n    visible: false\n    weight: 50\n    DccDBusInterface {\n        property var touchscreensV2\n        service: \"org.deepin.dde.Display1\"\n        path: \"/org/deepin/dde/Display1\"\n        inter: \"org.deepin.dde.Display1\"\n        connection: DccDBusInterface.SessionBus\n        onTouchscreensV2Changed: {\n            root.visible = touchscreensV2.length !== 0\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-touchscreen/qml/TouchscreenMain.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.15\nimport QtQuick.Window 2.15\nimport QtQuick.Controls 2.3\n\nimport org.deepin.dcc 1.0\nimport org.deepin.dtk 1.0 as D\n\nDccObject {\n    DccObject {\n        name: \"touchscreen\"\n        parentName: \"touchscreen\"\n        displayName: qsTr(\"Common\")\n        weight: 10\n        pageType: DccObject.Item\n        page: DccGroupView {\n            spacing: 5\n            isGroup: false\n            height: implicitHeight + 20\n        }\n        TouchScreen {}\n    }\n}\n"
  },
  {
    "path": "src/plugin-touchscreen/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/plugin-wacom/CMakeLists.txt",
    "content": "if (BUILD_PLUGIN)\n    set(wacom_Name wacom)\n    file(GLOB_RECURSE wacom_SRCS\n        \"operation/*.cpp\"\n        \"operation/qrc/wacom.qrc\"\n    )\n    file(GLOB_RECURSE wacom_qml_SRCS\n        \"qml/*.qml\"\n    )\n    find_package(${QT_NS} COMPONENTS Concurrent REQUIRED COMPONENTS Qml)\n    add_library(${wacom_Name} MODULE\n        ${wacom_SRCS}\n    )\n\n    set(wacom_Includes\n        src/plugin-wacom/operation\n    )\n    set(wacom_Libraries\n        ${DCC_FRAME_Library}\n        ${DTK_NS}::Gui\n        ${QT_NS}::DBus\n    )\n    target_include_directories(${wacom_Name} PUBLIC\n        ${wacom_Includes}\n    )\n    target_link_libraries(${wacom_Name} PRIVATE\n        ${wacom_Libraries}\n    )\n    dcc_install_plugin(NAME ${wacom_Name} TARGET ${wacom_Name})\nendif()\n"
  },
  {
    "path": "src/plugin-wacom/operation/qrc/wacom.qrc",
    "content": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_wacom_42px.svg</file>\n        <file>icons/dcc_nav_wacom_84px.svg</file>\n    </qresource>\n</RCC>\n"
  },
  {
    "path": "src/plugin-wacom/operation/wacomdbusproxy.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"wacomdbusproxy.h\"\n\n#include <QMetaObject>\n#include <QDBusConnection>\n#include <QDBusInterface>\n#include <QDBusPendingReply>\n\nconst static QString WacomService = \"org.deepin.dde.InputDevices1\";\nconst static QString WacomPath = \"/org/deepin/dde/InputDevice1/Wacom\";\nconst static QString WacomInterface = \"org.deepin.dde.InputDevice1.Wacom\";\n\nWacomDBusProxy::WacomDBusProxy(QObject *parent)\n    : QObject (parent)\n    , m_inputWacomInter(new DDBusInterface(WacomService, WacomPath, WacomInterface, QDBusConnection::sessionBus(), this))\n{\n\n}\n\nbool WacomDBusProxy::exist()\n{\n    return qvariant_cast<bool>(m_inputWacomInter->property(\"Exist\"));\n}\n\nuint WacomDBusProxy::stylusPressureSensitive()\n{\n    return qvariant_cast<uint>(m_inputWacomInter->property(\"StylusPressureSensitive\"));\n}\n\nvoid WacomDBusProxy::setStylusPressureSensitive(uint value)\n{\n    m_inputWacomInter->setProperty(\"StylusPressureSensitive\", QVariant::fromValue(value));\n}\n\nbool WacomDBusProxy::cursorMode()\n{\n    return qvariant_cast<bool>(m_inputWacomInter->property(\"CursorMode\"));\n}\n\nvoid WacomDBusProxy::setCursorMode(bool value)\n{\n    m_inputWacomInter->setProperty(\"CursorMode\", value);\n}\n\nuint WacomDBusProxy::eraserPressureSensitive()\n{\n    return qvariant_cast<uint>(m_inputWacomInter->property(\"EraserPressureSensitive\"));\n}\n\nvoid WacomDBusProxy::setEraserPressureSensitive(uint value)\n{\n    m_inputWacomInter->setProperty(\"EraserPressureSensitive\", value);\n}\n"
  },
  {
    "path": "src/plugin-wacom/operation/wacomdbusproxy.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef WACOMDBUSPROXY_H\n#define WACOMDBUSPROXY_H\n\n#include <DDBusInterface>\n\n#include <QObject>\n\nclass QDBusInterface;\nclass QDBusMessage;\nclass QDBusObjectPath;\n\nusing Dtk::Core::DDBusInterface;\n\nclass WacomDBusProxy :public QObject\n{\n    Q_OBJECT\npublic:\n    explicit WacomDBusProxy(QObject *parent = nullptr);\n\n    Q_PROPERTY(bool Exist READ exist NOTIFY ExistChanged)\n    bool exist();\n\n    Q_PROPERTY(uint StylusPressureSensitive READ stylusPressureSensitive WRITE setStylusPressureSensitive NOTIFY StylusPressureSensitiveChanged)\n    uint stylusPressureSensitive();\n    void setStylusPressureSensitive(uint value);\n\n    Q_PROPERTY(bool CursorMode READ cursorMode WRITE setCursorMode NOTIFY CursorModeChanged)\n    bool cursorMode();\n    void setCursorMode(bool value);\n\n    Q_PROPERTY(uint EraserPressureSensitive READ eraserPressureSensitive WRITE setEraserPressureSensitive NOTIFY EraserPressureSensitiveChanged)\n    uint eraserPressureSensitive();\n    void setEraserPressureSensitive(uint value);\n\nQ_SIGNALS:\n    void ExistChanged(bool value) const;\n    void StylusPressureSensitiveChanged(uint  value) const;\n    void CursorModeChanged(bool  value) const;\n    void EraserPressureSensitiveChanged(uint  value) const;\n\nprivate:\n    DDBusInterface *m_inputWacomInter;\n};\n\n#endif // WACOMDBUSPROXY_H\n"
  },
  {
    "path": "src/plugin-wacom/operation/wacommodel.cpp",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#include \"wacommodel.h\"\n#include \"wacommodelprivate_p.h\"\n#include \"dccfactory.h\"\n\nWacomModel::WacomModel(QObject *parent)\n    : QObject(parent)\n    , d_ptr(new WacomModelPrivate(this))\n{\n}\n\nWacomModel::~WacomModel()\n{\n\n}\n\nbool WacomModel::exist() const\n{\n    Q_D(const WacomModel);\n    return d->m_exist;\n}\n\nbool WacomModel::CursorMode() const\n{\n    Q_D(const WacomModel);\n    return d->m_cursorMode;\n}\n\nvoid WacomModel::setCursorMode(bool value)\n{\n    Q_D(WacomModel);\n    d->setCursorMode(value);\n}\n\nuint WacomModel::eraserPressureSensitive()\n{\n    Q_D(const WacomModel);\n    return d->m_pressureValue;\n}\n\nvoid WacomModel::setEraserPressureSensitive(uint value)\n{\n    Q_D(WacomModel);\n    d->setEraserPressureSensitive(value);\n}\n\nvoid WacomModelPrivate::setCursorMode(bool value) {\n    m_wacomInterfaceProxy->setCursorMode(value);\n}\n\nvoid WacomModelPrivate::setEraserPressureSensitive(uint value) {\n    m_wacomInterfaceProxy->setEraserPressureSensitive(value);\n}\n\nDCC_FACTORY_CLASS(WacomModel)\n#include \"wacommodel.moc\""
  },
  {
    "path": "src/plugin-wacom/operation/wacommodel.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef WACOMMODEL_H\n#define WACOMMODEL_H\n\n#include <QObject>\n\nclass WacomModelPrivate;\nclass WacomModel : public QObject\n{\n    Q_OBJECT\npublic:\n    explicit WacomModel(QObject *parent = nullptr);\n    ~WacomModel();\n\n    Q_PROPERTY(bool Exist READ exist NOTIFY ExistChanged)\n    bool exist() const;\n\n    Q_PROPERTY(bool CursorMode READ CursorMode WRITE setCursorMode NOTIFY CursorModeChanged)\n    bool CursorMode() const;\n    void setCursorMode(bool value);\n\n    Q_PROPERTY(uint EraserPressureSensitive READ eraserPressureSensitive WRITE setEraserPressureSensitive NOTIFY EraserPressureSensitiveChanged)\n    uint eraserPressureSensitive();\n    void setEraserPressureSensitive(uint value);\n\nQ_SIGNALS:\n    void ExistChanged(bool exist);\n    void CursorModeChanged(const bool cursorMode);\n    void EraserPressureSensitiveChanged(const uint value);\n\nprivate:\n    QScopedPointer<WacomModelPrivate> d_ptr;\n    Q_DECLARE_PRIVATE_D(qGetPtrHelper(d_ptr), WacomModel)\n};\n\n#endif // WACOMMODEL_H\n"
  },
  {
    "path": "src/plugin-wacom/operation/wacommodelprivate_p.h",
    "content": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n#ifndef WACOMMODELPRIVATE_P_H\n#define WACOMMODELPRIVATE_P_H\n\n#include <QObject>\n#include \"wacomdbusproxy.h\"\n#include \"wacommodel.h\"\n\nclass WacomModelPrivate\n{\n    Q_DECLARE_PUBLIC(WacomModel)\npublic:\n    explicit WacomModelPrivate (WacomModel *object)\n        : q_ptr(object)\n        , m_wacomInterfaceProxy(new WacomDBusProxy(q_ptr))\n    {\n        initConnect();\n    }\n\npublic:\n    WacomModel *q_ptr;\n\nprotected:\n    void existChanged(bool exist) {\n        Q_Q(WacomModel);\n        if (m_exist == exist) return;\n        m_exist = exist;\n        Q_EMIT q->ExistChanged(exist);\n    };\n\n    void cursorModeChanged(const bool cursorMode) {\n        Q_Q(WacomModel);\n        if (m_cursorMode == cursorMode)\n            return;\n\n        m_cursorMode = cursorMode;\n        Q_EMIT q->CursorModeChanged(cursorMode);\n    }\n\n    void pressureValueChanged(const uint value) {\n        Q_Q(WacomModel);\n        if (m_pressureValue == value)\n            return;\n\n        m_pressureValue = value;\n\n        Q_EMIT q->EraserPressureSensitiveChanged(value);\n    }\n\n    void initConnect() {\n        QObject::connect(m_wacomInterfaceProxy, &WacomDBusProxy::ExistChanged, q_ptr, [this](bool value) -> void {\n            existChanged(value);\n        });\n\n        QObject::connect(m_wacomInterfaceProxy, &WacomDBusProxy::CursorModeChanged, q_ptr, [this](bool value) ->void {\n            cursorModeChanged(value);\n        });\n\n        QObject::connect(m_wacomInterfaceProxy, &WacomDBusProxy::EraserPressureSensitiveChanged, q_ptr, [this](uint value) ->void {\n            pressureValueChanged(value);\n        });\n\n        existChanged(m_wacomInterfaceProxy->exist());\n        cursorModeChanged(m_wacomInterfaceProxy->cursorMode());\n        pressureValueChanged(m_wacomInterfaceProxy->eraserPressureSensitive());\n        return;\n    }\n\n    void setCursorMode(bool value);\n    void setEraserPressureSensitive(uint value);\n\nprivate:\n    WacomDBusProxy *m_wacomInterfaceProxy;\n    bool m_exist;\n    bool m_cursorMode;\n    uint m_pressureValue;\n};\n\n#endif // WACOMMODELPRIVATE_P_H\n"
  },
  {
    "path": "src/plugin-wacom/qml/Wacom.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport org.deepin.dcc 1.0\n\nDccObject {\n    id: root\n    name: \"wacom\"\n    parentName: \"device\"\n    displayName: qsTr(\"wacom\")\n    description: qsTr(\"Configuring wacom\")\n    icon: \"dcc_nav_wacom\"\n    visible: false\n    weight: 60\n    DccDBusInterface {\n        property var exist\n        service: \"org.deepin.dde.InputDevices1\"\n        path: \"/org/deepin/dde/InputDevice1/Wacom\"\n        inter: \"org.deepin.dde.InputDevice1.Wacom\"\n        connection: DccDBusInterface.SessionBus\n        onExistChanged: {\n            root.visible = exist\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-wacom/qml/WacomMain.qml",
    "content": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimport QtQuick 2.0\nimport QtQuick.Controls 2.0\nimport QtQuick.Layouts 1.15\nimport QtQuick.Window 2.15\n\nimport org.deepin.dtk 1.0 as D\nimport org.deepin.dtk.style 1.0 as DS\n\nimport org.deepin.dcc 1.0\n\nDccObject {\n    DccObject {\n        name: \"wacomTitle\"\n        parentName: \"wacom\"\n        displayName: qsTr(\"wacom\")\n        weight: 10\n        pageType: DccObject.Item\n        page: ColumnLayout {\n            Label {\n                height: contentHeight\n                Layout.leftMargin: 10\n                font.family: D.DTK.fontManager.t5.family\n                font.bold: true\n                font.pixelSize: D.DTK.fontManager.t5.pixelSize\n                text: dccObj.displayName\n            }\n        }\n    }\n\n    DccObject {\n        name: \"mode\"\n        parentName: \"wacom\"\n        displayName: qsTr(\"Model\")\n        weight: 20\n        backgroundType: DccObject.Normal\n        pageType: DccObject.Editor\n        page: ComboBox {\n            model: [qsTr(\"Pen Mode\"), qsTr(\"Mouse Mode\")]\n            currentIndex: dccData.CursorMode\n            onCurrentIndexChanged: {\n                dccData.CursorMode = currentIndex\n            }\n        }\n    }\n\n    DccObject {\n        name: \"pressure\"\n        parentName: \"wacom\"\n        displayName: qsTr(\"Pressure Sensitivity\")\n        backgroundType: DccObject.Normal\n        weight: 30\n        pageType: DccObject.Item\n        visible: !dccData.CursorMode\n        page: ColumnLayout {\n            Layout.fillHeight: true\n            Label {\n                id: speedText\n                Layout.topMargin: 10\n                font: D.DTK.fontManager.t6\n                text: dccObj.displayName\n                Layout.leftMargin: 20\n            }\n            D.TipsSlider {\n                id: scrollSlider\n                readonly property var tips: [qsTr(\"Light\"), (\"\"), (\"\"), (\"\"), (\"\"), (\"\"), qsTr(\"Heavy\")]\n                Layout.preferredHeight: 90\n                Layout.alignment: Qt.AlignCenter\n                Layout.margins: 10\n                Layout.fillWidth: true\n                tickDirection: D.TipsSlider.TickDirection.Back\n                slider.handleType: Slider.HandleType.ArrowBottom\n                slider.value: dccData.EraserPressureSensitive\n                slider.from: 1\n                slider.to: ticks.length\n                slider.live: true\n                slider.stepSize: 1\n                slider.snapMode: Slider.SnapAlways\n                ticks: [\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[0]\n                        highlight: scrollSlider.slider.value === 1\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[1]\n                        highlight: scrollSlider.slider.value === 2\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[2]\n                        highlight: scrollSlider.slider.value === 3\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[3]\n                        highlight: scrollSlider.slider.value === 4\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[4]\n                        highlight: scrollSlider.slider.value === 5\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[5]\n                        highlight: scrollSlider.slider.value === 6\n                    },\n                    D.SliderTipItem {\n                        text: scrollSlider.tips[6]\n                        highlight: scrollSlider.slider.value === 7\n                    }\n                ]\n                slider.onValueChanged: {\n                    if (dccData.EraserPressureSensitive !== slider.value)\n                        dccData.EraserPressureSensitive = slider.value\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "src/plugin-wacom/qml/metadata.json",
    "content": "{\n    \"Version\": \"1.0\"\n}\n"
  },
  {
    "path": "src/shared-utils/CMakeLists.txt",
    "content": "# SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n\nadd_library(dcc-shared-utils OBJECT)\n\nfind_package(ICU COMPONENTS i18n uc)\n\nset(DCC_SHARED_UTILS_SOURCES\n    \"dcclocale.h\"\n    \"dcclocale.cpp\"\n)\n\ntarget_sources(dcc-shared-utils PRIVATE\n    ${DCC_SHARED_UTILS_SOURCES}\n)\n\ntarget_include_directories(dcc-shared-utils PUBLIC\n    ${CMAKE_CURRENT_SOURCE_DIR}\n)\n\ntarget_link_libraries(dcc-shared-utils PRIVATE\n    ICU::i18n\n    ICU::uc\n    ${QT_NS}::Core\n)\n"
  },
  {
    "path": "src/shared-utils/dcclocale.cpp",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#include \"dcclocale.h\"\n\n#include <QCoreApplication>\n#include <QGlobalStatic>\n#include <QLocale>\n#include <memory>\n\n#include <unicode/locdspnm.h>\n\nusing namespace icu;\nusing namespace Qt::Literals::StringLiterals;\n\nnamespace {\n    // Cache LocaleDisplayNames instance\n    struct DisplayNamesHolder {\n        DisplayNamesHolder() \n            : displayNames(icu::LocaleDisplayNames::createInstance(\n                icu::Locale::getDefault(), ULDN_DIALECT_NAMES)) {}\n        \n        std::unique_ptr<icu::LocaleDisplayNames> displayNames;\n    };\n    \n    Q_GLOBAL_STATIC(DisplayNamesHolder, globalDisplayNames);\n    \n    icu::LocaleDisplayNames* getDisplayNames() {\n        return globalDisplayNames()->displayNames.get();\n    }\n\n    [[maybe_unused]] icu::UnicodeString fromQString(const QString& qstr) {\n        return icu::UnicodeString(qstr.utf16(), qstr.length());\n    }\n    \n    QString toQString(const icu::UnicodeString& icuString) {\n        // Get a pointer to the internal UTF-16 buffer of the icu::UnicodeString.\n        // The buffer is not necessarily null-terminated, so we also need the length.\n        const UChar* ucharData = icuString.getBuffer();\n        int32_t length = icuString.length();\n    \n        // QString has a constructor that takes a const QChar* and a length.\n        // UChar is typically a 16-bit unsigned integer, which is compatible with QChar.\n        // Static_cast is used here for explicit type conversion, though often\n        // UChar and QChar are typedefs to the same underlying type (e.g., unsigned short).\n        return QString(reinterpret_cast<const QChar*>(ucharData), length);\n    }\n}\n\nQStringList DCCLocale::dialectNames(const QStringList &localeCodes)\n{\n    QStringList results;\n    results.reserve(localeCodes.size()); // 预分配空间\n\n    icu::LocaleDisplayNames* displayNames = getDisplayNames();\n    \n    for (const QString &localeCode : std::as_const(localeCodes)) {\n        // locale code might contain something like @latin, we need to remove such suffix\n        QString localeCodeWithoutSuffix = localeCode.split(\"@\").first();\n        if (localeCode.startsWith(\"zh_HK\")) {\n            results.append(QCoreApplication::translate(\"dcc::Locale::dialectNames\", \"Traditional Chinese (Chinese Hong Kong)\"));\n            continue;\n        } else if (localeCode.startsWith(\"zh_TW\")) {\n            results.append(QCoreApplication::translate(\"dcc::Locale::dialectNames\", \"Traditional Chinese (Chinese Taiwan)\"));\n            continue;\n        } else if (localeCode.startsWith(\"nan_TW\")) {\n            results.append(QCoreApplication::translate(\"dcc::Locale::dialectNames\", \"Min Nan Chinese\"));\n            continue;\n        }\n\n        icu::UnicodeString dialectName;\n        displayNames->localeDisplayName(localeCodeWithoutSuffix.toLatin1().constData(), dialectName);\n        results.append(toQString(dialectName));\n    }\n    return results;\n}\n\nQPair<QString, QString> DCCLocale::languageAndRegionName(const QString &localeCode)\n{\n    const icu::Locale& systemLocale = icu::Locale::getDefault();\n    icu::UnicodeString localeUString;\n    icu::Locale icuLocale(localeCode.toLatin1().constData());\n    auto regionCode = QString(icuLocale.getCountry());\n    QString displayLanguage = toQString(icuLocale.getDisplayLanguage(systemLocale, localeUString));\n    QString displayCountry = toQString(icuLocale.getDisplayCountry(systemLocale, localeUString));\n\n    if (regionCode == u\"TW\"_s) {\n        displayCountry = QCoreApplication::translate(\"dcc::Locale::regionNames\", \"Taiwan China\");\n    }\n\n    return { displayLanguage, displayCountry };\n}\n"
  },
  {
    "path": "src/shared-utils/dcclocale.h",
    "content": "//SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-later\n\n#pragma once\n\n#include <QString>\n#include <QStringList>\n#include <QTranslator>\n\nclass DCCLocale\n{\npublic:\n    //! Get the dialect names of the given \\a languageCodes in current system locale.\n    static QStringList dialectNames(const QStringList &localeCodes);\n    static QPair<QString, QString> languageAndRegionName(const QString &localeName);\n};"
  },
  {
    "path": "tests/CMakeLists.txt",
    "content": "set(BIN_NAME unit-test)\n"
  },
  {
    "path": "toolGenerate/dconfig2cpp/org_deepin_dde_control-center.hpp",
    "content": "/**\n * This file is generated by dconfig2cpp.\n * Command line arguments: ./dconfig2cpp -p ./dde-control-center/toolGenerate/dconfig2cpp ./dde-control-center/misc/configs/org.deepin.dde.control-center.json\n * Generation time: 2025-01-14T10:54:58\n * JSON file version: 1.0\n * \n * WARNING: DO NOT MODIFY THIS FILE MANUALLY.\n * If you need to change the content, please modify the dconfig2cpp tool.\n */\n\n#ifndef ORG_DEEPIN_DDE_CONTROL-CENTER_H\n#define ORG_DEEPIN_DDE_CONTROL-CENTER_H\n\n#include <QThread>\n#include <QVariant>\n#include <QDebug>\n#include <QAtomicPointer>\n#include <QAtomicInteger>\n#include <DConfig>\n\nclass org_deepin_dde_control-center : public QObject {\n    Q_OBJECT\n\n    Q_PROPERTY(QList<QVariant> disableModule READ disableModule WRITE setDisableModule NOTIFY disableModuleChanged)\n    Q_PROPERTY(double height READ height WRITE setHeight NOTIFY heightChanged)\n    Q_PROPERTY(QList<QVariant> hideModule READ hideModule WRITE setHideModule NOTIFY hideModuleChanged)\n    Q_PROPERTY(double width READ width WRITE setWidth NOTIFY widthChanged)\npublic:\n    explicit org_deepin_dde_control-center(QThread *thread, const QString &appId, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(appId, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &appId, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(backend, appId, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center(QThread *thread, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(backend, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    ~org_deepin_dde_control-center() {\n        if (m_config.loadRelaxed()) {\n            m_config.loadRelaxed()->deleteLater();\n        }\n    }\n\n    QList<QVariant> disableModule() const {\n        return p_disableModule;\n    }\n    void setDisableModule(const QList<QVariant> &value) {\n        auto oldValue = p_disableModule;\n        p_disableModule = value;\n        markPropertySet(0);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"disableModule\"), value);\n            });\n        }\n        if (p_disableModule != oldValue) {\n            Q_EMIT disableModuleChanged();\n        }\n    }\n    double height() const {\n        return p_height;\n    }\n    void setHeight(const double &value) {\n        auto oldValue = p_height;\n        p_height = value;\n        markPropertySet(1);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"height\"), value);\n            });\n        }\n        if (p_height != oldValue) {\n            Q_EMIT heightChanged();\n        }\n    }\n    QList<QVariant> hideModule() const {\n        return p_hideModule;\n    }\n    void setHideModule(const QList<QVariant> &value) {\n        auto oldValue = p_hideModule;\n        p_hideModule = value;\n        markPropertySet(2);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"hideModule\"), value);\n            });\n        }\n        if (p_hideModule != oldValue) {\n            Q_EMIT hideModuleChanged();\n        }\n    }\n    double width() const {\n        return p_width;\n    }\n    void setWidth(const double &value) {\n        auto oldValue = p_width;\n        p_width = value;\n        markPropertySet(3);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"width\"), value);\n            });\n        }\n        if (p_width != oldValue) {\n            Q_EMIT widthChanged();\n        }\n    }\nQ_SIGNALS:\n    void disableModuleChanged();\n    void heightChanged();\n    void hideModuleChanged();\n    void widthChanged();\nprivate:\n    void initialize(DTK_CORE_NAMESPACE::DConfig *config) {\n        Q_ASSERT(!m_config.loadRelaxed());\n        m_config.storeRelaxed(config);\n        if (testPropertySet(0)) {\n            config->setValue(QStringLiteral(\"disableModule\"), QVariant::fromValue(p_disableModule));\n        } else {\n            updateValue(QStringLiteral(\"disableModule\"), QVariant::fromValue(p_disableModule));\n        }\n        if (testPropertySet(1)) {\n            config->setValue(QStringLiteral(\"height\"), QVariant::fromValue(p_height));\n        } else {\n            updateValue(QStringLiteral(\"height\"), QVariant::fromValue(p_height));\n        }\n        if (testPropertySet(2)) {\n            config->setValue(QStringLiteral(\"hideModule\"), QVariant::fromValue(p_hideModule));\n        } else {\n            updateValue(QStringLiteral(\"hideModule\"), QVariant::fromValue(p_hideModule));\n        }\n        if (testPropertySet(3)) {\n            config->setValue(QStringLiteral(\"width\"), QVariant::fromValue(p_width));\n        } else {\n            updateValue(QStringLiteral(\"width\"), QVariant::fromValue(p_width));\n        }\n\n        connect(config, &DTK_CORE_NAMESPACE::DConfig::valueChanged, this, [this](const QString &key) {\n            updateValue(key);\n        }, Qt::DirectConnection);\n    }\n    void updateValue(const QString &key, const QVariant &fallback = QVariant()) {\n        Q_ASSERT(QThread::currentThread() == m_config.loadRelaxed()->thread());\n        const QVariant &value = m_config.loadRelaxed()->value(key, fallback);\n        if (key == QStringLiteral(\"disableModule\")) {\n            auto newValue = qvariant_cast<QList<QVariant>>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_disableModule != newValue) {\n                    p_disableModule = newValue;\n                    Q_EMIT disableModuleChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"height\")) {\n            auto newValue = qvariant_cast<double>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_height != newValue) {\n                    p_height = newValue;\n                    Q_EMIT heightChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"hideModule\")) {\n            auto newValue = qvariant_cast<QList<QVariant>>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_hideModule != newValue) {\n                    p_hideModule = newValue;\n                    Q_EMIT hideModuleChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"width\")) {\n            auto newValue = qvariant_cast<double>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_width != newValue) {\n                    p_width = newValue;\n                    Q_EMIT widthChanged();\n                }\n            });\n            return;\n        }\n    }\n    inline void markPropertySet(const int index) {\n        if (index < 32) {\n            m_propertySetStatus0.fetchAndOrOrdered(1 << (index - 0));\n            return;\n        }\n        Q_UNREACHABLE();\n    }\n    inline bool testPropertySet(const int index) const {\n        if (index < 32) {\n            return (m_propertySetStatus0.loadRelaxed() & (1 << (index - 0)));\n        }\n        Q_UNREACHABLE();\n    }\n    QAtomicPointer<DTK_CORE_NAMESPACE::DConfig> m_config = nullptr;\n    QList<QVariant> p_disableModule { QList<QVariant>{} };\n    double p_height { 600 };\n    QList<QVariant> p_hideModule { QList<QVariant>{} };\n    double p_width { 800 };\n    QAtomicInteger<quint32> m_propertySetStatus0 = 0;\n};\n\n#endif // ORG_DEEPIN_DDE_CONTROL-CENTER_H\n"
  },
  {
    "path": "toolGenerate/dconfig2cpp/org_deepin_dde_control-center_accounts.hpp",
    "content": "/**\n * This file is generated by dconfig2cpp.\n * Command line arguments: ./dconfig2cpp -p ./dde-control-center/toolGenerate/dconfig2cpp ./dde-control-center/misc/configs/org.deepin.dde.control-center.accounts.json\n * Generation time: 2025-01-14T10:54:58\n * JSON file version: 1.0\n * \n * WARNING: DO NOT MODIFY THIS FILE MANUALLY.\n * If you need to change the content, please modify the dconfig2cpp tool.\n */\n\n#ifndef ORG_DEEPIN_DDE_CONTROL-CENTER_ACCOUNTS_H\n#define ORG_DEEPIN_DDE_CONTROL-CENTER_ACCOUNTS_H\n\n#include <QThread>\n#include <QVariant>\n#include <QDebug>\n#include <QAtomicPointer>\n#include <QAtomicInteger>\n#include <DConfig>\n\nclass org_deepin_dde_control-center_accounts : public QObject {\n    Q_OBJECT\n\n    Q_PROPERTY(QString avatarPath READ avatarPath WRITE setAvatarPath NOTIFY avatarPathChanged)\npublic:\n    explicit org_deepin_dde_control-center_accounts(QThread *thread, const QString &appId, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(appId, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_accounts(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &appId, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(backend, appId, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_accounts(QThread *thread, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_accounts(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(backend, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    ~org_deepin_dde_control-center_accounts() {\n        if (m_config.loadRelaxed()) {\n            m_config.loadRelaxed()->deleteLater();\n        }\n    }\n\n    QString avatarPath() const {\n        return p_avatarPath;\n    }\n    void setAvatarPath(const QString &value) {\n        auto oldValue = p_avatarPath;\n        p_avatarPath = value;\n        markPropertySet(0);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"avatarPath\"), value);\n            });\n        }\n        if (p_avatarPath != oldValue) {\n            Q_EMIT avatarPathChanged();\n        }\n    }\nQ_SIGNALS:\n    void avatarPathChanged();\nprivate:\n    void initialize(DTK_CORE_NAMESPACE::DConfig *config) {\n        Q_ASSERT(!m_config.loadRelaxed());\n        m_config.storeRelaxed(config);\n        if (testPropertySet(0)) {\n            config->setValue(QStringLiteral(\"avatarPath\"), QVariant::fromValue(p_avatarPath));\n        } else {\n            updateValue(QStringLiteral(\"avatarPath\"), QVariant::fromValue(p_avatarPath));\n        }\n\n        connect(config, &DTK_CORE_NAMESPACE::DConfig::valueChanged, this, [this](const QString &key) {\n            updateValue(key);\n        }, Qt::DirectConnection);\n    }\n    void updateValue(const QString &key, const QVariant &fallback = QVariant()) {\n        Q_ASSERT(QThread::currentThread() == m_config.loadRelaxed()->thread());\n        const QVariant &value = m_config.loadRelaxed()->value(key, fallback);\n        if (key == QStringLiteral(\"avatarPath\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_avatarPath != newValue) {\n                    p_avatarPath = newValue;\n                    Q_EMIT avatarPathChanged();\n                }\n            });\n            return;\n        }\n    }\n    inline void markPropertySet(const int index) {\n        if (index < 32) {\n            m_propertySetStatus0.fetchAndOrOrdered(1 << (index - 0));\n            return;\n        }\n        Q_UNREACHABLE();\n    }\n    inline bool testPropertySet(const int index) const {\n        if (index < 32) {\n            return (m_propertySetStatus0.loadRelaxed() & (1 << (index - 0)));\n        }\n        Q_UNREACHABLE();\n    }\n    QAtomicPointer<DTK_CORE_NAMESPACE::DConfig> m_config = nullptr;\n    QString p_avatarPath { QStringLiteral(\"\") };\n    QAtomicInteger<quint32> m_propertySetStatus0 = 0;\n};\n\n#endif // ORG_DEEPIN_DDE_CONTROL-CENTER_ACCOUNTS_H\n"
  },
  {
    "path": "toolGenerate/dconfig2cpp/org_deepin_dde_control-center_datetime.hpp",
    "content": "/**\n * This file is generated by dconfig2cpp.\n * Command line arguments: ./dconfig2cpp -p ./toolGenerate/dconfig2cpp/org_deepin_dde_control-center_datetime.hpp ./misc/configs/org.deepin.dde.control-center.datetime.json\n * Generation time: 2025-09-23T10:04:59\n * JSON file version: 1.0\n *\n * WARNING: DO NOT MODIFY THIS FILE MANUALLY.\n * If you need to change the content, please modify the dconfig2cpp tool.\n */\n\n#ifndef DCONFIG_ORG_DEEPIN_DDE_CONTROL-CENTER_DATETIME_H\n#define DCONFIG_ORG_DEEPIN_DDE_CONTROL-CENTER_DATETIME_H\n\n#include <QThread>\n#include <QVariant>\n#include <QPointer>\n#include <QDebug>\n#include <QAtomicPointer>\n#include <QAtomicInteger>\n#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)\n#include <QProperty>\n#endif\n#include <DSGApplication>\n#include <DConfig>\n\nclass dconfig_org_deepin_dde_control-center_datetime : public QObject {\n    Q_OBJECT\n\n    Q_PROPERTY(QString customNtpServer READ customNtpServer WRITE setCustomNtpServer NOTIFY customNtpServerChanged RESET resetCustomNtpServer)\n    Q_CLASSINFO(\"DConfigKeyList\", \"customNtpServer\")\n    Q_CLASSINFO(\"DConfigFileName\", \"org.deepin.dde.control-center.datetime\")\n    Q_CLASSINFO(\"DConfigFileVersion\", \"1.0\")\n\npublic:\n    explicit dconfig_org_deepin_dde_control-center_datetime(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend,\n                        const QString &name, const QString &appId, const QString &subpath,\n                        bool isGeneric, QObject *parent)\n                : QObject(nullptr) {\n        if (!thread->isRunning()) {\n            qWarning() << QLatin1String(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QPointer<QObject> watcher(parent);\n        QMetaObject::invokeMethod(worker, [=, this]() {\n            DTK_CORE_NAMESPACE::DConfig *config = nullptr;\n            if (isGeneric) {\n                if (backend) {\n                    config = DTK_CORE_NAMESPACE::DConfig::createGeneric(backend, name, subpath, nullptr);\n                } else {\n                    config = DTK_CORE_NAMESPACE::DConfig::createGeneric(name, subpath, nullptr);\n                }\n            } else {\n                if (backend) {\n                    if (appId.isNull()) {\n                        config = DTK_CORE_NAMESPACE::DConfig::create(backend, DTK_CORE_NAMESPACE::DSGApplication::id(),\n                                                                     name, subpath, nullptr);\n                    } else {\n                        config = DTK_CORE_NAMESPACE::DConfig::create(backend, appId, name, subpath, nullptr);\n                    }\n                } else {\n                    if (appId.isNull()) {\n                        config = DTK_CORE_NAMESPACE::DConfig::create(DTK_CORE_NAMESPACE::DSGApplication::id(),\n                                                                     name, subpath, nullptr);\n                    } else {\n                        config = DTK_CORE_NAMESPACE::DConfig::create(appId, name, subpath, nullptr);\n                    }\n                }\n            }\n            if (!config) {\n                qWarning() << QLatin1String(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initializeInConfigThread(config);\n            if (watcher != parent) {\n                // delete this if watcher is changed to nullptr.\n                deleteLater();\n            } else if (!this->parent() && parent) {\n                // !parent() means that parent is not changed.\n                this->setParent(watcher);\n            }\n            worker->deleteLater();\n        });\n    }\n    static dconfig_org_deepin_dde_control-center_datetime* create(const QString &appId = {}, const QString &subpath = {}, QObject *parent = nullptr, QThread *thread = DTK_CORE_NAMESPACE::DConfig::globalThread())\n    { return new dconfig_org_deepin_dde_control-center_datetime(thread, nullptr, QStringLiteral(u\"\\u006f\\u0072\\u0067\\u002e\\u0064\\u0065\\u0065\\u0070\\u0069\\u006e\\u002e\\u0064\\u0064\\u0065\\u002e\\u0063\\u006f\\u006e\\u0074\\u0072\\u006f\\u006c\\u002d\\u0063\\u0065\\u006e\\u0074\\u0065\\u0072\\u002e\\u0064\\u0061\\u0074\\u0065\\u0074\\u0069\\u006d\\u0065\"), appId, subpath, false, parent); }\n    static dconfig_org_deepin_dde_control-center_datetime* create(DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &appId = {}, const QString &subpath = {}, QObject *parent = nullptr, QThread *thread = DTK_CORE_NAMESPACE::DConfig::globalThread())\n    { return new dconfig_org_deepin_dde_control-center_datetime(thread, backend, QStringLiteral(u\"\\u006f\\u0072\\u0067\\u002e\\u0064\\u0065\\u0065\\u0070\\u0069\\u006e\\u002e\\u0064\\u0064\\u0065\\u002e\\u0063\\u006f\\u006e\\u0074\\u0072\\u006f\\u006c\\u002d\\u0063\\u0065\\u006e\\u0074\\u0065\\u0072\\u002e\\u0064\\u0061\\u0074\\u0065\\u0074\\u0069\\u006d\\u0065\"), appId, subpath, false, parent); }\n    static dconfig_org_deepin_dde_control-center_datetime* createByName(const QString &name, const QString &appId = {}, const QString &subpath = {}, QObject *parent = nullptr, QThread *thread = DTK_CORE_NAMESPACE::DConfig::globalThread())\n    { return new dconfig_org_deepin_dde_control-center_datetime(thread, nullptr, name, appId, subpath, false, parent); }\n    static dconfig_org_deepin_dde_control-center_datetime* createByName(DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &name, const QString &appId = {}, const QString &subpath = {}, QObject *parent = nullptr, QThread *thread = DTK_CORE_NAMESPACE::DConfig::globalThread())\n    { return new dconfig_org_deepin_dde_control-center_datetime(thread, backend, name, appId, subpath, false, parent); }\n    static dconfig_org_deepin_dde_control-center_datetime* createGeneric(const QString &subpath = {}, QObject *parent = nullptr, QThread *thread = DTK_CORE_NAMESPACE::DConfig::globalThread())\n    { return new dconfig_org_deepin_dde_control-center_datetime(thread, nullptr, QStringLiteral(u\"\\u006f\\u0072\\u0067\\u002e\\u0064\\u0065\\u0065\\u0070\\u0069\\u006e\\u002e\\u0064\\u0064\\u0065\\u002e\\u0063\\u006f\\u006e\\u0074\\u0072\\u006f\\u006c\\u002d\\u0063\\u0065\\u006e\\u0074\\u0065\\u0072\\u002e\\u0064\\u0061\\u0074\\u0065\\u0074\\u0069\\u006d\\u0065\"), {}, subpath, true, parent); }\n    static dconfig_org_deepin_dde_control-center_datetime* create(DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &subpath = {}, QObject *parent = nullptr, QThread *thread = DTK_CORE_NAMESPACE::DConfig::globalThread())\n    { return new dconfig_org_deepin_dde_control-center_datetime(thread, backend, QStringLiteral(u\"\\u006f\\u0072\\u0067\\u002e\\u0064\\u0065\\u0065\\u0070\\u0069\\u006e\\u002e\\u0064\\u0064\\u0065\\u002e\\u0063\\u006f\\u006e\\u0074\\u0072\\u006f\\u006c\\u002d\\u0063\\u0065\\u006e\\u0074\\u0065\\u0072\\u002e\\u0064\\u0061\\u0074\\u0065\\u0074\\u0069\\u006d\\u0065\"), {}, subpath, true, parent); }\n    static dconfig_org_deepin_dde_control-center_datetime* createGenericByName(const QString &name, const QString &subpath = {}, QObject *parent = nullptr, QThread *thread = DTK_CORE_NAMESPACE::DConfig::globalThread())\n    { return new dconfig_org_deepin_dde_control-center_datetime(thread, nullptr, name, {}, subpath, true, parent); }\n    static dconfig_org_deepin_dde_control-center_datetime* createGenericByName(DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &name, const QString &subpath = {}, QObject *parent = nullptr, QThread *thread = DTK_CORE_NAMESPACE::DConfig::globalThread())\n    { return new dconfig_org_deepin_dde_control-center_datetime(thread, backend, name, {}, subpath, true, parent); }\n    ~dconfig_org_deepin_dde_control-center_datetime() {\n        if (m_config.loadRelaxed()) {\n            m_config.loadRelaxed()->deleteLater();\n        }\n    }\n\n    Q_INVOKABLE DTK_CORE_NAMESPACE::DConfig *config() const {\n        return m_config.loadRelaxed();\n    }\n\n    Q_INVOKABLE bool isInitializeSucceed() const {\n        return m_status.loadRelaxed() == static_cast<int>(Status::Succeed);\n    }\n\n    Q_INVOKABLE bool isInitializeFailed() const {\n        return m_status.loadRelaxed() == static_cast<int>(Status::Failed);\n    }\n\n    Q_INVOKABLE bool isInitializing() const {\n        return m_status.loadRelaxed() == static_cast<int>(Status::Invalid);\n    }\n\n    Q_INVOKABLE QStringList keyList() const {\n        return { QStringLiteral(\"customNtpServer\")};\n    }\n\n    Q_INVOKABLE bool isDefaultValue(const QString &key) const {\n        if (key == QStringLiteral(\"customNtpServer\"))\n            return customNtpServerIsDefaultValue();\n        return false;\n    }\n\n    QString customNtpServer() const {\n        return p_customNtpServer;\n    }\n    void setCustomNtpServer(const QString &value) {\n        auto oldValue = p_customNtpServer;\n        p_customNtpServer = value;\n        markPropertySet(0);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"customNtpServer\"), value);\n            });\n        }\n        if (p_customNtpServer != oldValue) {\n            Q_EMIT customNtpServerChanged();\n            Q_EMIT valueChanged(QStringLiteral(\"customNtpServer\"), value);\n        }\n    }\n    void resetCustomNtpServer() {\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this]() {\n                m_config.loadRelaxed()->reset(QStringLiteral(\"customNtpServer\"));\n            });\n        }\n    }\n#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)\n    QBindable<QString> bindableCustomNtpServer() {\n        return QBindable<QString>(this, \"customNtpServer\");\n    }\n#endif\n    Q_INVOKABLE bool customNtpServerIsDefaultValue() const {\n        return !testPropertySet(0);\n    }\nQ_SIGNALS:\n    void configInitializeFailed(DTK_CORE_NAMESPACE::DConfig *config);\n    void configInitializeSucceed(DTK_CORE_NAMESPACE::DConfig *config);\n    void valueChanged(const QString &key, const QVariant &value);\n\n    void customNtpServerChanged();\nprivate:\n    void initializeInConfigThread(DTK_CORE_NAMESPACE::DConfig *config) {\n        Q_ASSERT(!m_config.loadRelaxed());\n        m_config.storeRelaxed(config);\n        if (!config->isValid()) {\n           m_status.storeRelaxed(static_cast<int>(Status::Failed));\n           Q_EMIT configInitializeFailed(config);\n           return;\n        }\n\n        if (testPropertySet(0)) {\n            config->setValue(QStringLiteral(\"customNtpServer\"), QVariant::fromValue(p_customNtpServer));\n        } else {\n            updateValue(QStringLiteral(\"customNtpServer\"), QVariant::fromValue(p_customNtpServer));\n        }\n\n        connect(config, &DTK_CORE_NAMESPACE::DConfig::valueChanged, this, [this](const QString &key) {\n            updateValue(key);\n        }, Qt::DirectConnection);\n\n        m_status.storeRelaxed(static_cast<int>(Status::Succeed));\n        Q_EMIT configInitializeSucceed(config);\n    }\n    void updateValue(const QString &key, const QVariant &fallback = QVariant()) {\n        Q_ASSERT(QThread::currentThread() == m_config.loadRelaxed()->thread());\n        const QVariant &value = m_config.loadRelaxed()->value(key, fallback);\n        if (key == QStringLiteral(\"customNtpServer\")) {\n            markPropertySet(0, !m_config.loadRelaxed()->isDefaultValue(key));\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue, key, value]() {\n                Q_ASSERT(QThread::currentThread() == this->thread());\n                if (p_customNtpServer != newValue) {\n                    p_customNtpServer = newValue;\n                    Q_EMIT customNtpServerChanged();\n                    Q_EMIT valueChanged(key, value);\n                }\n            });\n            return;\n        }\n    }\n    inline void markPropertySet(const int index, bool on = true) {\n        if (index < 32) {\n            if (on)\n                m_propertySetStatus0.fetchAndOrOrdered(1 << (index - 0));\n            else\n                m_propertySetStatus0.fetchAndAndOrdered(~(1 << (index - 0)));\n            return;\n        }\n        Q_UNREACHABLE();\n    }\n    inline bool testPropertySet(const int index) const {\n        if (index < 32) {\n            return (m_propertySetStatus0.loadRelaxed() & (1 << (index - 0)));\n        }\n        Q_UNREACHABLE();\n    }\n\n    QAtomicPointer<DTK_CORE_NAMESPACE::DConfig> m_config = nullptr;\n\npublic:\n    enum class Status {\n        Invalid = 0,\n        Succeed = 1,\n        Failed = 2\n    };\nprivate:\n    QAtomicInteger<int> m_status = static_cast<int>(Status::Invalid);\n\n    // Default value: \"\"\n    QString p_customNtpServer { QLatin1String(\"\") };\n    QAtomicInteger<quint32> m_propertySetStatus0 = 0;\n};\n\n#endif // DCONFIG_ORG_DEEPIN_DDE_CONTROL-CENTER_DATETIME_H\n"
  },
  {
    "path": "toolGenerate/dconfig2cpp/org_deepin_dde_control-center_display.hpp",
    "content": "/**\n * This file is generated by dconfig2cpp.\n * Command line arguments: ./dconfig2cpp -p ./dde-control-center/toolGenerate/dconfig2cpp ./dde-control-center/misc/configs/org.deepin.dde.control-center.display.json\n * Generation time: 2025-01-14T10:54:58\n * JSON file version: 1.0\n * \n * WARNING: DO NOT MODIFY THIS FILE MANUALLY.\n * If you need to change the content, please modify the dconfig2cpp tool.\n */\n\n#ifndef ORG_DEEPIN_DDE_CONTROL-CENTER_DISPLAY_H\n#define ORG_DEEPIN_DDE_CONTROL-CENTER_DISPLAY_H\n\n#include <QThread>\n#include <QVariant>\n#include <QDebug>\n#include <QAtomicPointer>\n#include <QAtomicInteger>\n#include <DConfig>\n\nclass org_deepin_dde_control-center_display : public QObject {\n    Q_OBJECT\n\n    Q_PROPERTY(double minBrightnessValue READ minBrightnessValue WRITE setMinBrightnessValue NOTIFY minBrightnessValueChanged)\npublic:\n    explicit org_deepin_dde_control-center_display(QThread *thread, const QString &appId, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(appId, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_display(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &appId, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(backend, appId, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_display(QThread *thread, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_display(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(backend, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    ~org_deepin_dde_control-center_display() {\n        if (m_config.loadRelaxed()) {\n            m_config.loadRelaxed()->deleteLater();\n        }\n    }\n\n    double minBrightnessValue() const {\n        return p_minBrightnessValue;\n    }\n    void setMinBrightnessValue(const double &value) {\n        auto oldValue = p_minBrightnessValue;\n        p_minBrightnessValue = value;\n        markPropertySet(0);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"minBrightnessValue\"), value);\n            });\n        }\n        if (p_minBrightnessValue != oldValue) {\n            Q_EMIT minBrightnessValueChanged();\n        }\n    }\nQ_SIGNALS:\n    void minBrightnessValueChanged();\nprivate:\n    void initialize(DTK_CORE_NAMESPACE::DConfig *config) {\n        Q_ASSERT(!m_config.loadRelaxed());\n        m_config.storeRelaxed(config);\n        if (testPropertySet(0)) {\n            config->setValue(QStringLiteral(\"minBrightnessValue\"), QVariant::fromValue(p_minBrightnessValue));\n        } else {\n            updateValue(QStringLiteral(\"minBrightnessValue\"), QVariant::fromValue(p_minBrightnessValue));\n        }\n\n        connect(config, &DTK_CORE_NAMESPACE::DConfig::valueChanged, this, [this](const QString &key) {\n            updateValue(key);\n        }, Qt::DirectConnection);\n    }\n    void updateValue(const QString &key, const QVariant &fallback = QVariant()) {\n        Q_ASSERT(QThread::currentThread() == m_config.loadRelaxed()->thread());\n        const QVariant &value = m_config.loadRelaxed()->value(key, fallback);\n        if (key == QStringLiteral(\"minBrightnessValue\")) {\n            auto newValue = qvariant_cast<double>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_minBrightnessValue != newValue) {\n                    p_minBrightnessValue = newValue;\n                    Q_EMIT minBrightnessValueChanged();\n                }\n            });\n            return;\n        }\n    }\n    inline void markPropertySet(const int index) {\n        if (index < 32) {\n            m_propertySetStatus0.fetchAndOrOrdered(1 << (index - 0));\n            return;\n        }\n        Q_UNREACHABLE();\n    }\n    inline bool testPropertySet(const int index) const {\n        if (index < 32) {\n            return (m_propertySetStatus0.loadRelaxed() & (1 << (index - 0)));\n        }\n        Q_UNREACHABLE();\n    }\n    QAtomicPointer<DTK_CORE_NAMESPACE::DConfig> m_config = nullptr;\n    double p_minBrightnessValue { 0.1 };\n    QAtomicInteger<quint32> m_propertySetStatus0 = 0;\n};\n\n#endif // ORG_DEEPIN_DDE_CONTROL-CENTER_DISPLAY_H\n"
  },
  {
    "path": "toolGenerate/dconfig2cpp/org_deepin_dde_control-center_personalization.hpp",
    "content": "/**\n * This file is generated by dconfig2cpp.\n * Command line arguments: ./dconfig2cpp -p ./dde-control-center/toolGenerate/dconfig2cpp ./dde-control-center/misc/configs/org.deepin.dde.control-center.personalization.json\n * Generation time: 2025-01-14T10:54:58\n * JSON file version: 1.0\n * \n * WARNING: DO NOT MODIFY THIS FILE MANUALLY.\n * If you need to change the content, please modify the dconfig2cpp tool.\n */\n\n#ifndef ORG_DEEPIN_DDE_CONTROL-CENTER_PERSONALIZATION_H\n#define ORG_DEEPIN_DDE_CONTROL-CENTER_PERSONALIZATION_H\n\n#include <QThread>\n#include <QVariant>\n#include <QDebug>\n#include <QAtomicPointer>\n#include <QAtomicInteger>\n#include <DConfig>\n\nclass org_deepin_dde_control-center_personalization : public QObject {\n    Q_OBJECT\n\n    Q_PROPERTY(QString compactDisplayStatus READ compactDisplayStatus WRITE setCompactDisplayStatus NOTIFY compactDisplayStatusChanged)\n    Q_PROPERTY(QList<QVariant> hideIconThemes READ hideIconThemes WRITE setHideIconThemes NOTIFY hideIconThemesChanged)\n    Q_PROPERTY(QString scrollbarPolicyStatus READ scrollbarPolicyStatus WRITE setScrollbarPolicyStatus NOTIFY scrollbarPolicyStatusChanged)\n    Q_PROPERTY(QString titleBarHeightStatus READ titleBarHeightStatus WRITE setTitleBarHeightStatus NOTIFY titleBarHeightStatusChanged)\n    Q_PROPERTY(bool titleBarHeightSupportCompactDisplay READ titleBarHeightSupportCompactDisplay WRITE setTitleBarHeightSupportCompactDisplay NOTIFY titleBarHeightSupportCompactDisplayChanged)\npublic:\n    explicit org_deepin_dde_control-center_personalization(QThread *thread, const QString &appId, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(appId, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_personalization(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &appId, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(backend, appId, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_personalization(QThread *thread, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_personalization(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(backend, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    ~org_deepin_dde_control-center_personalization() {\n        if (m_config.loadRelaxed()) {\n            m_config.loadRelaxed()->deleteLater();\n        }\n    }\n\n    QString compactDisplayStatus() const {\n        return p_compactDisplayStatus;\n    }\n    void setCompactDisplayStatus(const QString &value) {\n        auto oldValue = p_compactDisplayStatus;\n        p_compactDisplayStatus = value;\n        markPropertySet(0);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"compactDisplayStatus\"), value);\n            });\n        }\n        if (p_compactDisplayStatus != oldValue) {\n            Q_EMIT compactDisplayStatusChanged();\n        }\n    }\n    QList<QVariant> hideIconThemes() const {\n        return p_hideIconThemes;\n    }\n    void setHideIconThemes(const QList<QVariant> &value) {\n        auto oldValue = p_hideIconThemes;\n        p_hideIconThemes = value;\n        markPropertySet(1);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"hideIconThemes\"), value);\n            });\n        }\n        if (p_hideIconThemes != oldValue) {\n            Q_EMIT hideIconThemesChanged();\n        }\n    }\n    QString scrollbarPolicyStatus() const {\n        return p_scrollbarPolicyStatus;\n    }\n    void setScrollbarPolicyStatus(const QString &value) {\n        auto oldValue = p_scrollbarPolicyStatus;\n        p_scrollbarPolicyStatus = value;\n        markPropertySet(2);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"scrollbarPolicyStatus\"), value);\n            });\n        }\n        if (p_scrollbarPolicyStatus != oldValue) {\n            Q_EMIT scrollbarPolicyStatusChanged();\n        }\n    }\n    QString titleBarHeightStatus() const {\n        return p_titleBarHeightStatus;\n    }\n    void setTitleBarHeightStatus(const QString &value) {\n        auto oldValue = p_titleBarHeightStatus;\n        p_titleBarHeightStatus = value;\n        markPropertySet(3);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"titleBarHeightStatus\"), value);\n            });\n        }\n        if (p_titleBarHeightStatus != oldValue) {\n            Q_EMIT titleBarHeightStatusChanged();\n        }\n    }\n    bool titleBarHeightSupportCompactDisplay() const {\n        return p_titleBarHeightSupportCompactDisplay;\n    }\n    void setTitleBarHeightSupportCompactDisplay(const bool &value) {\n        auto oldValue = p_titleBarHeightSupportCompactDisplay;\n        p_titleBarHeightSupportCompactDisplay = value;\n        markPropertySet(4);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"titleBarHeightSupportCompactDisplay\"), value);\n            });\n        }\n        if (p_titleBarHeightSupportCompactDisplay != oldValue) {\n            Q_EMIT titleBarHeightSupportCompactDisplayChanged();\n        }\n    }\nQ_SIGNALS:\n    void compactDisplayStatusChanged();\n    void hideIconThemesChanged();\n    void scrollbarPolicyStatusChanged();\n    void titleBarHeightStatusChanged();\n    void titleBarHeightSupportCompactDisplayChanged();\nprivate:\n    void initialize(DTK_CORE_NAMESPACE::DConfig *config) {\n        Q_ASSERT(!m_config.loadRelaxed());\n        m_config.storeRelaxed(config);\n        if (testPropertySet(0)) {\n            config->setValue(QStringLiteral(\"compactDisplayStatus\"), QVariant::fromValue(p_compactDisplayStatus));\n        } else {\n            updateValue(QStringLiteral(\"compactDisplayStatus\"), QVariant::fromValue(p_compactDisplayStatus));\n        }\n        if (testPropertySet(1)) {\n            config->setValue(QStringLiteral(\"hideIconThemes\"), QVariant::fromValue(p_hideIconThemes));\n        } else {\n            updateValue(QStringLiteral(\"hideIconThemes\"), QVariant::fromValue(p_hideIconThemes));\n        }\n        if (testPropertySet(2)) {\n            config->setValue(QStringLiteral(\"scrollbarPolicyStatus\"), QVariant::fromValue(p_scrollbarPolicyStatus));\n        } else {\n            updateValue(QStringLiteral(\"scrollbarPolicyStatus\"), QVariant::fromValue(p_scrollbarPolicyStatus));\n        }\n        if (testPropertySet(3)) {\n            config->setValue(QStringLiteral(\"titleBarHeightStatus\"), QVariant::fromValue(p_titleBarHeightStatus));\n        } else {\n            updateValue(QStringLiteral(\"titleBarHeightStatus\"), QVariant::fromValue(p_titleBarHeightStatus));\n        }\n        if (testPropertySet(4)) {\n            config->setValue(QStringLiteral(\"titleBarHeightSupportCompactDisplay\"), QVariant::fromValue(p_titleBarHeightSupportCompactDisplay));\n        } else {\n            updateValue(QStringLiteral(\"titleBarHeightSupportCompactDisplay\"), QVariant::fromValue(p_titleBarHeightSupportCompactDisplay));\n        }\n\n        connect(config, &DTK_CORE_NAMESPACE::DConfig::valueChanged, this, [this](const QString &key) {\n            updateValue(key);\n        }, Qt::DirectConnection);\n    }\n    void updateValue(const QString &key, const QVariant &fallback = QVariant()) {\n        Q_ASSERT(QThread::currentThread() == m_config.loadRelaxed()->thread());\n        const QVariant &value = m_config.loadRelaxed()->value(key, fallback);\n        if (key == QStringLiteral(\"compactDisplayStatus\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_compactDisplayStatus != newValue) {\n                    p_compactDisplayStatus = newValue;\n                    Q_EMIT compactDisplayStatusChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"hideIconThemes\")) {\n            auto newValue = qvariant_cast<QList<QVariant>>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_hideIconThemes != newValue) {\n                    p_hideIconThemes = newValue;\n                    Q_EMIT hideIconThemesChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"scrollbarPolicyStatus\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_scrollbarPolicyStatus != newValue) {\n                    p_scrollbarPolicyStatus = newValue;\n                    Q_EMIT scrollbarPolicyStatusChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"titleBarHeightStatus\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_titleBarHeightStatus != newValue) {\n                    p_titleBarHeightStatus = newValue;\n                    Q_EMIT titleBarHeightStatusChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"titleBarHeightSupportCompactDisplay\")) {\n            auto newValue = qvariant_cast<bool>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_titleBarHeightSupportCompactDisplay != newValue) {\n                    p_titleBarHeightSupportCompactDisplay = newValue;\n                    Q_EMIT titleBarHeightSupportCompactDisplayChanged();\n                }\n            });\n            return;\n        }\n    }\n    inline void markPropertySet(const int index) {\n        if (index < 32) {\n            m_propertySetStatus0.fetchAndOrOrdered(1 << (index - 0));\n            return;\n        }\n        Q_UNREACHABLE();\n    }\n    inline bool testPropertySet(const int index) const {\n        if (index < 32) {\n            return (m_propertySetStatus0.loadRelaxed() & (1 << (index - 0)));\n        }\n        Q_UNREACHABLE();\n    }\n    QAtomicPointer<DTK_CORE_NAMESPACE::DConfig> m_config = nullptr;\n    QString p_compactDisplayStatus { QStringLiteral(\"Enabled\") };\n    QList<QVariant> p_hideIconThemes { QList<QVariant>{QVariant(QStringLiteral(\"Papirus\")), QVariant(QStringLiteral(\"Papirus-Dark\")), QVariant(QStringLiteral(\"Papirus-Light\")), QVariant(QStringLiteral(\"ePapirus\")), QVariant(QStringLiteral(\"ePapirus-Dark\"))} };\n    QString p_scrollbarPolicyStatus { QStringLiteral(\"Enabled\") };\n    QString p_titleBarHeightStatus { QStringLiteral(\"Enabled\") };\n    bool p_titleBarHeightSupportCompactDisplay { true };\n    QAtomicInteger<quint32> m_propertySetStatus0 = 0;\n};\n\n#endif // ORG_DEEPIN_DDE_CONTROL-CENTER_PERSONALIZATION_H\n"
  },
  {
    "path": "toolGenerate/dconfig2cpp/org_deepin_dde_control-center_power.hpp",
    "content": "/**\n * This file is generated by dconfig2cpp.\n * Command line arguments: ./dconfig2cpp -p ./dde-control-center/toolGenerate/dconfig2cpp ./dde-control-center/misc/configs/org.deepin.dde.control-center.power.json\n * Generation time: 2025-01-14T10:54:58\n * JSON file version: 1.0\n * \n * WARNING: DO NOT MODIFY THIS FILE MANUALLY.\n * If you need to change the content, please modify the dconfig2cpp tool.\n */\n\n#ifndef ORG_DEEPIN_DDE_CONTROL-CENTER_POWER_H\n#define ORG_DEEPIN_DDE_CONTROL-CENTER_POWER_H\n\n#include <QThread>\n#include <QVariant>\n#include <QDebug>\n#include <QAtomicPointer>\n#include <QAtomicInteger>\n#include <DConfig>\n\nclass org_deepin_dde_control-center_power : public QObject {\n    Q_OBJECT\n\n    Q_PROPERTY(QList<QVariant> batteryLockDelay READ batteryLockDelay WRITE setBatteryLockDelay NOTIFY batteryLockDelayChanged)\n    Q_PROPERTY(QList<QVariant> batteryScreenBlackDelay READ batteryScreenBlackDelay WRITE setBatteryScreenBlackDelay NOTIFY batteryScreenBlackDelayChanged)\n    Q_PROPERTY(QList<QVariant> batterySleepDelay READ batterySleepDelay WRITE setBatterySleepDelay NOTIFY batterySleepDelayChanged)\n    Q_PROPERTY(QString enableScheduledShutdown READ enableScheduledShutdown WRITE setEnableScheduledShutdown NOTIFY enableScheduledShutdownChanged)\n    Q_PROPERTY(QList<QVariant> linePowerLockDelay READ linePowerLockDelay WRITE setLinePowerLockDelay NOTIFY linePowerLockDelayChanged)\n    Q_PROPERTY(QList<QVariant> linePowerScreenBlackDelay READ linePowerScreenBlackDelay WRITE setLinePowerScreenBlackDelay NOTIFY linePowerScreenBlackDelayChanged)\n    Q_PROPERTY(QList<QVariant> linePowerSleepDelay READ linePowerSleepDelay WRITE setLinePowerSleepDelay NOTIFY linePowerSleepDelayChanged)\n    Q_PROPERTY(bool showHibernate READ showHibernate WRITE setShowHibernate NOTIFY showHibernateChanged)\n    Q_PROPERTY(bool showShutdown READ showShutdown WRITE setShowShutdown NOTIFY showShutdownChanged)\n    Q_PROPERTY(bool showSuspend READ showSuspend WRITE setShowSuspend NOTIFY showSuspendChanged)\npublic:\n    explicit org_deepin_dde_control-center_power(QThread *thread, const QString &appId, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(appId, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_power(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &appId, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(backend, appId, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_power(QThread *thread, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_power(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(backend, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    ~org_deepin_dde_control-center_power() {\n        if (m_config.loadRelaxed()) {\n            m_config.loadRelaxed()->deleteLater();\n        }\n    }\n\n    QList<QVariant> batteryLockDelay() const {\n        return p_batteryLockDelay;\n    }\n    void setBatteryLockDelay(const QList<QVariant> &value) {\n        auto oldValue = p_batteryLockDelay;\n        p_batteryLockDelay = value;\n        markPropertySet(0);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"batteryLockDelay\"), value);\n            });\n        }\n        if (p_batteryLockDelay != oldValue) {\n            Q_EMIT batteryLockDelayChanged();\n        }\n    }\n    QList<QVariant> batteryScreenBlackDelay() const {\n        return p_batteryScreenBlackDelay;\n    }\n    void setBatteryScreenBlackDelay(const QList<QVariant> &value) {\n        auto oldValue = p_batteryScreenBlackDelay;\n        p_batteryScreenBlackDelay = value;\n        markPropertySet(1);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"batteryScreenBlackDelay\"), value);\n            });\n        }\n        if (p_batteryScreenBlackDelay != oldValue) {\n            Q_EMIT batteryScreenBlackDelayChanged();\n        }\n    }\n    QList<QVariant> batterySleepDelay() const {\n        return p_batterySleepDelay;\n    }\n    void setBatterySleepDelay(const QList<QVariant> &value) {\n        auto oldValue = p_batterySleepDelay;\n        p_batterySleepDelay = value;\n        markPropertySet(2);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"batterySleepDelay\"), value);\n            });\n        }\n        if (p_batterySleepDelay != oldValue) {\n            Q_EMIT batterySleepDelayChanged();\n        }\n    }\n    QString enableScheduledShutdown() const {\n        return p_enableScheduledShutdown;\n    }\n    void setEnableScheduledShutdown(const QString &value) {\n        auto oldValue = p_enableScheduledShutdown;\n        p_enableScheduledShutdown = value;\n        markPropertySet(3);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"enableScheduledShutdown\"), value);\n            });\n        }\n        if (p_enableScheduledShutdown != oldValue) {\n            Q_EMIT enableScheduledShutdownChanged();\n        }\n    }\n    QList<QVariant> linePowerLockDelay() const {\n        return p_linePowerLockDelay;\n    }\n    void setLinePowerLockDelay(const QList<QVariant> &value) {\n        auto oldValue = p_linePowerLockDelay;\n        p_linePowerLockDelay = value;\n        markPropertySet(4);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"linePowerLockDelay\"), value);\n            });\n        }\n        if (p_linePowerLockDelay != oldValue) {\n            Q_EMIT linePowerLockDelayChanged();\n        }\n    }\n    QList<QVariant> linePowerScreenBlackDelay() const {\n        return p_linePowerScreenBlackDelay;\n    }\n    void setLinePowerScreenBlackDelay(const QList<QVariant> &value) {\n        auto oldValue = p_linePowerScreenBlackDelay;\n        p_linePowerScreenBlackDelay = value;\n        markPropertySet(5);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"linePowerScreenBlackDelay\"), value);\n            });\n        }\n        if (p_linePowerScreenBlackDelay != oldValue) {\n            Q_EMIT linePowerScreenBlackDelayChanged();\n        }\n    }\n    QList<QVariant> linePowerSleepDelay() const {\n        return p_linePowerSleepDelay;\n    }\n    void setLinePowerSleepDelay(const QList<QVariant> &value) {\n        auto oldValue = p_linePowerSleepDelay;\n        p_linePowerSleepDelay = value;\n        markPropertySet(6);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"linePowerSleepDelay\"), value);\n            });\n        }\n        if (p_linePowerSleepDelay != oldValue) {\n            Q_EMIT linePowerSleepDelayChanged();\n        }\n    }\n    bool showHibernate() const {\n        return p_showHibernate;\n    }\n    void setShowHibernate(const bool &value) {\n        auto oldValue = p_showHibernate;\n        p_showHibernate = value;\n        markPropertySet(7);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"showHibernate\"), value);\n            });\n        }\n        if (p_showHibernate != oldValue) {\n            Q_EMIT showHibernateChanged();\n        }\n    }\n    bool showShutdown() const {\n        return p_showShutdown;\n    }\n    void setShowShutdown(const bool &value) {\n        auto oldValue = p_showShutdown;\n        p_showShutdown = value;\n        markPropertySet(8);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"showShutdown\"), value);\n            });\n        }\n        if (p_showShutdown != oldValue) {\n            Q_EMIT showShutdownChanged();\n        }\n    }\n    bool showSuspend() const {\n        return p_showSuspend;\n    }\n    void setShowSuspend(const bool &value) {\n        auto oldValue = p_showSuspend;\n        p_showSuspend = value;\n        markPropertySet(9);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"showSuspend\"), value);\n            });\n        }\n        if (p_showSuspend != oldValue) {\n            Q_EMIT showSuspendChanged();\n        }\n    }\nQ_SIGNALS:\n    void batteryLockDelayChanged();\n    void batteryScreenBlackDelayChanged();\n    void batterySleepDelayChanged();\n    void enableScheduledShutdownChanged();\n    void linePowerLockDelayChanged();\n    void linePowerScreenBlackDelayChanged();\n    void linePowerSleepDelayChanged();\n    void showHibernateChanged();\n    void showShutdownChanged();\n    void showSuspendChanged();\nprivate:\n    void initialize(DTK_CORE_NAMESPACE::DConfig *config) {\n        Q_ASSERT(!m_config.loadRelaxed());\n        m_config.storeRelaxed(config);\n        if (testPropertySet(0)) {\n            config->setValue(QStringLiteral(\"batteryLockDelay\"), QVariant::fromValue(p_batteryLockDelay));\n        } else {\n            updateValue(QStringLiteral(\"batteryLockDelay\"), QVariant::fromValue(p_batteryLockDelay));\n        }\n        if (testPropertySet(1)) {\n            config->setValue(QStringLiteral(\"batteryScreenBlackDelay\"), QVariant::fromValue(p_batteryScreenBlackDelay));\n        } else {\n            updateValue(QStringLiteral(\"batteryScreenBlackDelay\"), QVariant::fromValue(p_batteryScreenBlackDelay));\n        }\n        if (testPropertySet(2)) {\n            config->setValue(QStringLiteral(\"batterySleepDelay\"), QVariant::fromValue(p_batterySleepDelay));\n        } else {\n            updateValue(QStringLiteral(\"batterySleepDelay\"), QVariant::fromValue(p_batterySleepDelay));\n        }\n        if (testPropertySet(3)) {\n            config->setValue(QStringLiteral(\"enableScheduledShutdown\"), QVariant::fromValue(p_enableScheduledShutdown));\n        } else {\n            updateValue(QStringLiteral(\"enableScheduledShutdown\"), QVariant::fromValue(p_enableScheduledShutdown));\n        }\n        if (testPropertySet(4)) {\n            config->setValue(QStringLiteral(\"linePowerLockDelay\"), QVariant::fromValue(p_linePowerLockDelay));\n        } else {\n            updateValue(QStringLiteral(\"linePowerLockDelay\"), QVariant::fromValue(p_linePowerLockDelay));\n        }\n        if (testPropertySet(5)) {\n            config->setValue(QStringLiteral(\"linePowerScreenBlackDelay\"), QVariant::fromValue(p_linePowerScreenBlackDelay));\n        } else {\n            updateValue(QStringLiteral(\"linePowerScreenBlackDelay\"), QVariant::fromValue(p_linePowerScreenBlackDelay));\n        }\n        if (testPropertySet(6)) {\n            config->setValue(QStringLiteral(\"linePowerSleepDelay\"), QVariant::fromValue(p_linePowerSleepDelay));\n        } else {\n            updateValue(QStringLiteral(\"linePowerSleepDelay\"), QVariant::fromValue(p_linePowerSleepDelay));\n        }\n        if (testPropertySet(7)) {\n            config->setValue(QStringLiteral(\"showHibernate\"), QVariant::fromValue(p_showHibernate));\n        } else {\n            updateValue(QStringLiteral(\"showHibernate\"), QVariant::fromValue(p_showHibernate));\n        }\n        if (testPropertySet(8)) {\n            config->setValue(QStringLiteral(\"showShutdown\"), QVariant::fromValue(p_showShutdown));\n        } else {\n            updateValue(QStringLiteral(\"showShutdown\"), QVariant::fromValue(p_showShutdown));\n        }\n        if (testPropertySet(9)) {\n            config->setValue(QStringLiteral(\"showSuspend\"), QVariant::fromValue(p_showSuspend));\n        } else {\n            updateValue(QStringLiteral(\"showSuspend\"), QVariant::fromValue(p_showSuspend));\n        }\n\n        connect(config, &DTK_CORE_NAMESPACE::DConfig::valueChanged, this, [this](const QString &key) {\n            updateValue(key);\n        }, Qt::DirectConnection);\n    }\n    void updateValue(const QString &key, const QVariant &fallback = QVariant()) {\n        Q_ASSERT(QThread::currentThread() == m_config.loadRelaxed()->thread());\n        const QVariant &value = m_config.loadRelaxed()->value(key, fallback);\n        if (key == QStringLiteral(\"batteryLockDelay\")) {\n            auto newValue = qvariant_cast<QList<QVariant>>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_batteryLockDelay != newValue) {\n                    p_batteryLockDelay = newValue;\n                    Q_EMIT batteryLockDelayChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"batteryScreenBlackDelay\")) {\n            auto newValue = qvariant_cast<QList<QVariant>>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_batteryScreenBlackDelay != newValue) {\n                    p_batteryScreenBlackDelay = newValue;\n                    Q_EMIT batteryScreenBlackDelayChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"batterySleepDelay\")) {\n            auto newValue = qvariant_cast<QList<QVariant>>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_batterySleepDelay != newValue) {\n                    p_batterySleepDelay = newValue;\n                    Q_EMIT batterySleepDelayChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"enableScheduledShutdown\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_enableScheduledShutdown != newValue) {\n                    p_enableScheduledShutdown = newValue;\n                    Q_EMIT enableScheduledShutdownChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"linePowerLockDelay\")) {\n            auto newValue = qvariant_cast<QList<QVariant>>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_linePowerLockDelay != newValue) {\n                    p_linePowerLockDelay = newValue;\n                    Q_EMIT linePowerLockDelayChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"linePowerScreenBlackDelay\")) {\n            auto newValue = qvariant_cast<QList<QVariant>>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_linePowerScreenBlackDelay != newValue) {\n                    p_linePowerScreenBlackDelay = newValue;\n                    Q_EMIT linePowerScreenBlackDelayChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"linePowerSleepDelay\")) {\n            auto newValue = qvariant_cast<QList<QVariant>>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_linePowerSleepDelay != newValue) {\n                    p_linePowerSleepDelay = newValue;\n                    Q_EMIT linePowerSleepDelayChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"showHibernate\")) {\n            auto newValue = qvariant_cast<bool>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_showHibernate != newValue) {\n                    p_showHibernate = newValue;\n                    Q_EMIT showHibernateChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"showShutdown\")) {\n            auto newValue = qvariant_cast<bool>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_showShutdown != newValue) {\n                    p_showShutdown = newValue;\n                    Q_EMIT showShutdownChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"showSuspend\")) {\n            auto newValue = qvariant_cast<bool>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_showSuspend != newValue) {\n                    p_showSuspend = newValue;\n                    Q_EMIT showSuspendChanged();\n                }\n            });\n            return;\n        }\n    }\n    inline void markPropertySet(const int index) {\n        if (index < 32) {\n            m_propertySetStatus0.fetchAndOrOrdered(1 << (index - 0));\n            return;\n        }\n        Q_UNREACHABLE();\n    }\n    inline bool testPropertySet(const int index) const {\n        if (index < 32) {\n            return (m_propertySetStatus0.loadRelaxed() & (1 << (index - 0)));\n        }\n        Q_UNREACHABLE();\n    }\n    QAtomicPointer<DTK_CORE_NAMESPACE::DConfig> m_config = nullptr;\n    QList<QVariant> p_batteryLockDelay { QList<QVariant>{QVariant(QStringLiteral(\"1m\")), QVariant(QStringLiteral(\"5m\")), QVariant(QStringLiteral(\"10m\")), QVariant(QStringLiteral(\"15m\")), QVariant(QStringLiteral(\"30m\")), QVariant(QStringLiteral(\"1h\"))} };\n    QList<QVariant> p_batteryScreenBlackDelay { QList<QVariant>{QVariant(QStringLiteral(\"1m\")), QVariant(QStringLiteral(\"5m\")), QVariant(QStringLiteral(\"10m\")), QVariant(QStringLiteral(\"15m\")), QVariant(QStringLiteral(\"30m\")), QVariant(QStringLiteral(\"1h\"))} };\n    QList<QVariant> p_batterySleepDelay { QList<QVariant>{QVariant(QStringLiteral(\"10m\")), QVariant(QStringLiteral(\"15m\")), QVariant(QStringLiteral(\"30m\")), QVariant(QStringLiteral(\"1h\")), QVariant(QStringLiteral(\"2h\")), QVariant(QStringLiteral(\"3h\"))} };\n    QString p_enableScheduledShutdown { QStringLiteral(\"Enabled\") };\n    QList<QVariant> p_linePowerLockDelay { QList<QVariant>{QVariant(QStringLiteral(\"10m\")), QVariant(QStringLiteral(\"15m\")), QVariant(QStringLiteral(\"30m\")), QVariant(QStringLiteral(\"1h\")), QVariant(QStringLiteral(\"2h\")), QVariant(QStringLiteral(\"3h\"))} };\n    QList<QVariant> p_linePowerScreenBlackDelay { QList<QVariant>{QVariant(QStringLiteral(\"1m\")), QVariant(QStringLiteral(\"5m\")), QVariant(QStringLiteral(\"10m\")), QVariant(QStringLiteral(\"15m\")), QVariant(QStringLiteral(\"30m\")), QVariant(QStringLiteral(\"1h\"))} };\n    QList<QVariant> p_linePowerSleepDelay { QList<QVariant>{QVariant(QStringLiteral(\"10m\")), QVariant(QStringLiteral(\"15m\")), QVariant(QStringLiteral(\"30m\")), QVariant(QStringLiteral(\"1h\")), QVariant(QStringLiteral(\"2h\")), QVariant(QStringLiteral(\"3h\"))} };\n    bool p_showHibernate { true };\n    bool p_showShutdown { true };\n    bool p_showSuspend { true };\n    QAtomicInteger<quint32> m_propertySetStatus0 = 0;\n};\n\n#endif // ORG_DEEPIN_DDE_CONTROL-CENTER_POWER_H\n"
  },
  {
    "path": "toolGenerate/dconfig2cpp/org_deepin_dde_control-center_update.hpp",
    "content": "/**\n * This file is generated by dconfig2cpp.\n * Command line arguments: ./dconfig2cpp -p ./dde-control-center/toolGenerate/dconfig2cpp ./dde-control-center/misc/configs/org.deepin.dde.control-center.update.json\n * Generation time: 2025-01-14T10:54:58\n * JSON file version: 1.0\n * \n * WARNING: DO NOT MODIFY THIS FILE MANUALLY.\n * If you need to change the content, please modify the dconfig2cpp tool.\n */\n\n#ifndef ORG_DEEPIN_DDE_CONTROL-CENTER_UPDATE_H\n#define ORG_DEEPIN_DDE_CONTROL-CENTER_UPDATE_H\n\n#include <QThread>\n#include <QVariant>\n#include <QDebug>\n#include <QAtomicPointer>\n#include <QAtomicInteger>\n#include <DConfig>\n\nclass org_deepin_dde_control-center_update : public QObject {\n    Q_OBJECT\n\n    Q_PROPERTY(bool backup READ backup WRITE setBackup NOTIFY backupChanged)\n    Q_PROPERTY(QString updateLogAddress READ updateLogAddress WRITE setUpdateLogAddress NOTIFY updateLogAddressChanged)\npublic:\n    explicit org_deepin_dde_control-center_update(QThread *thread, const QString &appId, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(appId, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_update(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &appId, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(backend, appId, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_update(QThread *thread, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_dde_control-center_update(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(backend, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    ~org_deepin_dde_control-center_update() {\n        if (m_config.loadRelaxed()) {\n            m_config.loadRelaxed()->deleteLater();\n        }\n    }\n\n    bool backup() const {\n        return p_backup;\n    }\n    void setBackup(const bool &value) {\n        auto oldValue = p_backup;\n        p_backup = value;\n        markPropertySet(0);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"backup\"), value);\n            });\n        }\n        if (p_backup != oldValue) {\n            Q_EMIT backupChanged();\n        }\n    }\n    QString updateLogAddress() const {\n        return p_updateLogAddress;\n    }\n    void setUpdateLogAddress(const QString &value) {\n        auto oldValue = p_updateLogAddress;\n        p_updateLogAddress = value;\n        markPropertySet(1);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"updateLogAddress\"), value);\n            });\n        }\n        if (p_updateLogAddress != oldValue) {\n            Q_EMIT updateLogAddressChanged();\n        }\n    }\nQ_SIGNALS:\n    void backupChanged();\n    void updateLogAddressChanged();\nprivate:\n    void initialize(DTK_CORE_NAMESPACE::DConfig *config) {\n        Q_ASSERT(!m_config.loadRelaxed());\n        m_config.storeRelaxed(config);\n        if (testPropertySet(0)) {\n            config->setValue(QStringLiteral(\"backup\"), QVariant::fromValue(p_backup));\n        } else {\n            updateValue(QStringLiteral(\"backup\"), QVariant::fromValue(p_backup));\n        }\n        if (testPropertySet(1)) {\n            config->setValue(QStringLiteral(\"updateLogAddress\"), QVariant::fromValue(p_updateLogAddress));\n        } else {\n            updateValue(QStringLiteral(\"updateLogAddress\"), QVariant::fromValue(p_updateLogAddress));\n        }\n\n        connect(config, &DTK_CORE_NAMESPACE::DConfig::valueChanged, this, [this](const QString &key) {\n            updateValue(key);\n        }, Qt::DirectConnection);\n    }\n    void updateValue(const QString &key, const QVariant &fallback = QVariant()) {\n        Q_ASSERT(QThread::currentThread() == m_config.loadRelaxed()->thread());\n        const QVariant &value = m_config.loadRelaxed()->value(key, fallback);\n        if (key == QStringLiteral(\"backup\")) {\n            auto newValue = qvariant_cast<bool>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_backup != newValue) {\n                    p_backup = newValue;\n                    Q_EMIT backupChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"updateLogAddress\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_updateLogAddress != newValue) {\n                    p_updateLogAddress = newValue;\n                    Q_EMIT updateLogAddressChanged();\n                }\n            });\n            return;\n        }\n    }\n    inline void markPropertySet(const int index) {\n        if (index < 32) {\n            m_propertySetStatus0.fetchAndOrOrdered(1 << (index - 0));\n            return;\n        }\n        Q_UNREACHABLE();\n    }\n    inline bool testPropertySet(const int index) const {\n        if (index < 32) {\n            return (m_propertySetStatus0.loadRelaxed() & (1 << (index - 0)));\n        }\n        Q_UNREACHABLE();\n    }\n    QAtomicPointer<DTK_CORE_NAMESPACE::DConfig> m_config = nullptr;\n    bool p_backup { true };\n    QString p_updateLogAddress { QStringLiteral(\"https://update-platform.uniontech.com/api/v1/systemupdatelogs\") };\n    QAtomicInteger<quint32> m_propertySetStatus0 = 0;\n};\n\n#endif // ORG_DEEPIN_DDE_CONTROL-CENTER_UPDATE_H\n"
  },
  {
    "path": "toolGenerate/dconfig2cpp/org_deepin_region-format.hpp",
    "content": "/**\n * This file is generated by dconfig2cpp.\n * Command line arguments: ./dconfig2cpp -p ./dde-control-center/toolGenerate/dconfig2cpp ./dde-control-center/misc/configs/common/org.deepin.region-format.json\n * Generation time: 2025-01-14T10:54:58\n * JSON file version: 1.0\n * \n * WARNING: DO NOT MODIFY THIS FILE MANUALLY.\n * If you need to change the content, please modify the dconfig2cpp tool.\n */\n\n#ifndef ORG_DEEPIN_REGION-FORMAT_H\n#define ORG_DEEPIN_REGION-FORMAT_H\n\n#include <QThread>\n#include <QVariant>\n#include <QDebug>\n#include <QAtomicPointer>\n#include <QAtomicInteger>\n#include <DConfig>\n\nclass org_deepin_region-format : public QObject {\n    Q_OBJECT\n\n    Q_PROPERTY(QString country READ country WRITE setCountry NOTIFY countryChanged)\n    Q_PROPERTY(QString currencyFormat READ currencyFormat WRITE setCurrencyFormat NOTIFY currencyFormatChanged)\n    Q_PROPERTY(double firstDayOfWeek READ firstDayOfWeek WRITE setFirstDayOfWeek NOTIFY firstDayOfWeekChanged)\n    Q_PROPERTY(QString languageRegion READ languageRegion WRITE setLanguageRegion NOTIFY languageRegionChanged)\n    Q_PROPERTY(QString localeName READ localeName WRITE setLocaleName NOTIFY localeNameChanged)\n    Q_PROPERTY(QString longDateFormat READ longDateFormat WRITE setLongDateFormat NOTIFY longDateFormatChanged)\n    Q_PROPERTY(QString longTimeFormat READ longTimeFormat WRITE setLongTimeFormat NOTIFY longTimeFormatChanged)\n    Q_PROPERTY(QString numberFormat READ numberFormat WRITE setNumberFormat NOTIFY numberFormatChanged)\n    Q_PROPERTY(QString paperFormat READ paperFormat WRITE setPaperFormat NOTIFY paperFormatChanged)\n    Q_PROPERTY(QString shortDateFormat READ shortDateFormat WRITE setShortDateFormat NOTIFY shortDateFormatChanged)\n    Q_PROPERTY(QString shortTimeFormat READ shortTimeFormat WRITE setShortTimeFormat NOTIFY shortTimeFormatChanged)\npublic:\n    explicit org_deepin_region-format(QThread *thread, const QString &appId, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(appId, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_region-format(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &appId, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(backend, appId, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_region-format(QThread *thread, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    explicit org_deepin_region-format(QThread *thread, DTK_CORE_NAMESPACE::DConfigBackend *backend, const QString &name, const QString &subpath, QObject *parent = nullptr)\n        : QObject(parent) {\n\n        if (!thread->isRunning()) {\n            qWarning() << QStringLiteral(\"Warning: The provided thread is not running.\");\n        }\n        Q_ASSERT(QThread::currentThread() != thread);\n        auto worker = new QObject();\n        worker->moveToThread(thread);\n        QMetaObject::invokeMethod(worker, [=]() {\n            auto config = DTK_CORE_NAMESPACE::DConfig::create(backend, name, subpath, nullptr);\n            if (!config) {\n                qWarning() << QStringLiteral(\"Failed to create DConfig instance.\");\n                worker->deleteLater();\n                return;\n            }\n            config->moveToThread(QThread::currentThread());\n            initialize(config);\n            worker->deleteLater();\n        });\n    }\n    ~org_deepin_region-format() {\n        if (m_config.loadRelaxed()) {\n            m_config.loadRelaxed()->deleteLater();\n        }\n    }\n\n    QString country() const {\n        return p_country;\n    }\n    void setCountry(const QString &value) {\n        auto oldValue = p_country;\n        p_country = value;\n        markPropertySet(0);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"country\"), value);\n            });\n        }\n        if (p_country != oldValue) {\n            Q_EMIT countryChanged();\n        }\n    }\n    QString currencyFormat() const {\n        return p_currencyFormat;\n    }\n    void setCurrencyFormat(const QString &value) {\n        auto oldValue = p_currencyFormat;\n        p_currencyFormat = value;\n        markPropertySet(1);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"currencyFormat\"), value);\n            });\n        }\n        if (p_currencyFormat != oldValue) {\n            Q_EMIT currencyFormatChanged();\n        }\n    }\n    double firstDayOfWeek() const {\n        return p_firstDayOfWeek;\n    }\n    void setFirstDayOfWeek(const double &value) {\n        auto oldValue = p_firstDayOfWeek;\n        p_firstDayOfWeek = value;\n        markPropertySet(2);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"firstDayOfWeek\"), value);\n            });\n        }\n        if (p_firstDayOfWeek != oldValue) {\n            Q_EMIT firstDayOfWeekChanged();\n        }\n    }\n    QString languageRegion() const {\n        return p_languageRegion;\n    }\n    void setLanguageRegion(const QString &value) {\n        auto oldValue = p_languageRegion;\n        p_languageRegion = value;\n        markPropertySet(3);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"languageRegion\"), value);\n            });\n        }\n        if (p_languageRegion != oldValue) {\n            Q_EMIT languageRegionChanged();\n        }\n    }\n    QString localeName() const {\n        return p_localeName;\n    }\n    void setLocaleName(const QString &value) {\n        auto oldValue = p_localeName;\n        p_localeName = value;\n        markPropertySet(4);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"localeName\"), value);\n            });\n        }\n        if (p_localeName != oldValue) {\n            Q_EMIT localeNameChanged();\n        }\n    }\n    QString longDateFormat() const {\n        return p_longDateFormat;\n    }\n    void setLongDateFormat(const QString &value) {\n        auto oldValue = p_longDateFormat;\n        p_longDateFormat = value;\n        markPropertySet(5);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"longDateFormat\"), value);\n            });\n        }\n        if (p_longDateFormat != oldValue) {\n            Q_EMIT longDateFormatChanged();\n        }\n    }\n    QString longTimeFormat() const {\n        return p_longTimeFormat;\n    }\n    void setLongTimeFormat(const QString &value) {\n        auto oldValue = p_longTimeFormat;\n        p_longTimeFormat = value;\n        markPropertySet(6);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"longTimeFormat\"), value);\n            });\n        }\n        if (p_longTimeFormat != oldValue) {\n            Q_EMIT longTimeFormatChanged();\n        }\n    }\n    QString numberFormat() const {\n        return p_numberFormat;\n    }\n    void setNumberFormat(const QString &value) {\n        auto oldValue = p_numberFormat;\n        p_numberFormat = value;\n        markPropertySet(7);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"numberFormat\"), value);\n            });\n        }\n        if (p_numberFormat != oldValue) {\n            Q_EMIT numberFormatChanged();\n        }\n    }\n    QString paperFormat() const {\n        return p_paperFormat;\n    }\n    void setPaperFormat(const QString &value) {\n        auto oldValue = p_paperFormat;\n        p_paperFormat = value;\n        markPropertySet(8);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"paperFormat\"), value);\n            });\n        }\n        if (p_paperFormat != oldValue) {\n            Q_EMIT paperFormatChanged();\n        }\n    }\n    QString shortDateFormat() const {\n        return p_shortDateFormat;\n    }\n    void setShortDateFormat(const QString &value) {\n        auto oldValue = p_shortDateFormat;\n        p_shortDateFormat = value;\n        markPropertySet(9);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"shortDateFormat\"), value);\n            });\n        }\n        if (p_shortDateFormat != oldValue) {\n            Q_EMIT shortDateFormatChanged();\n        }\n    }\n    QString shortTimeFormat() const {\n        return p_shortTimeFormat;\n    }\n    void setShortTimeFormat(const QString &value) {\n        auto oldValue = p_shortTimeFormat;\n        p_shortTimeFormat = value;\n        markPropertySet(10);\n        if (auto config = m_config.loadRelaxed()) {\n            QMetaObject::invokeMethod(config, [this, value]() {\n                m_config.loadRelaxed()->setValue(QStringLiteral(\"shortTimeFormat\"), value);\n            });\n        }\n        if (p_shortTimeFormat != oldValue) {\n            Q_EMIT shortTimeFormatChanged();\n        }\n    }\nQ_SIGNALS:\n    void countryChanged();\n    void currencyFormatChanged();\n    void firstDayOfWeekChanged();\n    void languageRegionChanged();\n    void localeNameChanged();\n    void longDateFormatChanged();\n    void longTimeFormatChanged();\n    void numberFormatChanged();\n    void paperFormatChanged();\n    void shortDateFormatChanged();\n    void shortTimeFormatChanged();\nprivate:\n    void initialize(DTK_CORE_NAMESPACE::DConfig *config) {\n        Q_ASSERT(!m_config.loadRelaxed());\n        m_config.storeRelaxed(config);\n        if (testPropertySet(0)) {\n            config->setValue(QStringLiteral(\"country\"), QVariant::fromValue(p_country));\n        } else {\n            updateValue(QStringLiteral(\"country\"), QVariant::fromValue(p_country));\n        }\n        if (testPropertySet(1)) {\n            config->setValue(QStringLiteral(\"currencyFormat\"), QVariant::fromValue(p_currencyFormat));\n        } else {\n            updateValue(QStringLiteral(\"currencyFormat\"), QVariant::fromValue(p_currencyFormat));\n        }\n        if (testPropertySet(2)) {\n            config->setValue(QStringLiteral(\"firstDayOfWeek\"), QVariant::fromValue(p_firstDayOfWeek));\n        } else {\n            updateValue(QStringLiteral(\"firstDayOfWeek\"), QVariant::fromValue(p_firstDayOfWeek));\n        }\n        if (testPropertySet(3)) {\n            config->setValue(QStringLiteral(\"languageRegion\"), QVariant::fromValue(p_languageRegion));\n        } else {\n            updateValue(QStringLiteral(\"languageRegion\"), QVariant::fromValue(p_languageRegion));\n        }\n        if (testPropertySet(4)) {\n            config->setValue(QStringLiteral(\"localeName\"), QVariant::fromValue(p_localeName));\n        } else {\n            updateValue(QStringLiteral(\"localeName\"), QVariant::fromValue(p_localeName));\n        }\n        if (testPropertySet(5)) {\n            config->setValue(QStringLiteral(\"longDateFormat\"), QVariant::fromValue(p_longDateFormat));\n        } else {\n            updateValue(QStringLiteral(\"longDateFormat\"), QVariant::fromValue(p_longDateFormat));\n        }\n        if (testPropertySet(6)) {\n            config->setValue(QStringLiteral(\"longTimeFormat\"), QVariant::fromValue(p_longTimeFormat));\n        } else {\n            updateValue(QStringLiteral(\"longTimeFormat\"), QVariant::fromValue(p_longTimeFormat));\n        }\n        if (testPropertySet(7)) {\n            config->setValue(QStringLiteral(\"numberFormat\"), QVariant::fromValue(p_numberFormat));\n        } else {\n            updateValue(QStringLiteral(\"numberFormat\"), QVariant::fromValue(p_numberFormat));\n        }\n        if (testPropertySet(8)) {\n            config->setValue(QStringLiteral(\"paperFormat\"), QVariant::fromValue(p_paperFormat));\n        } else {\n            updateValue(QStringLiteral(\"paperFormat\"), QVariant::fromValue(p_paperFormat));\n        }\n        if (testPropertySet(9)) {\n            config->setValue(QStringLiteral(\"shortDateFormat\"), QVariant::fromValue(p_shortDateFormat));\n        } else {\n            updateValue(QStringLiteral(\"shortDateFormat\"), QVariant::fromValue(p_shortDateFormat));\n        }\n        if (testPropertySet(10)) {\n            config->setValue(QStringLiteral(\"shortTimeFormat\"), QVariant::fromValue(p_shortTimeFormat));\n        } else {\n            updateValue(QStringLiteral(\"shortTimeFormat\"), QVariant::fromValue(p_shortTimeFormat));\n        }\n\n        connect(config, &DTK_CORE_NAMESPACE::DConfig::valueChanged, this, [this](const QString &key) {\n            updateValue(key);\n        }, Qt::DirectConnection);\n    }\n    void updateValue(const QString &key, const QVariant &fallback = QVariant()) {\n        Q_ASSERT(QThread::currentThread() == m_config.loadRelaxed()->thread());\n        const QVariant &value = m_config.loadRelaxed()->value(key, fallback);\n        if (key == QStringLiteral(\"country\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_country != newValue) {\n                    p_country = newValue;\n                    Q_EMIT countryChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"currencyFormat\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_currencyFormat != newValue) {\n                    p_currencyFormat = newValue;\n                    Q_EMIT currencyFormatChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"firstDayOfWeek\")) {\n            auto newValue = qvariant_cast<double>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_firstDayOfWeek != newValue) {\n                    p_firstDayOfWeek = newValue;\n                    Q_EMIT firstDayOfWeekChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"languageRegion\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_languageRegion != newValue) {\n                    p_languageRegion = newValue;\n                    Q_EMIT languageRegionChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"localeName\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_localeName != newValue) {\n                    p_localeName = newValue;\n                    Q_EMIT localeNameChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"longDateFormat\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_longDateFormat != newValue) {\n                    p_longDateFormat = newValue;\n                    Q_EMIT longDateFormatChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"longTimeFormat\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_longTimeFormat != newValue) {\n                    p_longTimeFormat = newValue;\n                    Q_EMIT longTimeFormatChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"numberFormat\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_numberFormat != newValue) {\n                    p_numberFormat = newValue;\n                    Q_EMIT numberFormatChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"paperFormat\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_paperFormat != newValue) {\n                    p_paperFormat = newValue;\n                    Q_EMIT paperFormatChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"shortDateFormat\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_shortDateFormat != newValue) {\n                    p_shortDateFormat = newValue;\n                    Q_EMIT shortDateFormatChanged();\n                }\n            });\n            return;\n        }\n        if (key == QStringLiteral(\"shortTimeFormat\")) {\n            auto newValue = qvariant_cast<QString>(value);\n            QMetaObject::invokeMethod(this, [this, newValue]() {\n                if (p_shortTimeFormat != newValue) {\n                    p_shortTimeFormat = newValue;\n                    Q_EMIT shortTimeFormatChanged();\n                }\n            });\n            return;\n        }\n    }\n    inline void markPropertySet(const int index) {\n        if (index < 32) {\n            m_propertySetStatus0.fetchAndOrOrdered(1 << (index - 0));\n            return;\n        }\n        Q_UNREACHABLE();\n    }\n    inline bool testPropertySet(const int index) const {\n        if (index < 32) {\n            return (m_propertySetStatus0.loadRelaxed() & (1 << (index - 0)));\n        }\n        Q_UNREACHABLE();\n    }\n    QAtomicPointer<DTK_CORE_NAMESPACE::DConfig> m_config = nullptr;\n    QString p_country { QStringLiteral(\"\") };\n    QString p_currencyFormat { QStringLiteral(\"\") };\n    double p_firstDayOfWeek { 0 };\n    QString p_languageRegion { QStringLiteral(\"\") };\n    QString p_localeName { QStringLiteral(\"\") };\n    QString p_longDateFormat { QStringLiteral(\"\") };\n    QString p_longTimeFormat { QStringLiteral(\"\") };\n    QString p_numberFormat { QStringLiteral(\"\") };\n    QString p_paperFormat { QStringLiteral(\"\") };\n    QString p_shortDateFormat { QStringLiteral(\"\") };\n    QString p_shortTimeFormat { QStringLiteral(\"\") };\n    QAtomicInteger<quint32> m_propertySetStatus0 = 0;\n};\n\n#endif // ORG_DEEPIN_REGION-FORMAT_H\n"
  },
  {
    "path": "toolGenerate/qdbusxml2cpp/org.deepin.dde.controlcenter.metainfoAdaptor.cpp",
    "content": "/*\n * This file was generated by qdbusxml2cpp version 0.8\n * Command line was: qdbusxml2cpp ./dde-control-center/misc/org.deepin.dde.controlcenter.metainfo.xml -a ./dde-control-center/toolGenerate/qdbusxml2cpp/org.deepin.dde.controlcenter.metainfoAdaptor -i ./dde-control-center/toolGenerate/qdbusxml2cpp/org.deepin.dde.controlcenter.metainfo.h\n *\n * qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd.\n *\n * This is an auto-generated file.\n * Do not edit! All changes made to it will be lost.\n */\n\n#include \"./dde-control-center/toolGenerate/qdbusxml2cpp/org.deepin.dde.controlcenter.metainfoAdaptor.h\"\n#include <QtCore/QMetaObject>\n#include <QtCore/QByteArray>\n#include <QtCore/QList>\n#include <QtCore/QMap>\n#include <QtCore/QString>\n#include <QtCore/QStringList>\n#include <QtCore/QVariant>\n\n"
  },
  {
    "path": "toolGenerate/qdbusxml2cpp/org.deepin.dde.controlcenter.metainfoAdaptor.h",
    "content": "/*\n * This file was generated by qdbusxml2cpp version 0.8\n * Command line was: qdbusxml2cpp ./dde-control-center/misc/org.deepin.dde.controlcenter.metainfo.xml -a ./dde-control-center/toolGenerate/qdbusxml2cpp/org.deepin.dde.controlcenter.metainfoAdaptor -i ./dde-control-center/toolGenerate/qdbusxml2cpp/org.deepin.dde.controlcenter.metainfo.h\n *\n * qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd.\n *\n * This is an auto-generated file.\n * This file may have been hand-edited. Look for HAND-EDIT comments\n * before re-generating it.\n */\n\n#ifndef ORG_DEEPIN_DDE_CONTROLCENTER_METAINFOADAPTOR_H\n#define ORG_DEEPIN_DDE_CONTROLCENTER_METAINFOADAPTOR_H\n\n#include <QtCore/QObject>\n#include <QtDBus/QtDBus>\n#include \"./dde-control-center/toolGenerate/qdbusxml2cpp/org.deepin.dde.controlcenter.metainfo.h\"\nQT_BEGIN_NAMESPACE\nclass QByteArray;\ntemplate<class T> class QList;\ntemplate<class Key, class Value> class QMap;\nclass QString;\nclass QStringList;\nclass QVariant;\nQT_END_NAMESPACE\n\n#endif\n"
  },
  {
    "path": "toolGenerate/qdbusxml2cpp/org.desktopspec.ApplicationManager1.ApplicationAdaptor.cpp",
    "content": "/*\n * This file was generated by qdbusxml2cpp version 0.8\n * Command line was: qdbusxml2cpp ./dde-control-center/src/plugin-notification/operation/xml/org.desktopspec.ApplicationManager1.Application.xml -a ./dde-control-center/toolGenerate/qdbusxml2cpp/org.desktopspec.ApplicationManager1.ApplicationAdaptor -i ./dde-control-center/toolGenerate/qdbusxml2cpp/org.desktopspec.ApplicationManager1.Application.h\n *\n * qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd.\n *\n * This is an auto-generated file.\n * Do not edit! All changes made to it will be lost.\n */\n\n#include \"./dde-control-center/toolGenerate/qdbusxml2cpp/org.desktopspec.ApplicationManager1.ApplicationAdaptor.h\"\n#include <QtCore/QMetaObject>\n#include <QtCore/QByteArray>\n#include <QtCore/QList>\n#include <QtCore/QMap>\n#include <QtCore/QString>\n#include <QtCore/QStringList>\n#include <QtCore/QVariant>\n\n/*\n * Implementation of adaptor class ApplicationAdaptor\n */\n\nApplicationAdaptor::ApplicationAdaptor(QObject *parent)\n    : QDBusAbstractAdaptor(parent)\n{\n    // constructor\n    setAutoRelaySignals(true);\n}\n\nApplicationAdaptor::~ApplicationAdaptor()\n{\n    // destructor\n}\n\nPropMap ApplicationAdaptor::actionName() const\n{\n    // get the value of property ActionName\n    return qvariant_cast< PropMap >(parent()->property(\"ActionName\"));\n}\n\nQStringList ApplicationAdaptor::actions() const\n{\n    // get the value of property Actions\n    return qvariant_cast< QStringList >(parent()->property(\"Actions\"));\n}\n\nbool ApplicationAdaptor::autoStart() const\n{\n    // get the value of property AutoStart\n    return qvariant_cast< bool >(parent()->property(\"AutoStart\"));\n}\n\nvoid ApplicationAdaptor::setAutoStart(bool value)\n{\n    // set the value of property AutoStart\n    parent()->setProperty(\"AutoStart\", QVariant::fromValue(value));\n}\n\nQStringList ApplicationAdaptor::categories() const\n{\n    // get the value of property Categories\n    return qvariant_cast< QStringList >(parent()->property(\"Categories\"));\n}\n\nQString ApplicationAdaptor::environ() const\n{\n    // get the value of property Environ\n    return qvariant_cast< QString >(parent()->property(\"Environ\"));\n}\n\nvoid ApplicationAdaptor::setEnviron(const QString &value)\n{\n    // set the value of property Environ\n    parent()->setProperty(\"Environ\", QVariant::fromValue(value));\n}\n\nQStringMap ApplicationAdaptor::genericName() const\n{\n    // get the value of property GenericName\n    return qvariant_cast< QStringMap >(parent()->property(\"GenericName\"));\n}\n\nQString ApplicationAdaptor::iD() const\n{\n    // get the value of property ID\n    return qvariant_cast< QString >(parent()->property(\"ID\"));\n}\n\nQStringMap ApplicationAdaptor::icons() const\n{\n    // get the value of property Icons\n    return qvariant_cast< QStringMap >(parent()->property(\"Icons\"));\n}\n\nqlonglong ApplicationAdaptor::installedTime() const\n{\n    // get the value of property InstalledTime\n    return qvariant_cast< qlonglong >(parent()->property(\"InstalledTime\"));\n}\n\nQList<QDBusObjectPath> ApplicationAdaptor::instances() const\n{\n    // get the value of property Instances\n    return qvariant_cast< QList<QDBusObjectPath> >(parent()->property(\"Instances\"));\n}\n\nqlonglong ApplicationAdaptor::lastLaunchedTime() const\n{\n    // get the value of property LastLaunchedTime\n    return qvariant_cast< qlonglong >(parent()->property(\"LastLaunchedTime\"));\n}\n\nqlonglong ApplicationAdaptor::launchedTimes() const\n{\n    // get the value of property LaunchedTimes\n    return qvariant_cast< qlonglong >(parent()->property(\"LaunchedTimes\"));\n}\n\nQStringList ApplicationAdaptor::mimeTypes() const\n{\n    // get the value of property MimeTypes\n    return qvariant_cast< QStringList >(parent()->property(\"MimeTypes\"));\n}\n\nvoid ApplicationAdaptor::setMimeTypes(const QStringList &value)\n{\n    // set the value of property MimeTypes\n    parent()->setProperty(\"MimeTypes\", QVariant::fromValue(value));\n}\n\nQStringMap ApplicationAdaptor::name() const\n{\n    // get the value of property Name\n    return qvariant_cast< QStringMap >(parent()->property(\"Name\"));\n}\n\nbool ApplicationAdaptor::noDisplay() const\n{\n    // get the value of property NoDisplay\n    return qvariant_cast< bool >(parent()->property(\"NoDisplay\"));\n}\n\nbool ApplicationAdaptor::terminal() const\n{\n    // get the value of property Terminal\n    return qvariant_cast< bool >(parent()->property(\"Terminal\"));\n}\n\nQString ApplicationAdaptor::x_Deepin_Vendor() const\n{\n    // get the value of property X_Deepin_Vendor\n    return qvariant_cast< QString >(parent()->property(\"X_Deepin_Vendor\"));\n}\n\nbool ApplicationAdaptor::x_Flatpak() const\n{\n    // get the value of property X_Flatpak\n    return qvariant_cast< bool >(parent()->property(\"X_Flatpak\"));\n}\n\nbool ApplicationAdaptor::x_linglong() const\n{\n    // get the value of property X_linglong\n    return qvariant_cast< bool >(parent()->property(\"X_linglong\"));\n}\n\nbool ApplicationAdaptor::isOnDesktop() const\n{\n    // get the value of property isOnDesktop\n    return qvariant_cast< bool >(parent()->property(\"isOnDesktop\"));\n}\n\nQDBusObjectPath ApplicationAdaptor::Launch(const QString &action, const QStringList &fields, const QVariantMap &options)\n{\n    // handle method call org.desktopspec.ApplicationManager1.Application.Launch\n    QDBusObjectPath job;\n    QMetaObject::invokeMethod(parent(), \"Launch\", Q_RETURN_ARG(QDBusObjectPath, job), Q_ARG(QString, action), Q_ARG(QStringList, fields), Q_ARG(QVariantMap, options));\n    return job;\n}\n\nbool ApplicationAdaptor::RemoveFromDesktop()\n{\n    // handle method call org.desktopspec.ApplicationManager1.Application.RemoveFromDesktop\n    bool success;\n    QMetaObject::invokeMethod(parent(), \"RemoveFromDesktop\", Q_RETURN_ARG(bool, success));\n    return success;\n}\n\nbool ApplicationAdaptor::SendToDesktop()\n{\n    // handle method call org.desktopspec.ApplicationManager1.Application.SendToDesktop\n    bool success;\n    QMetaObject::invokeMethod(parent(), \"SendToDesktop\", Q_RETURN_ARG(bool, success));\n    return success;\n}\n\n"
  },
  {
    "path": "toolGenerate/qdbusxml2cpp/org.desktopspec.ApplicationManager1.ApplicationAdaptor.h",
    "content": "/*\n * This file was generated by qdbusxml2cpp version 0.8\n * Command line was: qdbusxml2cpp ./dde-control-center/src/plugin-notification/operation/xml/org.desktopspec.ApplicationManager1.Application.xml -a ./dde-control-center/toolGenerate/qdbusxml2cpp/org.desktopspec.ApplicationManager1.ApplicationAdaptor -i ./dde-control-center/toolGenerate/qdbusxml2cpp/org.desktopspec.ApplicationManager1.Application.h\n *\n * qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd.\n *\n * This is an auto-generated file.\n * This file may have been hand-edited. Look for HAND-EDIT comments\n * before re-generating it.\n */\n\n#ifndef ORG_DESKTOPSPEC_APPLICATIONMANAGER1_APPLICATIONADAPTOR_H\n#define ORG_DESKTOPSPEC_APPLICATIONMANAGER1_APPLICATIONADAPTOR_H\n\n#include <QtCore/QObject>\n#include <QtDBus/QtDBus>\n#include \"./dde-control-center/toolGenerate/qdbusxml2cpp/org.desktopspec.ApplicationManager1.Application.h\"\nQT_BEGIN_NAMESPACE\nclass QByteArray;\ntemplate<class T> class QList;\ntemplate<class Key, class Value> class QMap;\nclass QString;\nclass QStringList;\nclass QVariant;\nQT_END_NAMESPACE\n\n/*\n * Adaptor class for interface org.desktopspec.ApplicationManager1.Application\n */\nclass ApplicationAdaptor: public QDBusAbstractAdaptor\n{\n    Q_OBJECT\n    Q_CLASSINFO(\"D-Bus Interface\", \"org.desktopspec.ApplicationManager1.Application\")\n    Q_CLASSINFO(\"D-Bus Introspection\", \"\"\n\"  <interface name=\\\"org.desktopspec.ApplicationManager1.Application\\\">\\n\"\n\"    <annotation value=\\\"This interface is designed to provide a dbus interface of desktop file. Missing fields will be added later.\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"as\\\" name=\\\"Categories\\\"/>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"b\\\" name=\\\"X_linglong\\\"/>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"b\\\" name=\\\"X_Flatpak\\\"/>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"s\\\" name=\\\"X_Deepin_Vendor\\\">\\n\"\n\"      <annotation value=\\\"Whem this property is 'deepin', display name of the application                               should use GenericName.\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"    </property>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"b\\\" name=\\\"NoDisplay\\\"/>\\n\"\n\"    <property access=\\\"readwrite\\\" type=\\\"as\\\" name=\\\"MimeTypes\\\"/>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"as\\\" name=\\\"Actions\\\">\\n\"\n\"      <annotation value=\\\"Names of all action identifiers of this application.                        Check https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html#extra-actions                        for futher information.\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"    </property>\\n\"\n\"    <property access=\\\"readwrite\\\" type=\\\"b\\\" name=\\\"AutoStart\\\"/>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"x\\\" name=\\\"LastLaunchedTime\\\">\\n\"\n\"      <annotation value=\\\"Set the value of this property to -1 to                        indicates that some errors has occured.\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"    </property>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"x\\\" name=\\\"LaunchedTimes\\\">\\n\"\n\"      <annotation value=\\\"Set the value of this property to -1 to                        indicates that some errors has occured.\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"    </property>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"x\\\" name=\\\"InstalledTime\\\">\\n\"\n\"      <annotation value=\\\"Set the value of this property to -1 to                    indicates that some errors has occured.\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"    </property>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"ao\\\" name=\\\"Instances\\\">\\n\"\n\"      <annotation value=\\\"All instances of this application.\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"    </property>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"s\\\" name=\\\"ID\\\">\\n\"\n\"      <annotation value=\\\"The desktop file id of this application.                        Check https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html#desktop-file-id                        for futher infomation.\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"    </property>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"b\\\" name=\\\"Terminal\\\">\\n\"\n\"      <annotation value=\\\"Indicate this application should launch by terminal or not.\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"    </property>\\n\"\n\"    <property access=\\\"readwrite\\\" type=\\\"s\\\" name=\\\"Environ\\\">\\n\"\n\"      <annotation value=\\\"Indicate the environment of application's instance.                        passing some specific environment variables to Launch                        this application, eg. 'LANG=en_US;PATH=xxx:yyy;'\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"    </property>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"a{sa{ss}}\\\" name=\\\"ActionName\\\">\\n\"\n\"      <annotation value=\\\"The type of ActionName is a Map, first key represents action, second key represents locale and the value is the corresponding content.\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"      <annotation value=\\\"PropMap\\\" name=\\\"org.qtproject.QtDBus.QtTypeName\\\"/>\\n\"\n\"    </property>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"a{ss}\\\" name=\\\"Icons\\\">\\n\"\n\"      <annotation value=\\\"The type of IconName is a Map, where the key represents the action and the value is the corresponding content.\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"      <annotation value=\\\"QStringMap\\\" name=\\\"org.qtproject.QtDBus.QtTypeName\\\"/>\\n\"\n\"    </property>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"a{ss}\\\" name=\\\"Name\\\">\\n\"\n\"      <annotation value=\\\"The meaning of this property's type is same as which in ActionName.\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"      <annotation value=\\\"QStringMap\\\" name=\\\"org.qtproject.QtDBus.QtTypeName\\\"/>\\n\"\n\"    </property>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"a{ss}\\\" name=\\\"GenericName\\\">\\n\"\n\"      <annotation value=\\\"The meaning of this property's type is same as which in ActionName.\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"      <annotation value=\\\"QStringMap\\\" name=\\\"org.qtproject.QtDBus.QtTypeName\\\"/>\\n\"\n\"    </property>\\n\"\n\"    <method name=\\\"Launch\\\">\\n\"\n\"      <arg direction=\\\"in\\\" type=\\\"s\\\" name=\\\"action\\\"/>\\n\"\n\"      <arg direction=\\\"in\\\" type=\\\"as\\\" name=\\\"fields\\\"/>\\n\"\n\"      <arg direction=\\\"out\\\" type=\\\"o\\\" name=\\\"job\\\"/>\\n\"\n\"      <arg direction=\\\"in\\\" type=\\\"a{sv}\\\" name=\\\"options\\\"/>\\n\"\n\"      <annotation value=\\\"QVariantMap\\\" name=\\\"org.qtproject.QtDBus.QtTypeName.In2\\\"/>\\n\"\n\"      <annotation value=\\\"Given an action identifier,                        and some fields (file path or URI),                        this method will launch this application,                        and the object path of the job launching application.                        Result of that job is a object path                        of the new application instance.                        If that job failed, the result is a bool `false`.                         Extra options can be passed in `options` argument:                        1. `uid` (type u):                           The user id as who is that application will be run.                           This option might request a polikit authentication.                        2. `env` (type s):                           passing some specific environment variables to Launch                           this application, eg. 'LANG=en_US;PATH=xxx:yyy;'                        3. `path` (type s):                           set this application's working directory, please pass                           absolute directory path.                        NOTE:                        When application launched with `uid` option,                        `env` option will not take effect at all.\\\" name=\\\"org.freedesktop.DBus.Description\\\"/>\\n\"\n\"    </method>\\n\"\n\"    <property access=\\\"read\\\" type=\\\"b\\\" name=\\\"isOnDesktop\\\"/>\\n\"\n\"    <method name=\\\"SendToDesktop\\\">\\n\"\n\"      <arg direction=\\\"out\\\" type=\\\"b\\\" name=\\\"success\\\"/>\\n\"\n\"    </method>\\n\"\n\"    <method name=\\\"RemoveFromDesktop\\\">\\n\"\n\"      <arg direction=\\\"out\\\" type=\\\"b\\\" name=\\\"success\\\"/>\\n\"\n\"    </method>\\n\"\n\"  </interface>\\n\"\n        \"\")\npublic:\n    ApplicationAdaptor(QObject *parent);\n    virtual ~ApplicationAdaptor();\n\npublic: // PROPERTIES\n    Q_PROPERTY(PropMap ActionName READ actionName)\n    PropMap actionName() const;\n\n    Q_PROPERTY(QStringList Actions READ actions)\n    QStringList actions() const;\n\n    Q_PROPERTY(bool AutoStart READ autoStart WRITE setAutoStart)\n    bool autoStart() const;\n    void setAutoStart(bool value);\n\n    Q_PROPERTY(QStringList Categories READ categories)\n    QStringList categories() const;\n\n    Q_PROPERTY(QString Environ READ environ WRITE setEnviron)\n    QString environ() const;\n    void setEnviron(const QString &value);\n\n    Q_PROPERTY(QStringMap GenericName READ genericName)\n    QStringMap genericName() const;\n\n    Q_PROPERTY(QString ID READ iD)\n    QString iD() const;\n\n    Q_PROPERTY(QStringMap Icons READ icons)\n    QStringMap icons() const;\n\n    Q_PROPERTY(qlonglong InstalledTime READ installedTime)\n    qlonglong installedTime() const;\n\n    Q_PROPERTY(QList<QDBusObjectPath> Instances READ instances)\n    QList<QDBusObjectPath> instances() const;\n\n    Q_PROPERTY(qlonglong LastLaunchedTime READ lastLaunchedTime)\n    qlonglong lastLaunchedTime() const;\n\n    Q_PROPERTY(qlonglong LaunchedTimes READ launchedTimes)\n    qlonglong launchedTimes() const;\n\n    Q_PROPERTY(QStringList MimeTypes READ mimeTypes WRITE setMimeTypes)\n    QStringList mimeTypes() const;\n    void setMimeTypes(const QStringList &value);\n\n    Q_PROPERTY(QStringMap Name READ name)\n    QStringMap name() const;\n\n    Q_PROPERTY(bool NoDisplay READ noDisplay)\n    bool noDisplay() const;\n\n    Q_PROPERTY(bool Terminal READ terminal)\n    bool terminal() const;\n\n    Q_PROPERTY(QString X_Deepin_Vendor READ x_Deepin_Vendor)\n    QString x_Deepin_Vendor() const;\n\n    Q_PROPERTY(bool X_Flatpak READ x_Flatpak)\n    bool x_Flatpak() const;\n\n    Q_PROPERTY(bool X_linglong READ x_linglong)\n    bool x_linglong() const;\n\n    Q_PROPERTY(bool isOnDesktop READ isOnDesktop)\n    bool isOnDesktop() const;\n\npublic Q_SLOTS: // METHODS\n    QDBusObjectPath Launch(const QString &action, const QStringList &fields, const QVariantMap &options);\n    bool RemoveFromDesktop();\n    bool SendToDesktop();\nQ_SIGNALS: // SIGNALS\n};\n\n#endif\n"
  },
  {
    "path": "toolGenerate/qdbusxml2cpp/org.desktopspec.ObjectManager1Adaptor.cpp",
    "content": "/*\n * This file was generated by qdbusxml2cpp version 0.8\n * Command line was: qdbusxml2cpp ./dde-control-center/src/plugin-notification/operation/xml/org.desktopspec.ObjectManager1.xml -a ./dde-control-center/toolGenerate/qdbusxml2cpp/org.desktopspec.ObjectManager1Adaptor -i ./dde-control-center/toolGenerate/qdbusxml2cpp/org.desktopspec.ObjectManager1.h\n *\n * qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd.\n *\n * This is an auto-generated file.\n * Do not edit! All changes made to it will be lost.\n */\n\n#include \"./dde-control-center/toolGenerate/qdbusxml2cpp/org.desktopspec.ObjectManager1Adaptor.h\"\n#include <QtCore/QMetaObject>\n#include <QtCore/QByteArray>\n#include <QtCore/QList>\n#include <QtCore/QMap>\n#include <QtCore/QString>\n#include <QtCore/QStringList>\n#include <QtCore/QVariant>\n\n/*\n * Implementation of adaptor class ObjectManagerAdaptor\n */\n\nObjectManagerAdaptor::ObjectManagerAdaptor(QObject *parent)\n    : QDBusAbstractAdaptor(parent)\n{\n    // constructor\n    setAutoRelaySignals(true);\n}\n\nObjectManagerAdaptor::~ObjectManagerAdaptor()\n{\n    // destructor\n}\n\nObjectMap ObjectManagerAdaptor::GetManagedObjects()\n{\n    // handle method call org.desktopspec.DBus.ObjectManager.GetManagedObjects\n    ObjectMap objpath_interfaces_and_properties;\n    QMetaObject::invokeMethod(parent(), \"GetManagedObjects\", Q_RETURN_ARG(ObjectMap, objpath_interfaces_and_properties));\n    return objpath_interfaces_and_properties;\n}\n\n"
  },
  {
    "path": "toolGenerate/qdbusxml2cpp/org.desktopspec.ObjectManager1Adaptor.h",
    "content": "/*\n * This file was generated by qdbusxml2cpp version 0.8\n * Command line was: qdbusxml2cpp ./dde-control-center/src/plugin-notification/operation/xml/org.desktopspec.ObjectManager1.xml -a ./dde-control-center/toolGenerate/qdbusxml2cpp/org.desktopspec.ObjectManager1Adaptor -i ./dde-control-center/toolGenerate/qdbusxml2cpp/org.desktopspec.ObjectManager1.h\n *\n * qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd.\n *\n * This is an auto-generated file.\n * This file may have been hand-edited. Look for HAND-EDIT comments\n * before re-generating it.\n */\n\n#ifndef ORG_DESKTOPSPEC_OBJECTMANAGER1ADAPTOR_H\n#define ORG_DESKTOPSPEC_OBJECTMANAGER1ADAPTOR_H\n\n#include <QtCore/QObject>\n#include <QtDBus/QtDBus>\n#include \"./dde-control-center/toolGenerate/qdbusxml2cpp/org.desktopspec.ObjectManager1.h\"\nQT_BEGIN_NAMESPACE\nclass QByteArray;\ntemplate<class T> class QList;\ntemplate<class Key, class Value> class QMap;\nclass QString;\nclass QStringList;\nclass QVariant;\nQT_END_NAMESPACE\n\n/*\n * Adaptor class for interface org.desktopspec.DBus.ObjectManager\n */\nclass ObjectManagerAdaptor: public QDBusAbstractAdaptor\n{\n    Q_OBJECT\n    Q_CLASSINFO(\"D-Bus Interface\", \"org.desktopspec.DBus.ObjectManager\")\n    Q_CLASSINFO(\"D-Bus Introspection\", \"\"\n\"  <interface name=\\\"org.desktopspec.DBus.ObjectManager\\\">\\n\"\n\"    <method name=\\\"GetManagedObjects\\\">\\n\"\n\"      <arg direction=\\\"out\\\" type=\\\"a{oa{sa{sv}}}\\\" name=\\\"objpath_interfaces_and_properties\\\"/>\\n\"\n\"      <annotation value=\\\"ObjectMap\\\" name=\\\"org.qtproject.QtDBus.QtTypeName.Out0\\\"/>\\n\"\n\"    </method>\\n\"\n\"    <signal name=\\\"InterfacesAdded\\\">\\n\"\n\"      <arg type=\\\"o\\\" name=\\\"object_path\\\"/>\\n\"\n\"      <arg type=\\\"a{sa{sv}}\\\" name=\\\"interfaces_and_properties\\\"/>\\n\"\n\"      <annotation value=\\\"ObjectInterfaceMap\\\" name=\\\"org.qtproject.QtDBus.QtTypeName.Out1\\\"/>\\n\"\n\"    </signal>\\n\"\n\"    <signal name=\\\"InterfacesRemoved\\\">\\n\"\n\"      <arg type=\\\"o\\\" name=\\\"object_path\\\"/>\\n\"\n\"      <arg type=\\\"as\\\" name=\\\"interfaces\\\"/>\\n\"\n\"    </signal>\\n\"\n\"  </interface>\\n\"\n        \"\")\npublic:\n    ObjectManagerAdaptor(QObject *parent);\n    virtual ~ObjectManagerAdaptor();\n\npublic: // PROPERTIES\npublic Q_SLOTS: // METHODS\n    ObjectMap GetManagedObjects();\nQ_SIGNALS: // SIGNALS\n    void InterfacesAdded(const QDBusObjectPath &object_path, ObjectInterfaceMap interfaces_and_properties);\n    void InterfacesRemoved(const QDBusObjectPath &object_path, const QStringList &interfaces);\n};\n\n#endif\n"
  },
  {
    "path": "toolGenerate/qdbusxml2cpp/treeland-output-managementAdaptor.cpp",
    "content": "/*\n * This file was generated by qdbusxml2cpp version 0.8\n * Command line was: qdbusxml2cpp ./dde-control-center/dcc-old/src/plugin-display/wayland/libwayqt/protocols/treeland-output-management.xml -a ./dde-control-center/toolGenerate/qdbusxml2cpp/treeland-output-managementAdaptor -i ./dde-control-center/toolGenerate/qdbusxml2cpp/treeland-output-management.h\n *\n * qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd.\n *\n * This is an auto-generated file.\n * Do not edit! All changes made to it will be lost.\n */\n\n#include \"./dde-control-center/toolGenerate/qdbusxml2cpp/treeland-output-managementAdaptor.h\"\n#include <QtCore/QMetaObject>\n#include <QtCore/QByteArray>\n#include <QtCore/QList>\n#include <QtCore/QMap>\n#include <QtCore/QString>\n#include <QtCore/QStringList>\n#include <QtCore/QVariant>\n\n"
  },
  {
    "path": "toolGenerate/qdbusxml2cpp/treeland-output-managementAdaptor.h",
    "content": "/*\n * This file was generated by qdbusxml2cpp version 0.8\n * Command line was: qdbusxml2cpp ./dde-control-center/dcc-old/src/plugin-display/wayland/libwayqt/protocols/treeland-output-management.xml -a ./dde-control-center/toolGenerate/qdbusxml2cpp/treeland-output-managementAdaptor -i ./dde-control-center/toolGenerate/qdbusxml2cpp/treeland-output-management.h\n *\n * qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd.\n *\n * This is an auto-generated file.\n * This file may have been hand-edited. Look for HAND-EDIT comments\n * before re-generating it.\n */\n\n#ifndef TREELAND-OUTPUT-MANAGEMENTADAPTOR_H\n#define TREELAND-OUTPUT-MANAGEMENTADAPTOR_H\n\n#include <QtCore/QObject>\n#include <QtDBus/QtDBus>\n#include \"./dde-control-center/toolGenerate/qdbusxml2cpp/treeland-output-management.h\"\nQT_BEGIN_NAMESPACE\nclass QByteArray;\ntemplate<class T> class QList;\ntemplate<class Key, class Value> class QMap;\nclass QString;\nclass QStringList;\nclass QVariant;\nQT_END_NAMESPACE\n\n#endif\n"
  },
  {
    "path": "toolGenerate/qdbusxml2cpp/wlr-output-management-unstable-v1Adaptor.cpp",
    "content": "/*\n * This file was generated by qdbusxml2cpp version 0.8\n * Command line was: qdbusxml2cpp ./dde-control-center/dcc-old/src/plugin-display/wayland/libwayqt/protocols/wlr-output-management-unstable-v1.xml -a ./dde-control-center/toolGenerate/qdbusxml2cpp/wlr-output-management-unstable-v1Adaptor -i ./dde-control-center/toolGenerate/qdbusxml2cpp/wlr-output-management-unstable-v1.h\n *\n * qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd.\n *\n * This is an auto-generated file.\n * Do not edit! All changes made to it will be lost.\n */\n\n#include \"./dde-control-center/toolGenerate/qdbusxml2cpp/wlr-output-management-unstable-v1Adaptor.h\"\n#include <QtCore/QMetaObject>\n#include <QtCore/QByteArray>\n#include <QtCore/QList>\n#include <QtCore/QMap>\n#include <QtCore/QString>\n#include <QtCore/QStringList>\n#include <QtCore/QVariant>\n\n"
  },
  {
    "path": "toolGenerate/qdbusxml2cpp/wlr-output-management-unstable-v1Adaptor.h",
    "content": "/*\n * This file was generated by qdbusxml2cpp version 0.8\n * Command line was: qdbusxml2cpp ./dde-control-center/dcc-old/src/plugin-display/wayland/libwayqt/protocols/wlr-output-management-unstable-v1.xml -a ./dde-control-center/toolGenerate/qdbusxml2cpp/wlr-output-management-unstable-v1Adaptor -i ./dde-control-center/toolGenerate/qdbusxml2cpp/wlr-output-management-unstable-v1.h\n *\n * qdbusxml2cpp is Copyright (C) 2017 The Qt Company Ltd.\n *\n * This is an auto-generated file.\n * This file may have been hand-edited. Look for HAND-EDIT comments\n * before re-generating it.\n */\n\n#ifndef WLR-OUTPUT-MANAGEMENT-UNSTABLE-V1ADAPTOR_H\n#define WLR-OUTPUT-MANAGEMENT-UNSTABLE-V1ADAPTOR_H\n\n#include <QtCore/QObject>\n#include <QtDBus/QtDBus>\n#include \"./dde-control-center/toolGenerate/qdbusxml2cpp/wlr-output-management-unstable-v1.h\"\nQT_BEGIN_NAMESPACE\nclass QByteArray;\ntemplate<class T> class QList;\ntemplate<class Key, class Value> class QMap;\nclass QString;\nclass QStringList;\nclass QVariant;\nQT_END_NAMESPACE\n\n#endif\n"
  },
  {
    "path": "translations/dde-control-center_ady.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"ady\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_af.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"af\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Verbind</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Kanselleer</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Vertoonskerm</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Invoer Volume</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Muis en Voelblok</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Verpersoonliking</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Verspersoonlik</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Beheersentrum</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Klank</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Skakel af</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Maak Asblik Leeg</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Modus</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Uitset Volume</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Links</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Regs</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Keer terug</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Stoor</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Tradisionele Chinees (Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Tradisionele Chinees (Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan China</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Hierdie snelkoppeling kollideer met [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Stelsel</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Venster</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Werkarea</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Hulpprogramme</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Eie</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Geen</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_af_ZA.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"af_ZA\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_ak.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ak\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Shut down</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Log out</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_am.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"am\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>የ መጠቆሚያው ፍጥነት</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>መሸብለያ</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\">የ መጠቆሚያው ፍጥነት</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\">መሸብለያ</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_am_ET.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"am_ET\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>ተገናኝቷል</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>አልተገናኘም</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>መሰረዣ</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>ማሳያ</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>የ መጠን ማሳገቢያ</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>የ ግል ማድረጊያ</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>ማስተካከያ</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>መቆጣጠሪያ ማእከል</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>መመልከቻ</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>ድምፅ</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>የ ድምፅ ውጤቶች</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>ማጥፊያ</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>መውጫ</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>ቆሻሻውን ባዶ ማድረጊያ</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>ዘዴ</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>የ መጠን ውጤት</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>የ ግራ</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>የ ቀኝ</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>ወደ ነበረበት መመለሻ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>ማስቀመጫ</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_ar.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ar\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>تعديل</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>إضافة مستخدم جديد</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>تعيين الاسم الكامل</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>إعدادات تسجيل الدخول</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>تسجيل الدخول بدون كلمة مرور</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>حذف الحساب الحالي</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>إعداد المجموعة</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>مجموعات الحسابين</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>تم</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>اسم المجموعة</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>إضافة مجموعة</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>تسجيل الدخول التلقائي</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>معلومات الحساب</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>اسم الحساب، الاسم الكامل للحساب، نوع الحساب</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>اسم الحساب</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>اسم الحساب الكامل</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>نوع الحساب</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>اسمك الكامل طويل جدًا</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>يجب أن لا يتجاوز اسم المجموعة 32 حرفًا</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>لا يمكن أن يحتوي اسم المجموعة فقط على الأرقام</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>استخدم الحروف والأرقام والشرطيات والشرطيات فقط واحصل على البدء بحرف</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>تم استخدام اسم المجموعة بالفعل</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>تسجيل الدخول السريع، تسجيل الدخول التلقائي، تسجيل الدخول بدون كلمة مرور</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>تسجيل الوجه</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>لقد قرأت وقبلت REGARDING TO</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation> tuyên殃</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>التالي</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>تم تسجيل الوجه</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>فشل تسجيل وجهك</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>تم</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>حاول التسجيل مرة أخرى</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>تم</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>تسجيل الإصبع</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>ضع الإصبع الذي سيتم تسجيله في مستشعر بصمات الأصابع وتحركه من الأسفل إلى الأعلى. بعد إكمال الإجراء، يرجى رفع الإصبع.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>لقد قرأت ووافقت على</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>إقرار</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>التالي</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>حاول التسجيل مرة أخرى</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>&quot;التحقق البيومטרי&quot; هو وظيفة لتأكيد هوية المستخدم تقدمها شركة تكنولوجيا البرمجيات المتحدة. من خلال &quot;التحقق البيومטרי&quot;، سيتم مقارنة البيانات البيومترية المجمعة مع البيانات المخزنة في الجهاز، وسيتم التحقق من هوية المستخدم بناءً على نتيجة المقارنة.\n\nيرجى الملاحظة أن شركة تكنولوجيا البرمجيات المتحدة لن تجمع أو تُدخل بياناتك البيومترية، والتي سيتم تخزينها على جهازك المحلي. يرجى تمكين &quot;التحقق البيومטרי&quot; فقط في جهازك الشخصي واستخدم بياناتك البيومترية الخاصة لإجراء العمليات المرتبطة، وقم بتعطيل أو حذف بيانات البيومترية الأخرى على ذلك الجهاز في أقرب وقت، وإلا فإنك ستحمل المخاطر الناشئة عن ذلك.\n\n\nتلتزم شركة تكنولوجيا البرمجيات المتحدة ببحث وتحسين أمان ودقة وثبات &quot;التحقق البيومטרי&quot;. ومع ذلك، لا يوجد ضمان بأنك ستمكين &quot;التحقق البيومטרי&quot; مؤقتًا بسبب عوامل بيئية وتقنية وآلاتية وغيرها من عوامل التحكم في المخاطر. لذلك، يرجى عدم الاعتماد على &quot;التحقق البيومטרי&quot; كالطريقة الوحيدة لتسجيل الدخول إلى نظام التشغيل UOS. إذا كانت لديك أي أسئلة أو ملاحظات عند استخدام &quot;التحقق البيومטרי&quot;، يمكنك إعطاء ملاحظات عبر &quot;الدعم والمساعدة&quot; في نظام التشغيل UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>&quot;تسجيل الدخول التلقائي&quot; يمكن تمكينه فقط لحساب واحد، يرجى تعطيله أولاً لحساب &quot;%1&quot;.</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>موافق</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>الصور</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>إنسان</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>حيوان</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>المناظر</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>الرسم</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>الإيموجي</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>مخصصة</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>نمط كاريكاتوري</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>نمط ثلاثي الأبعاد</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>نمط فلات</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>حفظ</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>شاشة ونوم</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>إطفاء الشاشة بعد</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>قفل الشاشة بعد</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>الحاسوب لنوم بعد</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>عند إغلاق قover</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>عند الضغط على زر الطاقة</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>بطارية منخفضة</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>إشعار البطارية المنخفضة</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>نوم تلقائي</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation> oficial حibernation تلقائي</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>حد البطارية المنخفضة</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>إدارة البطارية</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>عرض الوقت المتبقی للاستخدام والشح詄</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>�عیة البطارية القصیة</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>مستوی البطارية المنخفض</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>де فعالة</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>البلوتوث معطيل واسم dispositivo يظهر كـ &quot;%1&quot; </translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>البلوتوث مُ@Enable واسم الجهاز يُظهر كـ &quot;%1&quot; </translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>إلغاء الاتصال</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>اتصال</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>إرسال الملفات</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>إعادة назвان</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>حذف جهاز</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>اختيار ملف</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>تحرير</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>سماح للجهازات الأخرى بت cuerص مركز</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>لمستخدم خدمة الاتصال من خلال Bluetтьth، من فضلك قم بإغلاق</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>الوضع القاسي</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>لا يمكن تجاوز اسم البلوتوث 64 حرفًا</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>متصل</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>غير متصل</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>إعدادات التشغيل</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>يمكنك النقر على القائمة للتغيير الإعدادات الافتراضية للتشغيل، أو سحب الصورة إلى النافذة لتغيير صورة الخلفية</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>تأخير grub عند تشغيل الأجهزة</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>التيم</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>بعد فتح التيم، ستتمكن من رؤية خلفية التيم عند بدء تشغيل الحاسوب</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>إيقاف تعريف القائمة عند التشغيل</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>بعد فتح القائمة، يتطلب التعديل على القائمة اسم مستخدم وكلمة سر</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>تغيير كلمة السر</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>تغيير كلمة المرور لمصادقة قائمة التشغيل</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>تمثيل كلمة السر لمصادقة قائمة التشغيل</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>اسم المستخدم :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>كلمة السر الجديدة :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>مطلوب</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>لا يمكن أن يكون كلمة المرور فارغة</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>كلمة المرورات لا تت protagonir</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>تكرار كلمة المرور:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>بالتأكيد</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>بدء الرسم التحريدي</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>凋整系统启动界面中图标动画的大小</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation> 허용 아래 앱이 카메라에 접근하게 하세요:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>بصمة الإصبع1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>بصمة الإصبع2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>بصمة الإصبع3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>بصمة الإصبع4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>بصمة الإصبع5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>بصمة الإصبع6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>بصمة الإصبع7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>بصمة الإصبع8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>بصمة الإصبع9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>بصمة الإصبع10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>فشل�认</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>تعتبر البصمة موجودة أساسا</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>رجو استهلال أصابع أخرى</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>خطأ غير معروف</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>وقف تصوير</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>لا يمكن التعرف عليه</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>تحرك太快了</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>上班族ErrMsg1</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>印 fingerprint 不清楚</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>清洁你的手指或调整手指位置，再试一次</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>已扫描</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>调整手指位置以完整扫描您的指纹</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>指纹移动过快。请在提示时抬起</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>抬起您的手指并将其放在传感器上</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>将您的脸置于框内</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>面部录入</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>请放置一个人类面孔</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>远离相机</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>靠近相机</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>不要将多个面孔置于框内</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>确保相机镜头是干净的</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>不要在暗、亮或背光环境中录入</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>确保面部未覆盖</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>扫描超时</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>الكاميرا محتلة!</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>强调色</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>图标设置</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>图标主题</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>تعديل شعار محرّك التتييه</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation> chủ靓丽的光标主题</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>تعديل أقفال محرّك التتييه</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>هل أنت متأكد من أنك تريد حذف هذا الحساب؟\n</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>حذف مسارات حسابات المستخدمين</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>حذف</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>اذهب إلى الإعدادات</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation> général</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>زمن التكرار</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>قصيرة</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>طويلة</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>سرعة التكرار</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>بطيئة</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>سريعة</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation> engravier</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>اختبار هنا</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>تعطيل نقل الحروف إلى أولى Renders</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>سرعة النقر المزدوج</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>اختبار النقر المزدوج</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>وضع اليدين الإ快讯</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>تمكين لوحة المفاتيح</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>حجم كبير</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>حجم صغير</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>فشل في تقديم الوصول الجذري</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>يرجى تسجيل الدخول أولاً إلى عنوان البريد الإلكتروني الخاص بك</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>لا يمكن قراءة معلومات الكمبيوتر الخاص بك</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>لا يوجد اتصال بالشبكة</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>فشل تحميل сертификата ، لا يمكن تقديم الوصول الجذري</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation> failed to verify the signature ، cannot obtain root access</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>تفيق وانضم الى برنامج تجربة المستخدم</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>رفض استخدام وضع التطوير</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>تفيق وطلبات الوصول الجذري</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>بدء وضع التمثيلية الجديدة ، يرجى الانتظار لمدة دقيقة واحدة</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>تم إعداد التمثيلية الجديدة</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation> سيتم تطبيق الإعدادات بعد إعادة تشغيل النظام</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>يجب أن يحتوي كلمة المرور على أرقام وحروف</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>يجب أن تكون كلمة المرور بين 8 و 64 حرفًا</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>إنشاء حساب جديد</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>نوع الحساب</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>اسم المستخدم</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>مطلوب</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>الاسم الكامل</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>اختيزي</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>إنشاء حساب</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>لم تقم بتحميل رمز الشخص بالفعل. نقر أو اسحب وتنقش الصورة.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>متاحة</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/隱私-en.html</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/用户体验-en.html</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>晚间启动器</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>إعداد التاريخ والساعة</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>التاريخ</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>السنة</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>الشهر</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>اليوم</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>الوقت</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>ยืนยัน</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>غدا</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>اليوم السابق</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>اليوم</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 ساعة مسبقاً عن المحلي</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 ساعة بعد المحلي</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>فض Dunn</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>الأسبوع</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>أول يوم في الأسبوع</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>تاريخ قصير</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>تاريخ طويل</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>وقت قصير</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>زمن طويل</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>رمز العملة</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>عملة إيجابية</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>عملة سلبية</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>رمز العشري</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>رمز تجميع الأرقام</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>تجميع الأرقام</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>حجم الصفحة</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>مطلوب المصادقة لتغيير خادم NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>المصادقة مطلوبة لضبط المنطقة الزمنية للنظام</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>حفظ</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>يوفر مركز التحكم الخيارات لضبط النظام.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>ربط واتساب</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>بربط واتساب، يمكنك تسجيل الدخول بامن وسرعة إلى حسابك %1 وحساباتك المحلية.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>غير مرتبط</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>إلغاء الربط</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>ربط</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>هل أنت متأكد من أنك تريد إلغاء ربط واتساب؟</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>بعد إلغاء ربط واتساب، لن تستطيع استخدام واتساب لمسcan الكود البريدي لتسجيل دخول حسابك %1 أو حساباتك المحلية.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>دعني أفكر فيه</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>ربط حساب الحاسوب المحلي</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>بعد ربط حساب الحاسوب المحلي، يمكنك استخدام الوظائف التالية:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>نظام تسجيل الدخول عن طريق مسcan الكود من واتساب</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>استخدم واتساب، المرتبط بحسابك %1، لمسcan الكود لتسجيل الدخول إلى حساب الحاسوب المحلي الخاص بك.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>إعادة تعيين كلمة المرور عبر حساب %1</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>إعادة ضبط كلمة المرور المحلية من خلال %1 ID في حالة نسيانها.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>للوصول إلى الميزات السابقة، الرجاء الذهاب إلى مركز التحكم - حسابات وتفعيل الخيارات المقابلة.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>ديوين</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>يواس</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>inks الإلكتروني</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>إدارة %1 ID الخاص بك وإنشاء نسخ طبق الأصل لن våائل الخاص بك عبر الأجهزة.\n\nتسجيل الدخول إلى %1 ID للوصول إلى الميزات والميزات الشخصية والخدمات في متصفح الويب، متجر التطبيقات، وغيرها.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>تسجيل الدخول إلى %1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>inks التلقائي</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>احفظ إعدادات النظام والحواوises الشخصية في السحابة eاحة إنهم متطابقين عبر الأجهزة</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>إعدادات النظام</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>الوقت الأخير للinks: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>مسح البيانات السحابية</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>هل أنت متأكد من نيةك في مسح إعدادات النظام والحواوises الشخصية المحفوظة في السحابة؟\n</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>قد لا تتمكن من استرداد البيانات بعد مس heapqها!\n</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>مسح</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>خدمة الinks</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>الحساب والحماية</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>تسجيل الخروج</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>ذهاب إلى إعدادات الويب</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>فشل التشفير كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>كلمة مرور خاطئة، %1 فرصة بقيت</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>استنفد الخطأ في تسجيل الدخول الحد اليومي. يمكنك إعادة ضبط كلمة المرور ومحاولة مرة أخرى.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>العمل العملية تمت بنجاح</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>الصين القارية</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>其他国家和地区</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>当前功能不可用，请先激活您的系统</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>根据当地法律法规，当前在您的地区不可用。</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>请选择默认程序打开 &apos;%1</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>添加</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>打开桌面文件</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>应用程序 (*.desktop</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>所有文件 (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>根权限</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>申请根权限</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>进入开发者模式后，您可以获得根权限，但仍可能损害系统的完整性，请谨慎使用。</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>允许</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>进入</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>在线</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>登录 UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>离线</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>导入证书</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>选择文件</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>您的 UOS ID 已登录，请点击进入开发者模式</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>请先登录您的 UOS ID，然后继续</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1.导出 PC 信息</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>导出</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.导入证书</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>خيارات التطوير والإصلاح</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>مستوى سجل النظام</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>تغيير الخيارات قد يؤدي إلى سجل أكثر تفصيلاً قد يقلل أداء النظام و/أو يستهلك مساحة تخزين أكبر.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>إيقاف تشغيل</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>تجهيزات التصحيح</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>قد يستغرق تطبيق الخيار دقيقة واحدة، بعد استلام تعليمات التعيين بنجاح، يرجى إعادة تشغيل الجهاز لتطبيق التغييرات.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>لتنصيب وتشغيل التطبيقات غير الموقعة، يرجى الانتقال إلى &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; مركز الأمان &lt;/a&gt; لتغيير الإعدادات.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>الإفصاح</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>الموافقة</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>العرض</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>إعطاء التطبيقات التالية م权力访问这些文件和文件夹：</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>ملفات الوثائق</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>السطح المكتب</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>صور</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>فيديوهات</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>موسيقى</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>تنزيلات</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>مجلد</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>حجم</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>خط معايير</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>خط متساوي الأبعاد</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>خطط الطاقة</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>إعدادات الحفاظ على الطاقة</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>حفظ الطاقة التلقائي عند البطارية المنخفضة</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>حد البطارية المنخفضة</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>حفظ الطاقة التلقائي عند البطارية</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>إعدادات الاستيقاظ</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>يتم مطلوب كلمة المرور لاستيقاظ الكمبيوتر</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>يتم مطلوب كلمة المرور لاستيقاظ الشاشة</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>إعدادات الدعم الكام</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>إغلاق مجدول</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>الوقت</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>تكرار</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>مرة واحدة</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>كل يوم</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation> أيام العمل</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>وقت مخصص</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>أنصاف قوة شد الألوان</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>،</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>…</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>أداء مثالي</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>قراءة متناسقة</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation> أفضل الألوان</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>تعطيل جميع تأثيرات واجهة النظام والنوافذ لتحقيق أداء أكثر كفاءة.</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>تقييد بعض تأثيرات النوافذ لتحقيق مظهر متميز مع الحفاظ على أداء سلس للنظام.</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>تمكين جميع تأثيرات واجهة النظام والنوافذ لتحقيق أفضل تجربة بصرية.</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>لغة</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>كامل</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>편집</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>لغات أخرى</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>إضافة</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>منطقة</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>منطقة</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>قد يوفر نظام التشغيل والبرامج المحلية محتوى محلي استنادًا إلى بلدك ومستواه الإقليمي</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>قد يتحديد نظام التشغيل والبرامج تشكيلات التاريخ والأوقات استنادًا إلى التشكيلات الإقليمية</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>إضافة لغة</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>بحث</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>إضافة</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>طريقة تسجيل الدخول</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>كلمة المرور، و챗، تحقق مادي، جهاز أمان</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>تعديل كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>عدد أيام الانتهاء</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation> תמיד</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>�权©2011-%1 深圳市深贝科技有限公司所有</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>版权所有©2019-%1 武汉深淘治科技有限公司</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>المuffledة التلقائية</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>حجم المدخل</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>高出量级</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>المدخل</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>لم يتم العثور على جهاز للمدخلات الصوتية</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>الفأرة ولوح اللمس</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>أجهزةي</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>اسم الحاسوب</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>لا يمكن أن يبدأ أو ينتهي بالشطارات</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>اسم ويدس</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>الإصدار</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>إصدار</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>النوع</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>بيت</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>التوثيق</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation> وقت تثبيت نظام التشغيل</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>كernerl</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>منصة الرسومات</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>معالج</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>ذاكرة</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>يرجى 1 إلى 63 حرفًا</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>أجهزة أخرى</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>إظهار أجهزة البلوتوث دون الأسماء</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>كلمه السر الحالية</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>مطلوب</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>ضعيف</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>متوسط</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>つ嘉唬 spoil translation, but keeping within context: قوي</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>تأكيد كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>نهاية كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>اختياري</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>لا يمكن أن تكون كلمة المرور فارغة</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>كلمات المرور غير متطابقة</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>ستكون الإجابة المرئية لجميع المستخدمين. لا تضمن كلمة المرور هنا.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>يجب أن يختلف كلمة المرور الجديدة عن الكلمة المرور الحالية</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>تعديل كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>استعادة كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>الطول الطويل والأحرف الكبيرة، والأحرف الصغرى، والمتغيرات، والأحرف البيانية. هذا النوع من كلمات المرور أمن.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>将会清除密钥环中存储的数据。</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>التخصيص</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>脆弱 (翻译错误，但在上下文中): كلاش</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>وتو</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>ساري</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>مخصص</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>منطقة الموديل</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>حدد أي أيقونات تظهر في الظهر</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>إغلاق</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>��挂</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>مُنَوّتة</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>إطفاء حواسب Ekran</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>إظهار واجهة الخروج</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>لا شيء</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>شاشة وпаUSED</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>إطفاء ekran بعد</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>قفل ekran بعد</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>حواسب تمط بعدها</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>عندما يغلق الريموت</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>عند الضغط على زر القوة</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation> outing، لها ظهور</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>رقي مزن</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>تبديل تشغيل cpu بتقدير شروط cpu بشكل معتدل</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>تعادل</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation> presenter</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>تتميز الأداء ستعزز الاستهلاك الكهربائي والتوليد الحراري بشكل كبير</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>تعادل بين الأداء والحياة البطارية، ومنظم تلقائيًا حسب الاستخدام</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>تقدم حياة البطارية، وي 의사 على الأداء لتقليل استهلاك الطاقة</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>دقيقة</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>ساعة</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>لأبد</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>سياسة الخصوصية</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>نسخ عنوان الرابط</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>كلمة المرور لا يمكن أن تكون فارغة</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>كلمة المرور يجب أن تحتوي على الأقل على %1 حروف</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>كلمة المرور يجب أن لا تزيد عن %1 حروف</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>يمكن أن يحتوي كلمة المرور على حروف الإنجليزية (حساسية الحالة)، الأرقام أو الرموز الخاصة (~`!@#$%^&amp;*()-_+=|{}[]:\\&quot;&apos;&lt;&gt;?,./+())</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>لا تستخدم أكثر من %1 حرف زماني يقرأ بنفس الطريقة للأمام والخلف</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>لا تستخدم أكثر من %1 حرف متسلسل يقرأ بنفس الطريقة دون تغيير</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>لا تستخدم رمز مكرر أكثر من %1 مرة</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>يجب أن تحتوي كلمة المرور على حروف م,:, حروف صغرى، أرقام ورموز (~`!@#$%^&amp;*()-_+=|{}[]:\\&quot;&apos;&lt;&gt;?,./+())</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>لا يجب أن تحتوي كلمة المرور على أكثر من 4 علامات زماني يقرأ بنفس الطريقة للأمام والخلف</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>لا تستخدم كلمات أو مزيجات شائعة ككلمة مرور</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>يرجى إنشاء كلمة مرور قوية</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>لا تستوفِ شروط كلمة المرور</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>مركز التحكم</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation> Emanuel</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>عرض</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>ل Serialize</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>ivating</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>منتهي الصلاحية</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>في فترة اختبار</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>انتهت مدة الاختبار</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>إعدادات الشاشة اللمسية</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>تم تغيير إعدادات الشاشة اللمسية</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation> هذه ورقة خلفية النظام مقفلة. يرجى التواصل مع أمينك.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>بحث</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>الصيغ الافتراضية</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>أول يوم من الأسبوع</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>التاريخ القصير</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>التاريخ الطويل</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>الوقت القصير</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>الوقت الطويل</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>رمز العملة</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>أرقام</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>حجم الورق</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>حفظ</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>بحث</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>إSet u_password</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 رمز</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>كرر пароль</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>تاكيد</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>كلمة السر لا تتطابق</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>تعديل وقت التكرار</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>حفظ</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>شاشة فاقد الحركة</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>عرض المعاينة</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>شاشة فاقد الحركة الشخصية</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>الفكالة</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>وقت الفراغ</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 دقيقة</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 دقيقة</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 دقائق</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 دقيقة</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 دقيقة</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>ساعة واحدة</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>أبدا</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>يرforder كلمة المرور لإعادة الاسترجاع</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>سافنر عرض الصور المتحركة</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>سافنر الشاشة النظامي</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>بحث</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>لا توجد نتائج بحث</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>أضف وصلة قصيرة مخصصة</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>الاسم:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>مطلوب</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>أوامرك:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>وصلة قصيرة</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>لا يوجد</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>إضافة</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>وصلات قصيرة</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>وصلة قصيرة نظامية، وصلة قصيرة مخصصة</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>وصلات البحث</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>نفّذ</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>تعديل</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>انقر</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>أو</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>استبدال</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>استعادة الافتراضي</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>إضافة حرف سريّة قسّم</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>الصوت</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>أجهزة الاسترجاع</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>حدد ما إذا كنت تريد تفعيل الأجهزة</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>أجهزة الدخل</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>أصوات التأثيرات</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>الرّفق</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>إقفال</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>تسجيل الخروج</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>استيقاظ</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>صوت +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>إشعار</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>بطارية منخفضة</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>نقل أيقونة المنتج في أمر الأيقونات إلى م rajitah</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>فراغ سلة المهملات</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>إدخال</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>انسحاب</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>أجهزة الاستبدال متصلة</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>أجهزة الاستبدال إزالتها</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>خطأ</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>النمط</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>حجم الصوت الإخراج</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>تضخيم الصوت</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>إذا كانت الصوت أعلى من 100٪، فقد يفسد الصوت ويضر بالأجهزة المخرجة</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>يسار</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>يمين</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>الصوت</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>لم يتم العثور على جهاز صوت للإرسال</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation> 균형</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>دمج قنوات اليسار واليمين في قناة واحدة</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>إيقاف الصوت تلقائيًا عند سحب جهاز الصوت الحالي</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>الصوت</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>الطاقة</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>المouse</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>تحديث</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>محتوى الشاشة الثابتة</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>ورق الجدران الإضافية</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>استعادة الوقت تلقائيًا</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>خادم NTP</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>التاريخ والوقت النظامي</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>خصائص</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>الإعدادات</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>عنوان الخادم</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>مطلوبة</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation> lokale اسم خادم ntp لا يمكن أن يكون فارغ</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>استخدم لون بالformat 24</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>تقاسيم التوقيت المضيف</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>قائمة تقاسيم التوقيت</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>من</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>إلى</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>احفظ تعيينات العرض</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>سوف يلغى تطبيق التغذية بال Maulana %1s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>حفظ</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>أضف تقزيم توقيت</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>تحديد تقزيم التوقيت بناء على الموقع الحالي</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>تقاسيم التوقيت:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>أقرب مدينة:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>حفظ</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>מסך اللمس</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>استعد هنا عند اتصال الشاشة اللمسية</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>الإعدادات الأساسية</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation> estates اللمس</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>سرعة الرمز</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>بطيء</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>سرعى</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>تعطيل لوحة اللمس أثناء الإدخال</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>اضغط لتنشيط</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>التنقل الطبيعي</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation> USPS3 من الإصبع</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation> USPS4 من الإصبع</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Присоединиться к программе опыта пользователей</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>نسخ عنوان الرابط</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Безопасная проверка</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>Действие чувствительное, пожалуйста, введите пароль от учетной записи сначала</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 символа</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Забыли пароль?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Подтвердить</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>обои</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Мои изображения</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Офисные обои</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>ورق الجدران موحد اللون</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>ورق الجدران قابل للتخصيص</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>نمط التعبئة</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>تغيير ورق الجدران تلقائيًا</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>لا أبدا</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 ثانية</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>دقيقة</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 دقائق</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 دقائق</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 دقيقة</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 دقيقة</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>تسجيل الدخول</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>يقظة</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>خلفية حية</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>ساعة</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>فك التوسيل</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>تعيين ekلو ekشين</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>تعيين ekدرشة ekشين</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>واجهة وتأثيرات</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>إعدادات ekنووين</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>زوايا مستديرة ekنووين</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>لا شيء</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>صغير</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>كبير</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>تفعيل تأثيرات الشفافية عند إعادة توجيه ekنووين</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>تأثير إخفاء النافذة</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>التكبير</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>ل expulsion السحرية</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>الشفافية</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>منخفض</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>عالي</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>أشرطة التمرير</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>إظهار أثناء التمرير</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>إبقاء الإظهار</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>عرض مコンpact</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>إذا تم تفعيله، يتم عرض محتوى إضافي في النافذة.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>ارتفاع رأس النافذة</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>لا يناسب إلا نوافذ الرؤوس المكتوبة بواسطة مدير النافذة.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>مصغر جداً</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>متوسط</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>متوسط</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>الصينية التقليدية (الهونغ كونغ)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>الصينية التقليدية (تايوان)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>تايوان الصين</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>اسم المستخدم يجب أن يكون بين 3 و 32 حرفًا</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>الأحرف الأولى يجب أن تكون حرفًا أو رقمًا</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>اسم المستخدم الخاص بك يجب أن يكون له حروف أيضًا</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>اسم المستخدم مستخدم من قبل حسابات مستخدم أخرى</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>اسم المستخدم طويل جدًا</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>اسم المستخدم المستخدم من قبل حسابات مستخدم أخرى</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>كلمة المرور غير صحيحة</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>مستخدم قياسي</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>مدير</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>مخصص</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>تم إزالة مضيفك بنجاح من خادم النطاق</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>انضم حاسوبك بنجاح إلى خادم النطاق</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>فشل حاسوبك في الخروج من خادم النطاق</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>فشل حاسوبك في الانضمام إلى خادم النطاق</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>إعدادات النطاق AD</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>كلمة المرور غير متطابقة</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>مكاني</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>سطح</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>هذا القصير يتعارض مع [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>لا يمكن أن تكون كلمة المرور فارغة</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>يجب أن تحتوي كلمة المرور على الأقل على %1 حرف</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>يجب أن لا تكون كلمة المرور أكثر من %1 حرف</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>يجب أن تحتوي كلمة المرور على حروف الإنجليزية (حساسة للحالة)، الأرقام أو الرموز الخاصة (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>الرجاء عدم استخدام أكثر من %1 حرف متكرر</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>الرجاء عدم استخدام أكثر من %1 حرف متسلسل</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>الرجاء عدم استخدام أكثر من %1 حرف مكرر</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>يجب أن تحتوي كلمة المرور على حروف كبيرة وصغيرة ورقميات ورموز (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>لا يجب أن تحتوي كلمة المرور على أكثر من 4 حروف متكررة</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>لا تستخدم كلمات شائعة أو تجميعات ككلمة المرور</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>الرجاء إنشاء كلمة مرور قوية</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>لا يتوافق مع قواعد كلمة المرور</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>النظام</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>النافذة</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>منطقة العمل</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>أدوات المساعدة</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>مخصص</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>لا شيء</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_ar_EG.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"ar_EG\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">إحفظ</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>أغلق</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">إحفظ</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">إحفظ</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">إحفظ</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">إحفظ</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>إحفظ</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">إحفظ</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">أغلق</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_ast.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ast\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Coneutáu</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Nun se coneutó</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Encaboxar</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Pantalla</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Volume d&apos;entrada</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Mur y touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalización</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Personalizáu</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Centru de control</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Ver</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Soníu</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Efeutos de soníu</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Apagar</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Zarrar sesión</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Balerar papelera</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Fallu</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Mou</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Volume de salida</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Izquierda</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Drecha</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Desfacer</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Guardar</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_az.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"az\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>تعديل</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>إضافة مستخدم جديد</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>تحديد الاسم الكامل</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>إعدادات الدخول</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>الدخول بدون كلمة مرور</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>حذف الحساب الحالي</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>إعداد المجموعة</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>مجموعات الحسابات</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>تم</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>اسم المجموعة</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>إضافة مجموعة</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>تسجيل الدخول التلقائي</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>معلومات الحساب</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>اسم الحساب، الاسم الكامل للحساب، نوع الحساب</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>اسم الحساب</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>اسم الحساب الكامل</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>نوع الحساب</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Adınız uzun olamaz</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>Grup adları 32 karakterden uzun olamaz</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>Grup adları yalnızca rakamlardan oluşabilir</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>Harfler, rakamlar, alt çizgi ve tire karakterlerini sadece kullanın ve isimler harfle başlamalıdır</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>Grup adı zaten kullanılmış</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>hızlı giriş, otomatik giriş, şifresiz giriş</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>تسجيل الوجه</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>أقر وأوافق على</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>الشروط والأحكام</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>التالي</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>تم تسجيل الوجه</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>Yüzünüzü kaydettirmek başarısız oldu</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Tamamlandı</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal et</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Kaydı Tekrar Deneyin</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>İmtina</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Tamamlandı</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Parmağını Kaydet</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Kaydederken parmağınızı parmak izi sensörüne koyun ve alttan üste doğru hareket ettirin. Eylemi tamamladıktan sonra parmağınızı kaldırın.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Okudum ve aşağıdaki ifadeye katılırım</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Bildirim</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>İleri</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Kaydı Tekrar Deneyin</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>&quot;Biometrik kimlik doğrulama&quot; fonksiyonu, kullanıcı kimlik doğrulama için UnionTech Yazılım Teknoloji A.Ş. tarafından sağlanmaktadır. &quot;Biometrik kimlik doğrulama&quot; yoluyla toplanan biyometrik veriler, cihazda saklanan verilerle karşılaştırılır ve karşılaştırma sonucuna göre kullanıcı kimliği doğrulanır.\n\nUnionTech Yazılım Teknoloji A.Ş., yerel cihazda saklanan biyometrik bilgileri toplamayacak ve erişmeyecektir. Lütfen sadece kendi kişisel cihazınızda biyometrik kimlik doğrulamayı etkinleştirin ve bu işlemle ilgili işlemler için kendi biyometrik bilgilerinizi kullanın. Bu cihazda başkalarının biyometrik bilgilerini hızlıca devre dışı bırakın veya silin, aksi halde bu riskten sorumlu olursunuz.\n\n\nUnionTech Yazılım Teknoloji A.Ş., biyometrik kimlik doğrulamanın güvenliğini, doğruluğunu ve kararlılığını araştırmaya ve geliştirmeye devam etmektedir. Ancak, çevre, cihaz, teknik ve diğer faktörler nedeniyle risk kontrolü kapsamında, geçici olarak biyometrik kimlik doğrulamadan geçmeniz garanti edilmemektedir. Bu yüzden, biyometrik kimlik doğrulamayı UOS girişi için tek tek yolu olarak almayın. Biyometrik kimlik doğrulama kullanırken herhangi bir sorunuz veya öneriniz varsa, UOS&apos;daki &quot;Hizmet ve Destek&quot; bölümünden geri bildirim verin.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>&quot;Otomatik Giriş&quot; yalnızca bir hesap için etkinleştirilebilir, lütfen önce &quot;%1&quot; hesabı için devre dışı bırakın</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>Tamam</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>Görseller</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>İnsan</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Hayvan</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>البيئة</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>Sembol</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>Emoji</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>özel</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>النمط الكاريكاتيري</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Boyutlu tarz</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>المظهر البسيط</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>حفظ</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>شاشة ونوم</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>إطفاء الشاشة بعد</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>إغلاق الشاشة بعد</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>الكمبيوتر ينام بعد</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>عند إغلاق غطاء اللمس</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>عند الضغط على زر الطاقة</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>بطارية منخفضة</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>إشعار البطارية المنخفضة</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>نوم تلقائي</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation> Hibernate تلقائي</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>حد البطارية المنخفضة</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>إدارة البطارية</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>عرض الوقت المتبقى للإستخدام والشحن</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>������������</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>مستوى البطارية المنخفض</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>تعطيل</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>تم إطفاء البلوتوث، والاسم يظهر كـ &quot;%1&quot; </translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>تم تشغيل البلوتوث، والاسم يظهر كـ &quot;%1&quot; </translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>فصل</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>اتصال</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>إرسال ملفات</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>إعادة назвان</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>حذف جهاز</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>اختر ملف</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>تحرير</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>إذا كنت ترغب في استخدام وظيفة البلوتوث ، يرجى إغلاق وضع الطائرة</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>إذا كنت ترغب في استخدام وظيفة البلوتوث ، يرجى إغلاق وضع الطائرة</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>وضع الطائرة</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>Bluetooth ismi 64 karakterden uzun olamaz</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>متصل</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>غير متصل</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>إعدادات البدء</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>يمكنك النقر على القائمة لتغيير العناصر الافتراضية للبدء ، أو سحب الصورة إلى النافذة لتغيير صورة الخلفية</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>تأخير grub البدء</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>التصميم</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>بعد تشغيل التصميم ، يمكنك رؤية خلفية التصميم عند تشغيل الكمبيوتر</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>تحقق قائمة البدء</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>بعد فتحه، يتطلب الدخول إلى تحرير القائمة كلمة مرور.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>更改密码</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>تغيير كلمة مرور تحقق قائمة البدء</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>设置启动菜单认证密码</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>用户名 :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>新密码 :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>مطلوب</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>لا يمكن أن تكون كلمة المرور فارغة</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>كلمتي المرور لا تتطابقان</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>重复密码:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>بالتأكيد</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>بدء الرسوم المتحركة</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>凋整系统启动界面logo动画的大小</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>允许以下应用程序访问您的摄像头:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>指纹1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>指纹2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>指纹3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>指纹4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>指纹5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>指纹6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>指纹7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>指纹8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>指纹9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>指纹10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>扫描失败</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>指纹已存在</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>请扫描其他手指</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>未知错误</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>扫描暂停</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>无法识别</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>移动过快</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>العندم حركت أظافرك بسرعة، يرجى عدم رفعها حتى يتم استدعاؤك</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>بصمة غير واضحة</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>نظف أظافرك أو قم بتعديل موقعها ثم حاول مرة أخرى</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>تم� التصوير بالفعل</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>قم بتعديل موقع أظافرك لتصوير بصمتك بالكامل</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>العندم حركت أظافرك بسرعة، يرجى عدم رفعها حتى يتم استدعاؤك</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>قم برفع أظافرك ووضعها على المستشعر مرة أخرى</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>قم بتوجيه وجهك داخل الإطار</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>تم تسجيل وجهك</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>من فضلك قم بتوجيه وجه إنسان</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>ابعث عن الكاميرا</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>اقرب وجهك من الكاميرا</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>لا تقم بتوجيه أكثر من وجه داخل الإطار</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>تأكد من نظافة عدسة الكاميرا</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>لا تقم بالتسجيل في ظروف مظلمة أو مضيئة أو ذات إضاءة خلفية</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>تأكد من عدم تغطية وجهك</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>انتهت فترة التصوير</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>Kamera meşgul!</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>اللون الفائق</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>إعدادات الرموز</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>موضوع الرموز</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>قم بخصيص رمز موضوعك</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>موضوع الماوس</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>قم بخصيص ماوس موضوعك</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>هل أنت متأكد من أنك تريد حذف هذا الحساب؟\n</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>حذف دليل الحساب</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>حذف</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>اذهب إلى الإعدادات</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>مُستخدَم بشكل عام</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>زمن التكرار</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>قصير</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>طويل</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>سرعة التكرار</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>بطيء</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>عَجل</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation> لوحة الأرقام </translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>قم بتجربة هنا</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>تنبيه لوحة الأحرف الكبيرة</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>سرعة النقر مرتين</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>اختبار النقر مرتين</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>وضع اليد اليسرى</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>Klavyeyi Etkinleştir</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>حجم كبير</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>حجم صغير</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>فشل في الحصول على الوصول root</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>يرجى تسجيل الدخول أولاً باستخدام اسم مستخدم التحالف</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>لا يمكن قراءة معلومات جهاز الكمبيوتر الخاص بك</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>لا يوجد اتصال بالشبكة</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>فشل في تحميل الشهادة، لا يمكن الحصول على الوصول root</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>فشل في تحقق التوقيع، لا يمكن الحصول على الوصول root</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation> соглашайтесь и присоединяйтесь к Программе опыта пользователя</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>الإ DECLARATION режим разработчика</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation> соглашайтесь и запрашиваете доступ root</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>ابدأ في تعيين الرسالة عند التشغيل الجديدة، يرجى الانتظار دقيقة واحدة</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>تم تعيين الرسالة عند التشغيل الجديدة</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>ستتم تطبيق الإعدادات بعد إعادة تشغيل النظام</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>كلمة المرور يجب أن تحتوي على أرقام وحروف</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>كلمة المرور يجب أن تكون بين 8 و 64 حرف</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>إنشاء حساب جديد</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>نوع الحساب</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>اسم المستخدم</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>مطلوب</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>اسم الكامل</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>اختياري</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>إنشاء الحساب</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>لم تقم بعد بتحميل صورة الشعار. انقر أو سحب واسقط لتحميل الصورة.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>متاح</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/ </translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>وقت طويل</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>رمز العملة</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>عملة موجبة</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>عملة سالبة</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>رمز العقد</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>رمز تجميع الأرقام</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>تجميع الأرقام</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>حجم الصفحة</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>يحتاج التحقق للانتقال إلى خادم NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Sistem ssat qurşağının təyin olunması üçün doğrulama tələb olunur</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>حفظ</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>يقدم مركز التحكم الخيارات لضبط النظام</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>ربط واتساب</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>بواسطة ربط واتساب، يمكنك تسجيل الدخول بامن وسرعة إلى حسابك %1 وحساباتك المحلية.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>غير مرتبط</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>إلغاء الربط</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>ربط</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>هل أنت متأكد من رغبتك في إلغاء ربط واتساب؟</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>بعد فك تying WeChat، لن يمكنك استخدام WeChat لتقديم الرمز الضوئي لتسجيل الدخول إلى %1 ID أو الحساب المحلي.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>دعني أفكر فيه</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>ربط حساب محلي</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>بعد ربط حسابك المحلي، يمكنك استخدام الوظائف التالية:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>نظام تسجيل الدخول عن طريق معرف الكود من واتساب</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>استخدم واتساب المرتبط بحسابك %1 لمسح كود تسجيل الدخول إلى حسابك المحلي.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>إعادة تعيين كلمة المرور بواسطة %1</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>إعادة تعيين كلمة المرور المحلية بواسطة %1 في حالة نسيانك لها.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>لإستخدام الميزات السابقة ، يرجى الذهاب إلى مركز التحكم - حسابات وتفعيل الخيارات المقابلة.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>ديبين</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>تنزيل السحابة</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>إدارة %1 ID وتنزيل بياناتك الشخصية على الأجهزة المختلفة.\n\nتسجيل الدخول إلى %1 ID للاستفادة من ميزات وخدمات مخصصة لمتصفح ومتجر التطبيقات وغيرها.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>تسجيل الدخول إلى %1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>تنزيل تلقائي</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>احفظ الإعدادات النظامية والبيانات الشخصية في السحابة بطريقة آمنة وحافظ على تزامنها على الأجهزة المختلفة</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>إعدادات النظام</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>آخر وقت تزامن: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>مسح بيانات السحابة</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>هل أنت متأكد من أنك تريد مسح إعدادات نظامك وبياناتك الشخصية المسجلة في السحابة؟\n</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>ستكون البيانات غير قابلة للإعادة إذا تم المسح!\n</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>مسح</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>خدمة التزامن</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>الحساب والأمان</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>تسجيل الخروج</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>اذهب إلى إعدادات الويب</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>فشل تشفير كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>كلمة المرور нاقصة، %1 المحاولة الباقي</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>أخطاء تسجيل الدخول قد وصلت إلى الحد اليومي. يمكنك اعادة تعيين كلمة المرور وتجربة مرة أخرى.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>عملية ناجحة</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>الصين القارية</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>其他国家/地区</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>当前该功能不可用，请先激活您的系统</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>根据您所在地区的法律法规，目前在您所在的地区不可用。</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>请选择默认程序以打开 &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>添加</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>打开桌面文件</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>应用程序 (*.desktop), </translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>所有文件 (*),</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>root访问</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>请求root访问</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>进入开发者模式后，您可以获得root权限，但这可能会损害系统完整性，请谨慎使用。</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>允许</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>进入</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>在线</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>登录UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>离线</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>导入证书</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>选择文件</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>您的UOS ID已登录，请点击进入开发者模式</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>请先登录您的UOS ID并继续</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1.导出PC信息</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>导出</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.إدخال شهادة</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>开发和调试选项</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>مستوى سجل النظام</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>تغيير الخيارات يؤدي إلى سجل أكثر تفصيلاً قد يقلل أداء النظام و/أو يستهلك مساحة تخزين أكبر</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>إيقاف</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>تشخيص</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>قد يستغرق تغيير الخيار دقيقة واحدة للمعالجة، بعد استلام إشعار التعيين الناجح يرجى إعادة تشغيل الجهاز لتوليد النتيجة</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>إذا سمحت للتطبيقات التالية بالوصول إلى هذه الملفات والدossiers:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>الملفات الشخصية</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>السطح المعرفي</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>الصور</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>الفيديوهات</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>الموسيقى</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>التنزيلات</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>ال dossier</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>حجم</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>خط معياري</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>خط متساوي الأبعاد</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>مخططات الطاقة</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>إعدادات توفير الطاقة</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>توفير الطاقة التلقائي عند البطارية المنخفضة</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>حد البطارية المنخفضة</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>توفير الطاقة التلقائي عند البطارية</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>إعدادات الاستيقاظ</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>يتم إلزام كلمة المرور لاستيقاظ الكمبيوتر</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>يتم إلزام كلمة المرور لاستيقاظ الشاشة</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>إعدادات الإغلاق</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>إغلاق مخطط له</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>الوقت</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>الإعادة</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>مرة واحدة</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>كل يوم</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation> أيام العمل</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>وقت مخصص</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>خفض إضاءة الشاشة في وضع توفير الطاقة</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>،</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>…</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation> أداء оптимальное</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation> 균형</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>أفضل الرؤية</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>Təsərrüfatı tənzimləyərək yaxşı vizual effekt yaratmaq və səmərəli sistem performansını saxlamaq üçün bir neçə təsərrüfatı məhdudlaşdırın.</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>Ən yaxşı vizual təcrübə üçün bütün arayüz və təsərrüfatları aktiv edin.</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>لغة</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>تم</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>تحرير</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>لغات أخرى</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>إضافة</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>منطقة</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>منطقة</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>قد يوفر نظام التشغيل والتطبيقات محتوى محلي بناءً على بلدك ومنطقتك</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>قد يحدد نظام التشغيل والتطبيقات تنسيقات التاريخ والوقت بناءً على تنسيقات المنطقة</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>إضافة لغة</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>بحث</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>إضافة</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>طريقة تسجيل الدخول</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>كلمة المرور، واتساب، التحقق من بصمة اليد، مفتاح الأمان</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>تعديل كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>عدد أيام ال صالحية</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>دائماً</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>حقوق الطبع والنشر © 2011-%1 مجتمع ديبين</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>حقوق الطبع والنشر © 2019-%1 شركة يونيونเทค للبرمجيات</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>تمكين إزالة الضوضاء التلقائية</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>حجم المدخلات</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>مستوى المدخلات</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>المدخلات</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>لم يتم العثور على جهاز مدخل للصوت</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Giriş cihazı</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>أجهزةي</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>اسم الكمبيوتر</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>لا يمكن أن يبدأ أو ينتهي بفواصل</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>اسم نظام التشغيل</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>الإصدار</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>الطبعة</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>نوع</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>ビット</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>الترخيص</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>وقت تثبيت النظام</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>كرنل</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>منصة الرسومات</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>معالج</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>ذاكرة</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>Lütfən 1-63 simvoldan ibarət olun</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>أجهزة أخرى</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>عرض أجهزة البلوتوث دون الأسماء</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>كلمة المرور الحالية</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>مطلوب</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>ضعيف</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>متوسط</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>قوي</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>تكرار كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>ملاحظة كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>اختياري</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>لا يمكن أن تكون كلمة المرور فارغة</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>كلمات المرور غير متطابقة</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>تظهر الملاحظة لجميع المستخدمين. لا تضمن كلمة المرور هنا.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>يجب أن تختلف كلمة المرور الجديدة عن الكلمة المرور الحالية</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>تعديل كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>إعادة تعيين كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>يجب أن يكون طول كلمة المرور على الأقل 8 أحرف، ويجب أن تحتوي على مزيج من الأحرف الكبيرة والصغيرة والأرقام والرموز. هذا النوع من كلمات المرور أكثر أمانًا.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>إعادة تعيين كلمة المرور ستقوم بحذف البيانات المخزنة في حافظة المفاتيح.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>ضوء</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>אוטומטי</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>ظلام</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>مخصص</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>منطقة الظفر</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>اختر أيقونات تظهر في الشريط</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>إغلاق</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>��眠</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>النوم</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>إطفاء الشاشة</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>عرض واجهة إيقاف التشغيل</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>لا شيء</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>شاشة وتعليق</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>إطفاء الشاشة بعد</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>إغلاق الشاشة بعد</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>تعليق الحاسوب بعد</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>عند إغلاق الغطاء</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>عند الضغط على زر الطاقة</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>أداء عالي</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>أداء متوازن</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>凋整CPU运行频率以适应CPU负载条件</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>متوازن</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>موفّق للطاقة</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>تفضيل الأداء، مما سيزيد بشكل كبير استهلاك الطاقة وتدفقات الحرارة</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>توفير التوازن بين الأداء والحياة البطارية، مع تعديل تلقائي وفقًا للاستخدام</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>تفضيل عمر البطارية، مما سيؤدي النظام إلى تضحية بعض الأداء لتقليل استهلاك الطاقة</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>دقائق</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>ساعة</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>أبداً</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>سياسة الخصوصية</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Link ünvanını kopyalayın</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>لا يمكن إدخال كلمة مرور فارغة</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>يجب أن يحتوي كلمة المرور على الأقل %1 حرف</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>يجب أن لا يزيد طول كلمة المرور عن %1 حرف</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>يمكن أن يحتوي كلمة المرور على حروف إنجليزية ( حساسية الحرف كبيرة)، أرقام أو رموز خاصة (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>الرجاء عدم استخدام أكثر من %1 حرف متوازي</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>الرجاء عدم استخدام أكثر من %1 حرف متتابع</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>الرجاء عدم استخدام أكثر من %1 حرف متكرر</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>يجب أن تحتوي كلمة المرور على حروف كبيرة، حروف صغيرة، أرقام ورموز (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>لا يجب أن تحتوي كلمة المرور على أكثر من 4 حروف متوازية</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>لا تستخدم كلمات أو مجموعات شائعة ككلمة المرور</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>الرجاء إنشاء كلمة مرور قوية</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>لا تتوافق مع قواعد كلمة المرور</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>مركز التحكم</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>مفعل</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>عرض</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>سوف يتم تفعيله</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>تفعيل</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>مرت الأجل</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>في فترة تجريبية</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>انتهت فترة التجربة</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>إعدادات الشاشة اللمسية</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>تم تغيير إعدادات الشاشة اللمسية</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>هذا ورقة خلفية نظام مخزن. يرجى الاتصال بمسؤول النظام.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>بحث</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>تنسيق الافتراضي</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>أول يوم في الأسبوع</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>التاريخ القصير</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>التاريخ الطويل</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>الوقت القصير</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>الوقت الطويل</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>رمز العملة</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>رقم</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>حجم الورق</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>حفظ</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>بحث</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>قم بتعيين كلمة مرور</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 حرف</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>قم بتكرار كلمة المرور</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>تأكيد</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>كلمات المرور لا تتطابق</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>Təkrar vaxtını tənzimləyin</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Ləğv et</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Yadda saxla</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>شاشة حماية</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>睥览</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>شاشة حماية شخصية</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>الإعداد</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>وقت الاستراحة</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>دقيقة واحدة</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>خمس دقائق</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>عشر دقائق</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>fifteen minutes</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>ثلاثين دقيقة</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>ساعة واحدة</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>никогда</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>يرتبط مطلوب كلمة المرور للتعافي</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>شاشة حماية عرض الصور المتحركة</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>شاشة حماية النظام</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>بحث</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>Axtarış nəticəsi yoxdur</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>إضافة اختصار مخصص</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>الاسم:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>مطلوب</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>명령:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>اختصار</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>لا شيء</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>إضافة</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>اختصارات</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>اختصارات النظام، اختصارات شخصية</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>بحث عن الاختصارات</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>انجز</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>تحرير</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>انقر</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>أو</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>استبدل</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>اعاده الاعدادات الافتراضية</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>إضافة اختصارات شخصية</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Səs</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>أجهزة الإخراج</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>حدد ما إذا كنت تريد تفعيل هذه الأجهزة</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>أجهزة الإدخال</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>أصوات مخصصة</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>التشغيل</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>إغلاق</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>تسجيل الخروج</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>استعادة العمل</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>الصوت +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>إشعارات</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>بطارية منخفضة</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>إرسال رمز التطبيق من пуск на рабочий стол</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>清除废纸篓</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>إدخال</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>إخراج</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>جهاز مستتر متصل</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>جهاز مستتر تم إخراجه</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>خطأ</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>الوضع</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>مستوى الصوت</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>زيادة الصوت</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>إذا كان الصوت أعلى من 100٪، فقد يسبب تشويه الصوت وقد يكون ضارًا لجهاز الإخراج</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>اليسار</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>اليمين</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>الإخراج</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>لم يتم العثور على جهاز إخراج للصوت</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>تعادل اليسار واليمين</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>دمج قنوات اليسار واليمين في قناة واحدة</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>هل سيتم تثبيت توقف الصوت التلقائي عند سحب جهاز الصوت الحالي؟</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Çıxış cihazı</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>الصوت</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>الطاقة</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>المouse</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>تحديث</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>شاشة الحماية</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>查看更多壁纸</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>تثبيت تزامن الوقت التلقائي</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>خادم NTP</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>التاريخ والوقت النظامي</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>خصيص</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>إعدادات</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>عنوان الخادم</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>مطلوب</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>عنوان الخادم ntp لا يمكن أن يكون فارغًا</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>استخدم تنسيق 24 ساعة</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>منطقة час النظام</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>قائمة المناطق الزمنية</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>من</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>إلى</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>حفظ إعدادات الشاشة؟</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>سيتم استعادة الإعدادات في %1 ثانية.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>استعادة</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>حفظ</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>إضافة منطقة زمنية</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>تحديد المنطقة الزمنية بناءً على الموقع الحالي</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>منطقة زمنية:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>أقرب مدينة:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>حفظ</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>شاشة اللمس</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>قم بتوصيل الشاشة اللمسية هنا عند الاتصال</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>إعدادات أساسية</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>شريط اللمس</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>سرعة المؤشر</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>بطيء</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>سريع</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>تعطيل لوحة اللمس أثناء الكتابة</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>النقر للنقر</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>تنقل طبيعي</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>حركات الأصابع الثلاثة</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>حركات الأصابع الأربعة</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>انضم إلى برنامج تجربة المستخدم</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Link ünvanını kopyalayın</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>التحقق الأمني</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>العملية حساسة، يرجى إدخال كلمة المرور أولاً</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 حرف</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>نسيت كلمة المرور؟</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>إلغاء</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>تأكيد</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>خلفية الشاشة</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>صورتي</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>خلفية النظام</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>خلفية اللون الواحد</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>خلفيات قابلة للتعديل</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>نمط التعبئة</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>تغيير خلفية تلقائي</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>أبداً</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 ثانية</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 دقيقة</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 دقائق</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 دقائق</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 دقيقة</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 دقيقة</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>تسجيل الدخول</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>وقوع</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>خلفية حية</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>ساعة واحدة</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>فك التموج</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>إعداد ekالصفحة الرئيسية</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>إعداد سطح المكتب</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>واجهة وتأثيرات</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>إعدادات النافذة</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>زوايا نافذة منحنية</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>لا شيء</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>صغير</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>كبير</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>تفعيل التأثيرات الشفافة عند تحرير النوافذ</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>تأثير الحدث عند تقليل النافذة</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>قياس</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>لُبَاس السحر</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>الشفافية</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>منخفض</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>عالي</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>أشرطة التمرير</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation> покажите при прокрутке</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>احتفظ بالظهور</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>عرض مコンパクト</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>إذا تم تفعيله، يتم عرض المزيد من المحتوى في النافذة.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>ارتفاع بار العنوان</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>مُناسب فقط للنُوافذ الخاصة بتطبيقات تُرسم عنوانها مُحرِّر النُوافذ.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>مُشِغر جدا</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>Orta</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>Orta</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>İstinadın İslam Cibiri (İslam Cibiri)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>İstinadın İslam Cibiri (İslam Cibiri)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>İslam Cibiri</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>اسم المستخدم يجب أن يكون بين 3 و32 حرفًا</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>يجب أن يكون الحرف الأول حرفًا أو رقمًا</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>اسم المستخدم不应包含仅数字</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>اسم المستخدم مستخدم من قبل حسابات مستخدم أخرى</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>اسم المستخدم الكاملtoo long</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>اسم المستخدم الكامل مستخدم من قبل حسابات مستخدم أخرى</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>كلمة المرور غير صحيحة</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>مستخدم معياري</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>مدير</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>مخصص</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>تم إزالة جهازك من خادم النطاق بنجاح</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>انضم جهازك إلى خادم النطاق بنجاح</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>فشل جهازك في مغادرة خادم النطاق</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>فشل جهازك في الانضمام إلى خادم النطاق</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>إعدادات النطاق AD</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>الكلمة السرية غير متطابقة</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>متعدد الأبعاد</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>سطح</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>此快捷键与 [%1] 冲突</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>لا يمكن أن يكون كلمة المرور فارغة</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>يجب أن يحتوي كلمة المرور على الأقل على %1 حرف</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>يجب أن لا يتجاوز طول كلمة المرور %1 حرف</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>تستطيع كلمة المرور أن تحتوي فقط على حروف الإنجليزية ( حساسية الحالة )، الأرقام أو الرموز الخاصة (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>لا تتجاوز %1 حرفًا متوازيًا</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>لا تتجاوز %1 حرفًا متتابعًا</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>لا تتجاوز %1 حرفًا مكررًا</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>يجب أن تحتوي كلمة المرور على حروف كبيرة، حروف صغيرة، أرقام ورموز (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>لا يجب أن يحتوي كلمة المرور على أكثر من 4 حروف متوازي</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>لا تستخدم كلمات شائعة وسلاسل حروف ككلمة المرور</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>استعرض كلمة مرور قوية</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>لا يتوافق مع قواعد كلمة المرور</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>النظام</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>النافذة</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>منطقة العمل</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>أدوات المساعدة</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>مخصص</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>لا يوجد</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_bg.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"bg\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Свързано</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Няма връзка</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отказ</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Идентификацията е необходима, за да настроите системния часови пояс</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Дисплей</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Сила на звука на входа</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Мишка и Тъчпад</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Персонализация</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Потребителски</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Контролен център</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Изглед</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Звук</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Звукови ефекти</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Зареждане</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Изключване</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Излизане</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Събуждане</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Сила на звука +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Известяване</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Изтощена батерия</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Изпратете икона в Стартера на работния плот.</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Изпразване на Кошчето</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Свържи</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Извади</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Преносимото устройство е свързано</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Преносимото устройство е извадено</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Грешка</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Режим</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Сила на звука на изхода</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Ляво</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Дясно</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Връщане</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Запазване</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Традиционна китайска (Хонконг)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Традиционна китайска (Тайван)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Тайван Китай</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Този късоуказател конфликтува с [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Система</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Прозорец</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Работно пространство</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Помощни инструменти</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Потребителски</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Няма</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_bn.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"bn\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>সম্পাদনা</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>নতুন ইউজার যোগ করুন</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>পূর্ণনাম নির্ধারণ করুন</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>লগইন সেটিংস</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>পাসওয়ার্ড ব্যবহার করে লগইন করুন</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>বর্তমান অ্যাকাউন্ট ডিলিট করুন</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>গ্রুপ সেটিংস</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>অ্যাকাউন্ট গ্রুপস</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>মন্তব্য</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>গ্রুপের নাম</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>গ্রুপ যোগ করুন</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>অটো লগইন</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>অ্যাকাউন্ট তথ্য</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>অ্যাকাউন্ট নাম, পূর্ণ নাম, অ্যাকাউন্ট টাইপ</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>অ্যাকাউন্ট নাম</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>পূর্ণ নাম</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>অ্যাকাউন্ট টাইপ</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>ফেস এন্রোল করুন</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>আমি পড়েছি এবং আমি এটির সহমতি দিয়েছি</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>রিজার্মেন্ট</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>পরবর্তী</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>ফেস এন্রোল হয়েছে</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>কার্টোন স্টাইল</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>মাত্রাগত স্টাইল</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>ফ্ল্যাট স্টাইল</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>বাতিল</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>পরিবর্তন সংরক্ষণ</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>স্ক্রিন এবং সাময়িক অবস্থান</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>মনিটর বন্ধ করা হবে %1 এর পরে</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>স্ক্রিন লোক করা হবে %1 এর পরে</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>কম্পিউটার সাময়িক অবস্থান করবে %1 এর পরে</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>কাঠের বন্ধ হলে</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>পার্স বীটন চাপানোর সময়ে</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>লো ব্যাটারি</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>লো ব্যাটারি সূচনা</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>অটো সাময়িক অবস্থান</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>অটো হিব্রিম</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>লো ব্যাটারি গন্তব্য</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>ব্যাটারি ম্যানেজমেন্ট</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>ব্যবহার ও চার্জিং সময়ের বাকি পরিমাপ প্রদর্শন</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>মাক্সিমাল ক্যাপাসিটি</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>লো ব্যাটারি হিসাব</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>দেবু করা</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>ব্লুটুথ বন্ধ করা হয়েছে, এবং নামটি %1 হিসাবে প্রদর্শিত হবে</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>ব্লুটুথ চালু করা হয়েছে, এবং নামটি %1 হিসাবে প্রদর্শিত হবে</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>বন্ধ করা</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>যুক্ত করা</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>ফাইল পাঠান</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>পুনর্নামকরণ</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>ডিভাইস মুছে ফেলুন</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>ফাইল নির্বাচন করুন</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>সম্পাদনা</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>অন্যান্য ব্লুটুথ ডিভাইসগুলি এই ডিভাইসকে খুঁজতে দাও</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>ব্লুটুথ ফাংশন ব্যবহার করতে এই ডিভাইসটি বন্ধ করুন</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>অফিসেন্ট মোড</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>যুক্ত</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>যুক্ত নয়</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>প্রারম্ভিক সংস্থাপনা</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>প্রোগ্রামের মূল শুরু উপাদানগুলি পরিবর্তন করতে মেনু ক্লিক করুন বা চিত্রটি টাইম্বারে ট্র্যাগ করে পোস্টারিক চিত্র পরিবর্তন করুন.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>grub শুরু দেস্ট্যান্ড</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>থিম</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>থিম চালানোর পর, কম্পিউটার চালালে থিমের পেছনের চিত্র দেখতে পাবেন</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>প্রারম্ভিক মেনু চেক</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>প্রদর্শন খুললে, মেনু সম্পাদনার জন্য একটি পাসওয়ার্ড প্রয়োজন।</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>পাসওয়ার্ড পরিবর্তন</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>প্রারম্ভিক মেনু চেক পাসওয়ার্ড পরিবর্তন</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>প্রারম্ভিক মেনু চেক পাসওয়ার্ড সেট করুন</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>ব্যবহারকারী নাম : </translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>নতুন পাসওয়ার্ড : </translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>প্রয়োজনীয়</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>পাসওয়ার্ড খালি থাকতে পারে না</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>পাসওয়ার্ড সুমিটিশ্যু হয়নি</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>পাসওয়ার্ড পুনরায় লিখুন:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>বাতাস</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>আচ্ছা</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>অ্যানিমেশন শুরু করুন</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>সিস্টেম শুরু করার সুইচের লোগো অ্যানিমেশনের আকার রাস্তায় রাখুন</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>নীচের অ্যাপ্সকে আপনার ক্যামেরার এ্যাক্সেস দাও:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>পিংপ্রিংট1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>পিংপ্রিংট2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>পিংপ্রিংট3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>পিংপ্রিংট4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>পিংপ্রিংট5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>পিংপ্রিংট6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>পিংপ্রিংট7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>পিংপ্রিংট8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>পিংপ্রিংট9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>পিংপ্রিংট10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>স্ক্যান সমাধান হয়নি</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>পিংপ্রিংট নিঃসন্দেহেই অন্তত একটি উপস্থিত</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>অন্যান্য হাতের পিংপ্রিংট স্ক্যান করুন</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>অজানা ত্রুটি</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>স্ক্যান বন্ধ</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>ইন্ডিকেট করা যায় না</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>তারা হাল্কা হয়ে গেছে</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>নাড়ো যতক্ষণ না এটি প্রার্থনা করা হয়, বাহিরে নেই</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>অস্পষ্ট হাতের চিহ্ন</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>পায়ে নিষ্পাষ্ট করুন বা হাতের স্থান রুক্ষ করুন এবং আবার চেষ্টা করুন</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>আগেই স্ফটিক্যাল্যাস্কেড</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>হাতের স্থান রুক্ষ করুন যাতে পূর্ণ হাতের চিহ্ন স্ফটিক্যাল্যাস্কেড হয়</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>নাড়ো যতক্ষণ না এটি প্রার্থনা করা হয়, বাহিরে নেই</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>পায়ে উঠিয়ে দিন এবং আবার সেন্সরে রাখুন</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>আপনার মুখ চিত্রে অন্তর্ভুক্ত করুন</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>মুখ রেজিস্ট্রেট করা হয়েছে</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>অন্য একজন মানুষের মুখ অন্তর্ভুক্ত করুন</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>ক্যামেরা থেকে দূরে থাকুন</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>ক্যামেরায় আসুন</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>চিত্রে অন্য কোনও মুখ অন্তর্ভুক্ত করবেন না</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>ক্যামেরার লেন্সটি নিরাদর্শ হয়ে থাকে কেনার করুন</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>নিঃশ্বাস, আলোয় বা পিছনে আলোয় রেজিস্ট্রেট করবেন না</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>আপনার মুখটি খোলা রাখুন</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>স্ফটিক্যাল সময় অপরাধ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>বাতিল</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>সাজার রঙ</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>ইকন সেটিংস</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>ইকন থিম</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>বিষয় স্বরূপের ইকন পরিস্থিতি নির্দেশিকা করুন</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>কার্সর স্বরূপ</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>বিষয় স্বরূপের কার্সর নির্দেশিকা করুন</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>আপনি কি এই অ্যাকাউন্টটি হ্যালো করতে চান?\n</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>অ্যাকাউন্ট ডাটারেক্টরি মুছে ফেলুন</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>বাতিল</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>মুছে ফেলুন</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>সেটিংসে যান</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>বাতিল</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>সামান্য</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>পুনরাবৃত্তি দীর্ঘ</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>ছোট</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>দীর্ঘ</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>পুনরাবৃত্তি হার</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>গতিশীল</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>গতিশীল না</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>সংখ্যাক্রমিক ক্যাবেট</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>এখানে পরীক্ষা করুন</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>ক্যাপ্স লক প্রোম্প্ট</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>দ্বিগুণ ক্লিক গতি</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>দ্বিগুণ ক্লিক পরীক্ষা</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>বাম হাতের ম ode</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>বড় আকার</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>ছোট আকার</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>রূট এ্যাক্সেস পাওয়া ব্যর্থ হয়েছে</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>প্রথমে আপনার যুনিয়ন আইডি দিয়ে লগইন করুন</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>আপনার কম্পিউটারের তথ্য পড়তে পারা যায় না</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>নেটওয়ার্ক কনেকশন নেই</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>সাইনেটাফিকেট লোড করার ফেইলার, রূট এ্যাক্সেস পাওয়া যায় না</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>সাইনচেক পরীক্ষা ফেইলার, রূট এ্যাক্সেস পাওয়া যায় না</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>সম্মত হলে ইউজার এক্সপারিয়েন্স প্রোগ্রামে যোগ দিন</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>ডেভেলপার মোডের অনুমোদন নিরপেক্ষতা</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>সম্মত হলে রূট এ্যাক্সেস প্রার্থনা করুন</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>নতুন বুট এন্ডিমেশন সেটিং শুরু করুন, এক মিনিট অপেক্ষা করুন</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>নতুন বুট এন্ডিমেশন সেটিং শেষ</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>সিস্টেম রিবুট করার পর সেটিংগুলি প্রযোগ করা হবে</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>পাসওয়ার্ডে সংখ্যা এবং বাক্যের অক্ষর থাকতে হবে</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>পাসওয়ার্ডের দৈর্ঘ্য 8 থেকে 64 অক্ষর হতে হবে</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>নতুন একাউন্ট তৈরি করুন</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>একাউন্ট তাইপ</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>ব্যবহারকারী নাম</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>প্রয়োজনীয়</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>পুরো নাম</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>পছন্দ করলে ব্যবহার করুন</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>বাতাস</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>একাউন্ট তৈরি করুন</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>আপনি এখনো এভারেট আপলোড করেনি। ক্লিক করুন বা অ্যাক্সেস টু ড্র এবং ড্রপ করুন একটি ছবি আপলোড করার জন্য</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>ব্যবহারযোগ্য</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>দীর্ঘ সময়</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>মূল্য চিহ্ন</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>দুর্লভ মূল্য</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>মূল্যায়িত মূল্য</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>দশমিক চিহ্ন</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>সংখ্যা গ্রুপিং চিহ্ন</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>সংখ্যা গ্রুপিং</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>পাতা পরিমাণ</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>NTP সার্ভার পরিবর্তন করার জন্য আইデンটিফিকেশন প্রয়োজন</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>সিস্টেমের টাইমজোন সেট করার জন্য প্রমাণীকরণ প্রয়োজন।</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>বাতিল</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>সংরক্ষণ</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>কন্ট্রোল টেন্ডার সিস্টেম সেটিংসের প্রকল্পগুলি প্রদান করে।</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>WeChat বাঁধুন</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>WeChat বাঁধার মাধ্যমে, আপনি নিরাপদ এবং ত্রুটি হার কম হিসাবে %1 ID এবং স্থানীয় অ্যাকাউন্টে লগইন করতে পারেন।</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>বাঁধা হয়নি</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>বাঁধা হচ্ছে না</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>বাঁধা</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>আপনি নিশ্চিত যে আপনি আবারও WeChat বাঁধার হতে চান?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>WeChat বাঁধার হতে পরে, আপনি WeChat ব্যবহার করে QR কোড ফেরত লগইন করতে পারবেন না %1 ID বা স্থানীয় অ্যাকাউন্টে।</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>আমি এটা ভাবছি</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>স্থানীয় অ্যাকাউন্ট বাঁধন</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>স্থানীয় অ্যাকাউন্ট বাঁধার পরে, আপনি নিম্নলিখিত ফাংশনগুলি ব্যবহার করতে পারেন:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>WeChat স্ক্যান কোড লগইন সিস্টেম</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>আপনি আপনার %1 ID এ বাঁধা WeChat ব্যবহার করে কোড স্ক্যান করে আপনার স্থানীয় অ্যাকাউন্টে লগইন করতে পারেন।</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>%1 ID এর মাধ্যমে পাসওয়ার্ড রিসেট করুন</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>তুমি ভুলে গেলে %1 ID দিয়ে লোকাল পাসওয়ার্ডটি ফিরে নেও।</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>আগের বিশিষ্ট ফিচার ব্যবহার করতে কন্ট্রোল সেন্টার - অ্যাকাউন্টস এবং তাদের যুক্ত প্রত্যাশিত প্রক্রিয়াগুলি চালু করুন।</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>দিপিন</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>ক্লাউড সিংক</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>তোমার %1 ID এর পরিচয় রাখো এবং তোমার ব্যক্তিগত ডেটা একাধিক ডিভাইসে সিংক করো।\n\n%1 ID এ লগইন করে ব্রাউজার, অ্যাপ স্টোর এবং অন্যান্য ব্যক্তিগত ফিচার এবং সেবা পাও।</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>%1 ID এ লগইন করো</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>অটো সিংক</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>সিস্টেম সেটিংস এবং ব্যক্তিগত ডেটা ক্লাউডে উপার্জনকারীভাবে রাখো এবং তাদের একাধিক ডিভাইসে সিংক রাখো</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>সিস্টেম সেটিংস</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>শেষ সিংক সময়: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>ক্লাউডের ডেটা হুঁরো</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>তুমি কি ক্লাউডে রাখা সিস্টেম সেটিংস এবং ব্যক্তিগত ডেটা হুঁরতে চাও?\n</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>এক্ষেত্রে ডেটা হুরানো হলে তা পুনরায় পাওয়া যাবে না!\n</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>বাতিল</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>হুরো</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>সিংক সেবা</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>অ্যাকাউন্ট এবং উপাধি</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>লগআউট করো</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>ওয়েব সেটিংসে যাও</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>পাসওয়ার্ড সিক্রেটারিতে তোলাই ব্যর্থ হয়েছে</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>গ্রাহক পাসওয়ার্ড গ্রাহক পাসওয়ার্ড যদি ভুল হয়, তাহলে %1 পরিবর্তন থাকে</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>আজ লগইন ত্রুটিটি সীমার সাথে পৌঁছেছে। তুমি পাসওয়ার্ড রিসেট করতে পারো এবং আবার চেষ্টা করো।</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>পরিকল্পনা সফল</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>চীন প্রাদেশিক</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>অন্যান্য অঞ্চল</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>এই ফিচার এখন উপলব্ধ নয়, প্রথমে আপনার সিস্টেম অক্টিভ করুন</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>অন্যান্য অঞ্চলে আপনার স্থানীয় বিধি এবং নীতি অনুযায়ী, এটি এখন উপলব্ধ নয়।</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>প্রোগ্রামটি &apos;%1&apos; খোলার জন্য ডিফল্ট প্রোগ্রামটি নির্বাচন করুন</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>প্রাইম</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>ডেস্কটপ ফাইল খোলুন</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>প্রোগ্রাম (*.desktop),</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>সকল ফাইল (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>রূট অ্যাক্সেস</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>রূট অ্যাক্সেস প্রার্থনা করুন</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>ডেভেলপার মোডে প্রবেশ করার পর, আপনি রূট অ্যাক্সেস পাতে পারেন, কিন্তু এটি সিস্টেম অন্তর্নির্মাণকে নষ্ট করার সম্ভাবনা থাকতে পারে, তাই এটি ব্যবহার করতে অনুরোধ করে সুরক্ষার জন্য এটি ব্যবহার করতে একটু এক্ষুনি হতে হবে।</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>সম্মত</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>প্রবেশ করুন</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>অনলাইন</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>UOS ID লগইন করুন</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>অফলাইন</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>কার্টিফিকেট ইমপোর্ট করুন</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>ফাইল নির্বাচন করুন</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>আপনার UOS ID লগইন করা হয়েছে, ডেভেলপার মোডে প্রবেশ করতে ক্লিক করুন</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>প্রথমে আপনার UOS ID দিয়ে লগইন করুন এবং পরবর্তী করুন</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1. ডাটা রিপোর্ট তৈরি করুন</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>ইমপোর্ট</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3. কার্টিফিকেট ইমপোর্ট করুন</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>নিয়ন্ত্রণ এবং ডিভাইজ ট্র্যাস্ট অপশনস</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>সিস্টেম লগিং লেভেল</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>অপশন পরিবর্তন করার ফলে বিস্তারিত লগ সংরক্ষিত হবে যা সিস্টেম পরিকল্পনার কাজের কোন ক্ষতি করতে পারে এবং / বা স্টোরেজ অ্যাস্পেক্টে বেশি অ্যাসাইন করতে পারে</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>ফোর্সড</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>ডিভাইজ</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>অপশন পরিবর্তন করার প্রসেস সম্পূর্ণ হতে প্রায় এক মিনিট লাগতে পারে, একটি সফল সেটিং প্রোমপ্ট পেয়ে পরে ডিভাইসটি রিবুট করে অপশনটি প্রভাবিত করতে হবে</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>এই ফাইলস এবং ফোল্ডারগুলো নিম্নলিখিত এ্যাপ্সে এক্সেস দাও:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>ডকুমেন্টস</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>ডেস্কটপ</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>ছবি</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>ভিডিও</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>মিউজিক</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>ডাউনলোড</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>ফোল্ডার</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>সাইজ</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>স্ট্যান্ডার্ড ফন্ট</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>মোনোস্পেসেড ফন্ট</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>পাউর প্লানস</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>পাউর সেভিং সেটিংস</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>লোই ব্যাটারি উপর আটু পাউর সেভিং</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>লোই ব্যাটারি থ্রেশহল্ড</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>ব্যাটারি উপর আটু পাউর সেভিং</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>ওয়াকাপ সেটিংস</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>কম্পিউটার ওয়াকাপ করতে কোড প্রয়োজন</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>মনিটর ওয়াকাপ করতে কোড প্রয়োজন</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>শাডওয়ার সেটিংস</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>সেইন্ডার শাডওয়ার</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>সময়</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>পুনরায় চালান</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>একবার</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>প্রতিদিন</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>কাজের দিন</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>মূল্যায়ন সময়</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>পার্টি সেভারে স্ক্রিন ব্রিজ্যাস কমান</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>, </translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>সুস্থাপিত পরিকল্পনা</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>খাড়াবার্ষিকি</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>সুন্দর দৃশ্য</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>ভাষা</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>কর্ম সম্পন্ন</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>সম্পাদনা</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>অন্যান্য ভাষা</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>যোগ করুন</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>প্রদেশ</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>ঊষ্মানীয় অঞ্চল</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>প্রদেশ ও অঞ্চল অনুযায়ী, সিস্টেম ও অ্যাপ্লিকেশনগুলি আপনাকে দেশ ও প্রদেশ ভিত্তিক স্থানীয় কন্টেন্ট দিতে পারে।</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>প্রদেশ অনুযায়ী, সিস্টেম ও অ্যাপ্লিকেশনগুলি তারিখ ও সময় আকার নির্ধারণ করতে পারে।</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>ভাষা যোগ করুন</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>অনুসন্ধান</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>বন্ধ</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>যোগ করুন</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>স্থাপনা পদ্ধতি</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>পাসওয়ার্ড, ওয়েচাট, জীবনী উপর ভিত্তি করে আইデン্টিফিকেশন, উপার্জ্জন কুইক</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>পাসওয়ার্ড</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>পাসওয়ার্ড পরিবর্তন করুন</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>মূল্যায়ন দিন</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>সবসময়</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>সংক্রান্ত অধিকার © 2011-%1 ডিপিন কমিউনিটি</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>সংক্রান্ত অধিকার © 2019-%1 যুনিয়নটেক সফটওয়্যার টেকনোলজি কো., ল্টড</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>ট্যাটিক্যাল শব্দ স্থানান্তরন</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>ইনপুট আওয়াজ</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>ইনপুট স্তর</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>ইনপুট</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>স্বরের জন্য ইনপুট ডিভাইস পাওয়া যায়নি</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>আমার ডিভাইসেস</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>কম্পিউটারের নাম</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>এটি ত্রিশটা দিয়ে শুরু করা বা শেষ করা যায় না</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>অপারেটিং সিস্টেমের নাম</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>ভার্সিয়ন</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>এডিশন</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>টাইপ</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>বিট</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>অ্যাথোরাইজেশন</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>সিস্টেম ইনস্টলেশন সময়</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>কার্নেল</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>গ্রাফিক্স প্ল্যাটফর্ম</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>প্রসেসর</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>মেমরি</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>অন্যান্য ডিভাইসেস</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>নাম থাকার বিন্দুমাত্র ব্লুটুথ ডিভাইস প্রদর্শন করুন</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>বর্তমান পাসওয়ার্ড</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>অনুরোধিত</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>বেশিরভাগ</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>মধ্যরেখা</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>ঝুঁকিপূর্ণ</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>পাসওয়ার্ড পুনরায় লিখুন</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>পাসওয়ার্ডের হিন্ট</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>অপশনাল</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>পাসওয়ার্ড অবশ্যই হওয়া দরকার</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>পাসওয়ার্ড মিলছে না</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>হিন্ট সব উপযোক্তার দৃশ্যমান। এখানে পাসওয়ার্ড লিখবেন না।</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>নতুন পাসওয়ার্ড বর্তমানের সাথে ভিন্ন হওয়া দরকার</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>পাসওয়ার্ড পরিবর্তন করুন</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>পাসওয়ার্ড পুনরায় সেট করুন</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>পাসওয়ার্ডের দৈর্ঘ্য কমপক্ষে ৮ অক্ষর হওয়া দরকার এবং পাসওয়ার্ডে নাম্বার, সিম্বল এবং উভয় ক্যাডার্সের মধ্যে কমপক্ষে ৩টি প্রকার অক্ষর অথবা সংখ্যার মিশ্রণ রয়েছে এটি নিরাপদতর।</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>পাসওয়ার্ড পুনরায় সেট করা প্রার্থনা করার সূচনায় স্টোরেড ডেটা পুরণ হবে।</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>বাতিল</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>আলো</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>টুকরো</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>ট্যাগ</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>মোটামুটি</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>প্লাগইন ইউনিট</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>ডকে দেখানো চিহ্নগুলি কোনগুলি নির্বাচন করুন</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>ফাঁকানাক করুন</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>প্রাক্তন</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>হাইব্রিডিটি</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>মনিটর বন্ধ করুন</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>ফাইন্ড করার পরবর্তী পরিস্থিতি দেখান</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>কিছুই করবেন না</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>স্ক্রিন এবং স্পাংজ</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>মনিটর বন্ধ করুন</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>স্ক্রিন লোক করুন</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>প্রোগ্রাম স্পাংজ করবে</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>লিড বন্ধ হয়ে থাকলে</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>পাউর বীটন প্রেস করার সময়</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>উচ্চ পরিকল্পনা</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>পরিকল্পনা সুরক্ষিত রাখুন</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>CPU ব্যবহারের অবস্থার উপর সেট করে ক্যাপিউ কর্যকালি অ্যারে সার্কিট অবশ্যই পরিবর্তন করুন</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>সুরক্ষিত রাখুন</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>পার্শ্ব সেভার</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>পরিকল্পনার প্রাথমিকতা দেওয়া, যা শক্তি উপাদান ও গরম গенেরেশনের সুনির্দিষ্ট বৃদ্ধি করবে</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>পরিকল্পনা ও ব্যাটারি জীবনকাল সুরক্ষিত রাখার মাধ্যমে সংগ্রাহক পরিবর্তন করা হবে যেমন ব্যবহার করা হয়</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>ব্যাটারি জীবনকাল প্রাথমিকতা দেওয়া, যা শক্তি উপাদান উপাদান কমানোর জন্য কিছু পরিকল্পনা দেখান দেখান</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>মিনিট</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>ঘন্টা</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>সবসময়</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>জায়গার নীতি</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>পাসওয়ার্ড খালি থাকতে পারে না</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>পাসওয়ার্ডের কমপক্ষে %1 অক্ষর থাকতে হবে</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>পাসওয়ার্ডের মোট কর্মকর্তার সংখ্যা %1 থেকে বেশি হতে পারে না</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>পাসওয়ার্ডের মধ্যে শুধু কেস সেন্টিটিভ ইংরেজি বাক্যার্টিয়াল, সংখ্যা বা বিশেষ অক্ষর (~/`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)\n</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>%1 পলিনড্রোম অক্ষর বেশি নেই\n</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>%1 মনোটনিক অক্ষর বেশি নেই\n</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>%1 পুনরাবৃত্ত অক্ষর বেশি নেই\n</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>পাসওয়ার্ডে উচ্চ ক্যাডের বাক্যার্টিয়াল, নিচ্ছ ক্যাডের বাক্যার্টিয়াল, সংখ্যা এবং সিমবলগুলি (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/) থাকতে হবে\n</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>পাসওয়ার্ডে 4 টি পলিনড্রোম অক্ষর বেশি থাকতে পারে না\n</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>সাধারণ শব্দ বা কোম্বিনেশন পাসওয়ার্ড হিসাবে ব্যবহার করবেন না\n</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>অগ্রাধিকারী পাসওয়ার্ড তৈরি করুন\n</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>এটি পাসওয়ার্ড নিয়মগুলি সিদ্ধান্ত করে নেই\n</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>কন্ট্রোল সেন্টার\n</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>ট্যাক্টিভেড\n</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>ভিউ\n</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>ট্যাক্টিভেড হবার পর\n</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>ট্যাক্টিভেট\n</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>প্রাপ্ত হয়েছে\n</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>ট্রিয়াল অবস্থায়\n</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>ট্রিয়াল প্রাপ্ত হয়েছে\n</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center\n</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>টাচ সিক্রেন সেটিংস\n</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>টাচ সিক্রেনের সেটিংস পরিবর্তিত হয়েছে\n</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>এই সিস্টেম পেপারওয়াল লকেড হয়েছে। অপেরেটরের সাথে যোগাযোগ করুন।\n</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>অনুসন্ধান\n</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>স্বামিত্বাধীন ফরম্যাট\n</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>সপ্তাহের প্রথম দিন\n</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>ছুটির তারিখ</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>দীর্ঘ তারিখ</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>ছুটির সময়</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>দীর্ঘ সময়</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>মুদ্রাস্বর</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>সংখ্যা</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>পেপার সাইজ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>বন্ধ করুন</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>পরিবর্তন সংরক্ষণ করুন</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>অনুসন্ধান</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>পাসওয়ার্ড নির্ধারণ করুন</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 ক্যারেক্টার</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>পাসওয়ার্ড পুনরাবৃত্তি করুন</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>বন্ধ করুন</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>যাচাই করুন</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>পাসওয়ার্ড মিলছে না</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>স্ক্রিন সেভার</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>প্রাইভিয়ার</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>প্রতিষ্ঠিত স্ক্রিন সেভার</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>সেটিং</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>অপারেশন অবস্থায় সময়</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 মিনিট</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 মিনিট</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 মিনিট</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 মিনিট</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 মিনিট</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 ঘন্টা</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>বসে থাকলেও</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>পুনর্সংযোগের জন্য পাসওয়ার্ড প্রয়োজন</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>ছবি স্লাইডশো স্ক্রিনসেভার</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>সিস্টেম স্ক্রিনসেভার</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>অনুসন্ধান</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>নির্দিষ্ট ট্রিভিয়াল যোগ করুন</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>নাম:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>প্রয়োজন</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>কম্যান্ড:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>ট্রিভিয়াল</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>কোনো একটি নেই</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>বন্ধ করুন</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>যোগ করুন</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>ট্রিভিয়াল</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>সিস্টেম ট্রিভিয়াল, নির্দিষ্ট ট্রিভিয়াল</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>অনুসন্ধান ট্রিভিয়াল</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>গোপনীয়</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>সম্পাদনা</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>ক্লিক করুন</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>বন্ধন পরিহার</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>বা</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>পরিবর্তন করুন</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>মূল অবস্থায় পুনরায় স্থাপন করুন</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>কাস্টম চার্জট যোগ করুন</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>আউটপুট ডিভাইস</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>ডিভাইসগুলি সক্রিয় করতে কি করতে নির্বাচন করুন</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>ইনপুট ডিভাইস</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>স্বর প্রভাব</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>নেভার উঠান</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>ফাউন্ড করান</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>লগ আউট করুন</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>ঘুম থেকে উঠান</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>গল্ফ সুরের মাত্রা +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>বিনোদন</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>লোয়া ব্যাটারি</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>লঞ্চারে ইকনট ডেস্কটপে পাঠান</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>মেঘাতি খালি করুন</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>সংযোগ করুন</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>ঘুঁট দিন</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>অপরিচিত ডিভাইস সংযোগ করা হয়েছে</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>অপরিচিত ডিভাইস বাদ দেওয়া হয়েছে</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>ভুল</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>মড</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>আউটপুট সুরের মাত্রা</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>ভার্জুস্ট ভার্জেন্সি</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>যদি গোল্ডের শব্দের স্তর 100% এর বেশি হয়, তাহলে এটি শব্দের স্তরকে পরিবর্তন করতে পারে এবং এটি উত্তরাধিকার ডিভাইসে নিষ্পক্ষ হতে পারে</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>বাম</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>ডান</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>উত্তরাধিকার</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>�ব্দের উত্তরাধিকার ডিভাইস পাওয়া যায় নি</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>বাম-ডান সূচনা</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>বাম এবং ডান চ্যানেল একটি চ্যানেলে মিশান</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>এখন ব্যবহৃত শব্দের ডিভাইস থেকে বাহির করা হলে শব্দটি টুলো আটুটি হবে কি</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>স্বর</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>পাবল্যাট</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>মিউজ</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>আপডেট</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>স্ক্রিন সেভার</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>ধারণা পোস্টার</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>টাইম টুলো আটুটি</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>NTP সার্ভার</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>সিস্টেম তারিখ এবং সময়</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>পরিষেবা করুন</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>সেটিংস</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>সার্ভার ঠিকানা</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>অনুগ্রহ করে প্রয়োজনীয়</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>এনটিপি সারভার ঠিকানা খালি থাকতে পারে না</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>24 ঘণ্টা আকার ব্যবহার করুন</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>সিস্টেম সময় অঞ্চল</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>সময় অঞ্চল তালিকা</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>সার্বিক</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>পর্যন্ত</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>প্রদর্শন সেটিংস সংরক্ষণ করুন</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>সেটিংস %1s পরে পুনরায় সংশোধিত হবে।</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>পুনরায় সংশোধন করুন</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>সংরক্ষণ করুন</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>সময় অঞ্চল যোগ করুন</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>বর্তমান অবস্থান অনুযায়ী সময় অঞ্চল নির্ধারণ করুন</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>সময় অঞ্চল:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>নিকটতম শহর:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>বাতাস</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>সংরক্ষণ করুন</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>উপরীতাপ্স্ক্রিন</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>উপরীতাপ্স্ক্রিন সংযোগ করার সময় এখানে নিয়ন্ত্রণ করুন</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>ভিত্তি সেটিংস</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>টাচপ্যাড</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>বাইন্ডার গতি</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>কম</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>গ্রাহক</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>প্রবেশ সময়ে টাচপ্যাড ব্যবহার বন্ধ করুন</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>ক্লিক করার জন্য টপ করুন</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>নাটীয় পরিস্থিতি পরিবর্তন</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>তিন পাত্র গাস্টার</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>চার পাত্র গাস্টার</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>ক্ষুদ্র</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>ভারী</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>ウインドウを移動するときに透過効果を有効にする</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>ウインドウの最小化効果</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>মাত্রা</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>মজাকি জাম্পান</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>অপার্সিবিটি</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>লোও</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>হাই</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>স্ক্রিন স্ক্রিল বার</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>স্ক্রিন স্ক্রিল করার সময় প্রদর্শন করুন</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>প্রদর্শিত রাখুন</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>কমপ্লেক্ট ডিস্প্লে</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>যদি সক্রিয় হয়, তাহলে উইন্ডোয়ে বেশি কনটেন্ট প্রদর্শিত হবে।</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>শিরোনাম বার উচ্চতা</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>প্রতিবেদক ম্যানেজার দ্বারা রেখে থাকা উইন্ডোয়ের শিরোনাম বারে ইহা শুধুমাত্র উপযুক্ত।</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>অত্যন্ত ক্ষুদ্র</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>ত্রান্সিস্টেন্ট চাইনিজ (চাইনিজ হংকং)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>ত্রান্সিস্টেন্ট চাইনিজ (চাইনিজ তাইওয়ান)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>তাইওয়ান চাইনিজ</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>ইউজারনেম 3 থেকে 32 অক্ষরের মধ্যে থাকতে হবে</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>প্রথম অক্ষর হতে একটি লিটারাল বা নাম্বার হতে হবে</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>ইউজারনেমে কেবলমাত্র নাম্বার থাকতে পারে না</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>ইউজারনেম অন্যান্য ইউজার অকাউন্টে ব্যবহার হয়েছে</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>মোট নাম খুব দীর্ঘ</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>মোট নাম অন্যান্য ইউজার অকাউন্টে ব্যবহার হয়েছে</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>গোঁাব গ্রাহক</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>ধর্মিয়ান ব্যবহারকারী</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>প্রশাসক</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>কাস্টমাইজেড</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>আপনার হোস্ট সফলভাবে ডোমেইন সারভার থেকে মুছে দেওয়া হয়েছে</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>আপনার হোস্ট সফলভাবে ডোমেইন সারভারে যোগ করা হয়েছে</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>আপনার হোস্ট ডোমেইন সারভার থেকে অবসান করতে সমস্যা হয়েছে</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>আপনার হোস্ট ডোমেইন সারভারে যোগ করতে সমস্যা হয়েছে</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>AD ডোমেইন সেটিংস</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>পাসওয়ার্ড মিলছে না</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>মাত্রার</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>ফ্ল্যাট</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>এই শক্তিশালী সংক্ষিপ্ত কমান্ড [%1] সাথে যোগাযোগ করছে</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>পাসওয়ার্ড খালি থাকতে পারে না</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>পাসওয়ার্ডের আগে %1 অক্ষর থাকতে হবে</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>পাসওয়ার্ডের দৈর্ঘ্য %1 অক্ষরের কম হতে হবে</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>পাসওয়ার্ডে শুধুমাত্র ক্যাসেইসেন্টিভ ইংরেজি বাক্য, সংখ্যা বা বিশেষ চিহ্ন (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ ) দ্বারা সৃষ্ট হতে পারে</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>%1 বার পলিনড্রোমিক চিহ্ন ব্যবহার করুন</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>%1 বার সামঞ্জস্যপূর্ণ চিহ্ন ব্যবহার করুন</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>%1 বার পুনরাবৃত্ত চিহ্ন ব্যবহার করুন</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>পাসওয়ার্ডে উঠোন বাক্য, নিচোল বাক্য, সংখ্যা এবং বিশেষ চিহ্ন (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ ) দ্বারা সৃষ্ট হতে হবে</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>পাসওয়ার্ডে 4 বার বেশি পলিনড্রোমিক চিহ্ন দ্বারা সৃষ্ট হতে পারে না</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>সাধারণ শব্দ বা সংশ্লিষ্ট ব্যবহার করতে হবে না</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>অগ্রাহ্য পাসওয়ার্ড তৈরি করুন</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>পাসওয়ার্ডের নিয়ম পূরণ করা হয়নি</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>সিস্টেম</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>বিন্ডো</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>ব্যবস্থাপনা অঞ্চল</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>অনুরোধ সাহায্য লিংক</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>মূল্যায়ন করা</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>কোনো একটি নেই</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_bo.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"bo\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>འདོར་བ། </translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>གྲུབ་ཟིན། </translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>སྦྲེལ་ཟིན། </translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>སྦྲེལ་མེད་པ། </translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>མཛུབ་རིས། 1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>མཛུབ་རིས། 2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>མཛུབ་རིས། 3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>མཛུབ་རིས། 4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>མཛུབ་རིས། 5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>མཛུབ་རིས། 6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>མཛུབ་རིས། 7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>མཛུབ་རིས། 8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>མཛུབ་རིས། 9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>མཛུབ་རིས། 10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>མཛུབ་རིས་འཇུག་ཐབས་བྲལ།</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>མཛུབ་རིས་འདུག</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>མཛུབ་མོ་གཞན་གྱི་མཛུབ་རིས་འཇུག་རོགས།</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>རྒྱུ་མཚན་མ་ཤེས་པའི་ནོར་འཁྲུལ།</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>མཛུབ་རིས་འཇུག་མཚམས་ཆད་པ།</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>ངོས་འཛིན་ཐབས་བྲལ།</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>རེག་པའི་དུས་ཚོད་ཐུང་བ།</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>རེག་ཡུན་ཐུང་བ། ར་སྤཽད་བྱེད་སྐབས་མཛུབ་མོ་ཕྱིར་མ་འཁྱེར།</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>བརྙན་རིས་མི་གསལ་བ།</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>མཛུབ་མོ་གཙང་མར་ཕྱིས་པའམ་རེག་ས་ལེགས་སྒྲིག་བྱས་རྗེས་ཡང་བསྐྱར་མཛུབ་རིས་ངོས་འཛིན་ཆས་ནོན་དང་།</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>བརྙན་རིས་བསྐྱར་ཟློས།</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>མཛུབ་རིས་གནོན་ས་ལེགས་སྒྲིག་བྱས་ནས་མཛུབ་རིས་སྔར་ལས་མང་བ་ནང་འཇུག་བྱེད།</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>མཛུབ་རིས་འཚོལ་བསྡུ་བྱེད་སྐབས་ཁྱོད་ལ་ཡར་ཁྱོག་ཅེས་གསལ་འདེབས་མ་བྱས་བར་མཛུབ་མོ་ཕྱིར་མ་འཁྱེར།</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>མཛུབ་མོ་ཡར་བཀྱག་ནས་ཡང་བསྐྱར་མནན་རོགས།</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>ཁྱེད་ཀྱི་ངོ་གདོང་ཚང་མ་དབྱེ་འབྱེད་ཁུལ་དུ་ཡོད་པར་ཁག་ཐེག་བྱེད་དགོས།</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>ངོ་གདོང་ནང་འཇུག་བྱས་ཟིན། </translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>མིའི་རིགས་ཀྱི་ངོ་གདོང་སྤྱོད་རོགས། </translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>བཪྙན་ཤེལ་དང་བར་ཐག་འཇོག་དགོས། </translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>པར་ཆས་དང་ཐག་ཉེ་ཙམ་གནང་དང་།</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>མི་མང་པོ་དབྱེ་འབྱེད་ཁུལ་དུ་མ་ཡོང་རོགས། </translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>བཪྙན་ཤེལ་གཙང་མ་ཡོད་དགོས། </translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>ནག་ཁུང་དང་དྲག་འོད། ཟློག་འོག་སོགས་འོག་བཀོལ་སྤྱོད་མ་བྱེད་རོགས། </translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>ངོ་གདོང་བཀབ་མེད་པ་རྒྱུན་འཁྱོངས་བྱེད་དགོས།</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>ནང་འཇུག་བྱེད་ཡུལ་བརྒལ་སོང་།</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>འདོར་བ། </translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-ti</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-ti</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>དུས་ཚོད་ཀྱི་ཞབས་ཞུ་འཕྲུལ་ཆས་བཟོ་བཅོས་བྱེད་པར་ར་སྤྲོད་བྱེད་དགོས།</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>རྒྱུད་ཁོངས་ཀྱི་དུས་ཁུལ་སྒྲིག་འགོད་བྱེད་པར་ར་སྤྲོད་བྱེད་དགོས།</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright © 2011-%1 གཏིང་ཚད་སྡེ་ཁུལ།</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright © 2019-%1 ཐུང་ཞིན་མཉེན་ཆས་ལག་རྩལ་ཚད་ཡོད་ཀུང་སི།</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>སུན་སྒྲ་ཚོད་འཛིན།</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>སྒྲ་ཤུགས་ནང་འཇུག</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>སྒྲ་ཤུགས་ལྡོག་སྐྱེལ།</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>ནང་འདྲེན་སྒྲིག་ཆས།</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>རང་སྒྲུབ།</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>གསང་ཨང་སྟོང་པ་ཡིན་མི་རུང་། </translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>གསང་ཨང་རིང་ཚད་གྲངས་གནས་%1ལས་ཉུང་མི་རུང་།</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>གསང་ཨང་གི་རིང་ཚད་%1གཉིས་ལས་བརྒལ་མི་རུང་། </translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>གསང་ཨང་ནི་དབྱིན་ཡིག་(ཡིག་ཆེན་དང་ཡིག་ཆུང་གི་དབྱེ་བ་འབྱེད་དགོས། )དང་། ཨང་ཀི། ཡང་ན་དམིགས་བསལ་མཚོན་རྟགས་(~!@#$%^&amp;*()[]{}\\|/?,.&lt;&gt;)བཅས་ལས་གྲུབ་དགོས།</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>སྐོར་ཟློས་ཡིག་འབྲུ་%1ལས་བརྒལ་མི་རུང་།</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>གཅིག་རྐྱང་ཅན་གྱི་ཡིག་འབྲུ་%1ལས་བརྒལ་མི་རུང་།</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>བསྐྱར་ཟློས་ཡིག་འབྲུ་%1ལས་བརྒལ་མི་རུང་།</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>གསང་ཨང་ནི་ངེས་པར་དུ་ཡིག་ཆེན་དང་། ཡིག་ཆུང་། གྲངས་ཀ མཚོན་རྟགས་（~!@#$%^&amp;*-+=`|\\(){}[]:;&quot;&apos;&lt;&gt;,.?/）བཅས་རིགས་བཞི་ལས་གྲུབ་དགོས།</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>གསང་ཨང་ནང་བསྟུད་མར་ཟུང་ལྡན་གྱི་ཡིག་འབྲུ་4ཡན་ཡོད་མི་ཆོག </translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>གསང་ཨང་ནི་རྒྱུན་མཐོང་གི་མིང་དང་ཚིག་གྲུབ་ཡིན་མི་ཆོག </translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>གསང་ཨང་སྟབས་བདེ་དྲགས་པས། གསང་ཨང་རྙོག་འཛིང་ཆེ་རུ་གཏོང་།</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>གསང་ཨང་བདེ་འཇགས་ཀྱི་བླང་བྱ་དང་མི་འཚམ་པ།</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>ཚོད་འཛིན་ལྟེ་གནས།</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>སྐུལ་སློང་བྱས་ཟིན།</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>ལྟ་བཤེར།</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>སྐུལ་སློང་བྱ་རྒྱུ།</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>སྐུལ་སློང་།</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>དུས་ལས་ཡོལ་བ།</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>ལས་ཚོད་ལྟ་བའི་དུས་ཡུན།</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>ལས་ཚོད་ལྟ་བའི་དུས་ཡུན་ལས་བརྒལ་བ།</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>ཐུག་རེག་བརྙན་ཡོལ་སྒྲིག་འགོད།</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>ཐུག་རེག་བརྙན་ཡོལ་གྱི་སྒྲིག་བཀོད་སྒྱུར་ཟིན།</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>རྒྱུད་ཁོངས་སྒྲ་ནུས།</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>ཁ་ཕྱེ།</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>རྩིས་འཁོར་གློག་གསོད།</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>ཐོ་སུབ་པ།</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>གཉིད་ལས་སད་པ།</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>སྐད་ཤུགས་སྙོམ་སྒྲིག</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>བརྡ་ཐོ།</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>གློག་མི་འདང་པ།</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>འགོ་སློང་ཆས་ནས་རྟགས་རིས་ཅོག་ངོས་སུ་སྐྱེལ་བ།</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>སྙིགས་སྒམ་གཙང་སེལ།</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>གློག་ཁུངས་དང་མཐུད་པ།</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>གློག་ཁུངས་བཅད་པ།</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>སྒུལ་བདེའི་སྒྲིག་ཆས་མཐུད་པ།</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>སྒུལ་བདེའི་སྒྲིག་ཆས་འགོག་པ།</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>ནོར་འཁྲུལ་གསལ་འདེབས།</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>དཔེ་རྣམ།</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>སྒྲ་ཤུགས་ཕྱིར་འདོན།</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>སྐད་ཤུགས་ཆེ་རུ་གཏོང་བ།</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>སྒྲ་ཤུགས་100%ལས་ཆེ་བ་ཡོད་སྐབས་སྒྲ་ནུས་ཤོར་སྲིད་པ་མ་ཟད། ཁྱོད་ཀྱི་སྒྲ་སྐྱེད་ཆས་ཀྱང་འཕྲོ་བརླག་གཏོང་ཉེན་ཡོད།</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>གཡོན།</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>གཡས།</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>ཕྱིར་འདྲེན་སྒྲིག་ཆས།</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>མངོན་སྟོན་སྒྲིག་འགོད་ཉར་ཚགས་བྱ་དགོས་སམ།</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>བཀོལ་སྤྱོད་གང་ཡང་མེད་ཚེ། སྐར་ཆ་%1གི་རྗེས་སོར་ཆུད་རྒྱུ།</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>སོར་ཆུད།</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>ཉར་ཚགས། </translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Traditional Chinese (Chinese Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Traditional Chinese (Chinese Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan China</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>This shortcut conflicts with [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>System</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Window</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Workspace</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>AssistiveTools</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Custom</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>None</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_bqi.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"bqi\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>ترائیل چینی (چینی ہونگ کانگ)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>ترائیل چینی (چینی ٹائوان)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>ٹائوان چین</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>یہ سورٹ کاٹ [%1] کے ساتھ منسق ہے</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>سسٹم</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>ونڈو</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>ورک سپیس</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>مددی تواتر</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>آپراٹک ٹولز</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>کوئی نہیں</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_br.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"br\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Enrollañ</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Nullañ</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Enrollañ</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Personnelaet</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Gweled</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Enrollañ</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Enrollañ</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">Hini ebet</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Enrollañ</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\">Reizhiad</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Enrollañ</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Enrollañ</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Nullañ</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">Hini ebet</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Sinaeg hengounel (Sinaeg Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Sinaeg hengounel (Sinaeg Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan Sina</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Ar berradur-mañ a stourm gant [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Reizhiad</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Prenestr</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Spas labour</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Ostilhoù skoazell</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Personelaet</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Hini ebet</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_ca.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ca\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>edita</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Afegiu-hi un usuari nou</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Estableix el nom complet</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Paràmetres de l&apos;inici de sessió</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Inici de sessió sense contrasenya</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Elimina el compte actual</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Configuració del grup</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Grups de comptes</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>fet</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Nom del grup</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Afegeix-hi un grup</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Entrada automàtica</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Informació del compte</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Nom del compte, nom complet del compte, tipus de compte</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Nom del compte</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Nom complet del compte</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Tipus de compte</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>El nom complet és massa llarg.</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>Els noms dels grups no haurien de superar els 32 caràcters.</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>Els noms dels grups no poden contenir només números.</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>Useu només lletres, números, guions baixos i guions, i ha de començar amb una lletra.</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>Aquest nom de grup ja s&apos;usa.</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>inici de sessió ràpid, entrada automàtica, entrada sense contrasenya</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>Desfés</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>Refés</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>Retalla</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>Copia</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>Enganxa</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>Selecciona-ho tot</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>Entrada ràpida</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation>Compte</translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation>Gestor de comptes</translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation>Altres comptes</translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Apunteu la cara</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Ho he llegit i ho accepto:</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Exempció de responsabilitat</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Següent</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Cara apuntada</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>No s&apos;ha pogut registrar la cara.</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Fet</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Torna a provar la inscripció</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation>El reconeixement facial no admet la detecció de la presència viva, i el mètode de verificació pot comportar riscos.\nPer garantir una entrada correcta:\n1. Mantingueu els trets facials clarament visibles i no els cobriu (barrets, ulleres de sol, màscares, etc.).\n2. Assegureu-vos que hi hagi prou il·luminació i eviteu la llum solar directa.</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>L&apos;autenticació biomètrica ​​és una funció per a l&apos;autenticació de la identitat de l&apos;usuari proporcionada per UnionTech Software Technology Co., Ltd. Mitjançant l&apos;autenticació biomètrica, les dades biomètriques recollides es compararan amb les emmagatzemades al dispositiu i la identitat de l&apos;usuari es verificarà en funció del resultat de la comparació.\n\nTingueu en compte que UnionTech Software Technology Co., Ltd. no recopilarà ni accedirà a la vostra informació biomètrica, que s&apos;emmagatzemarà al vostre dispositiu local. Si us plau, activeu l&apos;autenticació biomètrica només al dispositiu personal i useu la pròpia informació biomètrica per a operacions relacionades, i desactiveu o elimineu immediatament la informació biomètrica d&apos;altres persones en aquest dispositiu; en cas contrari, assumireu el risc que se&apos;n derivi.\n\nUnionTech Software Technology Co., Ltd. es compromet a investigar i millorar la seguretat, la precisió i l&apos;estabilitat de l&apos;autenticació biomètrica. Tanmateix, a causa de factors ambientals, d&apos;equipament, tècnics i altres factors, i del control de riscos, no hi ha cap garantia que supereu sempre l&apos;autenticació biomètrica. Per tant, no useu l&apos;autenticació biomètrica com a única manera d&apos;iniciar sessió a l&apos;UOS. Si teniu cap pregunta o suggeriment sobre l&apos;ús de l&apos;autenticació biomètrica, podeu enviar comentaris a través del Servei i assistència a UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Fet</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Apunteu la cara</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Col·loqueu el dit que voleu introduir al sensor d&apos;empremtes digitals i moveu-lo de baix a dalt. Després de completar l&apos;acció, aixequeu-ne el dit.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Ho he llegit i ho accepto:</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Exempció de responsabilitat</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Següent</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Torna a provar la inscripció</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>L&apos;autenticació biomètrica ​​és una funció per a l&apos;autenticació de la identitat d&apos;usuari proporcionada per UnionTech Software Technology Co., Ltd. Mitjançant l&apos;autenticació biomètrica, les dades biomètriques recollides es compararan amb les emmagatzemades al dispositiu i la identitat de l&apos;usuari es verificarà en funció del resultat de la comparació.\n\nTingueu en compte que UnionTech Software Technology Co., Ltd. no recopilarà ni accedirà a la vostra informació biomètrica, que s&apos;emmagatzemarà al vostre dispositiu local. Si us plau, habiliteu l&apos;autenticació biomètrica només al dispositiu personal i useu la pròpia informació biomètrica per a les operacions relacionades, i desactiveu o suprimiu immediatament la informació biomètrica d&apos;altres persones en aquest dispositiu, en cas contrari assumiu el risc que se&apos;n derivi.\n\nUnionTech Software Technology Co., Ltd. es compromet a investigar i millorar la seguretat, la precisió i l&apos;estabilitat de l&apos;autenticació biomètrica. No obstant això, a causa de factors ambientals, d&apos;equipament, tècnics i d&apos;altres, i control de riscos, no hi ha cap garantia que es passi l&apos;autenticació biomètrica temporalment. Per tant, no useu l&apos;autenticació biomètrica com a única manera d&apos;iniciar sessió a UOS. Si teniu cap pregunta o suggeriment quan useu l&apos;autenticació biomètrica, podeu fer comentaris mitjançant Servei i assistència a UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>Apunteu l&apos;iris</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Ho he llegit i ho accepto:</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Exempció de responsabilitat</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Següent</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Fet</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Torna a provar la inscripció</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>Iris apuntat</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>No s&apos;ha pogut registrar l&apos;iris.</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>L&apos;autenticació biomètrica ​​és una funció per a l&apos;autenticació de la identitat de l&apos;usuari proporcionada per UnionTech Software Technology Co., Ltd. Mitjançant l&apos;autenticació biomètrica, les dades biomètriques recollides es compararan amb les emmagatzemades al dispositiu i la identitat de l&apos;usuari es verificarà en funció del resultat de la comparació.\n\nTingueu en compte que UnionTech Software Technology Co., Ltd. no recopilarà ni accedirà a la vostra informació biomètrica, que s&apos;emmagatzemarà al vostre dispositiu local. Si us plau, activeu l&apos;autenticació biomètrica només al dispositiu personal i useu la pròpia informació biomètrica per a operacions relacionades, i desactiveu o elimineu immediatament la informació biomètrica d&apos;altres persones en aquest dispositiu; en cas contrari, assumireu el risc que se&apos;n derivi.\n\nUnionTech Software Technology Co., Ltd. es compromet a investigar i millorar la seguretat, la precisió i l&apos;estabilitat de l&apos;autenticació biomètrica. Tanmateix, a causa de factors ambientals, d&apos;equipament, tècnics i altres factors, i del control de riscos, no hi ha cap garantia que supereu sempre l&apos;autenticació biomètrica. Per tant, no useu l&apos;autenticació biomètrica com a única manera d&apos;iniciar sessió a l&apos;UOS. Si teniu cap pregunta o suggeriment sobre l&apos;ús de l&apos;autenticació biomètrica, podeu enviar comentaris a través del Servei i assistència a UOS.</translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation>Si us plau, mireu el dispositiu i assegureu-vos que tots dos ulls siguin dins de la zona de captació.</translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Autenticació biomètrica</translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Autenticació biomètrica</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Cara</translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation>Es poden introduir fins a 5 dades facials.</translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Empremta</translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation>Identificació de la identitat de l&apos;usuari mitjançant l&apos;escaneig d&apos;empremtes</translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation>Iris</translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation>Reconeixement de la identitat mitjançant l&apos;escaneig de l&apos;iris</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation>Useu només lletres, números i guionets baixos, i no més de 15 caràcters.</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation>Useu només lletres, números i guionets baixos.</translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation>No ha de tenir més de 15 caràcters.</translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation>Aquest nom ja existeix.</translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation>Afegiu-hi un/a %1 nou/nova...</translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation>El nom no es pot deixar en blanc.</translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>L&apos;inici de sessió automàtic només es pot activar per a un compte. Primer desactiveu-lo per al compte %1.</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>D&apos;acord</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>Imatges</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>Humà</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Animal</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Paisatge</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>Il·lustració</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>Emoticona</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>personalitzat</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Estil de dibuixos animats</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Estil dimensional</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Estil pla</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Desa</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Pantalla i suspensió</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Atura el monitor al cap de...</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Bloca la pantalla al cap de...</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>L&apos;ordinador es posarà en suspens al cap de...</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Quan la tapa estigui tancada</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Quan es premi el botó d&apos;engegada</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Bateria baixa</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Notificació de bateria baixa</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Suspèn automàticament</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Hiberna automàticament</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Llindar de bateria baixa</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Gestió de la bateria</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Mostra el temps restant d’ús i de càrrega</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Capacitat màxima</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Nivell de bateria baix</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Inhabilita</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation>Configuració del bluetooth, dispositius</translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>El Bluetooth està desactivat i el nom es mostra com a %1</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>El Bluetooth està activat i el nom es mostra com a %1</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Desconnecta</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Connecta</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Envia fitxers</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Canvia&apos;n el nom</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Elimina el dispositiu</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Seleccioneu el fitxer</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Edita</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Permet que altres dispositius de Bluetooth trobin aquest dispositiu.</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Per usar la funció de Bluetooth, desactiveu el següent:</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Mode d&apos;avió</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>El nom del Bluetooth no pot superar els 64 caràcters.</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Connectat</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>No connectat</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Configuració d&apos;inici</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Podeu clicar al menú per canviar els elements d&apos;inici predeterminats o arrossegar la imatge a la finestra per canviar la imatge de fons.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>retard de l&apos;inici del grub</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>tema</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Després d&apos;activar el tema, podeu veure&apos;n el fons quan engegueu l&apos;ordinador.</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Verificació del menú d&apos;arrencada</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Després de l&apos;obertura, entrar al menú d&apos;edició requereix una contrasenya.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Canvia la contrasenya</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Canvia la contrasenya de verificació del menú d&apos;arrencada.</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Establiu la contrasenya d&apos;autenticació del menú d&apos;arrencada.</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Nom d&apos;usuari:</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>arrel</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Contrasenya nova:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Cal</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>La contrasenya no pot estar en blanc.</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Les contrasenyes no coincideixen.</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Repetiu la contrasenya:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Desa</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Animació de l&apos;inici</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Ajusta la mida de l&apos;animació del logotip a la interfície d&apos;inici del sistema.</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Permet que les aplicacions següents accedeixin a la càmera:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Empremta1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Empremta2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Empremta3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Empremta4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Empremta5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Empremta6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Empremta7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Empremta8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Empremta9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Empremta10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Ha fallat l&apos;escaneig.</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>L&apos;empremta ja existeix.</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Si us plau, escanegeu altres dits.</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Error desconegut</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Escaneig suspès</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>No es pot reconèixer</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>S&apos;ha mogut massa de pressa.</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>El dit s&apos;ha mogut massa de pressa. Si us plau, no l&apos;alceu fins que s&apos;avisi.</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>L&apos;empremta no és clara.</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Netegeu-vos el dit o ajusteu-ne la posició i torneu-ho a provar.</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Ja s&apos;ha escanejat.</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Ajusteu la posició del dit per escanejar-ne tota l&apos;empremta.</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>El dit s&apos;ha mogut massa de pressa. Si us plau, no l&apos;alceu fins que s&apos;avisi.</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Alceu el dit i torneu-lo a posar sobre el sensor.</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Col·loqueu la cara dins del marc</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Cara apuntada</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Si us plau, col·loqueu-hi una cara humana.</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Allunyeu-vos de la càmera</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Apropeu-vos a la càmera</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>No col·loqueu diverses cares dins del marc.</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Assegureu-vos que la lent de la càmera estigui neta.</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>No us registreu en entorns foscos, lluminosos o retroil·luminats.</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Mantingueu la cara descoberta.</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>S&apos;ha esgotat el temps d&apos;escaneig.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>Càmera ocupada!</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Color del realçament</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Paràmetres de la icona</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Tema de les icones</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Personalitzeu el tema de les icones</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Tema del cursor</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Personalitzeu el tema del cursor</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Segur que voleu eliminar aquest compte?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Elimina el directori del compte</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Elimina</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Ves a la configuració</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Comú</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Retard de la repetició</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Breu</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Llarg</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Freqüència de la repetició</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Lenta</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Ràpida</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Teclat numèric</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>prova</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Indicador de blocatge de majúscules</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Velocitat del clic doble</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Prova del clic doble</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Mà esquerra</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>Habilita el teclat</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>General</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>Velocitat del desplaçament</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation>Menú d&apos;arrencada</translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation>Gestioneu el menú d&apos;arrencada</translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation>Gestió de permisos d&apos;arrel del desenvolupador</translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation>Opcions de desenvolupament</translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation>Opcions de depuració per a desenvolupadors</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Mida grossa</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Mida petita</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>Ha fallat obtenir l&apos;accés d&apos;arrel.</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Si us plau, primer inicieu la sessió a l&apos;ID d&apos;Union.</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>No es pot llegir la informació de l&apos;ordinador.</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>No hi ha connexió de xarxa.</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>Ha fallat la càrrega del certificat. No s&apos;ha pogut obtenir l&apos;accés d&apos;arrel.</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>Ha fallat la verificació de la signatura. No es pot aconseguir accés d&apos;arrel.</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Hi estic d&apos;acord i m&apos;uneixo al programa d&apos;experiència de l&apos;usuari.</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>Exempció de responsabilitat del mode de desenvolumpador</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>Ho accepto i demana l&apos;accés d&apos;arrel</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Comenceu a configurar una animació d&apos;arrencada nova. Espereu un minut...</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>S&apos;ha acabat la configuració de l&apos;animació d&apos;arrencada nova.</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>La configuració s&apos;aplicarà després de reiniciar el sistema.</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation>Reinicia&apos;t ara</translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation>Descarta-ho</translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation>Reinicieu el dispositiu per acabar d&apos;aplicar la configuració de la protecció de només lectura del sistema sòlid.</translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>La contrasenya ha de contenir números i lletres.</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>La contrasenya ha de tenir entre 8 i 64 caràcters.</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Crea un compte nou</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Tipus de compte</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Nom d&apos;usuari</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Cal</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Nom complet</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Opcional</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Crea el compte</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>El nom d&apos;usuari no pot superar els 32 caràcters.</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>El nom d&apos;usuari només pot contenir lletres, números, - i _</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>El nom complet no pot superar els 32 caràcters.</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>El nom complet no pot contenir dos punts.</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation>petita</translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation>grossa</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>Encara no heu penjat cap avatar. Cliqueu aquí o arrossegueu-hi una imatge i deixeu-la-hi anar.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>El tipus de fitxer carregat és incorrecte, torneu-lo a carregar.</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>disponible</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Hi estic d&apos;acord i m&apos;uneixo al programa d&apos;experiència de l&apos;usuari.</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation>&lt;p&gt;Som profundament conscients de la importància de la informació personal per a vosaltres. Per això, tenim la Política de privadesa que cobreix com recopilem, usem, compartim, transferim, divulguem públicament i emmagatzemem la vostra informació.&lt;/p&gt;&lt;p&gt; Podeu &lt;a href=&quot;%1&quot;&gt;fer clic aquí&lt;/a&gt; per veure la nostra política de privadesa més recent i/o veure-la en línia a &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;. Llegiu atentament i mireu d&apos;entendre completament les nostres pràctiques sobre la privadesa del client. Si teniu cap pregunta, poseu-vos en contacte amb nosaltres a %2.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Unir-se al Programa d&apos;experiència d&apos;usuari significa que ens concediu i ens autoritzeu la recopilació i l&apos;ús de la informació del vostre dispositiu, del sistema i de les aplicacions. Si rebutgeu la recopilació i l&apos;ús de la informació esmentada anteriorment, no us uniu al Programa d&apos;experiència d&apos;usuari. Per a més informació, consulteu la Política de privacitat de Deepin. (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Unir-se al Programa d&apos;experiència d&apos;usuari significa que ens concediu i ens autoritzeu la recopilació i l&apos;ús de la informació del vostre dispositiu, del sistema i de les aplicacions. Si rebutgeu la recopilació i l&apos;ús de la informació esmentada anteriorment, no us hi uniu. Per obtenir més informació sobre el Programa d&apos;experiència d&apos;usuari, visiteu &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Configuració del dia i l&apos;hora</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Data</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Any</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Mes</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Dia</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Hora</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirmeu-ho</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation>Hora i data</translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation>Hora i data, configuració de la zona horària</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation>Llengua i regió</translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation>Llengua del sistema, formats de regió</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Demà</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Ahir</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Avui</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 hores menys que la d&apos;aquí</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 hores més que la d&apos;aquí</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Espai</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Setmana</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Primer dia de la setmana</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Data abreujada</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Data ampliada</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Hora abreujada</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Hora ampliada</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Símbol de la moneda</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Format de moneda positiu</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Format de moneda negatiu</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Símbol decimal</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Símbol d&apos;agrupació de dígits</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Agrupació de dígits</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Mida de pàgina</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>Exemple</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Cal autenticació per canviar el servidor NTP.</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Cal autenticació per establir la zona horària del sistema.</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Desa</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>El Centre de control proporciona les opcions per a la configuració del sistema.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>Vincle amb WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>En vincular-hi el WeChat, podeu iniciar sessió de manera segura i ràpida a l&apos;ID d&apos;%1 i als comptes locals.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Desenllaçat</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Desvinculació</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Enllaça</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Segur que voleu desvincular el WeChat?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Després de desvincular el WeChat, no podreu usar el WeChat per escanejar el codi QR per iniciar sessió a l&apos;ID d&apos;%1 o al compte local.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Deixa-m&apos;ho pensar</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Vinculació de comptes locals</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Després de vincular el compte local, podeu usar les funcions següents:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>Sistema d&apos;inici de sessió amb escaneig de codi del WeChat</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Useu WeChat, que està vinculat a l&apos;ID d&apos;%1, per escanejar el codi per iniciar sessió al vostre compte local.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Restableix la contrasenya amb l&apos;ID d&apos;%1.</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Restabliu la contrasenya local mitjançant l&apos;ID d&apos;%1 en cas que l&apos;oblideu.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Per usar les funcions anteriors, aneu al Centre de control - Comptes i activeu les opcions corresponents.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Sincronització amb el núvol</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>Gestioneu el vostre ID d&apos;%1 i sincronitzeu les dades personals entre dispositius.\nInicieu la sessió a l&apos;ID d&apos;%1 per obtenir funcions i serveis personalitzats del navegador, botiga d&apos;aplicacions, assistència i molt més.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Inicieu la sessió a l&apos;ID d&apos;%1</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Sincronització automàtica</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Deseu de manera segura la configuració del sistema i les dades personals al núvol i manteniu-les sincronitzades entre dispositius.</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Configuració del sistema</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Darrera sincronització: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Neteja les dades del núvol</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>Segur que voleu esborrar la configuració del sistema i les dades personals desades al núvol?</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>Un cop esborrades les dades, no es poden recuperar!</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Neteja</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Serveis de sincronització</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Compte i seguretat</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Surt de la sessió</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Ves a la configuració web</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>El sobrenom ha de tenir entre 1 i 32 caràcters.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>ha fallat encriptar la contrasenya</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Contrasenya incorrecta. Us queden %1 intents.</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>El nombre d&apos;errors d&apos;inici de sessió ha arribat al límit avui. Podeu restablir la contrasenya i tornar-ho a provar.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Operació reeixida</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>El sobrenom només es pot modificar una vegada al dia.</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation>ID del Deepin</translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation>ID d&apos;UOS</translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation>Serveis al núvol</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>Xina continental</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Altres regions</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>La funció no està disponible actualment. Si us plau, primer activeu el sistema.</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>D&apos;acord amb les lleis i regulacions locals, actualment no està disponible a la vostra regió.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation>Aplicació per defecte</translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation>Establiu l&apos;aplicació predeterminada per obrir diferents tipus de fitxers.</translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation>Pàgina web</translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation>Correu</translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation>Text</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Música</translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation>Vídeo</translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation>Imatge</translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation>Terminal</translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Si us plau, trieu el programa predeterminat per obrir %1.</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>Afegeix</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Obre un fitxer d&apos;escriptori</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Aplicacions (*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Tots els fitxers (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Accés d&apos;arrel</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Demana l&apos;accés d&apos;arrel</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Després d&apos;entrar al mode de desenvolupador, podeu obtenir permisos d&apos;arrel, però això també pot danyar la integritat del sistema, així que useu-lo amb precaució.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Permès</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Entreu</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>En línia</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Inici de sessió d&apos;ID d&apos;UOS</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Fora de línia</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Importa el certificat</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Seleccioneu el fitxer</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>S&apos;ha iniciat la sessió amb el vostre ID d&apos;UOS, cliqueu per entrar al mode de desenvolupador.</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Si us plau, primer inicieu la sessió a l&apos;ID d&apos;UOS i continueu.</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1. Exporteu la informació de l&apos;ordinador</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Exporta</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3. Importeu el certificat</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Opcions de desenvolupament i depuració</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Nivell de registre del sistema</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Canviar les opcions es tradueix en un registre més detallat que pot degradar el rendiment del sistema i/o ocupar més espai d&apos;emmagatzematge.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Desactivat</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Depuració</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>El canvi d&apos;opció pot trigar fins a un minut a processar-se; després de rebre una sol·licitud de configuració correcta, reinicieu el dispositiu perquè tingui efecte.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>Per instal·lar i executar aplicacions sense signar, aneu al &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt;Centre de seguretat&lt;/a&gt; per canviar la configuració.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation>Per instal·lar i executar aplicacions sense signar, aneu al Centre de seguretat per canviar-ne la configuració.</translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation>Heu entrat al mode de desenvolupador</translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>D&apos;acord</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation>2. Si us plau, aneu a %1 per descarregar el certificat fora de línia.</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation>La funció no està disponible actualment. Si us plau, primer activeu el sistema.</translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation>Protecció de només lectura de sistema sòlid</translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation>La desactivació de la protecció desbloca els directoris del sistema. Aquesta acció comporta un risc alt de danys al sistema.</translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation>Activeu la protecció per blocar els directoris del sistema i garantir una estabilitat òptima.</translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation>Bluetooth i dispositius</translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Exempció de responsabilitat</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>Hi estic d&apos;acord</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Mostra</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation>Brillantor, resolució, escala</translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation>100 %</translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation>125 %</translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation>150 %</translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation>175 %</translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation>200 %</translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation>225 %</translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation>250 %</translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation>275 %</translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation>300 %</translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation>Duplica&apos;l</translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation>Estén-lo</translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation>Per defecte</translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation>Ajusta&apos;l</translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation>Estira&apos;l</translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation>Centra&apos;l</translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation>Només a %1</translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation>Configuració de pantalles múltiples</translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation>Identifica-les</translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation>El restabliment de la pantalla tindrà efecte %1s després dels canvis.</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>Mode</translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation>Pantalla principal</translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation>Pantalla i disposició</translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation>Brillantor</translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation>Resolució</translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation>Canvia la mida de l&apos;escriptori</translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation>Freqüència d&apos;actualització</translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation>Rotació</translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation>Estàndard</translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation>90°</translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation>180°</translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation>270°</translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation>El monitor només admet un escalatge del 100 %.</translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation>Confort ocular</translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation>Activa el confort ocular</translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation>Ajusta la visualització de la pantalla a colors més càlids i redueix la llum blava de la pantalla.</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Hora</translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation>Tot el dia</translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation>De la posta a la sortida del sol</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Hora personalitzada</translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation>de</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>a</translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation>Temperatura del color</translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation>%1 x %2 (recomanat)</translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation>%1 x %2</translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation>%1 Hz (recomanat)</translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation>%1 Hz</translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation>Escalatge</translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation>Escriptori i barra de tasques</translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation>Organització de l&apos;escriptori, mode de la barra de tasques, configuració de l&apos;àrea de connectors</translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation>Acoblador</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>Mode</translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation>Mode clàssic</translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation>Mode centrat</translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation>Mida de l&apos;acoblador</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Petita</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Grossa</translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation>Posició a la pantalla</translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation>A dalt</translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation>A baix</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>A l&apos;esquerra</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>A la dreta</translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation>Estat</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Mantén-lo visible</translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation>Mantén-lo amagat</translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation>Ocultació intel·ligent</translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation>Pantalles múltiples</translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation>Establiu la posició de la barra de tasques a la pantalla.</translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation>Només a la principal</translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation>A la pantalla on hi ha el cursor</translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Àrea de connectors</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Seleccioneu quines icones apareixen a l&apos;acoblador.</translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation>Bloca l&apos;acoblador</translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation>Combina les icones d&apos;aplicacions</translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Permet que les aplicacions següents accedeixin a aquests fitxers i carpetes:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Documents</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Escriptori</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Imatges</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Vídeos</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Música</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Baixades</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>carpeta</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Mida</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Lletra estàndard</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Lletra d&apos;un sol espai</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Plans d&apos;energia</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Configuració de l&apos;estalvi d&apos;energia</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Estalvi d&apos;energia automàtic amb la bateria baixa</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Llindar de bateria baixa</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Estalvi d&apos;energia automàtic amb la bateria</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Configuració del despertament</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Cal la contrasenya per despertar l&apos;ordinador.</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Cal la contrasenya per despertar el monitor..</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Configuració de l&apos;aturada</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Aturada programada</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Hora</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Repeteix</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Un cop</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Cada dia</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Els dies feiners</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Hora personalitzada</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Disminueix la brillantor de la pantalla amb l&apos;estalvi d&apos;energia.</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation>Tres dits cap amunt</translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation>Tres dits cap avall</translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation>Tres dits cap a l&apos;esquerra</translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation>Tres dits cap a la dreta</translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation>Toc amb tres dits</translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation>Quatre dits cap amunt</translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation>Quatre dits cap avall</translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation>Quatre dits cap a l&apos;esquerra</translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation>Quatre dits cap a la dreta</translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation>Toc amb quatre dits</translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Rendiment òptim</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Equilibrat</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>La millor visualització</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>Inhabilita tots els efectes de la interfície i de les finestres per obtenir un rendiment eficient del sistema.</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>Limita alguns efectes de les finestres per obtenir una visualització excel·lent i mantenir un bon rendiment del sistema.</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>Habilita tots els efectes de la interfície i les finestres per obtenir la millor experiència visual.</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation>Teclat</translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation>Configuració general, mètode d&apos;entrada, dreceres</translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Comú</translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Llengua</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>fet</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>edita</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Altres llengües</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>Afegeix</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Regió</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>Àrea</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>El sistema operatiu i les aplicacions poden proporcionar-vos contingut local segons el país i regió.</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>El sistema operatiu i les aplicacions poden establir formats de data i hora basats en formats regionals.</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Format de la regió</translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Afegiu-hi una llengua</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Cerca</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Afegeix</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Mètode d&apos;inici de sessió</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Contrasenya, wechat, autenticació biomètrica, clau de seguretat</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Contrasenya</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Modifica la contrasenya</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Dies de validesa</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Sempre</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Restableix la contrasenya</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Comunitat del Deepin</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Supressió automàtica del soroll</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Volum d&apos;entrada</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Nivell d&apos;entrada</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Entrada</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>No s&apos;ha trobat cap dispositiu d&apos;entrada per al so.</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Dispositiu d&apos;entrada</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Ratolí i ratolí tàctil</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation>Comú, ratolí, ratolí tàctil</translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Comú</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Ratolí</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Ratolí tàctil</translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation>Ratolí</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Velocitat del punter</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Lenta</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Ràpida</translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation>Mida del punter</translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation>Acceleració del ratolí</translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation>Inhabilita el ratolí tàctil en connectar un ratolí.</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Desplaçament natural</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Petita</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Mitjà</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Grossa</translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation>Molt grossa</translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation>Algunes aplicacions requereixen tancar la sessió o reiniciar el sistema per tenir efecte.</translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Els meus dispositius</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Nom de l&apos;ordinador</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>No pot començar ni acabar amb guionets.</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Nom del sistema</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Versió</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Edició</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Tipus</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bits</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Autorització</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Hora d&apos;instal·lació del sistema</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Nucli</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Plataforma gràfica</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Processador</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Memòria</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>D&apos;1 a 63 caràcters, si us plau.</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation>Mode sense destorbs, notificacions d&apos;aplicacions</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notificació</translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation>Configuració del mode de no empipar</translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation>Les notificacions d&apos;aplicacions no es mostraran a l&apos;escriptori i no n&apos;hi haurà cap indicació sonora, però les podreu veure totes al centre de notificacions.</translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation>Habilita el mode de no empipar</translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation>Quan la pantalla estigui blocada</translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation>Nombre de notificacions que es mostren a l&apos;escriptori</translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation>Notificacions de les aplicacions</translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation>Permet les notificacions</translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation>Mostra la notificació a l&apos;escriptori o mostra missatges no llegits al centre de notificacions.</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Escriptori</translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation>Pantalla de blocatge</translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation>Centre de notificacions</translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation>Mostra la previsualització del missatge</translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation>Reprodueix un so</translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Altres dispositius</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Mostra els dispositius de Bluetooth sense noms.</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Contrasenya actual</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Cal</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Dèbil</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Mitjana</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Forta</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Repetiu la contrasenya</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Pista de la contrasenya</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Opcional</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>La contrasenya no pot estar en blanc.</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Les contrasenyes no coincideixen.</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>La pista és visible per a tots els usuaris. No hi poseu la contrasenya.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>Contrasenya nova</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>La contrasenya nova hauria de ser diferent de l&apos;actual.</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation>La contrasenya no pot ser la mateixa que el nom d&apos;usuari.</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Modifica la contrasenya</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Restableix la contrasenya</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>La llargada de la contrasenya ha de ser d&apos;almenys 8 caràcters i ha de contenir una combinació d&apos;almenys 3 dels elements següents: lletres majúscules, lletres minúscules, números i símbols. Aquest tipus de contrasenya és més segura.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Restablir la contrasenya esborrarà les dades emmagatzemades al clauer.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalització</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Clar</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Automàtic</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Fosc</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation>El servei del selector no està disponible.</translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation>Format de color no vàlid: %1</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation>Tema</translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation>Aparença</translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation>Efectes de les finestres</translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation>Personalitzeu el fons i l&apos;estalvi de pantalla</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Estalvi de pantalla</translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation>Colors i icones</translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation>Ajusteu el color d&apos;accentuació i les icones del tema</translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation>Tipus i mida de la lletra</translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation>Canvieu el tipus i la mida de la lletra del sistema</translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation>Fons de pantalla</translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation>Seleccioneu l&apos;aspecte del tema: clar, fosc o automàtic.</translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation>Interfície i efectes, cantons arrodonits</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Personalitzat</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Àrea de connectors</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Seleccioneu quines icones apareixen a l&apos;acoblador.</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation>Configuració de l&apos;estalvi d&apos;energia, la pantalla i la suspensió</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Energia</translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation>General</translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation>Plans d&apos;energia, paràmetres d&apos;estalvi d&apos;energia, paràmetres del despertament, configuració de l&apos;apagada</translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation>Connectat</translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation>Pantalla i suspensió</translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation>Amb la bateria</translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation>pantalla i suspensió, bateria baixa, gestió de la bateria</translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Atura&apos;t</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Suspèn-te</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Hiberna</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Desactiva el monitor</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Mostra la interfície d&apos;aturada.</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>No facis res.</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Pantalla i suspensió</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Atura el monitor al cap de...</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Bloca la pantalla al cap de...</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>L&apos;ordinador es posarà en suspens al cap de...</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Quan la tapa estigui tancada</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Quan es premi el botó d&apos;engegada</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Rendiment alt</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Rendiment equilibrat</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>Ajusta agressivament la freqüència de funcionament de la CPU segons les condicions de càrrega de la CPU.</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Equilibrat</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Estalviador d&apos;energia</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Prioritza el rendiment. Augmentarà significativament el consum d&apos;energia i la generació de calor.</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Equilibra el rendiment i la durada de la bateria. S&apos;ajusta automàticament segons l&apos;ús.</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Prioritza la durada de la bateria. El sistema sacrificarà una mica de rendiment per reduir el consum d&apos;energia.</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Minuts</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Hora</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Mai</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation>Privadesa i seguretat</translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation>Càmera, permisos de les carpetes</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation>Càmera</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation>Trieu si l&apos;aplicació té accés a la càmera.</translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation>Fitxers i carpetes</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation>Trieu si l&apos;aplicació té accés a fitxers i carpetes.</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Política de privadesa</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Copia l&apos;adreça de l&apos;enllaç</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>La contrasenya no pot estar en blanc.</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>La contrasenya ha de tenir com a mínim %1 caràcters.</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>La contrasenya no ha de tenir més de %1 caràcters.</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>La contrasenya només pot contenir caràcters en anglès (majúscules o minúscules), números o símbols especials (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/).</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Com a màxim %1 caràcters palíndroms, si us plau.</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Com a màxim %1 caràcters monòtons, si us plau.</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Com a màxim %1 caràcters repetits, si us plau.</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>La contrasenya ha de tenir lletres majúscules, minúscules, números i símbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/).</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>La contrasenya no ha de contenir més de 4 caràcters palíndroms.</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>No useu paraules i combinacions habituals com a contrasenya.</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Si us plau, creeu una contrasenya forta.</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>No compleix les regles de la contrasenya.</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Centre de control</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Activat</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Visualització</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Per ser activat</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Activa</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Caducat</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>En un període de prova</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>S&apos;ha esgotat el període de prova.</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Configuració de la pantalla tàctil</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>La configuració de la pantalla tàctil ha canviat.</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Aquest fons de pantalla del sistema està blocat. Poseu-vos en contacte amb l&apos;administrador.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Cerca</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Formats per defecte</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Primer dia de la setmana</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Data abreujada</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Data ampliada</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Hora abreujada</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Hora ampliada</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Símbol de la moneda</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Dígit</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Mida del paper</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Desa</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Format de la regió</translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Cerca</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Establiu una contrasenya</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 caràcters</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Repetiu la contrasenya.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirmeu-ho</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Les contrasenyes no coincideixen.</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>Personalitzeu la repetició</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Desa</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Estalvi de pantalla</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>vista prèvia</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Estalvi de pantalla personalitzat</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>configuració</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>temps inactiu</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minut</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minuts</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minuts</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minuts</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minuts</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 hora</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>mai</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Cal contrasenya per a la recuperació.</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Estalvi de pantalla de presentació de diapositives</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Estalvi de pantalla del sistema</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Cerca</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>No hi ha resultats de la cerca.</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Afegiu una drecera personalitzada</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Nom:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Cal</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Ordre:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Drecera</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Cap</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Afegeix</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation>El nom de la drecera ja s&apos;usa. Trieu-ne un altre.</translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation>Personalitza la drecera</translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation>Si us plau, introduïu una tecla de drecera.</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Desa</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation>Cliqueu a Desa per fer efectiva aquesta tecla de drecera.</translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation>Cliqueu a Afegeix per fer efectiva aquesta tecla de drecera.</translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Dreceres</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Drecera del sistema, drecera personalitzada</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Cerca dreceres</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>fet</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>edita</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Cliqueu</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>o</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Reemplaça</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Restaura els valors per defecte</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Afegiu una drecera personalitzada</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation>Si us plau, introduïu una tecla de drecera nova.</translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>So</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation>Sortida, entrada, efectes de so, dispositius</translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Dispositius de sortida</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Seleccioneu si voleu habilitar els dispositius.</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Dispositius d&apos;entrada</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Efectes de so</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation>Configuració</translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Efectes de so</translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation>Activa / desactiva els efectes de so</translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation>Activa / desactiva els dispositius d&apos;àudio</translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation>Gestió de dispositius</translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Arrencada</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Atura&apos;t</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Tanca la sessió</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Desperta</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volum + / -</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notificació</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Bateria baixa</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Envia la icona del llançador a l&apos;escriptori</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Buida la paperera</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Connecta</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Desconnecta</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Dispositiu extraïble connectat</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Dispositiu extraïble desconnectat</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Error</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Mode</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Volum de sortida</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Potenciació del volum</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Si el volum és superior al 100%, es pot distorsionar l&apos;àudio i perjudicar els dispositius de sortida.</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>A l&apos;esquerra</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>A la dreta</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Sortida</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>No s&apos;ha trobat cap dispositiu de sortida per al so.</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Balanç de dreta / esquerra</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Combina els canals esquerre i dret en un sol canal.</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Si l&apos;àudio es posarà en pausa automàticament quan es desconnecti el dispositiu d&apos;àudio actual.</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation>Àudio mono</translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation>Pausa automàtica</translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Dispositiu de sortida</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>So</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Energia</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Ratolí</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Actualitza</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Estalvi de pantalla</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation>Configuracions comunes</translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation>Sistema</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation>Informació auxiliar</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation>Quant a aquest ordinador</translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation>Versió del sistema, informació del dispositiu</translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation>Vegeu l&apos;avís del programari de codi obert</translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation>Programa d&apos;experiència d&apos;usuari</translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation>Uniu-vos al programa d&apos;experiència d&apos;usuari per ajudar a millorar el producte.</translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation>Acord de llicència de l&apos;usuari final</translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation>Vegeu l&apos;acord de llicència d&apos;usuari final</translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Política de privadesa</translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation>Vegeu informació sobre la política de privadesa</translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation>Avís de programari de codi obert</translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Més fons de pantalla</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Hora de sincronització automàtica</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Servidor NTP</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Data i hora del sistema</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Personalitzeu-ho</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Configuració</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Adreça del servidor</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Cal</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>L&apos;adreça del servidor ntp no pot estar buida.</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>Usa el format de 24 hores</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>zona horària del sistema</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Llista de zones horàries</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Afegeix</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>de</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>a</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Voleu desar els paràmetres de la pantalla?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>La configuració es revertirà d&apos;aquí a %1 s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Reveteix</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Desa</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Afegiu una zona horària</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Determina la zona horària segons la ubicació actual.</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Zona horària:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Ciutat més propera:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Desa</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Pantalla tàctil</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Configureu aquí quan connectar la pantalla tàctil.</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Configuració bàsica</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Ratolí tàctil</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Velocitat del punter</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Lenta</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Ràpida</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Inhabilita el ratolí tàctil mentre s&apos;usi una altra entrada.</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Un toc per fer clic</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Desplaçament natural</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Gestos amb tres dits</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Gestos amb quatre dits</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation>Gestos</translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation>Pantalla tàctil</translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation>Configuració de la pantalla tàctil</translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Comú</translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Uniu-vos al programa d&apos;experiència de l&apos;usuari</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Copia l&apos;adreça de l&apos;enllaç</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Verificació de seguretat</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>L&apos;acció és sensible. Primer introduïu la contrasenya d&apos;inici de sessió.</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 caràcters</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Heu oblidat la contrasenya?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel·la</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirmeu-ho</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation>Wacom</translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation>Configuració de la tauleta tàctil</translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation>Wacom</translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation>Mode de bolígraf</translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation>Mode de ratolí</translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation>Sensibilitat de la pressió</translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation>Lleugera</translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation>Intensa</translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation>Model</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>fons de pantalla</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Les meves imatges</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Fons de pantalla del sistema</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Fons de pantalla de color sòlid</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Fons de pantalla personalitzables</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>estil ple</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Canvi automàtic de fons de pantalla</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>mai</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 segons</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minut</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minuts</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minuts</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minuts</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minuts</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>Inici de sessió</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>Desperta</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Fons de pantalla dinàmics</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 hora</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation>Fons de pantalla del sistema</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>desplega</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Estableix la pantalla de blocatge</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Configura l&apos;escriptori</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation>mostra-ho tot - %1 elements</translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation>Afegeix-hi una imatge</translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Interfície i efectes</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Configuració de la finestra</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Cantons arrodonits de la finestra</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Cap</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Petita</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Grossa</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Activa els efectes transparents en moure finestres.</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Efecte de minimització de la finestra</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Escala</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Làmpada màgica</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Opacitat</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Baixa</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Alta</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Barres de desplaçament</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Mostra-ho durant el desplaçament</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Mantén-ho visible</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Pantalla compacta</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Si s&apos;activa, es mostra més contingut a la finestra.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Alçada de la barra del títol</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Només apte per a les barres de títol de la finestra traçades pel gestor de finestres.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Extremadament petita</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>Mitjana</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>Mitjana</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Xinès tradicional (xinès de Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Xinès tradicional (xinès taiwanès)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation>Xinès Min Nan</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan Xina</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>El nom d&apos;usuari ha de tenir de 3 a 32 caràcters de llargada.</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>El primer caràcter ha de ser una lletra o un número.</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>El nom d’usuari no només hauria de tenir números.</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>Altres comptes d&apos;usuari ja han usat aquest nom d&apos;usuari.</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>El nom complet és massa llarg.</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>Altres comptes d&apos;usuari ja han usat aquest nom complet.</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Contrasenya incorrecta</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Usuari estàndard</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Administrador</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Personalitzat</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>L&apos;amfitrió s&apos;ha eliminat del servidor de dominis correctament.</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>L&apos;amfitrió s&apos;ha afegit al servidor de dominis correctament.</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>L&apos;amfitrió ha fallat abandonar el servidor de dominis.</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>L&apos;amfitrió ha fallat afegir-se al servidor de dominis.</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>Configuració del domini d&apos;AD</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>La contrasenya no coincideix.</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Dimensional</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Pla</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation>Empremta facial</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Cara</translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation>Useu la cara per desblocar el dispositiu i fer-ne la configuració més tard.</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Empremta</translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation>Poseu-hi el dit.</translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation>Poseu el dit amb fermesa sobre el sensor fins que se us digui d&apos;alçar-lo.</translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation>Alceu el dit.</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Alceu el dit i torneu-lo a posar sobre el sensor.</translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation>Alceu el dit i torneu-ho a fer.</translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation>Escaneig suspès</translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation>Escanegeu els marges de l&apos;empremta.</translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation>Poseu els marges de l&apos;empremta sobre el sensor.</translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation>Ajusteu-ne la posició per escanejar els marges de l&apos;empremta.</translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation>Empremta afegida</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation>Iris</translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation>Useu l&apos;iris per desblocar el dispositiu i fer-ne la configuració més tard.</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Aquesta drecera té conflicte amb [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>La contrasenya no pot estar en blanc.</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>La contrasenya ha de tenir com a mínim %1 caràcters.</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>La contrasenya no ha de tenir més de %1 caràcters.</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>La contrasenya només pot contenir caràcters en anglès (majúscules o minúscules), números o símbols especials (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/).</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Com a màxim %1 caràcters palíndroms, si us plau.</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Com a màxim %1 caràcters monòtons, si us plau.</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Com a màxim %1 caràcters repetits, si us plau.</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>La contrasenya ha de tenir lletres majúscules, minúscules, números i símbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/).</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>La contrasenya no ha de contenir més de 4 caràcters palíndroms.</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>No useu paraules i combinacions habituals com a contrasenya.</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Si us plau, creeu una contrasenya forta.</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>No compleix les regles de la contrasenya.</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation>Com a mínim, incloeu %1 tipus de grafies, entre minúscules, majúscules, números i símbols, i la contrasenya no pot ser la mateixa que el nom d&apos;usuari.</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistema</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Finestra</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Espai de treball</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Eines d&apos;assistència</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Personalitzat</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Cap</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_cgg.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"cgg\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_cs.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"cs\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Zrušit</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Hotovo</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Připojeno</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Nepřipojeno</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Otisk 1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Otisk 2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Otisk 3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Otisk 4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Otisk 5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Otisk 6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Otisk 7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Otisk 8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Otisk 9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Otisk 10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Nasnímání se nezdařilo</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Otisk už existuje</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Prosím nasnímejte ostatní prsty</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Neznámá chyba</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Snímání odloženo</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Nedaří se rozpoznat</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Příliš rychlý pohyb</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Prstem bylo pohybováno příliš rychle. Nezvedejte prst, dokud k tomu nebudete vyzváni</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Nezřetelný otisk prstu</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Očistěte prst nebo upravte jeho polohu a zkuste to znovu</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Už nasnímáno</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Upravte polohu prstu tak, aby byl otisk nasnímán celý</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Prstem bylo pohybováno příliš rychle. Nezvedejte prst, dokud k tomu nebudete vyzváni</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Oddalte prst od čtečky a přiložte ho na ni znovu</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Umístěte svůj obličej do rámečku</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Obličej zaznamenán</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Předložte prosím obličej člověka</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Držte se dále od kamery</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Přibližte se ke kameře</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Neumisťujte do rámečku více tváří</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Ujistěte se, že je čočka kamery čistá</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Nepřihlašujte se v tmavém ani světlém prostředí, ani v prostředí s protisvětlem</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Udržujte svůj obličej odkrytý</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Překročen časový limit pokusu o naskenování</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Zrušit</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Pro změnu NTP serveru je vyžadováno ověření se</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Pro nastavení časového pásma systému je požadováno ověření se</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Zobrazení</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Autorská práva © 2011-%1 komunita Deepin</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Autorská práva © 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Automatické potlačování okolních ruchů</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Vstupní hlasitost</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Vstupní úroveň</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Vstupní zařízení</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Myš a dotyková plocha</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Přizpůsobení</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Uživatelsky určené</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Heslo nemůže být prázdné</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Je třeba, aby heslo mělo délku alespoň %1 znaků</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Heslo může mít délku nejvýše %1 znaků</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Heslo může obsahovat pouze písmena z anglické abecedy (rozlišují se malá a VELKÁ písmena), číslice a dále ještě speciální symboly (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Ne více než %1 znaků, které se tam i zpět čtou stejně (palindrom)</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Ne více než %1 v abecedě po sobě jdoucí znaky prosím</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Ne více než %1 opakující se znaky prosím</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Je třeba, aby heslo obsahovalo velká a malá písmena z (pouze z anglické abecedy), číslice a symboly (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Heslo nemůže obsahovat posloupnost více než 4 znaků, která se čte stejně oběma směry (palindrom)</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Jako heslo nepoužívejte běžná slova a jejich kombinace</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Vytvořte si odolné heslo, prosím</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Nesplňuje pravidla pro hesla</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Ovládací panely</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Aktivováno</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Pohled</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>K zapnutí</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Zapnout</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Platnost skončila</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Ve zkušebním období</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Zkušební období skončilo</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Nastavení dotykové obrazovky</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Nastavení dotykové obrazovky změněna</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Zvuk</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Zvukové efekty</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Spouštění operačního systému</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Vypnout</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Odhlásit se</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Probouzení</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Hlasitost +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Upozornění</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Nízký stav nabití akumulátoru</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Odeslání ikony ve spouštěči na plochu</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Vyprázdnění koše</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Připojení napájení z elektrické sítě</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Odpojení napájení z elektrické sítě</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Připojení vyjímatelného zařízení</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Odebrání vyjímatelného zařízení</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Chyba</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Režim</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Výstupní hlasitost</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Zesílení hlasitosti</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Při nastavení hlasitosti na více než 100 % (softwarově), může být zvuk zkreslený a dojít k poškození reproduktorů</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Vlevo</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Vpravo</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Výstupní zařízení</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Uložit nastavení obrazovky?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Nastavení bude vráceno za %1s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Vrátit</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Uložit</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Tradiční čínština (Čínská Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Tradiční čínština (Čínská Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Čínská Taiwan</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Tento příkaz konfliktuje s [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Systém</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Okno</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Pracovní prostor</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Nápomocné nástroje</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Vlastní</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Žádné</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_da.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"da\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Tilsluttet</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Ikke forbundet</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Fingeraftryk1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Fingeraftryk2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Fingeraftryk3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Fingeraftryk4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Fingeraftryk5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Fingeraftryk6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Fingeraftryk7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Fingeraftryk8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Fingeraftryk9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Fingeraftryk10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Skanning mislykkedes</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Fingeraftrykket eksisterer allerede</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Skan venligst andre fingre</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Ukendt fejl</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Skanning suspenderet</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Kan ikke genkende</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Flyttet for hurtigt</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Fingeren bevægede sig for hurtigt, løft venligst ikke fingeren før du får besked om det</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Uklart fingeraftryk</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Rens din finger og juster fingerens placering og prøv igen</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Allerede skannet</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Juster din fingers placering og skal hele dit fingeraftryk</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Fingeren bevægede sig for hurtigt. Løft venligst ikke fingeren før du får besked om det</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Løft din finger og placér den igen på sensoren</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Placér dit ansigt inden for rammen</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Ansigt indmeldt</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Placér venligst et menneskeansigt</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Hold dig væk fra kameraet</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Kom tættere på kameraet</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Placér ikke flere ansigter inden for rammen</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Sørg for at kameralinsen er ren</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Indmeld ikke i mørke, strålende, eller bagbelyste miljøer</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Hold dit ansigt utildækket</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Tidsudløb for skanning</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuller</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Der kræves autentifikation for at ændre NTP-server</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Autentifikation kræves for at sætte systemets tidszone</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Skærm</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Ophavsret© 2011-%1 Deepin Community</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Ophavsret© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Automatisk Støjdæmpning</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Lydstyrke (input)</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Inputniveau</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Indgående Enhed</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Mus og touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personlig tilpasning</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Tilpasset</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Adgangskoden må ikke være tom</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Adgangskode skal mindst have %1 tegn</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Adgangskoden må højst være %1 tegn langt</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Adgangskode må kun indeholde engelske bogstaver (forskel på store og små bogstaver), tal, eller specialtegn (æÆøØåÅ~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Venligst ikke flere end %1 palindrome tegn</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Venligst ikke flere end %1 monotone tegn</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Venligst ikke flere end %1 gentagne tegn</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Adgangskode skal indeholde store bogstaver, små bogstaver, tal, og symboler (æÆøØåÅ~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Adgangskode må ikke indeholde flere end 4 palindrome tegn</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Anvend ikke almindelige ord og kompinationer som adgangskode</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Opret venligst en stærk adgangskode</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Den lever ikke op til adgangskodekravene</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Kontrolcenter</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Aktiveret</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Vis</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Skal aktiveres</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Aktivér</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Udløbet</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>I prøveperiode</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Prøveperioden er udløbet</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Indstillinger for Berøringsfølsom Skærm</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Berøringsfølsom skærms indstillinger blev ændret</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Lyd</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Lydeffekter</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Opstart</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Luk ned</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Log ud</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Vågn op</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Lydstyrke +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notifikation</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Lavt batteri</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Send ikon i opstarter til skrivebord</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Tøm papirkurv</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Stik sættes i</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Stik tages ud</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Tilslutning af flytbar enhed</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Fjernelse af flytbar enhed</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Fejl</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Tilstand</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Lydstyrke (output)</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Boost af lydstyrke</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Venstre</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Højre</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Udgående Enhed</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Vend tilbage</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Gem</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Traditionel kinesisk (Kinesisk Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Traditionel kinesisk (Kinesisk Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Kinesisk Taiwan</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Denne genvej konflikter med [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>System</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Vindue</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Arbejdsområde</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Hjælpemidler</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Tilpasset</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Ingen</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_de.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"de\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>bearbeiten</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Neuen Benutzer hinzufügen</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Vollen Namen eingeben</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Anmelde-Einstellungen</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Anmeldung ohne Passwort</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Aktuelles Konto löschen</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Gruppen-Einstellungen</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Konto-Gruppen</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>fertig</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Gruppenname</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Gruppe hinzufügen</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Auto-Anmeldung</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Konto-Informationen</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Kontoname, Voller Kontoname und Kontotyp</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Konto Name</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Voller Kontoname</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Kontotyp</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Der Name ist zu lang</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>Gruppennamen sollten nicht mehr als 32 Zeichen enthalten</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>Gruppennamen dürfen nicht bloß Zahlen enthalten</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>Verwenden Sie nur Buchstaben, Zahlen, Unterstrich und Striche, beginnen SIe mit einem Buchstaben</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>Dieser Gruppenname wurde schon verwendet</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>Schnellanmeldung, Auto-Anmeldung, Anmeldung ohne Passwort</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>Rückgängig</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>Rückgängig</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>Ausschneiden</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>Kopieren</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>Einfügen</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>Alles auswählen</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>Schnell-Anmeldung</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation>Konto</translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation>Kontoverwalter</translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation>Andere Konten</translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Gesicht erfassen</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Ich habe gelesen und stimme zu dem</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Haftungsausschluss</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Weiter</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Gesicht erfasst</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>Konnte Ihr Gesicht nicht erfassen</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Fertig</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Abbrechen</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Erfassung wiederholen</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Abbrechen</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Fertig</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Finger erfassen</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Bitte legen Sie den Finger mittig auf den Fingerabdrucksensor und bewegen ihn von oben nach unte. Danach entfernen Sie den Finger bitte</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Ich habe gelesen und stimme zu dem</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Haftungsausschluss</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Weiter</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Erfassung wiederholen</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>Iris erfassen</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Ich habe gelesen und stimme zu dem</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Haftungsausschluss</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Weiter</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Fertig</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Abbrechen</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Erfassung wiederholen</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>Iris erfasst</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>Konnte Ihre Iris nicht erfassen</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation>Bitte schauen Sie auf das Gerät und stellen sicher, dass beide Augen innerhalb des Erfassungsbereiches liegen</translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Biometrische Authentifizierung</translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Biometrische Authentifizierung</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Gesicht</translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation>Bis zu 5 Gesichtsabbildern können eingegeben werden</translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Fingerabdruck</translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation>Benutzeridentität durch Fingerabdruckscan feststellen</translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation>Iris</translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation>Benutzeridentität durch Iris-Scan feststellen</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation>Verwenden Sie nur Buchstaben, Zahlen und Unterstriche, und nicht mehr als 15 Zeichen</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation>Verwenden Sie nur Buchstaben, Zahlen und Unterstriche</translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation>Nicht mehr als 15 Zeichen</translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation>Dieser Name existiert bereits</translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation>Neuen %1 hinzufügen …</translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation>Benutzername darf nicht leer sein</translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>Die &quot;automatische Anmeldung&quot; kann nur für ein Benutzerkonto aktiviert werden. Bitte deaktivieren Sie zuerst die &quot;automatische Anmeldung&quot; für das Benutzerkonto &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>OK</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>Bilder</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>Mensch</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Tier</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Szenisch</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>Zeichnung</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>Emoji</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>Benutzerdefiniert</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Comic-Stil</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Räumlicher Stil</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Flacher Stil</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Abbrechen</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Speichern</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Bildschirm und Bereitschaftszustand</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Monitor ausschalten nach</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Bildschirm sperren nach</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Bereitschaftszustand des Computers nach</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Wenn der Deckel geschlossen ist</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Wenn der Netzschalter gedrückt wird</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Niedrige Akkuladung</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Benachrichtigung bei niedriger Akkuladung</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Automatische Bereitschaft</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Automatischer Ruhezustand</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Schwellenwert für niedrigen Akkustand</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Akkuverwaltung</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Verbleibende Nutzungs- und Ladezeit anzeigen</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Maximale Kapazität</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Niedrige Akkuladung</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Deaktivieren</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation>Bluetooth-Einstellungen, Geräte</translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth ist abgeschalten, und der Name wird als &quot;%1&quot; angezeigt</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth ist angeschalten, und der Name wird als &quot;%1&quot; angezeigt</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Trennen</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Verbinden</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Dateien senden</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Umbenennen</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Gerät entfernen</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Datei auswählen</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Bearbeiten</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Anderen Bluetooth-Geräten das Auffinden dieses Geräts erlauben</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Um die Bluetoothfunktion zu verwenden, bitte ausschalten</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Flugzeugmodus</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>Bluetoothnamen dürfen nicht mehr als 64 Zeichen haben</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Verbunden</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Nicht verbunden</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Start-Einstellungen</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>GRUB-Startverzögerung</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>Design</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Nach Anschalten des Design-Themas sehen Sie den Hintergrund beim Computerstart</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Systemstartmenü-Verifizierung</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Passwort ändern</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Systemstartmenü-Verifizierungs-Passwort ändern</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Stellen Sie das Systemstartmenü-Authentifizierungs-Passwort ein</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Benutzername:</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Neues Passwort:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Erforderlich</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Passwort darf nicht leer sein</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Passwörter stimmen nicht überein</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Passwort wiederholen:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Abbrechen</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Sicher</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Startanimation</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Größe der Logo-Animation in der Startsequenz einstellen</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Folgenden Programmen die Verwendung der Kamera erlauben:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Fingerabdruck1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Fingerabdruck2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Fingerabdruck3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Fingerabdruck4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Fingerabdruck5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Fingerabdruck6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Fingerabdruck7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Fingerabdruck8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Fingerabdruck9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Fingerabdruck10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Scan fehlgeschlagen</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Der Fingerabdruck existiert bereits</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Bitte scannen Sie andere Finger</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Unbekannter Fehler</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Scan unterbrochen</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Konnte nicht erkannt werden</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Zu schnell bewegt</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Finger wurde zu schnell bewegt, bitte nicht abheben, bis Sie dazu aufgefordert werden</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Unscharfer Fingerabdruck</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Reinigen Sie Ihren Finger oder passen Sie die Fingerposition an und versuchen Sie es erneut</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Bereits gescannt</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Passen Sie die Fingerposition an, um Ihren Fingerabdruck vollständig zu scannen</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Der Finger hat sich zu schnell bewegt. Bitte nicht anheben, bis Sie dazu aufgefordert werden</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Heben Sie Ihren Finger hoch und legen Sie ihn erneut auf den Sensor</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Positionieren Sie Ihr Gesicht innerhalb des Rahmens</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Gesicht erfasst</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Positionieren Sie bitte ein menschliches Gesicht</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Halten Sie sich von der Kamera fern</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Gehen Sie näher an die Kamera heran</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Positionieren Sie nicht mehrere Gesichter innerhalb des Rahmens</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Stellen Sie sicher, dass die Kameralinse sauber ist</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Nicht in dunklen, hellen oder von hinten beleuchteten Umgebungen erfassen</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Halten Sie Ihr Gesicht unbedeckt</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Zeitüberschreitung der Erfassung</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Abbrechen</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>Kamera belegt!</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Akzentfarbe</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Symbol-Einstellungen</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Symbolthema</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Symbolthema anpassen</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Zeigerthema</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Zeigerthema anpassen</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Sind Sie sicher, dass Sie dieses Konto löschen möchten?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Kontoverzeichnis löschen</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Abbrechen</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Löschen</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Gehe zu Einstellungen</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Abbrechen</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Allgemein</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Wiederholungsverzögerung</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Kurz</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Lang</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Wiederhol-Rate</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Langsam</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Schnell</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Zahlenfeld</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>hier testen</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Festelltasten-Hinweis</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Doppelklick-Tempo</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Doppelklick-Test</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Linke-Hand-Modus</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>Tastatur anschalten</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>Allgemein</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>Bildlaufgeschwindigkeit</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation>Systemstartmenü</translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation>Verwalten Sie Ihr Systemstartmenü</translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Bitte warten Sie eine Minute, die neue Systemstartmenü-Animation wird eingerichtet</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>Einrichten der Systemstartmenü-Animation abgeschlossen.</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>Die Einstellungen werden nach einem Systemneustart angewendet</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation>Jetzt neustarten</translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation>Ablehnen</translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>Passwort muss Zahlen und Buchstaben enthalten</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>Passwort muss zwischen 8 und 64 Zeichen lang sein</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Neues Konto erstellen</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Kontotyp</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Benutzername</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Erforderlich</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Vollständiger Name:</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Optional</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Abbrechen</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Konto erstellen</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>Benutzernamen dürfen nicht mehr als 32 Zeichen haben</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>Benutzername darf nur Buchstaben, Zahlen sowie - und _ enthalten</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>Voll-Namen dürfen nicht mehr als 32 Zeichen haben</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>Voll-Namen dürfen keine Punkte enthalten</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation>klein</translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation>groß</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>Sie haben noch keinen Avatar hochgeladen. Um ein Bild hochzuladen klicken Sie entweder oder ziehen Sie ein Bild per Drag&amp;Drop herüber.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>Der hochgeladene Dateityp ist falsch, bitte mit richtigem hochladen</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>verfügbar</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Zustimmen und am Benutzererfahrungsprogramm teilnehmen</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Datums- und Zeiteinstellungen</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Datum</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Jahr</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Monat</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Tag</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Zeit</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Abbrechen</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Bestätigen</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation>Zeit und Datum</translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation>Datum und Zeit, Zeitzoneneinstellungen</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation>Sprache und Region</translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation>Systemsprache und Regionalforate</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Morgen</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Gestern</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Heute</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 Stunden früher als lokal</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 Stunden später als lokal</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Leerzeichen</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Woche</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Erster Tag der Woche</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Kurzes Datum</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Langform-Datum</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Kurze Zeitform</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Lange Zeitform</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Währungssymbol</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Positiv-Währungsformat</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Negativ-Währungsformat</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Dezimalzeichen</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Zifferngruppierungszeichen</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Zifferngruppierung</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Seitengröße</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>Beispiel</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Für den Wechsel des NTP-Servers ist eine Authentifizierung erforderlich</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Zum Festlegen der System-Zeitzone ist eine Authentifizierung notwendig</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Abbrechen</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Speichern</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Das Kontrollzentrum stellt Möglichkeiten zur Systemeinstellung zur Verfügung.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>WeChat verknüpfen</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>WeChat Scan Code Anmelde-System</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Passwort mit %1-ID zurücksetzen</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Cloud-Synchronisierung</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Bei %1-ID anmelden</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Automatische Synchronisierung</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Systemeinstellungen und persönliche Daten sicher in der Cloud speichern und sie geräteübergreifend synchron halten</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Systemeinstellungen</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Letzte Synchronisierung: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Cloud-Daten löschen</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Abbrechen</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Löschen</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Synchronisierungsdienst</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Konto &amp; Sicherheit</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Abmelden</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Gehe zu Web-Einstellungen</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>Der Spitzname muss 1 bis 32 Zeichen lang sein</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>Passwort-Verschlüsselung fehlgeschlagen</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Falsches Passwort, noch %1 Chancen</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>Das Tageslimit für Anmeldefehler ist erreicht. Sie können das Passwort zurücksetzen und es erneut versuchen.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Ausführung erfolgreich</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>Der Spitzname darf nur einmal täglich geändert werden</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation>deepin-ID</translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation>UOS-ID</translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation>Clouddienste</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>Festland-China</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Andere Regionen</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation>Standard-Programm</translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation>Standard-Programme für verschiedene Datei-Typen einstellen</translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation>Webseiten</translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation>E-Mail</translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation>Text</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Musik</translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation>Video</translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation>Bilder</translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation>Terminal</translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Bitte wählen Sie das Standard-Programm aus für &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>hinzufügen</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Schreibtisch-Datei öffnen</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Apps (*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Alle Dateien (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Root-Zugang</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Rootzugang anfordern</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Erlaubt</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Eingeben</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>Online</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>UOS-ID-Anmeldung</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Offline</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Zertifikat importieren</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Datei auswählen</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1. PC-Infos übertragen</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Übertragen</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3. Zertifikat einspielen</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Entwickler- und Debug-Optionen</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Aus</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Debug</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation>Sie sind nun im Entwickler-Modus</translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>O.K.</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation>2. Gehen Sie bitte zu %1 um ein Offline-Zertifikat herunterzuladen</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation>Nur-Lese-Schutz für Stabiles System</translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Anzeige</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Anmeldemethode</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Deepin-Gemeinschaft</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Automatische Rauschunterdrückung</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Eingangslautstärke</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Eingangspegel</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Eingabegerät</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Maus und Touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalisierung</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Anwenderspezifisch</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Wählen Sie aus, welche Symbole im Dock erscheinen sollen</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Passwort darf nicht leer sein</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Passwort muss mindestens %1 Zeichen haben</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Passwort darf nicht mehr als %1 Zeichen haben</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Passwort darf nur englische Buchstaben (Groß- und Kleinschreibung beachten), Zahlen oder Sonderzeichen (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/) enthalten</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Bitte nicht mehr als %1 Palindrom-Zeichen</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Bitte nicht mehr als %1 monotone Zeichen</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Bitte nicht mehr als %1 sich wiederholende Zeichen</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Passwort muss Großbuchstaben, Kleinbuchstaben, Zahlen und Symbole enthalten (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Passwort darf nicht mehr als 4 Palindromzeichen enthalten</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Verwenden Sie keine gebräuchlichen Wörter und Kombinationen als Passwort</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Bitte erstellen Sie ein sicheres Passwort</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Es erfüllt nicht die Passwortregeln</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Kontrollzentrum</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Aktiviert</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Ansicht</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Zu aktivieren</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Aktivieren</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Abgelaufen</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Im Testzeitraum</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Testzeitraum abgelaufen</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Tastbildschirm-Einstellungen</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Ton</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Toneffekte</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Hochfahren</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Herunterfahren</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Abmelden</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Aufwachen</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Lautstärke +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Benachrichtigung</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Niedrige Akkuladung</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Symbol im Starter zum Desktop hinzufügen</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Papierkorb leeren</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Einstecken</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Ausstecken</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Entfernbares Gerät verbunden</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Entfernbares Gerät entfernt</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Fehler</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Modus</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Ausgabelautstärke</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Lautstärkenverstärkung</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Links</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Rechts</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Ausgabegerät</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Bildschirmeinstellungen speichern?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Die Einstellungen werden in %1 s rückgängig gemacht.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Zurücksetzen</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Speichern</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>Diese Aktion ist heikel, bitte geben Sie zuerst das Anmeldepasswort ein</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>Anmeldung</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Traditionelles Chinesisch (Chinesisches Hongkong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Traditionelles Chinesisch (Chinesisches Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Chinesisches Taiwan</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Dieses Tastenkürzel konfliktiert mit [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>System</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Fenster</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Arbeitsfläche</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Helferprogramme</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Benutzerdefiniert</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Keine</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_el.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"el\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Συνδέθηκε</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Δεν Συνδέθηκε</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>ΔακτυλικόΑποτύπωμα1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>ΔακτυλικόΑποτύπωμα2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>ΔακτυλικόΑποτύπωμα3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>ΔακτυλικόΑποτύπωμα4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>ΔακτυλικόΑποτύπωμα5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>ΔακτυλικόΑποτύπωμα6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>ΔακτυλικόΑποτύπωμα7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>ΔακτυλικόΑποτύπωμα8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>ΔακτυλικόΑποτύπωμα9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>ΔακτυλικόΑποτύπωμα10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Αποτυχία σάρωσης</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Το δακτυλικό αποτύπωμα υπάρχει ήδη</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Παρακαλώ σαρώστε άλλα δάκτυλα</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Άγνωστο σφάλμα</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Αναστολή σάρωσης</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Αδυναμία αναγνώρισης</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Πολύ γρήγορη μετακίνηση</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Το δάχτυλο κινήθηκε πολύ γρήγορα, παρακαλώ μην σηκώνετε μέχρι να σας ζητηθεί</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Μη ευκρινές δακτυλικό αποτύπωμα</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Καθαρίστε το δάκτυλο σας ή προσαρμόστε την θέση του, και προσπαθήστε ξανά</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Σαρώθηκε ήδη</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Προσαρμόστε την θέση του δακτύλου σας για να σαρωθεί πλήρως το δακτυλικό σας αποτύπωμα</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Το δάκτυλο κινήθηκε πολύ γρήγορα. Παρακαλώ μην το σηκώσετε μέχρι να σας ζητηθεί</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Σηκώστε το δάκτυλο σας και τοποθετήστε το ξανά στον αισθητήρα</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Ακύρωση</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Απαιτείται πιστοποίηση για αλλαγή του NTP διακομιστή</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Απαιτείται πιστοποίηση για ορισμό της ζώνης ώρας του συστήματος</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Εμφάνιση</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Αυτόματη Κατάπνιξη Θορύβου</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Ένταση Εισόδου</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Επίπεδο Εισόδου</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Συσκευή Εισόδου</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Ποντίκι και Touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Εξατομίκευση</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Προσαρμογή</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Ο κωδικός πρόσβασης δεν μπορεί να είναι κενός</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Ο κωδικός πρόσβασης πρέπει να περιέχει τουλάχιστον %1 χαρακτήρες</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Ο κωδικός πρόσβασης δεν πρέπει να είναι περισσότερο από %1 χαρακτήρες</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Ο κωδικός πρόσβασης μπορεί να περιέχει μόνο λατινικούς χαρακτήρες (με διάκριση πεζών-κεφαλαίων), αριθμούς ή ειδικούς χαρακτήρες (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Ο κωδικός πρόσβασης πρέπει να περιέχει κεφαλαία και πεζά γράμματα, αριθμούς και σύμβολα (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Ο κωδικός πρόσβασης δεν μπορεί να περιέχει πάνω από 4 παλινδρομικούς χαρακτήρες</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Μην χρησημοποιήτε συνηθείς λέξεις και συνδυασμούς αυτών ως κωδικό πρόσβασης </translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Παρακαλώ δημιουργήστε έναν ισχυρό κωδικό πρόσβασης</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Δεν πληρεί τις προϋποθέσεις κωδικού πρόσβασης</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Κέντρο Ελέγχου</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Ενεργοποιημένο</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Εμφάνιση</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Προς ενεργοποιήση</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Ενεργοποίηση</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Έχει λήξει</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Σε περίδο δοκιμής</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Η περίοδος δοκιμής έληξε</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Ρυθμίσεις Οθόνης Αφής</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Οι ρυθμίσεις της οθόνης αφής άλλαξαν</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Ήχος</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Ηχητικά Εφέ</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Εκκίνηση</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Τερματισμός λειτουργίας</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Έξοδος χρήστη</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Αφύπνιση</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Ένταση +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Ειδοποίηση</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Χαμηλή στάθμη μπαταρίας</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Αποστολή εικονιδίου εκκινητή στην Επιφάνεια Εργασίας</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Αδειάστε τον κάδο απορριμάτων</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Συνδέστε στην πρίζα</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Αποσυνδέστε από την πρίζα</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Αφαιρούμενη συσκευή συνδέθηκε</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Αφαιρούμενη συσκευή αφαιρέθηκε</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Σφάλμα</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Λειτουργία</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Όγκος εξόδου</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Ενίσχυση Ήχου</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Αριστερά</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Δεξιά</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Συσκευή Εξόδου</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Επαναφορά</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Αποθήκευση</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Παλαιότατο κινέζικο (Κινέζικο Χονγκ Κονγκ)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Παλαιότατο κινέζικο (Κινέζικο Ταϊβάν)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Κινέζικο Ταϊβάν</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Αυτή η συντομεύσεις συγκρούεται με [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Σύστημα</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Παράθυρο</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Χώρος εργασίας</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Βοηθητικά εργαλεία</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Προσαρμοσμένο</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Κανένα</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_el_GR.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"el_GR\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Αποθήκευση</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Αποθήκευση</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Κέντρο Ελέγχου</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Αποθήκευση</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Αποθήκευση</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Αποθήκευση</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Αποθήκευση</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Αποθήκευση</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_en.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_en_AU.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"en_AU\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Connected</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Not connected</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Fingerprint1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Fingerprint2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Fingerprint3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Fingerprint4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Fingerprint5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Fingerprint6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Fingerprint7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Fingerprint8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Fingerprint9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Fingerprint10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Scan failed</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>The fingerprint already exists</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Please scan other fingers</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Unknown error</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Scan suspended</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Cannot recognise</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Moved too fast</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Finger moved too fast, please do not lift until prompted</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Unclear fingerprint</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Clean your finger or adjust the finger position, and try again</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Already scanned</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Adjust the finger position to scan your fingerprint fully</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Finger moved too fast. Please do not lift until prompted</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Lift your finger and place it on the sensor again</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Authentication is required to change NTP server</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Authentication is required to set the system timezone</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Display</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Input Volume</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Input Level</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Mouse and Touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalisation</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Custom</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Password cannot be empty</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Password must be no more than %1 characters</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Control Center</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Activated</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>View</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>To be activated</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Activate</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Expired</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>In trial period</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Trial expired</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Touch Screen Settings</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Sound</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Sound Effects</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Boot up</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Shut down</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Log out</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Wake up</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volume +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notification</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Low battery</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Send icon in Launcher to Desktop</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Empty Trash</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Plug in</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Plug out</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Removable device connected</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Removable device removed</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Error</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Mode</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Output Volume</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Volume Boost</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Left</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Right</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Revert</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Save</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Traditional Chinese (Chinese Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Traditional Chinese (Chinese Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan China</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>This shortcut conflicts with [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>System</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Window</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Workspace</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>AssistiveTools</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Custom</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>None</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_en_GB.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"en_GB\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\">Mode</translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\">Mode</translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\">Shut down</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Password must be no more than %1 characters</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Control Center</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Shut down</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Mode</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Save</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Save</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Cancel</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\">Password must be no more than %1 characters</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_en_NO.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"en_NO\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_en_US.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"en_US\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Connected</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Not connected</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Fingerprint1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Fingerprint2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Fingerprint3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Fingerprint4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Fingerprint5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Fingerprint6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Fingerprint7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Fingerprint8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Fingerprint9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Fingerprint10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Scan failed</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>The fingerprint already exists</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Please scan other fingers</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Unknown error</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Scan suspended</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Cannot recognize</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Moved too fast</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Finger moved too fast, please do not lift until prompted</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Unclear fingerprint</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Clean your finger or adjust the finger position, and try again</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Already scanned</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Adjust the finger position to scan your fingerprint fully</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Finger moved too fast. Please do not lift until prompted</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Lift your finger and place it on the sensor again</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Position your face inside the frame</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Face enrolled</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Position a human face please</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Keep away from the camera</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Get closer to the camera</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Do not position multiple faces inside the frame</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Make sure the camera lens is clean</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Do not enroll in dark, bright or backlit environments</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Keep your face uncovered</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Scan timed out</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Authentication is required to change NTP server</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Authentication is required to set the system timezone</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Deepin Community</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Automatic Noise Suppression</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Input Volume</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Input Level</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Input Device</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Custom</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Password cannot be empty</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Password must have at least %1 characters</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Password must be no more than %1 characters</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>No more than %1 palindrome characters please</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>No more than %1 monotonic characters please</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>No more than %1 repeating characters please</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Password must not contain more than 4 palindrome characters</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Do not use common words and combinations as password</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Create a strong password please</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>It does not meet password rules</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Control Center</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Activated</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>View</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>To be activated</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Activate</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Expired</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>In trial period</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Trial expired</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Touch Screen Settings</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>The settings of touch screen changed</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Sound Effects</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Boot up</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Shut down</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Log out</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Wake up</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volume +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notification</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Low battery</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Send icon in Launcher to Desktop</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Empty Trash</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Plug in</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Plug out</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Removable device connected</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Removable device removed</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Error</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Mode</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Output Volume</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Volume Boost</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>If the volume is louder than 100%, it may distort audio and be harmful to output devices</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Left</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Right</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Output Device</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Save the display settings?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Settings will be reverted in %1s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Revert</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Save</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Traditional Chinese (Chinese Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Traditional Chinese (Chinese Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan China</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>This shortcut conflicts with [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>System</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Window</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Workspace</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>AssistiveTools</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Custom</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>None</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_eo.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"eo\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Konektita</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Ne konektita</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Nuligi</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Ekrano</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Eniga laŭteco</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Muso kaj tuŝbloko</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personigo</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Personigo</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>kontroloj centro</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Sono</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Elŝaltiti</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Elsaluti</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Vakigi korbeton</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Maniero</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Eliga laŭteco</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Maldekstra</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Dekstra</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Restarigi</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Gardi</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Tradicia ĉina (Ĉina Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Tradicia ĉina (Ĉina Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Ĉina Taiwan</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Tiu skratio konfliktas kun [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistema</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Fenestro</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Labora spaco</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Helpa iloj</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Propra</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Nenio</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_es.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"es\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>Editar</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Añadir nuevo usuario</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Establecer nombre completo</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Configuración de inicio de sesión</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Iniciar sesión sin contraseña</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Borrar cuenta actual</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Configuración de grupo</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Grupos de cuentas</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Finalizar</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Nombre del grupo</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Añadir grupo</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Inicio de sesión automático</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Información de la cuenta</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Nombre de la cuenta, nombre completo de la cuenta, tipo de cuenta</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Nombre de la cuenta</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Nombre completo de la cuenta</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Tipo de cuenta</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>El nombre completo es muy largo</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>Los nombres de los grupos no deben tener más de 32 caracteres</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>Los nombres de grupo no pueden tener solo números</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>Use letras, números, guiones bajos y guiones solamente, y debe comenzar con una letra</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>El nombre del grupo ya esta en uso</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>Inicio de sesión automático, inicio de sesión sin contraseña</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>Deshacer</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>Rehacer</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>Cortar</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>Copiar</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>Pegar</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>Seleccionar todo</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>Inicio de sesión rápido</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation>Cuenta</translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation>Administrador de cuentas</translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation>Otras cuentas</translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Registrar cara</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>He leído y acepto los términos y condiciones</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Aviso legal</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Siguiente</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Cara registrada</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>Fallo al registrar la cara</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Hecho</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Reintentar registro</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation>El reconocimiento facial no detecta la vitalidad de la persona, y este método de verificación puede conllevar riesgos.\n\nPara garantizar el acceso:\n1. Mantenga sus rasgos faciales claramente visibles y no los cubra (con sombreros, gafas de sol, mascarillas, etc.).\n\n2. Asegúrese de tener suficiente iluminación y evite la luz solar directa.</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>La autenticación biométrica es una función de verificación de identidad de usuario proporcionada por UnionTech Software Technology Co., Ltd. Mediante la autenticación biométrica, los datos biométricos recopilados se comparan con los almacenados en el dispositivo, y la identidad del usuario se verifica en función del resultado de la comparación.\n\nTenga en cuenta que UnionTech Software Technology Co., Ltd. no recopilará ni accederá a su información biométrica, la cual se almacenará en su dispositivo. Active la autenticación biométrica únicamente en su dispositivo personal y utilice su propia información biométrica para las operaciones relacionadas. Desactive o elimine de inmediato la información biométrica de otras personas en dicho dispositivo; de lo contrario, usted asumirá los riesgos derivados.\n\nUnionTech Software Technology Co., Ltd. se compromete a investigar y mejorar la seguridad, precisión y estabilidad de la autenticación biométrica. Sin embargo, debido a factores ambientales, de equipo, técnicos y otros, así como al control de riesgos, no se garantiza que la autenticación biométrica sea exitosa de forma permanente. Por lo tanto, no utilice la autenticación biométrica como único método para iniciar sesión en UOS. Si tiene alguna pregunta o sugerencia al utilizar la autenticación biométrica, puede enviar sus comentarios a través de &quot;Servicio y soporte&quot; en el UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Finalizar</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Registrar huella</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Coloque el dedo que desee en el sensor de huellas dactilares y muévalo de abajo a arriba. Tras completar la acción, levante el dedo.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>He leído y acepto los términos y condiciones</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Aviso legal</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Siguiente</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Reintentar registro</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>La autenticación biométrica es una función de autenticación de identidad de usuario proporcionada por UnionTech Software Technology Co., Ltd. Mediante la autenticación biométrica, los datos biométricos recopilados se compararán con los almacenados en el dispositivo y la identidad del usuario se verificará con base en el resultado de la comparación.\n\nTenga en cuenta que UnionTech Software Technology Co., Ltd. no recopilará ni accederá a su información biométrica, que se almacenará en su dispositivo local. Active la autenticación biométrica únicamente en su dispositivo personal y utilice su propia información biométrica para las operaciones relacionadas. Desactive o elimine de inmediato la información biométrica de otras personas en dicho dispositivo; de lo contrario, usted asumirá los riesgos derivados.\n\nUnionTech Software Technology Co., Ltd. se compromete a investigar y mejorar la seguridad, precisión y estabilidad de la autenticación biométrica. Sin embargo, debido a factores ambientales, de equipo, técnicos y de otro tipo, y al control de riesgos, no se garantiza que supere temporalmente la autenticación biométrica. Por lo tanto, no considere la autenticación biométrica como la única forma de iniciar sesión en UOS. Si tiene alguna pregunta o sugerencia al utilizar la autenticación biométrica, puede enviar sus comentarios a través de &quot;Servicio y soporte&quot; en el UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>Registrar iris</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>He leído y acepto los términos y condiciones</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Aviso legal</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Siguiente</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Hecho</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Reintentar registro</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>Iris registrado</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>No se ha podido regitrar el iris</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>La autenticación biométrica es una función de verificación de identidad de usuario proporcionada por UnionTech Software Technology Co., Ltd. Mediante la autenticación biométrica, los datos biométricos recopilados se comparan con los almacenados en el dispositivo, y la identidad del usuario se verifica en función del resultado de la comparación.\n\nTenga en cuenta que UnionTech Software Technology Co., Ltd. no recopilará ni accederá a su información biométrica, la cual se almacenará en su dispositivo. Active la autenticación biométrica únicamente en su dispositivo personal y utilice su propia información biométrica para las operaciones relacionadas. Desactive o elimine de inmediato la información biométrica de otras personas en dicho dispositivo; de lo contrario, usted asumirá los riesgos derivados.\n\nUnionTech Software Technology Co., Ltd. se compromete a investigar y mejorar la seguridad, precisión y estabilidad de la autenticación biométrica. Sin embargo, debido a factores ambientales, de equipo, técnicos y otros, así como al control de riesgos, no se garantiza que la autenticación biométrica sea exitosa de forma permanente. Por lo tanto, no utilice la autenticación biométrica como único método para iniciar sesión en UOS. Si tiene alguna pregunta o sugerencia al utilizar la autenticación biométrica, puede enviar sus comentarios a través de &quot;Servicio y soporte&quot; en el UOS.</translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation>Por favor, mantenga la vista fija en el dispositivo y asegúrese de que ambos ojos estén dentro del área de recolección.</translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Autenticación biométrica</translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Autenticación biométrica</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Cara</translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation>Se pueden ingresar hasta 5 registros faciales</translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Huella dactilar</translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation>Identificar al usuario escaneando la huella dactilar</translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation>Iris</translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation>Identificar escaneando el iris</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation>Use solo letras, números y guión bajo, y no más de 15 caracteres</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation>Utilice solo letras, números y guion bajo</translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation>No más de 15 caracteres</translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation>El nombre ya existe</translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation>Añadir %1 ...</translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation>El nombre no puede estar vacío.</translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>El &quot;Inicio de sesión automático&quot; se puede activar solo para una cuenta, desactívelo primero para la cuenta &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>Aceptar</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>Imágenes</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>Humano</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Animal</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Escenario</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>Ilustración</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>Emoji</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>Personalizado</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Estilo dibujo animado</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Estilo dimensional</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Estilo plano</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Guardar</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Pantalla y suspender</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Apagar el monitor después</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Bloquear pantalla después</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Suspender el equipo después</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Cuando la tapa está cerrada</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Cuando se presiona el botón de encendido</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Batería baja</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Notificación de batería baja</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Suspensión automática</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Hibernación automática</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Umbral de batería baja</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Administración de la bateria</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Mostrar capacidad y tiempo de carga restante</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Máxima capacidad</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Nivel de batería bajo</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Desactivar</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation>Ajustes de Bluetooth, dispositivos</translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>El Bluetooth está desactivado y el nombre se muestra como &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>El Bluetooth está desactivado y el nombre se muestra como &quot;%1&quot;</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Desconectar</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Conectar</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Enviar archivos</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Renombrar</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Remover dispositivo</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Seleccionar archivo</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Editar</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Permitir que otros dispositivos Bluetooth encuentren este equipo</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Para usar la función Bluetooth, por favor apague</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Modo avión</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>El nombre de Bluetooth no puede exceder los 64 caracteres</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Conectado</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>No conectado</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Configuración de inicio</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Puede hacer clic en el menú para cambiar los elementos de inicio predeterminados, o arrastrar la imagen a la ventana para cambiar la imagen de fondo.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>Demora de inicio de GRUB</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>Tema</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Después de activar el tema, podrá ver el fondo del tema cuando encienda el equipo</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Verificación del menú de arranque</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Una vez abierto, para entrar en el menú de edición es necesario introducir la contraseña.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Cambiar contraseña</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Cambiar la contraseña de verificación del menú de arranque</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Establecer la contraseña de autenticación del menú de arranque</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Nombre de usuario:</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>raíz</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Nueva contraseña:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Requerido</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>La contraseña no puede estar vacía</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Las contraseñas no coinciden</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Repita la contraseña:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Seguro</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Animación de inicio</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Ajustar el tamaño de la animación del logotipo en el inicio del sistema</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Permitir que las siguientes aplicaciones usen su cámara:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Huella dactilar 1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Huella dactilar 2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Huella dactilar 3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Huella dactilar 4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Huella dactilar 5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Huella dactilar 6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Huella dactilar 7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Huella dactilar 8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Huella dactilar 9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Huella dactilar 10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>El escaneo falló</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>La huella dactilar ya existe</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Escanee otros dedos</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Error desconocido</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Escaneo suspendido</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>No puedo reconocer</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Lo moviste muy rápido</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>El dedo se movió demasiado rápido. Por favor, no lo levante hasta que se le indique</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>La huella dactilar es ilegible</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Limpie su dedo o ajuste la posición del mismo, e intente de nuevo</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Escaneo finalizado</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Ajuste la posición del dedo para escanear su huella dactilar completamente</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Movió el dedo muy rápido. Por favor, no lo levante hasta que se indique</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Levante su dedo y colóquelo en el sensor nuevamente</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Coloque su cara dentro del marco</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Cara registrada</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Coloque una cara humana por favor</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Aléjese de la cámara</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Acérquese a la cámara</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>No coloque varias caras dentro del marco</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Asegúrese de que el objetivo de la cámara está limpio</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>No se registre en ambientes oscuros, brillantes o a contraluz</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Mantenga su cara descubierta</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Tiempo de escaneo agotado</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>¡Cámara ocupada!</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Color del resaltado</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Ajustes de iconos</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Tema de iconos</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Personalizar el tema de iconos</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Tema de cursor</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Personalizar el tema del cursor</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>¿Está seguro de que desea borrar esta cuenta?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Borrar carpeta de la cuenta</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Borrar</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Ir a la configuración</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>General</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Intervalo de repetición</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Corto</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Largo</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Tasa de repetición</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Lento</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Rápido</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Teclado numérico</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>Pruebe aquí</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Indicador de bloqueo de mayúsculas</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Velocidad de doble clic</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Doble clic para probar</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Modo mano izquierda</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>Activar teclado</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>General</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>Velocidad de desplazamiento</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation>Menú de arranque</translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation>Configurar el menú de arranque</translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation>Configuración de permisos root para desarrolladores</translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation>Opciones para desarrolladores</translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation>Opciones de depuración para desarrolladores</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Tamaño grande</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Tamaño pequeño</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>Error al obtener acceso root</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Primero inicie sesión en su ID de Unión</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>No se puede leer la información del equipo</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>Sin conexión a red</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>La carga del certificado falló, no es posible obtener acceso root</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>La verificación de la firma falló, no es posible obtener acceso root</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Aceptar y unirse al programa de experiencia de usuario</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>Descargo de responsabilidad del modo desarrollador</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>Aceptar y solicitar el acceso root</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Configurando la nueva animación de inicio, espere un minuto</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>Configuración de la nueva animación de inicio finalizada</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>La configuración se aplicará después de reiniciar el sistema.</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation>Reinicar ahora</translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation>Rechazar</translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation>Reinicie el dispositivo para aplicar la configuración de protección de solo lectura del sistema.</translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>La contraseña debe contener números y letras</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>La contraseña debe tener entre 8 y 64 caracteres</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Crear cuenta nueva</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Tipo de cuenta</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Nombre de usuario</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Requerido</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Nombre completo</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Opcional</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Crear cuenta</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>El nombre de usuario no puede exceder los 32 caracteres</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>El nombre de usuario solo puede contener letras, números, - y _</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>El nombre completo no puede exceder los 32 caracteres</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>El nombre completo no puede contener dos puntos</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation>Pequeño</translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation>grande</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>Aún no ha subido un avatar, puede hacer clic o arrastrar para cargar una imagen.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>El tipo de archivo subido es incorrecto, súbalo de nuevo</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>disponible</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Aceptar y unirse al programa de experiencia de usuario</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation>&lt;p&gt;Somos plenamente conscientes de la importancia que tiene su información personal para usted. Por ello, contamos con una Política de Privacidad que describe cómo recopilamos, usamos, compartimos, transferimos, divulgamos públicamente y almacenamos su información.&lt;/p&gt; &lt;p&gt;Puede hacer &lt;a href=&quot;%1&quot;&gt;clic aquí &lt;/a&gt;para ver nuestra política de privacidad más reciente o consultarla en línea visitando&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Lea atentamente y comprenda completamente nuestras prácticas en materia de privacidad del cliente. Si tiene alguna pregunta, póngase en contacto con nosotros en: %2.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Al unirte al Programa de Experiencia de Usuario, nos autoriza a recopilar y utilizar la información de tu dispositivo, sistema y aplicaciones. Si rechazas la recopilación y el uso de dicha información, no te unas al Programa de Experiencia de Usuario. Para más detalles, consulta la Política de Privacidad de Deepin. (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Al unirte al Programa de Experiencia del Usuario, nos otorga y autoriza a recopilar y utilizar la información de tu dispositivo, sistema y aplicaciones. Si rechazas la recopilación y el uso de dicha información, no te unas. Para obtener más detalles sobre el Programa de Experiencia del Usuario, visita&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Configuración de fecha y hora</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Fecha</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Año</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Mes</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Día</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Hora</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirmar</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation>Fecha y hora</translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation>Ajustes de fecha, hora y zona horaria</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation>Idioma y región</translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation>Idioma del sistema, formato regional</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Mañana</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Ayer</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Hoy</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 horas antes que la local</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 hora más tarde que la local</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Espacio</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Semana</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Primer día de la semana</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Fecha corta</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Fecha larga </translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Hora corta</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Hora larga </translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Símbolo de moneda</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Formato de moneda positivo</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Formato de moneda negativo</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Símbolo decimal</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Símbolo de agrupación de dígitos</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Agrupación de dígitos</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Tamaño de la página</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>Ejemplo</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Se requiere autenticación para cambiar el servidor NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Se requiere autenticación para configurar la zona horaria del sistema.</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Guardar</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Centro de control proporciona las opciones para la configuración del sistema.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>Vincular WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>Al vincular WeChat, puede iniciar sesión de forma segura y rápida en su ID %1 y en sus cuentas locales.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Desvinculado</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Desvinculando</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Vincular</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>¿Está seguro de que quiere desvincular WeChat?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Después de desvincular WeChat, no podrá utilizar WeChat para escanear el código QR para iniciar sesión en UOS ID o cuenta local.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Dejame pensarlo.</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Vinculación de cuenta local</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Después de vincular su cuenta local, puede utilizar las siguientes funciones:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>Sistema de inicio de sesión con código de escaneo WeChat</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Utilice WeChat, que está vinculado a su ID %1, para escanear el código para iniciar sesión en su cuenta local.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Restablecer contraseña a través de %1 ID</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Restablezca su contraseña local a través de %1 ID en caso de que la olvide.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Para utilizar las funciones anteriores, vaya al Centro de control - Cuentas y active las opciones correspondientes.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>Deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Sincronización en la nube</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>Administre su Deepin ID y sincronice sus datos personales entre dispositivos.\nInicie sesión en Deepin ID para obtener funciones y servicios personalizados del navegador, tienda de aplicaciones, soporte y más.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Iniciar sesión en %1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Sincronización automática</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Almacene de forma segura la configuración del sistema y los datos personales en la nube, y manténgalos sincronizados en todos los dispositivos.</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Ajustes del sistema</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Última sincronización: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Borrar datos de la nube</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>¿Está seguro de que desea borrar la configuración del sistema y los datos personales guardados en la nube?</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>Una vez que se borran los datos, ¡no se pueden recuperar!</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Limpiar</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Servicios de sincronización</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Cuenta y seguridad</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Cerrar sesión</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Ir a la configuración web</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>El apodo debe tener entre 1~32 caracteres</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>Error al cifrar la contraseña</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Contraseña incorrecta, quedan %1 posibilidades</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>Alcanzó el límite de fallos de inicio de sesión de hoy. Puede restablecer la contraseña e interntarlo de nuevo.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Operación exitosa</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>El apodo se puede modificar solo una vez al día.</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation>Deepin ID</translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation>UOS ID</translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation>Servicios en la nube</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>China continental</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Otras regiones</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>La función no está disponible, primero active su sistema</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Sujeto a leyes y regulaciones locales, actualmente no está disponible en su región.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation>Aplicación predeterminada</translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation>Establecer la aplicación predeterminada para abrir varios tipos de archivos</translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation>Página web</translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation>Correo</translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation>Texto</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Música</translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation>Vídeo</translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation>Imagen</translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation>Terminal </translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Seleccione la aplicación predeterminada para abrir &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>Añadir</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Abrir un archivo del escritorio</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Aplicaciones (*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Todos los archivos (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Acceso de superusuario</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Solicitar acceso de superusuario</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Después de ingresar al modo de desarrollador, puede obtener permisos de root, pero también puede dañar la integridad del sistema, así que úselo con precaución.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Permitido</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Entrar</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>En línea</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Iniciar sesión con UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Fuera de línea</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Importar certificado</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Seleccionar archivo</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>Su ID de UOS ha iniciado sesión, haga clic para ingresar al modo de desarrollador</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Inicie sesión primero con su ID de UOS y continúe</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1.Exportar información del PC</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Exportar</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.Importar certificado</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Opciones de depuración para desarrolladores</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Nivel de registro del sistema</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Cambiar las opciones da como resultado un registro más detallado que puede degradar el rendimiento del sistema y/o ocupar más espacio de almacenamiento.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Apagado</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Depurar</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>El cambio de opción puede tardar hasta un minuto en procesarse. Después de recibir un mensaje de configuración exitosa, reinicie el dispositivo para que surta efecto.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>Para instalar y ejecutar aplicaciones sin firmar, vaya al &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Centro de seguridad &lt;/a&gt; para cambiar la configuración.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation>Para instalar y ejecutar aplicaciones sin firmar, vaya al Centro de seguridad para cambiar la configuración.</translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation>Ha entrado en el modo desarrollador.</translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>Aceptar</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation>2. Por favor, diríjase a %1 para descargar el certificado sin conexión.</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation>Esta función no está disponible; actívela primero en el sistema.</translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation>Protección de solo lectura del sistema</translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation>Deshabilitar la protección desbloquea los directorios del sistema. Esta acción conlleva un alto riesgo de daños al sistema.</translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation>Habilite la protección de bloqueo de los directorios del sistema para garantizar una estabilidad óptima.</translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation>Dispositivos y Bluetooth</translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Aviso legal</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>Aceptar</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Pantalla</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation>Brillo, resolución, escalado</translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation>100%</translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation>125%</translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation>150%</translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation>175%</translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation>200%</translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation>225%</translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation>250%</translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation>275%</translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation>300%</translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation>Duplicada</translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation>Extendida</translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation>Por defecto</translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation>Ajustar</translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation>Estirar</translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation>Centro</translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation>Solo mostrada en %1</translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation>Ajustes de pantalla múltiple</translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation>Identificar</translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation>La reorganización de la pantalla tendrá efecto en %1s después de los cambios</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>Modo</translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation>Pantalla principal</translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation>Visualización y diseño</translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation>Brillo</translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation>Resolución</translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation>Cambiar el tamaño del escritorio</translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation>Tasa de refresco</translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation>Rotación</translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation>Estándar</translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation>90°</translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation>180°</translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation>270°</translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation>Este monitor solo soporta escalado del 100%</translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation>Descanso visual</translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation>Activar descanso visual</translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation>Configura la pantalla para mostrar colores más cálidos, reduciendo la luz azúl</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Hora</translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation>Todo el día</translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation>Del atardecer al amanecer</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Horario personalizado</translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation>De</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>a</translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation>Temperatura del color</translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation>%1x%2 (Recomendado)</translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation>%1x%2</translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation>%1Hz (Recomendado)</translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation>%1Hz</translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation>Escalado</translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation>Escritorio y barra de tareas</translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation>Organización del escritorio, modo de barra de tareas, ajustes del área de complementos</translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation>Muelle</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>Modo</translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation>Modo clásico</translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation>Modo centrado</translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation>Altura del muelle</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Pequeño</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Grande</translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation>Posición en pantalla</translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation>Arriba</translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation>Abajo</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Izquierda</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Derecha</translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation>Estado</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Mantener visible</translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation>Mantener oculto</translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation>Ocultado inteligente</translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation>Múltiples pantallas</translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation>Establecer posición de la barra de tareas en la pantalla</translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation>Solo en principal</translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation>En la pantalla donde está el cursor</translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Área de complementos</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Seleccione los iconos que aparecerán en el muelle</translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation>Bloquear el muelle</translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation>Agrupar iconos de las aplicaciones</translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Permitir que las siguientes aplicaciones accedan a estos archivos y carpetas:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Documentos</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Escritorio</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Imágenes</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Vídeos</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Música</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Descargas</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>Carpeta</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Tamaño</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Fuente estándar</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Fuente monoespaciada</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Perfiles de energía</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Configuración de ahorro de energía</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Ahorro de energía automático cuando la batería está baja</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Umbral de batería baja</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Ahorro automático de energía en la batería</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Ajustes de reactivación</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Se requiere contraseña para reactivar el equipo</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Se requiere contraseña para activar el monitor</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Configuración de apagado</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Apagado programado</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Hora</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Repetir</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Una vez</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Cada día</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Días laborables</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Horario personalizado</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Disminuir el brillo de la pantalla en el modo de ahorro de energía</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation>Tres dedos hacia arriba</translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation>Tres dedos hacia abajo</translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation>Tres dedos a la izquierda</translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation>Tres dedos a la derecha</translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation>Toque con tres dedos</translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation>Cuatro dedos hacia arriba</translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation>Cuatro dedos hacia abajo</translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation>Cuatro dedos a la izquierda</translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation>Cuatro dedos a la derecha</translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation>Toque con cuatro dedos</translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Optimizar rendimiento</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Equilibrado</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>Optimizar efectos visuales</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>Desactiva todos los efectos de ventana para mejorar rendimiento del sistema.</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>Limita algunos efectos de ventana manteniendo buenos efectos visuales y una experiencia fluida del sistema.</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>Activa todos los efectos de ventana para tener la mejor experiencia visual.</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation>Teclado</translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation>Ajustes generales, método de entrada, atajos</translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation>General</translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Idioma</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Finalizar</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>Editar</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Otros idiomas</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>Añadir</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Región</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>Área</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>El sistema operativo y las aplicaciones pueden brindarle contenido local según su país y región.</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>El sistema operativo y las aplicaciones pueden establecer formatos de fecha y hora según formatos regionales.</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Formato regional</translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Añadir idioma</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Buscar</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Añadir</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Método de inicio de sesión</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Contraseña, WeChat, autenticación biométrica, clave de seguridad</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Contraseña</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Modificar contraseña</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Días vigentes</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Siempre</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Restablecer contraseña</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Comunidad Deepin</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Supresión automática de ruido</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Volumen de entrada</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Nivel de entrada</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Entrada</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>No se encontró ningún dispositivo de entrada de sonido</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Dispositivo de entrada</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Ratón y Panel táctil</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation>Ajustes generales, ratón, panel táctil</translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation>General</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Ratón</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Panel táctil</translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation>Ratón</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Velocidad del puntero</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Lento</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Rápido</translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation>Tamaño del puntero</translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation>Acceleración del ratón</translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation>Desactivar el panel táctil cuando el ratón está conectado</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Desplazamiento natural</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Pequeño</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Mediano</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Grande</translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation>Extra grande</translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation>Algunas aplicaciones requieren cerrar sesión o reiniciar el sistema para que surja efecto.</translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Mis dispositivos</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Nombre del equipo</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>No puede empezar ni terminar con guiones</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Nombre del SO</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Versión</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Edición</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Tipo</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Autorización</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Fecha de instalación del sistema</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Kernel</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Gráfica</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Procesador</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Memoria</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>De 1 a 63 caracteres, por favor</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation>Modo no molestar, notificaciones de aplicaciones</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notificaciones</translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation>Ajustes de no molestar</translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation>Las notificaciones de las aplicaciones no se mostrarán en el escritorio y los sonidos estarán silenciados, pero podrás ver todos los mensajes en el centro de notificaciones.</translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation>Activar no molestar</translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation>Cuando la pantalla está bloqueada</translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation>Número de notificaciones mostradas en el escritorio</translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation>Notificaciones de las aplicaciones</translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation>Permitir notificaciones</translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation>Las notificaciones se mostrarán en el escritorio o en mensajes sin leer en el centro de notificaciones</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Escritorio</translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation>Bloquear pantalla</translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation>Centro de notificaciones</translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation>Mostrar vista previa del mensaje</translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation>Reproducir un sonido</translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Otros dispositivos</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Mostrar dispositivos Bluetooth sin nombre</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Contraseña actual</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Requerido</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Débil</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Medio</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Fuerte</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Repita la contraseña</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Pista de contraseña</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Opcional</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>La contraseña no puede estar vacía</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Las contraseñas no coinciden</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>La pista es visible para todos. No incluya la contraseña.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>Nueva contraseña</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>La nueva contraseña debe ser diferente a la actual</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation>La contraseña no puede ser igual al nombre de usuario.</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Modificar contraseña</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Restablecer contraseña</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>La contraseña debe tener al menos 8 caracteres y contener al menos 3 de los siguientes elementos: mayúsculas, minúsculas, números y símbolos. Este tipo de contraseña es más segura.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Restablecer la contraseña borrará los datos almacenados en el llavero.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalización</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Claro</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Automático</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Oscuro</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation>El servicio de selección no está disponible.</translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation>Formato de color no válido: %1</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation>Tema</translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation>Apariencia</translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation>Efectos de ventana</translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation>Personalice el fondo de pantalla y salvapantallas</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Salvapantallas</translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation>Colores e iconos</translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation>Ajustar el color de acento y los iconos del tema</translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation>Fuente y tamaño de fuente</translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation>Cambie la fuente y el tamaño de fuente del sistema</translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation>Fondo de pantalla</translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation>Seleccione tema claro, oscuro o automático</translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation>Ajuste efectos y esquinas de ventana</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Personalizar</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Área de complementos</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Seleccione los iconos que aparecerán en el muelle</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation>Ajustes de energía, pantalla y suspención</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Energía</translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation>General</translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation>Planes de energía y ajustes de energía, encendido y apagado</translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation>Conectado</translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation>Pantalla y suspención</translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation>Con batería</translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation>Pantalla, suspensión, batería baja y ajustes de la batería</translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Apagar</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Suspender</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Hibernar</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Apagar el monitor</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Mostrar interfaz de apagado</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>No hacer nada</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Pantalla y suspender</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Apagar el monitor después</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Bloquear pantalla después</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Suspender el equipo después</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Cuando la tapa está cerrada</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Cuando se presiona el botón de encendido</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Alto rendimiento</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Rendimiento equilibrado</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>Ajuste agresivo de la frecuencia de funcionamiento de la CPU según la condición de carga de la CPU</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Equilibrado</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Ahorro de energía</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Priorizar el rendimiento, lo que aumentará significativamente el consumo de energía y la generación de calor.</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Equilibrio entre rendimiento y duración de la batería, ajustado automáticamente según el uso</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Priorizar la duración de la batería, con lo cual el sistema sacrificará algo de rendimiento para reducir el consumo de energía.</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Minutos</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Hora</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Nunca</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation>Privacidad y seguridad</translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation>Cámara, permisos de carpetas</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation>Cámara</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation>Selecione cuáles aplicaciones pueden acceder a la cámara</translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation>Archivos y carpetas</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation>Selecione cuáles aplicaciones pueden acceder a sus archivos y carpetas</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Política de privacidad</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Copiar dirección del enlace</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>La contraseña no puede estar vacía</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>La contraseña debe tener al menos %1 caracteres</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>La contraseña no debe tener más de %1 caracteres</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>La contraseña debe contener letras latinas (sensible a mayúsculas), números o símbolos (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>No más de %1 caracteres palíndromos</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>No más de %1 caracteres monótonos por favor</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>No más de %1 caracteres repetidos, por favor</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>La contraseña debe contener letras mayúsculas, minúsculas, números y símbolos (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>La contraseña no debe contener más de 4 caracteres palíndromos</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>No use palabras o combinaciones comunes como contraseña</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Por favor, cree una contraseña fuerte</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>No cumple con las reglas de contraseñas</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Centro de control</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Activado</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Ver</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Activación pendiente</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Activar</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Vencido</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>En período de prueba</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Período de prueba finalizado</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>centro-de-control-dde</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Ajustes de pantalla táctil</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>La configuración de la pantalla táctil cambió</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Este fondo de pantalla del sistema está bloqueado. Póngase en contacto con su administrador.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Buscar</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Formato predeterminado</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Primer día de la semana</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Fecha corta</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Fecha larga </translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Hora corta</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Hora larga </translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Símbolo de moneda</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Dígito</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Tamaño de la página</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Guardar</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Formato regional</translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Buscar</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Establecer una contraseña</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 caracteres</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Repetir contraseña</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirmar</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Las contraseñas no coinciden</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>Tiempo de repetición personalizado</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Guardar</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Salvapantallas</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>Vista previa</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Salvapantallas personalizado</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>Ajustes</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>Tiempo de inactividad</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minuto</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minutos</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minutos</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minutos</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minutos</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 hora</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>Nunca</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Se requiere contraseña para la recuperación</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Salvapantallas de presentación de imágenes</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Salvapantallas del sistema</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Buscar</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>Sin resultados</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Añadir atajo personalizado</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Nombre:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Requerido</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Comando:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Atajo</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Ninguno</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Añadir</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation>El nombre del acceso directo ya está en uso. Elija un nombre diferente.</translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation>Modificar el acceso directo personalizado</translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation>Introduzca una tecla de acceso directo.</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Guardar</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation>Haz clic en Guardar para que esta tecla de acceso directo sea efectiva.</translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation>Haz clic en Agregar para que esta tecla de acceso directo sea efectiva.</translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Atajos</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Atajos del sistema, atajo personalizado</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Buscar atajos</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Finalizar</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>Editar</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Clic</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>o</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Reemplazar</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Restaurar valores predeterminados</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Añadir atajo personalizado</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation>Introduzca una tecla de acceso directo.</translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Sonido</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation>Entradas y salidas de audio, efectos de sonido y dispositivos de audio</translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Dispositivos de salida</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Seleccione para activar los dispositivos</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Dispositivos de entrada</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Efectos de sonido</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation>Ajustes</translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Efectos de sonido</translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation>Activar/desactivar efectos de sonido</translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation>Activar/desactivar dispositivos de audio</translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation>Gestión de dispositivos</translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Arrancar</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Apagar</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Cerrar sesión</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Despertar</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volumen +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notificaciones</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Batería baja</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Enviar icono del lanzador al escritorio</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Vaciar papelera</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Enchufar</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Desenchufar</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Dispositivo extraíble conectado</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Dispositivo extraíble retirado</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Error</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Modo</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Volumen de salida</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Amplificar el volumen</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Si el volumen es más fuerte que el 100%, puede distorsionar el audio y ser dañino para los dispositivos de salida</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Izquierda</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Derecha</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Salida</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>No se encontró ningún dispositivo de salida de sonido</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Balance izquierda/derecha</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Fusionar los canales izquierdo y derecho en un solo canal</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>El audio se pausará automáticamente cuando se desconecte el dispositivo de audio actual</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation>Audio mono</translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation>Pausa automática</translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Dispositivo de salida</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Sonido</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Energía</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Ratón</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Actualizar</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Salvapantallas</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation>Ajustes generales</translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation>Sistema</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation>Información adicional</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation>Acerca del equipo</translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation>Versión del sistema e información del hardware</translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation>Declaración del software de código abierto</translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation>Experiencia de usuario</translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation>Unase al programa de experiencia de usuario para ayudar a mejorar este producto</translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation>Acuerdo de licencia de usuario final</translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation>Muestra el acuerdo de licencia de usuario final</translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Política de privacidad</translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation>Muestra información sobre la política de seguridad</translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation>Declaración de software de código abierto</translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Más fondos de pantalla</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Sincronizar hora automáticamente</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Servidor Ntp</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Fecha y hora del sistema</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Personalizar</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Ajustes</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Dirección del servidor</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Requerido</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>La dirección del servidor ntp no puede estar vacía</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>Usar formato de 24 horas</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>Zona horaria del sistema</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Lista de zonas horarias</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Añadir</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>de</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>a</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>¿Guardar los ajustes de pantalla?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Los ajustes se revertirán en %1s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Revertir</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Guardar</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Añadir zona horaria</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Determinar la zona horaria en función de la ubicación actual</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Zona horaria:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Ciudad más cercana:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Guardar</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Pantalla táctil</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Configure aquí al conectar la pantalla táctil</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Configuración básica</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Panel táctil</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Velocidad del puntero</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Lento</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Rápido</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Desactivar el panel táctil mientras escribe</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Toque para hacer clic</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Desplazamiento natural</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Gestos de tres dedos</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Gestos de cuatro dedos</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation>Gestos</translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation>Pantalla táctil</translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation>Ajustes de pantalla táctil</translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation>General</translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Unirme al programa de experiencia de usuario</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Copiar dirección del enlace</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Verificación de seguridad</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>La acción es confidencial, ingrese primero la contraseña de inicio de sesión</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 caracteres</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>¿Olvidó la contraseña?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirmar</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation>Wacom</translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation>Ajustes de Wacom</translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation>Wacom</translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation>Modo lápiz</translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation>Modo ratón</translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation>Sensibilidad de la presión</translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation>Claro</translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation>Intensa</translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation>Modelo</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>fondo de pantalla</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Mis imágenes</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Fondo de pantalla</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Fondo de pantalla de color sólido</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Fondos de pantalla personalizados</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>Estilo de relleno</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Cambiar fondos automáticamente</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>Nunca</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 segundos</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minuto</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minutos</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minutos</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minutos</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minutos</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>Iniciar sesión</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>Despertar</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Fondo de pantalla animado</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 hora</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation>Fondos de pantalla del sistema</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>Contraer</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Establecer pantalla de bloqueo</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Establecer escritorio</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation>Mostrar todo - %1 elementos</translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation>Agregar imagen</translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Interfaz y efectos</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Ajustes de ventana</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Esquinas redondeadas</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Ninguno</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Pequeño</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Grande</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Activar efecto de transparencia al mover la ventana</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Efecto al minimizar ventana</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Escala</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Lámpara mágica</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Opacidad</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Bajo</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Alto</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Barras de desplazamiento</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Mostrar al desplazar</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Mantener visible</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Vista compacta</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Si está activado, se mostrará más contenido en la ventana.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Altura de la barra de título</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Aplica solo a barras de título de ventanas con tema nativo del sistema.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Extremadamente pequeño</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>Mediano</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>Mediano</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Chino tradicional (Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Chino tradicional (Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation>Min Nan Chino</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>El nombre de usuario debe tener entre 3 y 32 caracteres</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>El primer carácter debe ser una letra o número</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>El nombre de usuario no puede tener solo números</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>El nombre de usuario ha sido utilizado por otra cuenta de usuario</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>El nombre completo es muy largo</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>El nombre completo ha sido utilizado por otra cuenta de usuario</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Contraseña incorrecta </translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Usuario estándar</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Administrador</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Personalizado</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Su host se removió del servidor de dominio exitosamente.</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>Su host se unió al servidor de dominio exitosamente</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>Su host no se pudo remover del servidor de dominio</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>Su host no pudo unirse al servidor de dominio</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>Ajustes de dominio AD</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>La contraseña no coincide</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Dimensional</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Plano</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation>Huella facial</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Cara</translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation>Usar su cara para desbloquear el dispositivo y hacer ajustes más tarde</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Huella dactilar</translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation>Coloque su dedo</translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation>Coloque su dedo firmemente en el sensor hasta que le pida que lo levante</translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation>Suelte su dedo</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Levante su dedo y colóquelo en el sensor nuevamente</translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation>Levante su dedo y hágalo nuevamente</translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation>Escaneo suspendido</translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation>Escaneé su huella dactilar</translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation>Coloque su huella dactilar en el sensor</translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation>Ajuste la posición para escanear su huella dactilar</translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation>Huella dactilar añadida</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation>Iris</translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation>Usa tu iris para desbloquear el dispositivo y realizar ajustes posteriormente.</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Este atajo entra en conflicto con [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>La contraseña no puede estar vacía</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>La contraseña debe tener al menos %1 caracteres</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>La contraseña no debe tener más de %1 caracteres</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>La contraseña debe contener letras latinas (sensible a mayúsculas), números o símbolos (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>No más de %1 caracteres palíndromos</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>No más de %1 caracteres monótonos</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>No más de %1 caracteres repetidos</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>La contraseña debe contener letras mayúsculas, minúsculas, números y símbolos (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>La contraseña no debe contener más de 4 caracteres palíndromos</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>No use palabras o combinaciones comunes como contraseña</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Por favor, cree una contraseña fuerte</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>No cumple con las reglas de contraseñas</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation>Al menos incluya caracteres como %1 entre letras minúsculas, mayúsculas, números y símbolos, y la contraseña no puede ser igual al nombre de usuario.</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistema</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Ventana</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Espacio de trabajo</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Herramientas de asistencia</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Personalizar</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Ninguno</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_et.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"et\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>muuda</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Lisa uus kasutaja</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Sisetage täielik nimi</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Sisselogimise seadistused</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Sisselogimine salasõna vaba</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Kustuta praegune kontogrupp</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Grupi seadistus</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Kontogrupeerimised</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>võetud</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Grupinimi</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Lisa grup</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Automaatne sisselogimine</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Kontoonandmed</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Kontonimi, täielik nimi, kontotüüp</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Kontonimi</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Täielik nimi</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Kontotüüp</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Sisetage au</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Olen lugenud ja nõustun</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Huvilause</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Järgmine</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Au on sisseteadetud</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Tänavaline stiil</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Dimensiooniline stiil</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Vastupidine stiil</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Loegeilt</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Salvesta</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Näitaja ja hoidamine</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Lülitage välja näitaja pärast</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Lukke näitaja pärast</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Arvuti hoidmise pärast</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Kui kinni on sulgitud</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Kui vajutatakse veebisõnastikku</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Vähemad akkusitõenäosused</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Vähemad akkusitõenäosused teate</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Automaatne hoidmine</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Automaatne hiberaat</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Vähemad akkusitõenäosused piir</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Akkusihaldus</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Näita järgmise kasutamise ja laadimise aega</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Maksimaalne tõenäosus</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Vähemad akkusitõenäosused tase</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Pikaühendamise vältimine</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth on lülitatud välja, nimeks on kuvatud &quot;%1&quot; </translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth on lülitatud, nimeks on kuvatud &quot;%1&quot; </translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Katkeita</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Ühenda</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Saada failid</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Uue nimi</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Eemalda laev</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Vali fail</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Redigeeri</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Luba muude Bluetooth-laevade leidmine seda laeva</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Bluetooth funktsiooni kasutamiseks vabandust sisse lülitada</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Lentimood</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Ühendatud</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Mitte ühendatud</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Alustamise seaded</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Sa võid klõpsada menüüdelt muuta vaikimisi alustamise kohti või tõlgendada pilti akna poole muuta taustapildi.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>grub käivitamise aikavahemik</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>teema</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Teema sisse lülitamisel näete teemaga taustapildi arvutiga käivitamisel</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Lahtise menüü kontroll</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Avamisel on vaja salasõna menüü redigeerimiseks</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Salasõna muutmine</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Lahtise menüü kontrolli salasõna muutmine</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Lahtise menüü autentimisega salasõna määramine</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Kasutajanimi :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Uus salasõna :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Pakutav</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Parool ei saa olla tühi</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Paroolid ei kattu</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Korda parooli:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Katkesta</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Väga jah</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Alusta animatsioon</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Regula logos animatsiooni suurus ekraanist pärast süsteemi käivitamist</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Luba allpool nimeklist laetud rakendustele käitumiseks kamera:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Pealind1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Pealind2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Pealind3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Pealind4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Pealind5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Pealind6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Pealind7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Pealind8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Pealind9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Pealind10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Skaneerimine ebaõnnestus</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Pealind on juba olemas</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Skaneeri muid lõike</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Tundmatu viga</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Skaneerimine on praktiliselt mõeldud</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Ei saa tunnustada</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Liiga kiiresti liikumine</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Lülitü valmis enne kui see tagasi tõlgitakse</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Kõrvalt defineeritud lause</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Puhasta oma lõhe või muuda lõhe positsiooni ja proovi uuesti</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Juba skaneeritud</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Muuda lõhe positsiooni, et täielikult skaneerida oma lause</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Lülitü valmis enne kui see tagasi tõlgitakse</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Lülitü valmis ja aseta lõh lõhe sensori</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Positsioonida oma lause ruutuni</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Lause on sissekirjutatud</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Positsioonida inimese lause</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Jäta kamerast vaba</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Lähuge kamerale</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Positsioonida mitte ühte lauset ruutul</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Vidutage, et kamerale lente on puhast</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Sissekirjuta kõrvalt, helvetlikult valguses, helvetlikult pöördvalguses või helvetlikult tõusuks</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Jäta oma lause kuulis</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Skaneerimise aeg on elnud</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Katkesta</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Tekstili värv</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Ikonide seaded</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Ikonide teema</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Teemipiktogrami määrata</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Viitakeel</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Teemaviikri määrata</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Kas oled kindel, et tahad selle kontoga lülituda?\n</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Kustuta kasutajakataloog</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Loege välja</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Kustuta</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Mine seadistustesse</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Loege välja</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Üldine</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Pöördepööri pööranemisaeg</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Pikk</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Põhj</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Pöördepööri suurus</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Hõlpsa</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Rapid</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Arvutisklahvid</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>test siit</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Põhjakeelesümbolitakson rääkimine</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Pühaklõpsamisaeg</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Pühaklõpsamise test</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Vasak pool režiim</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Suur suurus</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Põhj suurus</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>Rooti juhtimist ei saa</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Logi esmalt sisse sõltuvuse ID&apos;ga</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>PC-i informatsioon ei saa lugeda</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>Võtmeühendust ei ole</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>Sertifikaadi laadimine ebaõnnestus, rooti juhtimist ei saa saavutada</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>Sünete kontroll ebaõnnestus, rooti juhtimist ei saa saavutada</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Sõna poolt ja liite kasutajate kogemuse programmeerimisse</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>arendaja režiimi kahituse</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>Sõna poolt ja ettevaata rooti juhtimist</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Alusta uue käivitamise eelvaate seadmist, palun oota minutit</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>Uue käivitamise eelvaate seaded on valmis</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>Seaded rakendatakse uuesti käivitamisel süsteemis</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>Parool peab sisaldama numbreid ja tähti</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>Parool peaks olema 8 ja 64 tähemärki vahel</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Loo uus konto</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Kontotüüp</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Kasutajanimi</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Vajalik</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Kuupäev</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Valikuline</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Lõpeta</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Loo konto</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>Avatakuu ei ole veel üles laetud. Klõpsake või trüki ja lasege saada laetud pilt.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>saadaval</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/riausilėlių-politika-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/seriklinio-baduojo-politika-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Sutinkite ir panaikinkite seriklinį badų programą</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Data ir laiko nustatymas</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Data</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Metai</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Mėnuo</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Diena</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Laikas</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atšaukti</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Patvirtinti</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Šnekimas</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Vakaras</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Šiandien</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 valandas ankstesniu nei vietinis</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 valandas vėlesniu nei vietinis</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Tarpas</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Savaitė</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Savaitės pirmadienis</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Trumpas data</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Didesnis data</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Trumpas laikas</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Pikk ajavähe</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Rahakirjain</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Positivne rahakiri</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Negatiivne rahakiri</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Desimaalset numbrikirjain</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Numbridryhitusekiri</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Numbridryhitus</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Lehe suurus</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>On vaja autentimist muuta NTP-serveri</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Katkesta</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Salvesta</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Süsteemi seadistuste valikud on kättesaadavad Kontrollkeskuses.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>Vaheta WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>Vahetades WeChat, saate turvaliselt ja kiiret sisse logida oma %1 ID-i ja kohalike kontodele.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Vahetamata</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Vahetamine</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Vahetada</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Oled kindel, et tahad eemaldada WeChat-i？</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Vahetades WeChat-i, ei saa kasutada WeChat-i QR koodi skannimiseks %1 ID-i või kohalikku kontot sisse logida.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Lase mul mõista</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Kohaliku kontoga vahetamine</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Vahetades oma kohalikku kontot, saate kasutada järgmisi funktsioone:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>WeChat koodi skanna sisselogimissüsteem</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Kasuta WeChat-i, mis on vahetatud %1 ID-ga, et skanna koodi ja sisse logida oma kohalikku kontot.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Vaheta parool %1 ID-ga</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Unustatesid loole oma kohalik parool %1 identiteedi kaudu.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Kui soovite kasutada ülejäänud funktsioone, siis avage Kontrollkeskust - Kontod ja lülituge vastavate valikute ümber.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Klauduaastamine</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>Halda oma %1 identiteedi ja aastata inimeste andmed erinevates seadmetes.\n\nLogige sisse %1 identiteedis, et saada brauseri, aadressipoodi ja muude funktsioonide ja teenuste personfikseeritud omadused.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Logi %1 identiteedis sisse</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Avaastamine automaatselt</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Salvestage süsteemi seadistused ja inimeste andmed varasemalt klaudus, ja andmed aastata seadmetes.</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Süsteemi seadistused</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Viimane aastamiskell: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Tühjenda klaudusandmed</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>Oled kindel, et soovid tühjendada oma süsteemi seadistusi ja inimeste andmeid, mis on salvestatud klaudus?\n</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>Kui andmed on tühjendatud, siis nad ei saa tagasi hankida!\n</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Katkesta</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Tühjenda</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Aastamiskeskus</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Konto ja turvalisus</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Väljalogimine</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Laadige veebisest seadistuseks</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>Parooli kriptimine ebaõnnestus</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Vale parool, %1 võimalust jätkuvalt</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>Logimismäng on täis selle pärast. Võid uuesti parooli sätteda ja proovida uuesti.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Tegevus õnnestus</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>Kitlased Vene riik</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Muided alamadirimad</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>Funktsioon hetkel pole saadaval, palun aktiveeri süsteem</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Lisaks muiduid alamadriisidel ja seadetele, funktsioon on hetkel saadaval alamadrimises.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Vali vaikimisi programme avamiseks &apos;%1&apos;.</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation> lisada</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Ava töölaualine fail</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Programmid (*.desktop), </translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Kõik failid (*), </translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Rooti kõige</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Küsi rooti kõige</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Kui saad arendajamaoduse, saad saada rooti õigusi, kuid see võib ka rikkuda süsteemi täpsust, nende kasutamisel palun ole varjuline.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Lubatud</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Sisesta</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>Veebis</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Logi sisse UOS-i kontoga</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Välis</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Impordi sertifikaat</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Vali fail</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>Teie UOS-i ID on sisse logitud, klõpsake, et saada arendajamaoduse</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Palun logige esmalt sisse UOS-i kontoga ja jätkage</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1. Eksporti PC andmed</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Eksport</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3. Impordi sertifikaat</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Arenduse ja bugide hälveerimise valikud</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Süsteemi kirjutamise tase</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Valikute muutmine saavutab täpsemat kirjutamist, mis võib raskust põhjustada süsteemi toimimisega ja/või arendada säilitamispärasust.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Lülitumata</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Hälveerimine</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>Valiku muutmine võib töötada kuni minutit. Pärast edukat seadistuste seadmist palun uuesti käivitada uks.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Luba alla nähtud programme kõigile need failide ja kaustadele pääseda:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Dokumentid</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Töölaud</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Pildid</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Videod</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Muusika</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Allalaadimised</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>kaust</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Suurus</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Väline kirjeldus</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Väline tavaline</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Süsteemi seadmed</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Süsteemi põhjalikke salvestamise seadistused</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Põhjalik salvestamine väga lühikest bateriast</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Väga lühike bateriast seadistus</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Põhjalik salvestamine bateriast</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Uksse püüdavate seadistused</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Uksse püüdavateks on vaja parooli</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Uksse püüdavateks monitorit on vaja parooli</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Lülitamise seaded</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Kaldurituletis</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Aeg</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Toista</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Kord</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Kõik päevad</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Tööpäevad</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Mõnda aega</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Vähendada ekraani kuumust põhjusega</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>&apos;,&apos;</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Optimaalne tootlus</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Keskmine</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>Parim vaade</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Keel</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>võetud</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>üldendamine</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Muid keelte</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>lisage</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Ala</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>Ala</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>Operatsioonisüsteem ja rakendused võivad teil esitada kohalikku sisu, järgides teie riiki ja ala</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>Operatsioonisüsteem ja rakendused võivad asendada kuupäeva- ja kellaajastu vormindusi ala vormindustega</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Lisa keel</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Otsing</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Lõpeta</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Lisada</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Sisselogimismetod</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Parool, WeChat, meetri autentimine, turvaline võti</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Parool</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Muuda parooli</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Kehtivuse päevad</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Jätkuvalt</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Teise paberitõlukes 2011-%1 Deepin Kogukond</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Teise paberitõlukes 2019-%1 UnionTech Tarkvara Tehnoloogiate OÜ</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Auto äänepealikuvõtmine</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Sisestusvõimsus</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Sisestusvahemik</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Sisestus</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Äänestõttu sisestusvara ei leitud</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Minu pered</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Arvutinimi</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Selleks ei saa kasutada püsikohas tühikuid</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Süsteemnimi</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Versioon</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Väljend</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Vajalik</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Autoriseerimine</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Süsteemi installimisaja</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Kerneel</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Vaatamistõmbure</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Protsessor</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Muist</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Muid pered</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Näita Bluetooth pered, mis puuduvad nimega</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Praegune salasõna</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Vajaline</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Vaheline</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Mõistlik</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Vabasõnu</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Korda parooli</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Parooli aidatakenutus</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Valikuline</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Parool ei saa olla tühi</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Paroolid ei kattu</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>Aidatakenutus on kõigile kasutajatele nähtav. Parooli siia ei sisesta.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>Uus parool peaks erineda praegusest</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Muuda parooli</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Palunusteele avada parool</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>Parooli pikkus peaks olema vähemalt 8 tähemärki, ja parool peab sisaldama vähemalt 3 järgmistest: suurepikkuse tähte, väiksemaid tähte, numbrite ja sümbolite. See tüüp parooli on rohkem turvaline.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Parooli palunusteele avamine tühjendab salvestatud andmeid salvestuslõigis.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Tühista</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Lumine</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Automaatne</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Tumeline</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Tööskuju</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Plugini ala</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Vali, mis ikoonid näeb tõmbas</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Lülita välja</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Pööra jätkata</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Hibristoonumine</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Lülitage näitaja välja</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Näita katkiamise liidese</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Teedegi mitte midagi</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Näitaja ja hoida tühja</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Lülitage näitaja välja pärast</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Lukke näitaja pärast</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Arvuti hoidab tühja pärast</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Kui kinni on sulgenud</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Kui tõmba on vajutatud</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Kõrge effektiivsus</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Effektiivsuse tasakaal</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>CPU põhjal agressiivselt reguleerida CPU töötlemisastme</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Tasakaalustatud</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Süsteemi tõhususvahetaja</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Prioriseeri tootust, mis tõlgub suurema võrguõiguse ja temperatuuri suurendamisele</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Tootust ja bateriamaaildu toidumise põhjal automaatselt reguleeritava tasakaalustamine</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Prioriseeri bateriamaaildu, mida süsteem tootust hoidab vähendamiseks võrguõigust</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Minutit</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Tundit</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Päritult</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Privaatsuspoliitika</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Parool ei saa olla tühi</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Parool peab sisaldama vähemalt %1 tähet</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Parool peab olema mitte rohkem kui %1 tähet</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Parool peab sisaldama vaid ingliskeeli tähte (täpsete täpsetena), numbreid või erikahte (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Palun kasuta mitte enamat kui %1 palindromi tähed</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Palun kasuta mitte enamat kui %1 monotonseid tähed</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Palun kasuta mitte enamat kui %1 jällegi tähed</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Parool peab sisaldama suuremaid tähti, väiksemaid tähti, numbreid ja erikahte (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Paroolis ei pea olema enamat kui 4 palindromi tähed</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Vabatac on kasutada populaarseid sõnu ja kombinatsioone paroolina</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Lülituge välja stength password</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>See ei vasta paroolireegli</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Kontrollkeskus</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Aktiveeritud</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Vaata</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Aktiveeritav</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Aktiveeri</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Viirgumine</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Testeeriokses</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Testeering on lõppenud</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-kontrollkeskus</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Käsklikuklahesätted</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Käsklikuklahesätted muutusid</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Selles süsteemil on taustapilt lukustatud. Palun ühendusse vältuviisiga</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Otsing</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Vaikimisi formaadid</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Veebisünnipäev</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Pikkupäev</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Päevakäigunäitaja</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Pikkuaeg</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Päevakäigunäitaja (aeg)</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Müügi määratlus</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Numbrilane</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Päike suurus</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Katkesta</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Salvesta</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Otsi</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Sättige parool</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 tähed</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Korda parooli</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Katkesta</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Kinnita</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Paroolid ei kattu</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Tühjad ekraan</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>Esitlus</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Töötajate tühjad ekraan</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>Seaded</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>Vaba aeg</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minut</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minutit</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minutit</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minutit</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minutit</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 tund</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>puu</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Vajalik parool vahetamiseks</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Piltide esitlus salavaldik</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Süsteemi salavaldik</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Otsing</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Lisage sobitamisliides</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Nimi:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Vajalik</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Komentaar:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Sobitamisliides</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation> pole</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Lõpetada</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Lisada</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Sobitamisliidised</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Süsteemi sobitamisliides, sobitamisliides</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Otsi sobitamisliideseid</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>tehtud</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>muuta</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Klikige</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Loetleja lõpetamine</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>või</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Asenda</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Taaseta vana</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Lisage mõnda kaustaväli</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Väljastamise laid</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Vali, kas soovid laid kasutusele võtta</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Sisestamise laid</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Soome efekti</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Lülitamise alguse</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Lülitamise lõpus</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Logi välja</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Jätkake</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Ääni +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Hoiatus</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Põhjane aktsiiv</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Väljasta vahemälu ikooni töölaual</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Tühjenda käte</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Sisesta</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Väljastage</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Ülelaadimine laiendatud</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Ülelaadimine laiendatud eemaldatud</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Viga</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Režiim</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Väljastamise suurus</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Värvuvõtmine</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Kui ääni on suurem kui 100%, see võib vahetada ääni ja otsustada väljundseadmete paranduse</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Vasak</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Põhj</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Väljund</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Ääni väljundseadmet ei leitud</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Vasak-Põhja tasakaal</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Vasak ja põhja kanalid ühendada üksesse kanale</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Kui ääni tuleb automaatselt pöörduda, kui praegusel ääni seadmel ühendustestakse</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Ääne</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Tõenõud</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Müuse</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Uuenda</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Tahvelvahetaja</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Lisakäringid</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Aja automaatne sünkroonimine</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Ntp-server</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Süsteemi kuupäev ja kellaaeg</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Määrata oma</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Seaded</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Serveri aadress</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Täpisesugune</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>Ntp serveri aadress ei saa olla tühi</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation> kasuta 24-tuntmustrit</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>süsteemi aega-zon</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>aega-zonide loend</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>alates</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>kuni</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Salvesta näidet seadistused</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Seaded tagastuvad %1 s juues.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Tagasta</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Salvesta</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Lisage aega-zon</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Määrake aega-zon praeguse asukohta põhjal</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Aega-zon:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Lähim linna:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Tühista</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Salvesta</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Kasutage käsituskraadi siia, kui ühendate selle</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Seadista siin ühendades käsituskraadi</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Üldised seadistused</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Käsituskraadi</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Viikur kiirus</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Hästi</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Kiiresti</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Pöörake käsituskraadi välja, kui vajalik</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Klikkeeri liikumiseks</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Tavaline liikumine</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Kolm-püha teadet</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Neljapühiga teadet</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Värvine taustapilti</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Mõista muuta piltid</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>lahutusviis</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Automaatne pildi muutmine</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>soovitamata</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 sekundit</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minut</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minutit</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minutit</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minutit</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minutit</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>sisselogimine</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>keskmine</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Läbipaistva taustapilt</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 tundit</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>kinni lahti</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Määrake lukustakson</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Määrake toa</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Tahvel ja eetikud</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Aken seadistused</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Aken rohkem külgi</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Ei kui</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Väikne</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Suur</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Luba akna liikumisel透射效果</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Akna vähendamise mõju</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Mõõtumine</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Magiline lampp</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Värvivõimsus</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Alati</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Kõrge</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Liikumisaadressid</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Näita liikumisel</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Jäta nähtavaks</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Kompaktne näitamine</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Kui see on lubatud, siis aknas näeb vähem sisu.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Pealkiri pikkus</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Ainult sobib rakenduse akna pealkirjadele, mis joonistab akna juhtur.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Üllatavalt väikse</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Traditsiooniline hiina keel (Hiina Hongkong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Traditsiooniline hiina keel (Hiina Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan Hiina</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>Kasutajanimi peab olema 3 kuni 32 tähemärki pikk</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>Esimene täht peab olema täht või number</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>Teie kasutajanimi ei tohi sisaldada ainult numbriteid</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>Kasutajanimi on juba kasutuses muudes kasutajate kontodest</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Täielik nimi on liiga pikk</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>Täielik nimi on juba kasutuses muudes kasutajate kontodest</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Vale parool</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Standard User</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Administrator</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Töötav</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Vahekesed on edukalt eemaldatud domaani serverist</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>Vahekesed edukalt juhustatakse domaani serveri</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>Vahekesed ei õnnestunud eemaldada domaani serverist</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>Vahekesed ei õnnestunud juhustada domaani serveri</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>AD domaani seaded</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>Parool ei kattu</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Dimensionaalne</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Plaanikaal</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>See pikaavaldus ületab [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Parool ei saa olla tühi</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Parool peab sisaldama vähemalt %1 tähet</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Parool peab olema mitte enamat %1 tähet</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Parool võib sisaldada ainult inglise tähed (suundeline täpistus), numbreid või erikaalu tähed (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Palun võidelda %1 palindromi tähed</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Palun võidelda %1 monotoonseid tähed</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Palun võidelda %1 korduvaid tähed</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Parool peab sisaldama suuremaid tähemäär, väiksemaid tähemäär, numbreid ja erikaalu tähemäär (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Paroolis ei tohi olla enamat kui 4 palindromi tähet</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Vabatac ei kasuta üldisi sõnu ja kombinatsioone paroolina</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Loo vabalt parool</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>See ei vasta paroolireeglile</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Süsteem</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Aken</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Tööruum</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Abistavad välineid</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Kohandatud</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation> pole</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_eu.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"eu\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\">Pertsonalizatua</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">Bat ere ez</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\">Sistema</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">Bat ere ez</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Txinera tradizionala (Hong Kong txinera)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Txinera tradizionala (Taiwan txinera)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan Txina</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Lasterbide honek gatazka du honekin: [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistema</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Leihoa</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Lan-eremua</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Laguntza-tresnak</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Pertsonalizatua</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Bat ere ez</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_fa.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"fa\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>متصل شده</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>متصل نیست</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>انصراف</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>برای تغییر سرور NTP احراز هویت لازم است</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>برای تنظیم منطقه زمانی سیستم احراز هویت لازم است</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>نمایش</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>صدای ورودی</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>سطح ورودی</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>شخصی سازی</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>شخصی</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>جایگاه رمزعبور نمی تواند خالی باشد.</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>رمز عبور  که کمتر از  %1 نویسه نباید باشد</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>مرکز کنترل</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>نما</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>صدا</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>جلوه های صدا</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>راه اندازی</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>خاموش شدن</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>خارج شدن از حساب کاربری</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>بیدار شدن</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>صدا +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>اعلان</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>باتری کم</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>آیکون برنامه را از لانچر به دسکتاپ بفرست</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>خالی کردن زباله دان</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>متصل شده به برق</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>از برق کشیده شد</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>دستگاه قابل جابجایی وصل شد</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>دستگاه قابل جابجایی جدا شد</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>خطا</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>حالت</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>صدای خروجی</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>چپ</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>راست</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>بازگشت</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>ذخیره</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>چینی سنتی (چینی هنگ کنگ)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>چینی سنتی (چینی تایوان)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>تایوان چین</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>این میانبر با [%1] تداخل دارد</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>سیستم</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>پنجره</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>فضای کاری</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>ابزارهای کمکی</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>سفارشی</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>هیچ</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_fi.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"fi\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>muokkaa</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Lisää uusi käyttäjä</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Aseta koko nimi</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Kirjautumisen asetukset</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Kirjaudu ilman salasanaa</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Poista tili</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Ryhmän asetukset</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Tiliryhmät</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>valmis</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Ryhmän nimi</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Lisää ryhmä</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Automaattinen kirjautuminen</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Tilin tiedot</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Tilin nimi, koko nimi, tilin tyyppi</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Tilin nimi</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Tilin koko nimi</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Tilin tyyppi</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Nimesi on liian pitkä</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>Ryhmien nimissä saa olla enintään 32 merkkiä</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>Ryhmien nimissä ei voi olla pelkkiä numeroita</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>Käytä vain kirjaimia, numeroita, alaviivoja ja väliviivoja ja alussa tulee olla kirjain</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>Ryhmän nimeä on käytetty</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>kirjautuminen nopea, automaattinen, ilman salasanaa</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>Kumoa</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>Uudestaan</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>Leikkaa</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>Kopioi</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>Liitä</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>Valitse kaikki</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>Nopea kirjautuminen</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation>Käyttäjä</translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation>Käyttäjän hallinta</translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation>Muut käyttäjät</translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Kasvojen tunnistus</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Olen lukenut ja hyväksyn</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Vastuuvapauslauseke</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Seuraava</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Kasvot tunnistettu</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>Kasvojen tunnistus epäonnistui</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Valmis</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Tunnista uudelleen</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation>Kasvojentunnistus ei tue liikkeen havainnointia ja siihen voi liittyä riskejä.\nVarmista onnistunut sisäänpääsy:\n1. Pidä kasvot selvästi näkyvissä (ei hattua, aurinkolaseja, maskia jne.).\n2. Varmista riittävä valaistus ja vältä suoraa auringonvaloa.</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>&quot;Biometrinen todennus&quot; on UnionTech Software Technology Co., Ltd:n kehittämä toiminto käyttäjän identiteetin tunnistamiseen. &quot;Biometrisen todentamisen&quot; avulla kerättyjä biometrisiä tietoja verrataan tietokoneeseen tallennettuihin tietoihin ja varmistetaan näiden tietojen perusteella.\nHuomaa, että UnionTech Co.Ltd. ei kerää tai käytä biometrisiä tietojasi, jotka tallennetaan paikallisesti tietokoneellesi. Otamalla biometrinen todennus käyttöön vain henkilökohtaisella tietokoneella ja käytät omia biometrisiä tietojasi siihen liittyvissä toiminnoissa. Jos tietokoneessa on  muiden ihmisten biometrisiä tietoja, poista ne laitteeltasi, muuten otat niistä aiheutuvan kirjautumisriskin.\nUnionTech Software Technology Co., Ltd on sitoutunut parantamaan biometrisen todennuksen turvallisuutta, tarkkuutta ja vakautta. Teknisten laitteiden ja muista tekijöistä ei kuitenkaan ole takeita, että läpäisit aina biometrisen todennuksen. Älä siksi pidä biometristä todennusta ainoana tapana kirjautua UOS:ään. Jos sinulla on kysyttävää tai ehdotuksia biometriseen todennukseen, voit antaa palautetta UOS:n &quot;Palvelut ja tuki&quot; -kohdassa.</translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Valmis</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Tunnista sormi</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Aseta sormi lukijaan ja liikuta sitä alhaalta ylöspäin. Kun tehty niin nosta sormesi.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Olen lukenut ja hyväksyn</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Vastuuvapauslauseke</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Seuraava</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Tunnista uudelleen</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>&quot;Biometrinen todennus&quot; on UnionTech Software Technology Co., Ltd:n kehittämä toiminto käyttäjän identiteetin tunnistamiseen. &quot;Biometrisen todentamisen&quot; avulla kerättyjä biometrisiä tietoja verrataan tietokoneeseen tallennettuihin tietoihin ja varmistetaan näiden tietojen perusteella.\nHuomaa, että UnionTech Co.Ltd. ei kerää tai käytä biometrisiä tietojasi, jotka tallennetaan paikallisesti tietokoneellesi. Otamalla biometrinen todennus käyttöön vain henkilökohtaisella tietokoneella ja käytät omia biometrisiä tietojasi siihen liittyvissä toiminnoissa. Jos tietokoneessa on  muiden ihmisten biometrisiä tietoja, poista ne laitteeltasi, muuten otat niistä aiheutuvan kirjautumisriskin.\nUnionTech Software Technology Co., Ltd on sitoutunut parantamaan biometrisen todennuksen turvallisuutta, tarkkuutta ja vakautta. Teknisten laitteiden ja muista tekijöistä ei kuitenkaan ole takeita, että läpäisit aina biometrisen todennuksen. Älä siksi pidä biometristä todennusta ainoana tapana kirjautua UOS:ään. Jos sinulla on kysyttävää tai ehdotuksia biometriseen todennukseen, voit antaa palautetta UOS:n &quot;Palvelut ja tuki&quot; -kohdassa.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>Iiriksen tunnistus</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Olen lukenut ja hyväksyn</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Vastuuvapauslauseke</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Seuraava</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Valmis</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Tunnista uudelleen</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>Iiris tunnistettu</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>Iiriksen tunnistus epäonnistui</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>&quot;Biometrinen todennus&quot; on UnionTech Software Technology Co., Ltd:n kehittämä toiminto käyttäjän identiteetin tunnistamiseen. &quot;Biometrisen todentamisen&quot; avulla kerättyjä biometrisiä tietoja verrataan tietokoneeseen tallennettuihin tietoihin ja varmistetaan näiden tietojen perusteella.\nHuomaa, että UnionTech Co.Ltd. ei kerää tai käytä biometrisiä tietojasi, jotka tallennetaan paikallisesti tietokoneellesi. Otamalla biometrinen todennus käyttöön vain henkilökohtaisella tietokoneella ja käytät omia biometrisiä tietojasi siihen liittyvissä toiminnoissa. Jos tietokoneessa on  muiden ihmisten biometrisiä tietoja, poista ne laitteeltasi, muuten otat niistä aiheutuvan kirjautumisriskin.\nUnionTech Software Technology Co., Ltd on sitoutunut parantamaan biometrisen todennuksen turvallisuutta, tarkkuutta ja vakautta. Teknisten laitteiden ja muista tekijöistä ei kuitenkaan ole takeita, että läpäisit aina biometrisen todennuksen. Älä siksi pidä biometristä todennusta ainoana tapana kirjautua UOS:ään. Jos sinulla on kysyttävää tai ehdotuksia biometriseen todennukseen, voit antaa palautetta UOS:n &quot;Palvelut ja tuki&quot; -kohdassa.</translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation>Varmista, että molemmat silmät ovat laitteen lukualueella</translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Biometrinen todennus</translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Biometrinen todennus</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Kasvot</translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation>Enintään 5 kasvotietoa voidaan antaa</translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Sormenjälki</translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation>Käyttäjän tunnistaminen sormenjälkien avulla</translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation>Iiris</translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation>Tunnistaminen iiriksen skannauksella</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation>Käytä vain kirjaimia, numeroita ja alaviivoja, enintään 15 merkkiä</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation>Käytä vain kirjaimia, numeroita ja alaviivoja</translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation>Enintään 15 merkkiä</translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation>Nimi on jo olemassa</translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation>Lisää uusi %1 ...</translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation>Nimeä ei voi jättää tyhjäksi</translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>&quot;Automaattinen kirjautuminen&quot; voidaan käyttää vain yhdellä tilillä. Poista se tililtä &quot;%1&quot; ensin.</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>Selvä</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>Kuvat</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>Ihmiset</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Eläimet</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Maisemat</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>Kuvitus</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>Hymiöt</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>mukautettu</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Sarjakuva tyyliin</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Ulottuvuus tyyliin</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Taso tyyliin</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Tallenna</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Näyttö ja valmiustila</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Sammuta näyttö</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Lukitaan näyttö</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Tietokone valmiustilaan</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Kun kansi on kiinni</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Kun virtapainiketta painetaan</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Akku vähissä</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Alhaisen varauksen ilmoitus</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Autom. valmiustila</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Autom. lepotila</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Akun alhainen varaus</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Akun hallinta</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Näytä jäljellä oleva latausaika</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Täysi varaus</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Alhainen akun varaustaso</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Pois</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation>Bluetooth asetukset, laitteet</translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth on pois päällä ja nimi näkyy muodossa &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth on päällä ja nimi näkyy muodossa &quot;%1&quot;</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Katkaise</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Yhdistä</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Lähetä tiedostot</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Nimeä</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Poista laite</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Valitse tiedosto</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Muokkaa</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Salli Bluetoothin löytää tämä laite</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Jos haluat käyttää Bluetoothia, sammuta se</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Lentokonetila</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>Bluetooth-nimi ei saa ylittää 64 merkkiä</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Yhdistetty</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Ei yhteyttä</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Käynnistymisen asetukset</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Voit vaihtaa käynnistyskohteita painamalla valikkosta tai vaihtaa taustakuvan vetämällä ja pudottamalla ikkunaan.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>grub käynnistyksen viive</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>teema</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Kun olet vaihtanut teeman, näet teeman taustan kun käynnistät tietokoneen</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Käynnistysvalikon vahvistus</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Valikon avaamisen jälkeen, muokkaaminen vaatii salasanan.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Vaihda salasana</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Vaihda käynnistysvalikon salasana</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Aseta käynnistysvalikon salasana</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Käyttäjänimi</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Uusi salasana :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Vaadittu</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Salasana ei voi olla tyhjä</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Salasanat eivät täsmää</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Toista salasana:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Varma</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Käynnistysanimaatio</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Säädä logon kokoa käynnistymisen yhteydessä</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Salli sovellusten käyttää kameraa:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Sormenjälki1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Sormenjälki2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Sormenjälki3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Sormenjälki4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Sormenjälki5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Sormenjälki6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Sormenjälki7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Sormenjälki8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Sormenjälki9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Sormenjälki10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Skannaus epäonnistui</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Sormenjälki on jo olemassa</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Tarkista muut sormet</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Tuntematon virhe</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Skannaus keskeytetty</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>ei voi tunnistaa</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Pyyhkäisit liian nopeasti</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Olet liian nopea, älä nosta sormea ennen kuin pyydetään</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Epäselvä sormenjälki</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Puhdista sormesi tai säädä sormen asentoa ja yritä uudelleen</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Jo skannattu</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Säädä sormen asentoa, jotta sormenjälkesi voidaan skannata</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Sormi liikkui liian nopeasti. Älä nosta, ennen kuin pyydetään</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Nosta sormesi ja aseta se lukijaan uudelleen</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Aseta kasvosi kehyksen sisään</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Kasvot tunnistettu</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Aseta ihmisen kasvot</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Pysy kauempana kamerasta</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Siirry lähemmäs kameraa</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Ei useita kasvoja kehyksen sisään</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Varmista, että kameran linssi on puhdas</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Älä tunnistaudu pimeässä, liian kirkkaassa tai takavalaistussa ympäristössä</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Pidä kasvosi paljaana</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Skannaus aikakatkaistiin</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>Kamera varattu!</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Korostusväri</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Kuvakkeiden asetukset</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Kuvake teema</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Mukauta teeman kuvakkeita</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Kohdistin</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Mukauta teeman kohdistinta</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Haluatko varmasti poistaa tilin?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Poista käyttätilin hakemisto</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Poista</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Siirry asetuksiin</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Yleinen</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Toiston viive</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Lyhyt</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Pitkä</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Toistonopeus</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Hidas</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Nopea</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Numeronäppäimistö</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>Testaa täällä</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Numerolukon kehote</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Napautuksen nopeus</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Napautuksen testi</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Vasenkätiselle</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>Näppäimistö käyttöön</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>Yleinen</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>Vieritysnopeus</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation>Käynnistysvalikko</translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation>Hallitse käynnistysvalikkoa</translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation>Kehittäjän root oikeuksien hallinta</translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation>Kehittäjäasetukset</translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation>Kehittäjän vianetsinnän valinnat</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Suuri</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Pieni</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>Root oikeudet epäonnistui</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Kirjaudu ensin sinun Union id:llä</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>Tietokoneesi tietoja ei voi lukea</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>Ei verkkoa</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>Varmenteen lataaminen epäonnistui, root oikeuksia ei saatu</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>Varmenteen varmennus epäonnistui, root oikeuksia ei saatu</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Hyväksy ja liity käyttökokemus ohjelmaan</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>Kehittäjätilan vastuuvapauslauseke</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>Hyväksy ja pyydä root-oikeuksia</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Aloita uuden käynnistysanimaation asetus, odota hetki</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>Uuden animaation asetus on valmis</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>Asetukset otetaan käyttöön tietokoneen käynnistämisen yhteydessä</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation>Käynnistä</translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation>Hylkää</translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation>Käynnistä uudelleen, jotta Solid System Read-Only Protection -asetukset voidaan ottaa käyttöön.</translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>Salasanan tulee sisältää numeroita ja kirjaimia</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>Salasanan tulee olla 8–64 merkkiä pitkä</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Luo uusi käyttäjätili</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Tilin tyyppi</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Käyttäjänimi</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Vaadittu</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Koko nimi</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Valinnainen</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Luo käyttäjätili</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>Käyttäjänimi enintään 32 merkkiä</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>Käyttäjänimi voi sisältää vain kirjaimia, numeroita, erikoismerkit - ja _</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>Koko nimi enintään 32 merkkiä</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>Koko nimi ei saa sisältää kaksoispisteitä</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation>pieni</translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation>suuri</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>Et ole vielä valinnut avataria. Voit ladata kuvan vetämällä ja pudottamalla.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>Ladattu tiedostotyyppi on virheellinen, lataa se uudelleen.</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>saatavilla</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Hyväksy ja liity käyttökokemus ohjelmaan</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation>&lt;p&gt;Henkilötietojen suoja on sinulle tärkeää. Siksi meillä on tietosuojakäytäntö, joka kertoo miten keräämme, käytämme, jaamme, siirrämme, julkisesti luovutamme ja tallennamme tietojasi. &lt;/p&gt;&lt;p&gt; Voit katsoa uusinta tietosuojakäytäntöämme &lt;a href=&quot;%1&quot;&gt;tästä&lt;/a&gt; tai verkossa osoitteessa &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;. Lue huolellisesti ja ymmärrä täysin asiakkaidemme yksityisyyttä koskevat käytännöt. Jos sinulla on kysyttävää, ota meihin yhteyttä osoitteessa: %2&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Liittymällä kokemusohjelmaan annat meille luvan kerätä ja käyttää tietokoneen, käyttöjärjestelmän ja sovellusten tietoja. Jos kieltäydyt edellä mainitusta tietojen keräämisestä ja käytöstä, älä liity kokemusohjelmaan. Lisätietoja Deepinin tietosuojakäytännössä (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Liittymällä kokemusohjelmaan annat meille luvan kerätä ja käyttää tietokoneen, käyttöjärjestelmän ja sovellusten tietoja. Jos kieltäydyt edellä mainitusta tietojen keräämisestä ja käytöstä, älä liity kokemusohjelmaan. Lisätietoja Deepinin tietosuojakäytännössä &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Päivämäärän asetukset</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Päivämäärä</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Vuosi</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Kuukausi</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Päivä</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Aika</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Vahvista</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation>Aika ja päivämäärä</translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation>Aika ja aikavyöhyke, maa-asetukset</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation>Kieli ja maa</translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation>Tietokoneen kieli, maa-asetukset</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Huomenna</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Eilen</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Tänään</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 tuntia edellä paikallista aikaa</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 tuntia paikallista myöhemmin</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Välilyönti</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Viikko</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Viikon ensimmäinen päivä</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Lyhyt päivämäärä</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Pitkä päivämäärä</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Lyhyt aika</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Pitkä aika</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Valuutan symboli</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Positiivinen valuutta</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Negatiivinen valuutta</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Desimaalin merkki</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Numeroiden ryhmäsymboli</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Numeroiden ryhmittely</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Sivun koko</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>Esimerkki</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>NTP-palvelimen muuttamiseen tarvitaan tunnistautuminen</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Aikavyöhykkeen asettaminen vaatii tunnistautumisen</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Tallenna</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Ohjauspaneelissa asetukset järjestelmälle.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>WeChat sidonta</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>WeChat sitomisella, voit kirjautua turvallisesti %1 id:llä myös paikalliselle tietokoneelle.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Linkitys poistettu</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Pura</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Linkki</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Haluatko varmasti purkaa WeChatin?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Purkamisen jälkeen et voi käyttää WeChat QR-koodia kirjautumiseen %1 id:llä tai paikalliselle tietokoneelle.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Harkitsen asiaa</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Paikallisen tilin sidonta</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Kun olet sitonut paikallisen tilisi, voit käyttää seuraavia toimintoja:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>WeChat Scan Code kirjautuminen</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Käytä WeChatia, joka on sidottu %1 id:lle, skannaa koodi ja kirjaudu sinun paikalliselle tietokoneelle.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Palauta salasana %1 id:llä</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Palauta paikallinen salasanasi %1 id:llä, jos unohdat sen.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Jos haluat käyttää yllä mainittuja ominaisuuksia, siirry kohtaan Ohjauspaneeli - Tilit ja ota vastaavat asetukset käyttöön.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Pilvisynkronointi</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>Hallinnoi sinun %1 id:tä ja synkronoi omat tietosi eri laitteiden välillä. Kirjaudu sisään %1 id:llä ja saat mukautetun selaimen, sovelluskaupan, tuen ja muita palveluita.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Kirjaudu sisään %1 id:llä</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Autom. synkronointi</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Tallenna asetukset ja omat tiedot turvallisesti pilveen ja pidä ne synkronoituna eri laitteiden välillä.</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Asetukset</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Tarkistusaika: %1 </translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Tyhjennä tiedot pilvestä</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>Haluatko varmasti tyhjentää tietokoneen asetukset ja pilveen tallennetut henkilökohtaiset tiedot?</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>Kun tiedot on tyhjennetty, niitä ei voi palauttaa!</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Tyhjennä</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Synkronointipalvelu</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Tili ja turvallisuus</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Kirjaudu ulos</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Siirry Internet asetuksiin</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>Lempinimen on oltava 1~32 merkkiä pitkä</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>salasanan kryptaus epäonnistui</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Väärä salasana, %1 arvausta jäljellä</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>Kirjautumisvirheiden raja on täynnä tältä päivältä. Voit yrittää palauttaa salasanasi ja yrittää uudelleen.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Tehtävä onnistui</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>Lempinimeä voi muuttaa vain kerran päivässä</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation>deepin tunnus</translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation>UOS tunnus</translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation>Pilvipalvelut</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>Kiinassa</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Muut maat</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>Ominaisuus ei ole tällä hetkellä käytettävissä, aktivoi tietokone ensin</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Paikallisten lakien ja määräysten mukaisesti tämä ei ole saatavilla sinun maassasi.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation>Oletussovellus</translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation>Aseta oletussovellus tiedostojen avaamiseen</translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation>Nettisivu</translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation>Sähköposti</translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation>Teksti</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Musiikki</translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation>Videot</translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation>Kuvat</translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation>Pääte</translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Valitse oletusohjelma avataksesi &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>lisää</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Open desktop-tiedosto</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Sovellukset (*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Kaikki tiedostot (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Root oikeudet</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Pyydä root oikeuksia</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Kun olet siirtynyt kehittäjätilaan, voit hankkia root oikeudet, mutta se voi myös vahingoittaa järjestelmää, joten käytä oikeuksia huolellisesti.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Sallittu</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>OK</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>Verkossa</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Kirjaudu UOS id:llä</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Poissa</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Tuo varmenne</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Valitse tiedosto</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>Sinun UOS id on kirjautunut sisään, paina siirtyäksesi kehittäjätilaan</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Kirjaudu ensin Union id:llä ja jatka</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1. Vie tietokoneen tiedot</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Vie</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3. Tuo varmenne</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Kehitys- ja vianetsinnän valinnat</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Lokin kirjaustaso</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Asetusten muuttaminen johtaa tarkempaan lokiin, joka hieman heikentää suorituskykyä ja/tai vie enemmän tallennustilaa.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Pois</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Vianetsintä</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>Asetuksen muuttaminen voi kestää minuutin. Kun olet saanut ilmoituksen valmistumisesta, käynnistä tietokone uudelleen, jotta asetus tulee voimaan.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>Jos haluat asentaa ja käyttää allekirjoittamattomia sovelluksia, siirry &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt;Turvakeskukseen &lt;/a&gt; ja muuta asetuksia.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation>Jos haluat asentaa ja käyttää allekirjoittamattomia sovelluksia, siirry Turvakeskukseen ja muuta asetuksia.</translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation>Olet siirtynyt kehittäjätilaan</translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>OK</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation>2. siirry %1 ja lataa paikallinen &quot;offline&quot;-varmenne.</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation>Ominaisuus ei ole käytettävissä. Aktivoi ensin tietokoneesi.</translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation>Solid System Read-Only Protection</translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation>Suojauksen poistaminen käytöstä avaa järjestelmän hakemistoja. Tämä voi aiheuttaa suuren vaurioriskin järjestelmälle.</translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation>Ota suojaus käyttöön ja lukitse järjestelmän hakemistot se varmistaa optimaalisen vakauden.</translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation>Bluetooth ja laitteet</translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Vastuuvapauslauseke</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>Hyväksyn</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Näyttö</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation>Kirkkaus, resoluutio, skaalaus</translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation>100%</translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation>125%</translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation>150%</translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation>175%</translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation>200%</translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation>225%</translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation>250%</translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation>275%</translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation>300%</translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation>Kahdenna</translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation>Laajenna</translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation>Oletus</translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation>Sovita</translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation>Venytä</translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation>Keskitetty</translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation>Vain %1</translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation>Usean näytön asetuksia</translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation>Tunnista</translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation>Näytön asettelu tulee voimaan %1s kuluttua muutosten jälkeen</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>Tila</translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation>Päänäyttö</translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation>Näyttö ja asettelu</translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation>Kirkkaus</translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation>Resoluutio</translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation>Muuta työpöydän kokoa</translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation>Virkistystaajuus</translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation>Kääntö</translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation>Vakio</translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation>90°</translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation>180°</translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation>270°</translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation>Näyttö tukee vain 100% skaalausta</translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation>Silmien mukavuus</translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation>Silmien mukavuus käyttöön</translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation>Säädä näyttö lämpimämpiin väreihin vähentäen sinistä valoa</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Aika</translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation>Koko päivä</translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation>Auringonlaskusta nousuun</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Mukautettu aika</translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation>alkaen</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>-</translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation>Värilämpötila</translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation>%1x%2 (suositus)</translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation>%1x%2</translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation>%1Hz (suositus)</translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation>%1Hz</translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation>Skaalaus</translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation>Työpöytä ja tehtäväpalkki</translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation>Organisointi, tehtäväpalkki, laajennusalueen asetukset</translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation>Telakka</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>Tila</translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation>Klassinen</translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation>Keskitetty</translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation>Telakan koko</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Pieni</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Suuri</translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation>Paikka ruudulla</translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation>Ylös</translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation>Alas</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Vasen</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Oikea</translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation>Asema</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Näkyvissä</translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation>Piilotettu</translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation>Älykäs piilotus</translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation>Useita näyttöjä</translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation>Aseta tehtäväpalkin paikka näytöllä</translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation>Päänäytössä</translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation>Näytöllä, jossa kursori on</translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Laajennusalue</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Valitse telakan kuvakkeet</translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation>Lukitse telakka</translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation>Yhdistä sovelluskuvakkeita</translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Salli sovellusten käyttää näitä tiedostoja ja kansioita:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Asiakirjat</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Työpöytä</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Kuvat</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Videot</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Musiikki</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Lataukset</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>kansio</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Koko</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Vakio</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Tasaleveä</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Virrankäyttö</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Virransäästön asetukset</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Automaattinen virransäästö alhaisella akulla</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Akun alhainen varaus</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Automaattinen virransäästö akkutilassa</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Heräämisen asetukset</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Tietokoneen herättäminen edellyttää salasanaa</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Näytön herääminen edellyttää salasanaa</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Sammutamisen asetukset</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Ajastettu sammutus</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Aika</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Toista</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Kerran</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Joka päivä</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Työpäivinä</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Mukautettu aika</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Vähennä näytön kirkkautta virransäästössä</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation>Kolmella sormella ylös</translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation>Kolmella sormella alas</translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation>Kolmella sormella vasemmalle</translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation>Kolmella sormella oikealle</translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation>Kolmen sormen painallus</translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation>Neljällä sormella ylös</translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation>Neljällä sormella alas</translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation>Neljällä sormella vasemmalle</translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation>Neljällä sormella oikealle</translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation>Neljän sormen painallus</translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Optimaalinen suoritusteho</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Tasapaino</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>Visuaalisesti paras</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>Poista käytöstä kaikki tehosteet järjestelmän tehokkaan suorituskyvyn takaamiseksi.</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>Rajoita joitain tehosteita saadaksesi visuaalista sisältöä, säilyttäen samalla järjestelmän sujuvan suorituskyvyn.</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>Tehoa riittää, ota kaikki tehosteet käyttöön parhaalla visuaalisella käyttökokemuksella.</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation>Näppäimistö</translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation>Lisäasetukset, näppäimistö, pikanäppäimet</translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Yleinen</translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Kieli</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>valmis</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>muokkaa</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Muut kielet</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>lisää</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Maa</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>Alue</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>Käyttöjärjestelmä ja sovellukset voivat tarjota sinulle paikallista sisältöä maasi ja alueesi perusteella</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>Käyttöjärjestelmä ja sovellukset voivat asettaa päivämäärän alueellisten muotojen perusteella</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Maa-asetus</translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Lisää kieli</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Haku</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Lisää</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Kirjautumistapa</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Salasana, wechat, sormrnjälki, todennus, suojausavain</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Salasana</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Vaihda salasana</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Voimassaolo</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Aina</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Palauta salasana</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Deepin Community</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Automaattinen melunvaimennus</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Sisääntulon voimakkuus</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Tulotaso</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Sisääntulo</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Ei löytynyt äänilaitetta</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Sisääntulo</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Hiiri sekä kosketuslevy</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation>Yleinen, hiiri, kosketuslevy</translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Yleinen</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Hiiri</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Kosketuslevy</translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation>Hiiri</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Osoittimen nopeus</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Hidas</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Nopea</translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation>Osoittimen koko</translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation>Hiiren kiihtyvyys</translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation>Poista kosketuslevy kun hiiri on kytketty</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Tasainen vieritys</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Pieni</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Keskitaso</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Suuri</translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation>Kookas</translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation>Sovellukset vaativat kirjautumisen ulos tai tietokoneen käynnistämisen tullakseen voimaan</translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Omat laitteet</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Tietokoneen nimi</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Se ei voi alkaa tai päättyä väliviivoihin</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Käyttöjärjestelmä</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Versio</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Painos</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Tyyppi</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Valtuutus</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Asennuspäivä</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Kernel</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Grafiikka</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Prosessori</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Muisti</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>1~63 merkkiä</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation>Älä häiritse, sovellusten ilmoitukset</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Ilmoitus</translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation>Älä häiritse -  asetukset</translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation>Ilmoituksia ei näytetä työpöydällä ja äänet äänettömälle, mutta voit tarkastella kaikkia viestejä ilmoitusalueella.</translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation>Älä häiritse käyttöön</translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation>Kun näyttö on lukittu</translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation>Työpöydällä näkyvien ilmoitusten määrä</translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation>Sovellusten ilmoitukset</translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation>Salli ilmoitukset</translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation>Näytä ilmoituksia työpöydällä tai näytä lukemattomat ilmoitusalueella</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Työpöytä</translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation>Lukitse näyttö</translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation>Ilmoituskeskus</translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation>Näytä viestin esikatselu</translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation>Toista ääni</translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Muut laitteet</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Näytä Bluetooth-laitteet ilman nimiä</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Nykyinen salasana</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Vaadittu</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Heikko</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Hyvä</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Vahva</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Toista salasana</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Salasana vihje</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Valinnainen</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Salasana ei voi olla tyhjä</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Salasanat eivät täsmää</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>Vihje näkyy kaikille tietokoneen käyttäjille. Älä lisää salasanaa tähän.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>Uusi salasana</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>Uusi salasana ei saa olla sama kuin nykyinen</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation>Salasana ei voi olla sama kuin käyttäjätunnus.</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Vaihda salasana</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Palauta salasana</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>Salasanan pituus vähintään 8 merkkiä ja sisältää vähintään 3 seuraavista: isot kirjaimet, pienet kirjaimet, numerot ja symbolit. Tämän kaltainen salasana on turvallisempi.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Salasanan palautus tyhjentää avaimeen tallennetut tiedot.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personointi</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Vaalea</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Autom.</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Tumma</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation>Poimintapalvelu ei ole saatavilla</translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation>Virheellinen väriformaatti: %1</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation>Teema</translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation>Ulkoasu</translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation>Tehosteet</translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation>Personoi taustakuva ja näytönsäästäjä</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Näytönsäästäjä</translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation>Värit ja kuvakkeet</translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation>Säädä korostusvärejä ja teeman kuvakkeita</translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation>Kirjasin ja koko</translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation>Muuta kirjasinta ja kokoa</translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation>Taustakuva</translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation>Valitse vaalea, tumma tai autom. teeman ulkoasu</translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation>Käyttöliittymä ja tehosteet, pyöristetyt kulmat</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Mukautettu</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Laajennusalue</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Valitse telakan kuvakkeet</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation>Virransäästö, näyttö ja valmiustila</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Virta</translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation>Yleinen</translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation>Virrankäyttö, virransäästö, herääminen, sammuttaminen</translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation>Kytketty</translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation>Näyttö ja valmiustila</translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation>Akulla</translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation>näyttö ja valmustila, alhainen akku, akun hallinta</translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Sammuta</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Valmiustila</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Lepotila</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Sammuta näyttö</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Näytä sammutusliittymä</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Älä tee mitään</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Näyttö ja valmiustila</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Sammuta näyttö</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Lukitaan näyttö</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Tietokone valmiustilaan</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Kun kansi on kiinni</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Kun virtapainiketta painetaan</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Korkea suoritusteho</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Tasapainoinen suoritusteho</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>Säätää prosessorin toimintataajuutta aggressiivisesti suorittimen kuormituksen perusteella</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Tasapainoinen</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Virransäästö</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Priorisoi suorituskykyä, mikä lisää merkittävästi virrankulutusta ja lämmöntuotantoa</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Tasapainottaa suorituskykyä ja akun kestoa, säätyy automaattisesti käytön mukaan</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Priorisoi akun käyttöikää, jolloin järjestelmä laskee hieman suorituskykyä virrankulutuksen vähentämiseksi</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Minuuttia</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Tuntia</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Ei koskaan</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation>Yksityisyys ja tietoturva</translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation>Kamera, kansion käyttöoikeudet</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation>Kamera</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation>Valitse, onko sovelluksella pääsy kameraan</translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation>Tiedostot ja kansiot</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation>Valitse, onko sovelluksella pääsy tiedostoihin ja kansioihin</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Tietosuojakäytäntö</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Kopioi linkin osoite</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Salasana ei voi olla tyhjä</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Salasanassa on oltava vähintään %1 merkkiä</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Salasanassa saa olla enintään %1 merkkiä</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Salasana voi sisältää vain englanninkielisiä kirjaimia (isot ja pienet kirjaimet), numeroita tai erikoismerkkejä (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Enintään %1 merkkiä palindromina</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Enintään %1 monotonista merkkiä peräkkäin</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Enintään %1 samaa merkkiä peräkkäin</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Salasanassa on oltava isoja kirjaimia, pieniä kirjaimia, numeroita ja symboleja (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Salasana ei saa sisältää takaperin enempää kuin 4 -merkkiä</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Älä käytä yleisiä sanoja ja yhdistelmiä salasanassa</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Luo vahva salasana</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Tämä ei täytä salasanan sääntöjä</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Ohjauspaneli</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Aktivoitu</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Katsele</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Aktivoidaan</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Aktivoi</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Vanhentunut</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Kokeilujakso</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Kokeilujakso päättynyt</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>Ohjauspaneli</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Kosketusnäytön asetukset</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Kosketusnäytön asetukset muuttuivat</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Tämä taustakuva on lukittu. Ota yhteyttä järjestelmänvalvojaasi.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Haku</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Oletusmuodot</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Viikon ensimmäinen päivä</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Lyhyt päivämäärä</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Pitkä päivämäärä</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Lyhyt aika</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Pitkä aika</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Valuutan symboli</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Numero</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Paperikoko</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Tallenna</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Maa-asetus</translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Haku</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Aseta salasana</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 merkkiä</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Toista salasana</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Vahvista</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Salasanat eivät täsmää</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>Muokkaa toistoaikaa</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Tallenna</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Näytönsäästäjä</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>esikatselu</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Personoi näytönsäästää</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>asetus</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>Joutoaika</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 min</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 min</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 min</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 min</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 min</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 h</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>ei koskaan</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Palautukseen vaaditaan salasana</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Kuvien, diaesitys, näytönsäästäjä</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Näytönsäästäjä</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Haku</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>Ei hakutuloksia</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Lisää mukautettu pikakuvake</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Nimi:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Vaadittu</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Komento:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Pikanäppäin</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Mitään</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Lisää</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation>Nimi on jo käytössä. Valitse toinen nimi.</translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation>Vaihda pikanäppäintä</translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation>anna pikanäppäin</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Tallenna</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation>paina Tallenna ja pikanäppäin tulee voimaan</translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation>paina Lisää ja pikanäppäin tulee voimaan</translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Pikanäppäimet</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Pikanäppäin ja mukautettu näppäin</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Hae pikanäppäimiä</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>valmis</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>muokkaa</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Paina</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>tai</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Korvaa</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Palauta oletus</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Lisää pikanäppäin</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation>anna uusi pikanäppäin</translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Ääni</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation>Ulostulo, sisääntulo, äänitehosteet, laitteet</translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Ulostulon laitteet</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Valitse otetaanko laitteet käyttöön</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Sisääntulon laitteet</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Äänitehosteet</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation>Asetukset</translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Äänitehosteet</translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation>Äänitehosteet käyttöön/pois</translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation>Äänilaite käyttöön/pois</translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation>Laitehallinta</translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Käynnistys</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Sammuta</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Kirjaudu ulos</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Herää</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Voimakkuus +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Ilmoitus</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Akku vähissä</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Lähetä kuvake pöydälle</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Tyhjennä roskakori</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Kytketty</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Poista laite</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Siirrettävä laite kytketty</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Siirrettävä laite poistettu</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Virhe</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Tila</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Ulostulon voimakkuus</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Voimakkuuden tehostin</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Jos voimakkuus on suurempi kuin 100%, se voi vääristää ääntä ja olla haitallista toistolaitteille</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Vasen</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Oikea</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Ulostulo</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Ei löytynyt äänilaitetta</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Tasapaino vasen ja oikea</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Yhdistä vasen ja oikea kanava yhdeksi kanavaksi</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Keskeytetäänkö äänentoisto automaattisesti, kun äänilaite irrotetaan</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation>Monoääni</translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation>Autom. tauko</translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Ulostulon laite</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Ääni</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Virta</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Hiiri</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Päivitä</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Näytönsäästäjä</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation>Yleiset asetukset</translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation>Järjestelmä</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation>Aputiedot</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation>Tietoja tietokoneesta</translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation>Versio, laitetiedot</translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation>Katso ilmoitus avoimen lähdekoodin ohjelmistoista</translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation>Käyttökokemusohjelma</translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation>Liity käyttökokemusohjelmaan ja voit auttaa parantamaan tätä tuotetta</translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation>Loppukäyttäjän lisenssisopimus</translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation>Näytä loppukäyttäjän lisenssisopimus</translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Tietosuojakäytäntö</translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation>Katso tietoja tietosuojakäytännöstä</translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation>Ilmoitus avoimen lähdekoodin ohjelmistosta</translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Lisää taustakuvia</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Synkronointiaika</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>NTP-palvelin</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Päiväys ja kellonaika</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Muokkaa</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Asetukset</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Palvelimen osoite</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Vaadittu</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>NTP-palvelimen osoite ei voi olla tyhjä</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>Käytä 24h kelloa</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>aikavyöhyke</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Aikavyöhykkeet</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Lisää</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>kohteesta</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>-</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Tallennatko näytön asetukset?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Asetukset palautetaan %1s kulttua.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Palauta</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Tallenna</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Lisää aikavyöhyke</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Määritä aikavyöhyke sijainnin perusteella</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Aikavyöhyke:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Lähin kaupunki:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Tallenna</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Kosketusnäyttö</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Aseta täällä, kun liität kosketusnäytön</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Perusasetukset</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Kosketuslevy</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Osoittimen nopeus</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Hidas</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Nopea</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Poista kosketuslevy, kun kirjoitat</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Napauta</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Tasainen vieritys</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Kolmen sormen ele</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Neljän sormen ele</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation>Eleet</translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation>Kosketusnäyttö</translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation>Kosketusnäytön konfigurointi</translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Yleinen</translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Liity käyttökokemusohjelmaan</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Kopioi linkin osoite</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Tietoturvan vahvistus</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>Toiminto on arkaluonteinen, kirjoita ensin kirjautumissalasana</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 merkkiä</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Unohditko salasanan?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Peruuta</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Vahvista</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation>wacom</translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation>Wacomin konfigurointi</translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation>wacom</translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation>Kynätila</translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation>Hiiritila</translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation>Paineherkkyys</translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation>Kevyt</translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation>Vahva</translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation>Malli</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>taustakuva</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Minun kuvat</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Taustakuvia</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Yksivärinen taustakuva</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Muokattavat taustakuvat</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>täyttötyyli</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Automaattiset taustakuvat</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>ei koskaan</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 sek</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 min</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 min</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 min</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 min</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 min</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>kirjaudu</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>herää</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Elävä taustakuva</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 h</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation>Taustakuvat</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>levitä</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Aseta lukitusnäyttö</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Aseta työpöytä</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation>näytä kaikki - %1 kohdetta</translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation>Lisää kuva</translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Käyttöliittymä ja tehosteet</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Ikkunoinnin asetukset</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Ikkunoiden pyöristettyt kulmat</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Mitään</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Pieni</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Suuri</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Käytä läpinäkyviä tehosteita ikkunaa siirtäessä</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Ikkunan minimointitehoste</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Skaalaus</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Taikalamppu</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Läpinäkyvyys</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Matala</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Korkea</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Vierityspalkit</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Näytä vierityksessä</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Näytä aina</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Kompakti näyttö</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Jos käytössä, ikkunassa näkyy lisää sisältöä.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Otsikkopalkin korkeus</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Sopii vain piirtämille sovellusten ikkunoiden otsikkoriville.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Erittäin pieni</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>Keskitaso</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>Keskitaso</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Perinteinen kiina (Kiina Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Perinteinen kiina (Kiina Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation>Taiwanin kiina</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan Kiina</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>Käyttäjänimen on oltava 3–32 merkkiä pitkä</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>Ensimmäisen merkin on oltava kirjain tai numero</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>Käyttäjänimessäsi ei saa olla vain numeroita</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>Nimeä on käytetty muilla käyttäjätileillä</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Nimesi on liian pitkä</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>Koko nimeä on käytetty muilla käyttäjätileillä</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Väärä salasana</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Tavallinen käyttäjä</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Järjestelmänvalvoja</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Muokattu</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Laitteesi poistettiin toimialueelta onnistuneesti</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>Laitteesi liittyi toimialueeseen onnistuneesti</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>Laitteesi poistuminen toimialueelta epäonnistui</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>Laitteesi liittyminen toimialueeseen epäonnistui</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>Toimialueen asetukset</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>Salasana ei täsmää</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Ulottuvuus</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Taso</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation>Kasvojälki</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Kasvot</translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation>Käytä kasvoja lukituksen avaamiseen ja tee asetukset myöhemmin</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Sormenjälki</translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation>Aseta sormi</translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation>Aseta sormesi anturille, kunnes sinua pyydetään nostamaan</translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation>Nosta sormesi</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Nosta sormesi ja aseta se lukijaan uudelleen</translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation>Nosta sormeasi ja tee se uudelleen</translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation>Skannaus keskeytetty</translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation>Skannaa sormenjäljen reunat</translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation>Aseta sormen reuna anturiin</translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation>Säädä asentoa sormenjälkesi reunojen skannaamiseksi</translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation>Sormenjälki lisätty</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation>Iiris</translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation>Käytä iiristä lukituksen avaamiseen ja tee asetukset myöhemmin</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Tämä on ristiriidassa [%1] kanssa</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Salasana ei voi olla tyhjä</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Salasanassa on oltava vähintään %1 merkkiä</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Salasanassa saa olla enintään %1 merkkiä</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Salasana voi sisältää vain englanninkielisiä kirjaimia (isot ja pienet kirjaimet), numeroita tai erikoismerkkejä (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Enintään %1 merkkiä palindromina</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Enintään %1 monotonista merkkiä peräkkäin</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Enintään %1 samaa merkkiä peräkkäin</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Salasanassa on oltava isoja kirjaimia, pieniä kirjaimia, numeroita ja symboleja (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Salasana ei saa sisältää takaperin enempää kuin 4 -merkkiä</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Älä käytä yleisiä sanoja ja yhdistelmiä salasanassa</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Luo vahva salasana, kiitos</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Tämä ei täytä salasanan sääntöjä</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation>Anna vähintään %1 tyyppiä pienet ja isot kirjaimet, numerot ja symbolit, eikä salasana saa olla sama kuin käyttäjätunnus.</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Järjestelmä</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Ikkuna</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Työtila</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Apuvälineet</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Mukautettu</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Mitään</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_fil.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"fil\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\">Custom</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">Wala</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\">Sistema</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">Wala</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Tradisyonal na Tsino (Tsino Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Tradisyonal na Tsino (Tsino Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan Tsina</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Ang shortcut na ito ay sumasalungat sa [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistema</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Bintana</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Workspace</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Mga Assistive Tool</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Custom</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Wala</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_fr.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"fr\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>Modifier</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Ajouter un utilisateur</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Définir le nom complet</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Paramètres de connexion</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Se connecter sans mot de passe</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Supprimer le compte actuel</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Paramètres de groupe</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Groupes d&apos;utilisateurs</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Terminer</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Nom du groupe</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Ajouter un groupe</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Se connecter automatiquement</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Informations sur le compte</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Nom du compte, nom complet du compte, type de compte</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Nom du compte</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Nom complet du compte</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Type de compte</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Le nom complet est trop long</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>Les noms de groupe ne doivent pas dépasser 32 caractères</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>Les noms de groupe ne peuvent pas contenir uniquement des chiffres</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>Utilisez uniquement des lettres, des chiffres, des traits de soulignement et des tirets, et assurez-vous que le nom commence par une lettre</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>Le nom de groupe est déjà utilisé</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>Connexion rapide, connexion automatique, connexion sans mot de passe</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>Rétablir</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>Couper</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>Copier</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>Coller</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>Tout sélectionner</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>Connexion rapide</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation>Compte</translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation>Gestionnaire de compte</translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation>Autres comptes</translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Inscrire un visage</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>J&apos;ai lu et j&apos;accepte les</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Clause de non-responsabilité</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Suivant</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Visage inscrit</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>Échec de l&apos;enregistrement de votre visage</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Terminé</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Réessayer l&apos;enregistrement</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation>La reconnaissance faciale ne prend pas en charge la détection du caractère vivant, et la méthode de vérification peut comporter des risques.\nPour garantir une entrée réussie :\n1. Veillez à ce que vos traits faciaux soient clairement visibles et ne les couvrez pas (chapeaux, lunettes de soleil, masques, etc.).\n2. Assurez-vous que l&apos;éclairage est suffisant et évitez la lumière directe du soleil.</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>L&apos;authentification biométrique est une fonction d&apos;authentification d&apos;identité utilisateur fournie par UnionTech Software Technology Co., Ltd. À travers l&apos;authentification biométrique, les données biométriques collectées seront comparées à celles stockées sur l&apos;appareil, et l&apos;identité de l&apos;utilisateur sera vérifiée en fonction du résultat de la comparaison.\n\nVeuillez noter que UnionTech Software Technology Co., Ltd. ne collectera ni ne consultera vos informations biométriques, qui seront stockées sur votre appareil local. Veuillez uniquement activer l&apos;authentification biométrique sur votre appareil personnel et utiliser vos propres informations biométriques pour les opérations pertinentes, et supprimez ou supprimez rapidement les informations biométriques d&apos;autres personnes sur cet appareil, sinon vous assumerez le risque qui en découlera.\n\nUnionTech Software Technology Co., Ltd. est engagée à rechercher et améliorer la sécurité, l&apos;exactitude et la stabilité de l&apos;authentification biométrique. Cependant, en raison de divers facteurs environnementaux, matériels, techniques et autres et de la gestion des risques, il n&apos;y a aucune garantie que vous passerez l&apos;authentification biométrique temporairement. Par conséquent, veuillez ne pas considérer l&apos;authentification biométrique comme la seule méthode pour vous connecter à UOS. Si vous avez des questions ou des suggestions lors de l&apos;utilisation de l&apos;authentification biométrique, vous pouvez donner des retours via &apos;Service et Support&apos; dans UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Terminé</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Enregistrer un doigt</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Placez le doigt à enregistrer sur le capteur d&apos;empreintes digitales et déplacez-le de bas en haut. Une fois l&apos;action terminée, lèvez votre doigt.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>J&apos;ai lu et j&apos;accepte les</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Déclaration d&apos;exclusion de responsabilité</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Suivant</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Réessayer l&apos;enrôlement</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>L&apos;authentification biométrique est une fonction d&apos;authentification d&apos;identité utilisateur fournie par UnionTech Software Technology Co., Ltd. À travers l&apos;authentification biométrique, les données biométriques collectées seront comparées à celles stockées sur l&apos;appareil, et l&apos;identité de l&apos;utilisateur sera vérifiée en fonction du résultat de la comparaison.\n\nVeuillez noter que UnionTech Software Technology Co., Ltd. ne collectera ni ne consultera vos informations biométriques, qui seront stockées sur votre appareil local. Veuillez uniquement activer l&apos;authentification biométrique sur votre appareil personnel et utiliser vos propres informations biométriques pour les opérations pertinentes, et supprimez ou supprimez rapidement les informations biométriques d&apos;autres personnes sur cet appareil, sinon vous assumerez le risque qui en découlera.\n\nUnionTech Software Technology Co., Ltd. est engagée à rechercher et améliorer la sécurité, l&apos;exactitude et la stabilité de l&apos;authentification biométrique. Cependant, en raison de divers facteurs environnementaux, matériels, techniques et autres et de la gestion des risques, il n&apos;y a aucune garantie que vous passerez l&apos;authentification biométrique temporairement. Par conséquent, veuillez ne pas considérer l&apos;authentification biométrique comme la seule méthode pour vous connecter à UOS. Si vous avez des questions ou des suggestions lors de l&apos;utilisation de l&apos;authentification biométrique, vous pouvez donner des retours via &apos;Service et Support&apos; dans UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>Enregistrer une iris</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>J&apos;ai lu et j&apos;accepte les</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Clause de non-responsabilité</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Suivant</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Terminé</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Réessayer l&apos;enregistrement</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>Iris inscrit</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>Échec de l&apos;inscription de votre iris</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>L&apos;authentification biométrique est une fonction d&apos;authentification d&apos;identité utilisateur fournie par UnionTech Software Technology Co., Ltd. À travers l&apos;authentification biométrique, les données biométriques collectées seront comparées à celles stockées sur l&apos;appareil, et l&apos;identité de l&apos;utilisateur sera vérifiée en fonction du résultat de la comparaison.\n\nVeuillez noter que UnionTech Software Technology Co., Ltd. ne collectera ni ne consultera vos informations biométriques, qui seront stockées sur votre appareil local. Veuillez uniquement activer l&apos;authentification biométrique sur votre appareil personnel et utiliser vos propres informations biométriques pour les opérations pertinentes, et supprimez ou supprimez rapidement les informations biométriques d&apos;autres personnes sur cet appareil, sinon vous assumerez le risque qui en découlera.\n\nUnionTech Software Technology Co., Ltd. est engagée à rechercher et améliorer la sécurité, l&apos;exactitude et la stabilité de l&apos;authentification biométrique. Cependant, en raison de divers facteurs environnementaux, matériels, techniques et autres et de la gestion des risques, il n&apos;y a aucune garantie que vous passerez l&apos;authentification biométrique temporairement. Par conséquent, veuillez ne pas considérer l&apos;authentification biométrique comme la seule méthode pour vous connecter à UOS. Si vous avez des questions ou des suggestions lors de l&apos;utilisation de l&apos;authentification biométrique, vous pouvez donner des retours via &apos;Service et Support&apos; dans UOS.</translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation>Veuillez regarder l&apos;appareil et vous assurer que vos deux yeux se trouvent dans la zone de capture.</translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Authentification biométrique</translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Authentification biométrique</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Visage</translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation>Il est possible d&apos;enregistrer jusqu&apos;à 5 données faciales.</translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Empreinte digitale</translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation>Identification de l&apos;identité de l&apos;utilisateur par le biais de la lecture des empreintes digitales</translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation>Iris</translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation>Reconnaissance d&apos;identité par scan de l&apos;iris</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation>Utilisez uniquement des lettres, des chiffres et des traits de soulignement, et ne dépassez pas 15 caractères.</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation>Utilisez uniquement des lettres, des chiffres et des traits de soulignement.</translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation>Pas plus de 15 caractères</translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation>Ce nom existe déjà</translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation>Ajouter un nouveau %1 ...</translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation>Le nom ne peut pas être vide.</translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>L&apos;auto connexion peut être activée pour un seul compte, veuillez d&apos;abord désactiver l&apos;auto connexion pour le compte &quot;%1&quot;.</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>D&apos;accord</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>Images</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>Humain</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Animal</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Scénario</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>Illustration</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>Émoticône</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>Personnalisé</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Style dessin animé</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Style 3D</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Style plat</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Enregistrer</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Écran et suspension</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Éteindre l&apos;écran après</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Verrouiller l&apos;écran après</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>L&apos;ordinateur se met en veille après</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Lorsque le couvercle est fermé</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Lorsque le bouton d&apos;alimentation est pressé</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Batterie faible</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Notification de batterie faible</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Suspension automatique</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Hibernation automatique</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Seuil de batterie faible</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Gestion de la batterie</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Afficher le temps restant d&apos;utilisation et de chargement</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Capacité maximale</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Niveau de batterie faible</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Désactiver</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation>Paramètres Bluetooth, appareils</translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Le Bluetooth est désactivé, et le nom est affiché comme &quot;%1&quot; </translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Le Bluetooth est activé, et le nom est affiché comme &quot;%1&quot; </translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Déconnecter</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Se connecter</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Envoyer des fichiers</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Renommer</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Supprimer le périphérique</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Sélectionner un fichier</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Éditer</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Autoriser d&apos;autres périphériques Bluetooth à trouver ce périphérique</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Pour utiliser la fonction Bluetooth, veuillez désactiver</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Mode avion</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>Le nom Bluetooth ne peut pas dépasser 64 caractères</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Connecté</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Non connecté</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Paramètres de démarrage</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Vous pouvez cliquer sur le menu pour changer les éléments de démarrage par défaut, ou déplacer l&apos;image dans la fenêtre pour changer l&apos;image de fond.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>Retard de démarrage grub</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>thème</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Après avoir activé le thème, vous pouvez voir l&apos;arrière-plan du thème lorsque vous allumez l&apos;ordinateur</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Vérification du menu de démarrage</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Une fois ouvert, l&apos;édition du menu nécessite un mot de passe.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Changer le mot de passe</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Changer le mot de passe de vérification du menu de démarrage</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Définir le mot de passe d&apos;authentification du menu de démarrage</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Nom d&apos;utilisateur :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Nouveau mot de passe :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Requis</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Le mot de passe ne peut pas être vide</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Les mots de passe ne correspondent pas</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Répéter le mot de passe :</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>D&apos;accord</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Animation de démarrage</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Adjuster la taille de l&apos;animation du logo sur l&apos;interface de démarrage du système</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Autoriser les applications suivantes à accéder à votre caméra :</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Empreinte digitale 1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Empreinte digitale 2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Empreinte digitale 3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Empreinte digitale 4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Empreinte digitale 5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Empreinte digitale 6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Empreinte digitale 7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Empreinte digitale 8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Empreinte digitale 9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Empeinte digitale 10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Échec de la lecture</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>L&apos;empreinte digitale existe déjà</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Veuillez scanner d&apos;autres doigts</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Erreur inconnue</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Lecture suspendue</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Ne peut pas reconnaître</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Déplacement trop rapide</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Le doigt a bougé trop vite, veuillez ne pas lever le doigt avant d&apos;être invité</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Empreinte digitale illisible</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Nettoyez votre doigt ou ajustez sa position, puis réessayez</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Le doigt a déjà été scanné</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Ajustez la position de votre doigt pour scanner l&apos;empreinte complète</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Le doigt a bougé trop vite, veuillez ne pas lever le doigt avant d&apos;être invité</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Lever votre doigt et le replacer sur le capteur</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Placez votre visage à l&apos;intérieur du cadre</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Le visage est enregistré</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Veuillez positionner un visage humain</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Restez éloigné de la caméra</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Approchez-vous de la caméra</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Ne positionnez pas plusieurs visages à l&apos;intérieur du cadre</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Assurez-vous que le prisme de la caméra est propre</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Ne vous enregistrez pas dans des environnements sombres, éclairés ou en arrière-éclairage</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Assurez-vous que votre visage est découvert</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Le scan a expiré</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>Caméra occupée !</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Couleur accent</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Paramètres des icônes</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Thème des icônes</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Personnalisez l&apos;icône de votre thème</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Thème du curseur</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Personnalisez le curseur de votre thème</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Êtes-vous sûr de vouloir supprimer ce compte?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Supprimer le répertoire du compte</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Supprimer</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Aller dans les paramètres</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Commun</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Délai de répétition</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Court</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Long</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Fréquence de répétition</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Lent</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Rapide</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Clavier numérique</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>test ici</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Indication de la touche Majuscules</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Vitesse de double-clic</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Test de double-clic</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Mode main gauche</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>Activer le clavier</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>Général</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>Vitesse de défilement</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation>Menu de démarrage</translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation>Gérer votre menu de démarrage</translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation>Gestion des autorisations root des développeurs</translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation>Options pour les développeurs</translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation>Options de débogage de développeur</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Grande taille</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Petite taille</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>Échec de l&apos;accès root</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Connectez-vous d&apos;abord à votre identifiant Union</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>Impossible de lire les informations de votre ordinateur</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>Aucune connexion réseau</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>Échec du chargement du certificat, accès root impossible</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>Vérification de la signature échouée, accès root impossible</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>S’inscrire au programme d’expérience utilisateur</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>Déclaration du mode développeur</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>S’inscrire et demander l&apos;accès root</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Démarrez la configuration de l&apos;animation de démarrage, veuillez patienter une minute</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>La configuration de l&apos;animation de démarrage est terminée</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>Les paramètres seront appliqués après le redémarrage du système</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation>Redémarrer maintenant</translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation>Refuser</translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation>Redémarrez l&apos;appareil pour terminer l&apos;application des paramètres de protection en lecture seule du système Solid.</translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>Le mot de passe doit contenir des chiffres et des lettres</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>Le mot de passe doit faire entre 8 et 64 caractères</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Créer un nouveau compte</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Type de compte</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Nom d&apos;utilisateur</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Requis</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Nom complet</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Optionnel</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Créer le compte</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>Le nom d&apos;utilisateur ne peut pas dépasser 32 caractères.</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>Le nom d&apos;utilisateur ne peut contenir que des lettres, des chiffres, - et _.</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>Le nom complet ne peut pas dépasser 32 caractères.</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>Le nom complet ne peut pas contenir de doubles points.</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation>petit</translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation>grand</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>Vous n&apos;avez pas encore téléchargé d&apos;avatars. Cliquez ou faites glisser et déposez pour télécharger une image.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>Le type de fichier téléchargé n&apos;est pas correct, veuillez le télécharger à nouveau.</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>disponible</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Accepter et rejoindre le programme d&apos;expérience utilisateur</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation>&lt;p&gt;Nous sommes pleinement conscients de l&apos;importance que revêtent vos informations personnelles à vos yeux. C&apos;est pourquoi nous avons mis en place une politique de confidentialité qui régit la manière dont nous collectons, utilisons, partageons, transférons, divulguons publiquement et stockons vos informations.&lt;/p&gt;&lt;p&gt;Vous pouvez&lt;a href=&quot;%1&quot;&gt;cliquez ici&lt;/a&gt;pour consulter notre dernière politique de confidentialité et/ou la consulter en ligne en vous rendant sur &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;. Veuillez lire attentivement et comprendre pleinement nos pratiques en matière de confidentialité des données clients. Si vous avez des questions, veuillez nous contacter à l&apos;adresse suivante : %2.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;En adhérant au programme d&apos;expérience utilisateur, vous nous autorisez à collecter et à utiliser les informations relatives à votre appareil, votre système et vos applications. Si vous refusez que nous collections et utilisions les informations susmentionnées, veuillez ne pas adhérer au programme d&apos;expérience utilisateur. Pour plus de détails, veuillez consulter la politique de confidentialité de Deepin (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;En adhérant au programme d&apos;expérience utilisateur, vous nous autorisez à collecter et à utiliser les informations relatives à votre appareil, votre système et vos applications. Si vous refusez que nous collections et utilisions les informations susmentionnées, veuillez ne pas adhérer au programme. Pour plus d&apos;informations sur le programme d&apos;expérience utilisateur, rendez-vous sur &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Paramètres de date et d&apos;heure</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Date</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Année</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Mois</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Jour</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Heure</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirmer</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation>Date et heure</translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation>Date et heure, paramètres du fuseau horaire</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation>Langue et région</translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Demain</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Hier</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Aujourd&apos;hui</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 heures avant le local</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 heures après le local</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Espace</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Semaine</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Premier jour de la semaine</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Date courte</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Date longue</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Heure courte</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Heure longue</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Symbole de devise</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Devise positive</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Monnaie négative</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Séparateur décimal</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Séparateur de groupe de chiffres</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Groupement de chiffres</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Taille de la page</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>Exemple</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Une authentification est requise pour changer le serveur NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Identification requise pour paramétrer le fuseau horaire du système</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Enregistrer</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Le Centre de contrôle propose les options pour les paramètres système.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>Lier WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>En liant WeChat, vous pouvez vous connecter en toute sécurité et rapidement à votre compte %1 et aux comptes locaux.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Délié</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Délier</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Lier</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Êtes-vous sûr de vouloir délier WeChat?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Après avoir délié WeChat, vous ne pourrez plus utiliser WeChat pour scanner le code QR pour vous connecter à votre compte %1 ou compte local.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Laissez-moi y réfléchir</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Lien de compte local</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Après avoir lié votre compte local, vous pouvez utiliser les fonctions suivantes:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>Système de connexion par code QR WeChat</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Utilisez WeChat, lié à votre compte %1, pour scanner un code pour vous connecter à votre compte local.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Réinitialiser le mot de passe via le compte %1</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Réinitialisez votre mot de passe local via le compte %1 en cas de oubli.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Pour utiliser les fonctionnalités ci-dessus, veuillez accéder au Centre de contrôle - Comptes et activer les options correspondantes.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Synchronisation en nuage</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>Gérez votre identifiant %1 et synchronisez vos données personnelles sur différents appareils.\nConnectez-vous à votre identifiant %1 pour accéder aux fonctionnalités et services personnalisés du navigateur, de l’App Store et plus encore.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Connectez-vous à votre identifiant %1</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Synchronisation automatique</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Stockez en toute sécurité les paramètres de système et les données personnelles dans le nuage et synchronisez-les sur différents appareils</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Paramètres du système</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Dernière synchronisation : %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Effacer les données en nuage</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>Êtes-vous sûr de vouloir effacer vos paramètres de système et vos données personnelles sauvegardées dans le nuage?\n</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>Une fois les données effacées, elles ne peuvent pas être rétablies!\n</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Effacer</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Service de synchronisation</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Compte et Sécurité</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Se déconnecter</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Aller aux paramètres web</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>Le pseudonyme doit comporter entre 1 et 32 caractères.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>Échec du chiffrement du mot de passe</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Mot de passe incorrect, %1 tentative(s) restante(s)</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>Le nombre d’erreurs de connexion a été atteint aujourd’hui. Vous pouvez réinitialiser votre mot de passe et réessayer.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Opération réussie</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>Le pseudonyme ne peut être modifié qu&apos;une seule fois par jour.</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>Chine continentale</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Autres régions</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>La fonctionnalité n’est pas disponible pour le moment, activez d’abord votre système</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Conformément aux lois et réglementations locales, cette fonctionnalité n’est actuellement pas disponible dans votre région.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Veuillez choisir le programme par défaut pour ouvrir &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>ajouter</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Ouvrir le fichier de bureau</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Applications (*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Tous les fichiers (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Accès root</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Demander l&apos;accès root</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Après avoir entré le mode développeur, vous pouvez obtenir des permissions root, mais cela peut également endommager l&apos;intégrité du système, donc n&apos;en faites pas usage à la légère.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Autorisé</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Entrer</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>En ligne</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Se connecter avec votre ID UOS</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Hors ligne</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Importer le certificat</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Sélectionner un fichier</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>Votre ID UOS est connecté, cliquez pour entrer le mode développeur</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Veuillez vous connecter avec votre ID UOS en premier et continuer</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1. Exporter les informations du PC</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Exporter</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3. Importer un certificat</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Options de développement et de débogage</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Niveau de journalisation système</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>La modification de ces options entraîne un journalisation plus détaillée qui peut altérer les performances du système et/ou consommer plus d&apos;espace de stockage.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Désactivé,</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Débogage</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>La modification de l&apos;option peut prendre jusqu&apos;à une minute pour être traitée. Après avoir reçu un message de réussite de la configuration, redémarrez l&apos;appareil pour que les modifications prennent effet.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>Pour installer et exécuter des applications non signées, veuillez aller dans &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Centre de sécurité &lt;/a&gt; pour modifier les paramètres.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation>Pour installer et exécuter des applications non signées, veuillez vous rendre dans le centre de sécurité afin de modifier les paramètres.</translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation>Vous êtes passé en mode développeur.</translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>OK</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation>2. Veuillez vous rendre sur %1 pour télécharger le certificat hors ligne.</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation>Cette fonctionnalité n&apos;est pas disponible pour le moment, veuillez d&apos;abord activer votre système.</translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation>Protection en lecture seule du système solide</translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation>La désactivation de la protection déverrouille les répertoires système. Cette action comporte un risque élevé d&apos;endommagement du système.</translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation>Activez la protection pour verrouiller les répertoires système et garantir une stabilité optimale.</translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Clause de non-responsabilité</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>Accepter</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Affichage</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Autoriser les applications suivantes à accéder à ces fichiers et dossiers :</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Documents</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Bureau</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Images</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Vidéos</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Musique</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Téléchargements</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>dossier</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Taille</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Police standard</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Police monospacée</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Plans d&apos;alimentation</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Paramètres d&apos;économie d&apos;énergie</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Économie d&apos;énergie automatique en cas de batterie faible</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Seuil de batterie faible</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Économie d&apos;énergie automatique sur batterie</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Paramètres de réveil</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Un mot de passe est requis pour réveiller l&apos;ordinateur</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Un mot de passe est requis pour réveiller l&apos;écran</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Paramètres de redémarrage</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Redémarrage programmé</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Heure</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Répéter</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Une fois</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Tous les jours</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Les jours de travail</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Horaire personnalisé</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Diminuer la luminosité de l&apos;écran en mode économie d&apos;énergie</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation>Trois doigts en haut</translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation>Trois doigts en bas</translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation>Trois doigts à gauche</translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation>Trois doigts à droite</translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation>Appui à trois doigts</translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation>Quatre doigts en haut</translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation>Quatre doigts en bas</translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation>Quatre doigts à gauche</translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation>Quatre doigts à droite</translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation>Appui à quatre doigts</translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Performances optimales</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Équilibre</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>Meilleure qualité visuelle</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>Désactiver tous les effets d&apos;interface et de fenêtre pour des performances système efficaces.</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>Limiter certains effets de fenêtre pour des visuels excellents tout en maintenant des performances système fluides.</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>Activer tous les effets d&apos;interface et de fenêtre pour la meilleure expérience visuelle.</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Langue</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>terminé</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>éditer</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Autres langues</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>ajouter</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Région</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>Région</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>Le système d&apos;exploitation et les applications peuvent vous fournir du contenu local en fonction de votre pays et de votre région</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>Le système d&apos;exploitation et les applications peuvent définir les formats de date et d&apos;heure en fonction des formats régionaux</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Format régional</translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Ajouter une langue</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Rechercher</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Ajouter</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Méthode de connexion</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Mot de passe, WeChat, authentification biométrique, clé de sécurité</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Mot de passe</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Modifier le mot de passe</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Durée de validité (en jours)</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Toujours</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Réinitialiser le mot de passe</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Communauté Deepin</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Réduction automatique du bruit</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Volume d&apos;entrée</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Niveau d&apos;entrée</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Entrée</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Aucun périphérique d&apos;entrée audio détecté</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Périphérique d&apos;entrée</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Souris et Touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Mes appareils</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Nom de l&apos;ordinateur</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Il ne peut pas commencer ou finir par des tirets</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Nom du système d&apos;exploitation</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Version</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Édition</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Type</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Autorisation</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Heure d&apos;installation du système</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Noyau</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Plateforme graphique</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Processeur</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Mémoire</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>Veuillez saisir 1 à 63 caractères</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Autres appareils</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Afficher les appareils Bluetooth sans nom</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Mot de passe actuel</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Requis</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Faible</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Moyen</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Fort</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Répéter le mot de passe</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Indice de mot de passe</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Facultatif</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Le mot de passe ne peut pas être vide</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Les mots de passe ne correspondent pas</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>L&apos;indice est visible pour tous les utilisateurs. Ne pas inclure le mot de passe ici.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>Nouveau mot de passe</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>Le nouveau mot de passe doit être différent du mot de passe actuel</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation>Le mot de passe ne peut pas être identique au nom d&apos;utilisateur.</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Modifier le mot de passe</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Réinitialiser le mot de passe</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>La longueur du mot de passe doit être d’au moins 8 caractères, et le mot de passe doit contenir au moins 3 des éléments suivants : lettres majuscules, lettres minuscules, chiffres et symboles. Ce type de mot de passe est plus sécurisé.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>La réinitialisation du mot de passe effacera les données stockées dans le trousseau.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personnalisation</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Clair</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Automatique</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Sombre</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation>Le service de ramassage n&apos;est pas disponible.</translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation>Format de couleur non valide : %1</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Personnalisé</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Plugins</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Sélectionner les icônes qui apparaissent dans le Dock</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation>Paramètres d&apos;économie d&apos;énergie, écran et mise en veille</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Alimentation</translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation>Plans de puissance, paramètres d&apos;économie d&apos;énergie, paramètres de réveil, paramètres de fermeture</translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Arrêter</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Suspension</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Hibernation</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Éteindre l&apos;écran</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Afficher l&apos;interface d&apos;arrêt</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Ne rien faire</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Écran et mise en veille</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Éteindre l&apos;écran après</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Verrouiller l&apos;écran après</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>L&apos;ordinateur passe en veille après</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Quand le couvercle est fermé</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Lorsque la touche d&apos;alimentation est appuyée</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Haute performance</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Équilibre performance</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>Ajuster de manière agressive la fréquence de fonctionnement du processeur en fonction de la charge du processeur.</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Équilibré</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Économiseur d&apos;énergie</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Donnez la priorité aux performances, ce qui augmentera considérablement la consommation d&apos;énergie et la production de chaleur.</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Équilibre entre performances et autonomie, ajusté automatiquement en fonction de l&apos;utilisation</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Donnez la priorité à l&apos;autonomie de la batterie, ce qui entraînera une légère baisse des performances du système afin de réduire la consommation d&apos;énergie.</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Minutes</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Heure</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Jamais</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Politique de confidentialité</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Copier l&apos;adresse du lien</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Le mot de passe ne peut pas être vide</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Le mot de passe doit avoir au moins %1 caractères</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Le mot de passe ne doit pas dépasser %1 caractères</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Le mot de passe ne peut contenir que des lettres anglaises (sensible à la casse), des chiffres ou des symboles spéciaux (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Veuillez ne pas utiliser plus de %1 caractères palindromes</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Veuillez ne pas utiliser plus de %1 caractères monotones</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Veuillez ne pas utiliser plus de %1 caractères répétés</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Le mot de passe doit contenir des lettres majuscules, minuscules, des chiffres et des symboles (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Le mot de passe ne doit pas contenir plus de 4 caractères palindromes</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>N&apos;utilisez pas des mots ou des combinaisons courants comme mot de passe</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Veuillez créer un mot de passe fort</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Il ne correspond pas aux règles de mot de passe</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Centre de contrôle</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Activé</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Vue</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>À activer</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Activer</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Expiré</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Dans la période d&apos;essai</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Période d&apos;essai expirée</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Paramètres de l&apos;écran tactile</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Les paramètres de l&apos;écran tactile ont été modifiés</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Ce fond d&apos;écran système est verrouillé. Veuillez contacter votre administrateur.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Rechercher</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation> Formats par défaut</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Premier jour de la semaine</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Date courte</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Date longue</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Heure courte</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Heure longue</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Symbole de devise</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Chiffre</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Taille du papier</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Enregistrer</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Format régional</translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Rechercher</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Fixer un mot de passe</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 caractères</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Répéter le mot de passe</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirmer</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Les mots de passe ne correspondent pas</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>Personnaliser l&apos;heure de répétition</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Enregistrer</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Bureau de veille</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>aperçu</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Écran de veille personnalisé</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>paramètre</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>temps d’inactivité</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minute</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minutes</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minutes</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minutes</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minutes</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 heure</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>jamais</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Un mot de passe est requis pour la récupération</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Écran de veille avec diaporama d&apos;images</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Écran de veille du système</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Recherche</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>Aucun résultat de recherche</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Ajouter un raccourci personnalisé</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Nom :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Requis</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Commande :</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Raccourci</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Aucun</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Ajouter</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation>Le nom du raccourci est déjà utilisé. Choisissez un autre nom.</translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation>Modifier un raccourci personnalisé</translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation>Veuillez saisir une touche de raccourci</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Sauvegarder</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation>Cliquez sur Sauvegarder pour activer ce raccourci clavier.</translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation>Cliquez sur Ajouter pour activer ce raccourci clavier.</translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Raccourcis</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Raccourci système, raccourci personnalisé</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Rechercher des raccourcis</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Terminé</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>Modifier</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Cliquez</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>ou</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Remplacer</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Restaurer les valeurs par défaut</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Ajouter un raccourci personnalisé</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation>Veuillez saisir un nouveau raccourci clavier</translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Son</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Appareils de sortie</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Sélectionnez si vous souhaitez activer les appareils</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Appareils d&apos;entrée</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Effets sonores</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Redémarrage</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Arrêt</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Se déconnecter</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Réveil</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volume +/−</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notification</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Batterie faible</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Envoyer l&apos;icône du lanceur sur le bureau</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>vider la corbeille</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Insérer</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Retirer</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Dispositif amovible connecté</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Dispositif amovible déconnecté</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Erreur</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Mode</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Volume de sortie</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Amplification du volume</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Si le volume est supérieur à 100 %, cela peut entraîner une distorsion du son et endommager les périphériques de sortie.</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Gauche</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Droite</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Sortie</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Aucun périphérique de sortie sonore trouvé</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Équilibre gauche/droite</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Fusionner les canaux gauche et droit en un seul canal</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>L&apos;audio est automatiquement mis en pause lorsque le périphérique audio actuel est débranché.</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation>Audio mono</translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation>Pause automatique</translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Périphérique de sortie</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Son</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Puissance</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Souris</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Mise à jour</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Écran d&apos;économie d&apos;énergie</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Plus de fonds d&apos;écran</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Synchronisation automatique du temps</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Serveur NTP</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Date et heure système</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Personnaliser</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Paramètres</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Adresse du serveur</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Requis</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>L’adresse du serveur NTP ne peut pas être vide</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>Utiliser le format 24 heures</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>Fuseau horaire système</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Liste des fuseaux horaires</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Ajouter</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>de</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>à</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Enregistrer les paramètres d&apos;affichage ?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Les paramètres seront réinitialisés dans %1s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Enregistrer</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Ajouter une zone horaire</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Déterminer la zone horaire en fonction de la localisation actuelle</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Zone horaire :</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Ville la plus proche :</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Enregistrer</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Panneau tactile</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Configurez ici lors de la connexion de l&apos;écran tactile</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Paramètres de base</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Panneau tactile</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Vitesse du curseur</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Lent</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Rapide</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Désactiver le pavé tactile pendant la saisie</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Appuyez pour cliquer</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Défilement naturel</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Geste à trois doigts</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Geste à quatre doigts</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation>Gestuelle</translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Rejoindre le programme d&apos;expérience utilisateur</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Copier l&apos;adresse du lien</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Vérification de sécurité</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>L&apos;action est sensible, veuillez d&apos;abord entrer votre mot de passe de connexion</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 caractères</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Mot de passe oublié？</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirmer</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>fond d&apos;écran</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Mes images</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Fond d&apos;écran système</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Fond d&apos;écran uniforme</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Fond d&apos;écran personnalisable</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>style de remplissage</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Changement automatique du fond d&apos;écran</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>jamais</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 secondes</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minute</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minutes</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minutes</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minutes</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minutes</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>connexion</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>réveil</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Fond d&apos;écran animé</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 heure</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation>Fonds d&apos;écran système</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>déplier</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Définir le verrouillage de l&apos;écran</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Définir le bureau</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation>Tout afficher - %1 éléments</translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation>Ajouter une image</translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Interface et effets</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Paramètres de fenêtre</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Bords arrondis de la fenêtre</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Aucun</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Petit</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Grand</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Activer les effets transparents lors du déplacement des fenêtres</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Effet de réduction de la fenêtre</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Échelle</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Lampe magique</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Opacité</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Faible</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Élevé</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Barres de défilement</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Afficher lors du défilement</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Maintenir affiché</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Affichage compact</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Si cette option est activée, davantage de contenu s&apos;affiche dans la fenêtre.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Hauteur de la barre de titre</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Convient uniquement aux barres de titre des fenêtres dessinées par le gestionnaire de fenêtres.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Extrêmement petit</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>Moyen</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>Moyen</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Chinois traditionnel (Chinois de Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Chinois traditionnel (Chinois de Taïwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation>Chinois min nan</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taïwan - Chine</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>Le nom d&apos;utilisateur doit comporter entre 3 et 32 caractères</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>Le premier caractère doit être une lettre ou un chiffre.</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>Votre nom d&apos;utilisateur ne doit pas contenir uniquement des chiffres.</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>Le nom d&apos;utilisateur a déjà été utilisé par d&apos;autres comptes utilisateurs.</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Le nom complet est trop long</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>Le nom complet a déjà été utilisé par d&apos;autres comptes utilisateurs.</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Mot de passe incorrect</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Utilisateur standard</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Administrateur</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Personnalisé</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Votre hôte a été supprimé du serveur de domaine avec succès.</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>Votre hôte rejoint le serveur de domaine avec succès.</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>Votre hôte n&apos;a pas réussi à quitter le serveur de domaine.</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>Votre hôte n&apos;a pas réussi à se connecter au serveur de domaine.</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>Paramètres du domaine AD</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>Les mots de passe ne correspondent pas</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Dimensionnel</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Plat</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation>Empreinte faciale</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Visage</translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation>Utilisez votre visage pour déverrouiller l&apos;appareil et configurez les paramètres ultérieurement.</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Empreinte digitale</translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation>Placez votre doigt</translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation>Placez votre doigt fermement sur le capteur jusqu&apos;à ce que vous soyez invité à le soulever</translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation>Soulevez votre doigt</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Soulevez votre doigt et placer-le à nouveau sur le capteur</translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation>Soulevez votre doigt et recommencer</translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation>Analyse suspendue</translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation>Scannez les bords de votre empreinte digitale</translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation>Placez les bords de votre empreinte digitale sur le capteur</translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation>Ajustez la position pour numériser les bords de votre empreinte digitale</translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation>Empreinte digitale ajoutée</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation>Iris</translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation>Utilisez votre iris pour déverrouiller l&apos;appareil et configurer les paramètres ultérieurement.</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Cette raccourci conflit avec [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Le mot de passe ne peut pas être vide</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Le mot de passe doit avoir au moins %1 caractères</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Le mot de passe ne doit pas dépasser %1 caractères</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Le mot de passe peut contenir uniquement des lettres anglaises (sensible à la casse), des chiffres ou des symboles spéciaux (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Veuillez ne pas utiliser plus de %1 caractères palindromes</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Veuillez ne pas utiliser plus de %1 caractères monotones</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Veuillez ne pas utiliser plus de %1 caractères répétés</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Le mot de passe doit contenir des lettres majuscules, des lettres minuscules, des chiffres et des symboles (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Le mot de passe ne doit pas contenir plus de 4 caractères palindromes</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>N&apos;utilisez pas de mots courants ou de combinaisons en tant que mot de passe</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Veuillez créer un mot de passe fort</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Il ne correspond pas aux règles de mot de passe</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation>Incluez au moins %1 types parmi les lettres minuscules, les lettres majuscules, les chiffres et les symboles, et le mot de passe ne peut pas être identique au nom d&apos;utilisateur.</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Système</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Fenêtre</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Espace de travail</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Outils assistatifs</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Personnalisé</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Aucun</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_gl.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"gl\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Velociade do punteiro</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Desprazamento natural</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\">Velociade do punteiro</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\">Desprazamento natural</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_gl_ES.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"gl_ES\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>editar</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Engadir novo usuario</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Establecer nome completo</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Configuración de inicio de sesión</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Iniciar sesión sen contrasinal</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Eliminar conta actual</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Configuración de grupos</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Grupos de conta</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>feito</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Nome do grupo</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Engadir grupo</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Iniciar sesión automático</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Información da conta</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Nome da conta, nome completo da conta, tipo de conta</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Nome da conta</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Nome completo da conta</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Tipo de conta</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Inscrir rostro</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Leido e acordo coa</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Aviso</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Seguinte</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Rosto inscrito</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Estilo de dibujo animado</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Estilo tridimensional</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Estilo plano</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Gardar</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Pantalla e suspensión</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Apagar o monitor despois de</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Bloquear a pantalla despois de</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>O ordenador suspenderá despois de</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Cando se pecha a tapa</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Cando se preme o botón de poder</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Batería baixa</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Notificación de batería baixa</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Suspensión automática</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Hibernación automática</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Límite de batería baixa</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Gestión da batería</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Mostrar o tempo restante de uso e carga</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Capacidade máxima</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Nivel de batería baixa</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Desactivar</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>O Bluetooth está desactivado e o nome é mostrado como &quot;%1&quot; </translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>O Bluetooth está activado e o nome é mostrado como &quot;%1&quot; </translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Desconectar</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Conectar</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Enviar arquivos</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Renomear</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Eliminar dispositivo</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Seleccionar ficheiro</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Editar</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Permitir que outros dispositivos Bluetooth o atopen</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Para usar a función Bluetooth, por favor desactiva-a</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Modo avión</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Conectado</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Non conectado</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Configuración de arranque</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Podes clicar no menú para cambiar os elementos de arranque por defecto, ou arrastra a imaxe ao xanela para cambiar a imaxe de fondo.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>Retraso do arranque de grub</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>tema</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Despois de activar o tema, verás a imaxe de fondo do tema ao encender o ordenador</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Verificación do menú de arranque</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Despois de abrir, a introdución de edición do menú require unha contrasinal.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Cambiar contrasinal</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Cambiar contrasinal de verificación do menú de arranque</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Establecer o contrasinal de autenticación do menú de arranque</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Nome de usuario :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Novo contrasinal :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Obrigatorio</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>A contrasinal non pode estar en branco</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>As contrasínhas non coinciden</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Repita o contrasinal:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Xánllate</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Seguro</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Inicia a animación</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Ajusta o tamaño da animación do logotipo na interface de arranque do sistema</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Permite a seguintes aplicativos acceder á súa cámara:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Impresión1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Impresión2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Impresión3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Impresión4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Impresión5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Impresión6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Impresión7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Impresión8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Impresión9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Impresión10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>A escaneación fallou</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>A impressión digital xa existe</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Escanea outras dedos, por favor</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Erro descoñecido</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>A escaneación foi pausada</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Non se pode identificar</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Movido demasiado rápido</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>O dedo foi movido demasiado rápido, por favor, non levale ata que se o solicite</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Impresión de dedo confusa</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Limpe o seu dedo ou ajuste a posición do dedo e tente de novo</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Xá escaneado</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Ajuste a posición do dedo para escanear a súa impresión completa</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>O dedo foi movido demasiado rápido. Por favor, non levale ata que se o solicite</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Leve o dedo e posidxo de novo no sensor</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Posidxa a súa cara dentro do marco</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Cara inscrita</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Posidxa unha cara de xerme, por favor</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Manteña-se á distancia da cámara</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Vexa máis próximo da cámara</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Non posidxa múltiples caras dentro do marco</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Confírme que o lente da cámara está limpo</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Non inscríba en entornos escuros, claros ou con iluminación de trasfondo</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Manteña a súa cara descuberta</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>O escaneamento agoude o tempo</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Cor de destaque</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Configuracións dos iconos</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Temas de iconos</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Personaliza o ícone do tema</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Tema do punteiro do rato</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Personaliza o punteiro do tema</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Estás seguro de que queres eliminar esta conta?\n</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Eliminar a carpeta da conta</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Eliminar</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Ir ás configuracións</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Común</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Atraso de repetición</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Curto</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Longo</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Taxa de repetición</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Lento</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Rápido</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Teclado numérico</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>probar aquí</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Activar o bloqueo de mayúsculas</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Velocidade de dobre clic</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Probar dobre clic</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Modo de mão esquerdas</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Grandes tamaño</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Pequeño tamaño</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-es</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-es</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Concordar e unirse ao Programa de Experiencia do Usuario</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Configuración de data e hora</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Data</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Ano</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Mes</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Día</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Hora</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirmar</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Mañá</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Ontem</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Hoxe</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 horas antes da local</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 horas despois da local</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Espazo</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Semana</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Primer día da semana</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Data curta</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Data larga</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Hora curta</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Tiempo longo</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Símbolo de moeda</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Moeda positiva</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Moeda negativa</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Símbolo decimal</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Símbolo de agrupación de dígitos</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Agrupación de dígitos</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Tamaño de paxina</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>É necesario autenticarse para cambiar o servidor NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>A autentificación é necesaria para configurar o fuso horario do sistema</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Gardar</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>O Centro de Controlo proporciona as opcións para atopar as configuracións do sistema.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>Ligar WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>Ao liga-llle WeChat, podes acceder de xeito seguro e rápido ao teu ID %1 e ás súas conta locais.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Desligado</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Desligar</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Ligar</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Xa estás seguro de que queres desligar WeChat?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Despois de desligar WeChat, non podes usar WeChat para escanear o código QR para acceder ao teu ID %1 ou á súa conta local.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Deixame pensalo</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Ligado de conta local</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Despois de ligar a súa conta local, podes usar as seguintes funcións:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>Sistema de entrada por escaner de código de WeChat</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Usa WeChat, ligado ao teu ID %1, para escanear o código para acceder á súa conta local.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Restablecer a contrasinal via ID %1</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Restablece a tua contrasinal local através de %1 ID no caso de que o escojas esquecer.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Para usar as funcións anteriores, velle a Control Center - Contas e activa as opcións correspondentes.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Sincronización en nube</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>Gestiona o teu %1 ID e sincroniza os teu datos persoais en todos os dispositivos.\n\nRegístrate no teu %1 ID para obter características e servicios personalizados do Navegador, o Tesouro de Aplicacións, e máis.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Inicia sesión no teu %1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Sincronización automática</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Almacena seguramente as configuracións do sistema e os teu datos persoais en a nube e mante-os sincronizados en todos os dispositivos</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Configuracións do sistema</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Última sincronización: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Borra os datos da nube</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>¿Estás seguro de que queres borrar as teu configuracións do sistema e os teu datos persoais almacenados na nube?\n</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>Axúndase que os datos borbados non se poden recuperar!\n</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Borrar</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Servizo de sincronización</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Contas e Seguridade</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Desconectar</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Ir ás configuracións da web</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>A encriptación do contrasinal fallou</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Contrasinal incorrecto, quedan %1 oportunidades</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>O erro de inicio de sesión atopouse no límite de hoje. Podes resetar o contrasinal e tentalo de novo.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Operación exitosa</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>China continental</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Outras zonas</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>A funcionalidade non está dispoñible no momento, por favor actívalo primeiro</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Subxestivo ás leis e regulamentos locais, non está dispoñible neste axenzamento.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Por favor, escolhe o programa predeterminado para abrir &apos;%1&apos;, </translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>añadir</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Abrir ficheiro de escritorio</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Apps (*.desktop), </translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Todos os arquivos (*), </translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Acceso de raíz</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Solicitar acceso de raíz</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Despois de entrar no modo de desenvolvedor, pode obter permisos de raíz, pero pode danificar a integridade do sistema, polo que use-o coa máxima cautela.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Permitido</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Entrar</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>Online</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Identificación de UOS</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Desconectado</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Importar certificado</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Seleccionar ficheiro</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>O seu ID de UOS foi ingresado, clicar para entrar no modo de desenvolvedor</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Por favor, inicie sesión no seu ID de UOS primeiro e continue</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1.Exportar información do PC</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Exportar</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.Importar certificado</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Opcionals de desenvolvemento e depuración</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Nivel de rexistro do sistema</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Cambiar as opcións resultará en un rexistro máis detallado que pode deteriorar o rendemento do sistema e/ou ocupar máis espazo de almacenamento.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Desactivado</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Depuración</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>Cambiar esta opción pode levar un minuto para procesarse. Despois de recibir unha solicitude de configuración exitosa, reinicie o dispositivo para que teña efecto.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Pantalla</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Permitir que as aplicacións seguintes accedan a estes ficheiros e cartafolos:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Documentos</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Escritorio</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Imaxes</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Videos</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Música</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Descargas</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>cartafol</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Tamaño</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Fons estándar</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Fons fijo</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Planos de poder</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Configuracións de ahorro de poder</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Ahorro de poder automático en batería baixa</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Límite de batería baixa</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Ahorro de poder automático en batería</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Configuracións de despertar</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>É necesario introducir unha contrasinal para despertar o ordenador</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>É necesario introducir unha contrasinal para despertar a pantalla</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Configuración de apagado</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Apagado programado</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Hora</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Repetir</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Una vez</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Todos os días</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Días laborables</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Hora personalizada</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Reduzir a luminosidade da pantalla no modo ahorro de batería</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Buscar</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Engadir</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Método de inicio de sesión</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Contraseña, WeChat, autenticación biométrica, clave de seguridad</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Contraseña</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Modificar contraseña</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Días de validez</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Sempre</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Comunidade Deepin</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Supresión automática de ruido</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Volumen de entrada</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Nivel de entrada</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Entrada</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Non se atopou ningún dispositivo de entrada de son</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Dispositivo de entrada</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Rato e Área táctil</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Os meus dispositivos</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Nome do ordenador</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Non pode empezar ou acabar con guiones</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Nome do sistema operativo</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Versión</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Edición</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Tipo</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Autorización</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Hora de instalación do sistema</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Núcleo</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Plataforma gráfica</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Procesador</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Memoria</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Outros dispositivos</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Mostrar dispositivos Bluetooth sen nome</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Contrasinal actual</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Obrigatorio</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Débil</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Medio</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Fuerte</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Repetir contrasinal</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Pista de contrasinal</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Opcional</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>O contrasinal non pode estar en branco</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Os contrasinals non coinciden</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>A pista é visible para todos os usuarios. Non inclúis o contrasinal aquí.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>O novo contrasinal debe diferir do actual</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Modificar contrasinal</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Restablecer contrasinal</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>A lonxitude do contrasinal debe ser de polo menos 8 caracteres, e o contrasinal debe contén unha combinación de polo menos 3 das seguintes: letras mayúsculas, minúsculas, números e símbolos. Este tipo de contrasinal é máis seguro.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Restablecer o contrasinal limpará os datos almacenados no anfiteatro de chaves.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalización</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Claro</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Auto</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Escur@</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Personalizado</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Área de complementos</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Seleccionar que iconas aparecen no Dock</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Apagar</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Suspender</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Hibernar</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Apagar o monitor</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Mostar a interface de apagado</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Non facer nada</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Pantalla e suspensión</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Apagar o monitor despois de</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Bloquear a pantalla despois de</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>O ordenador entra en suspensión despois de</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Cando se pecha a tapa</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Cando se prema o botón de alimentación</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Alto rendemento</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Equilibrio do rendemento</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>Ajustar agresivamente a frecuencia de operación do CPU dependendo da carga do CPU</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Equilibrado</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Conservation de enerxía</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Priorizar o rendemento, o que aumentará significativamente a consumición de enerxía e a geração de calor</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Equilibrar o rendemento e a vida da batería, ajustado automaticamente segundo a utilización</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Priorizar a vida da batería, que o sistema sacrificará algúns rendementos para reducir a consumición de enerxía</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Minutos</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Hora</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Nunca</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Política de privacidade</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>A contrasinal non pode estar en branco</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>A contrasinal debe ter polo menos %1 caracteres</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>A contrasinal non debe ter máis de %1 caracteres</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>A súa contrasinal só pode contén letras en inglés (sensible á cadradeira), números ou símbolos especiais (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)\n</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Non use %1 caracteres palíndromos\n</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Non use %1 caracteres monotónicos\n</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Non use %1 caracteres repetidos\n</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>A súa contrasinal debe contén letras mayúsculas, minúsculas, números e símbolos (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)\n</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>A súa contrasinal non debe contén máis de 4 caracteres palíndromos\n</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Non use palabras e combinacións comúns como contrasinal\n</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Crea un contrasinal forte, por favor\n</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Non atopase a as regras de contrasinal\n</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Centro de Control\n</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Activado\n</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Ver\n</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Para activar\n</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Activar\n</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Expirado\n</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Durante o período de proba\n</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>A proba expirou\n</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center\n</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Configuración da Pantalla táctil\n</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Cambian as configuracións da pantalla táctil\n</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>A pantalla de fons do sistema está bloqueada. Por favor, contáctese co seu administrador.\n</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Buscar\n</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Formatos por defecto\n</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Primer día da semana\n</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Data corta</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Data longa</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Hora corta</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Hora longa</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Símbolo de divisa</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Dígito</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Tamaño de papel</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Gardar</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Buscar</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Establecer unha contrasinal</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 caracteres</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Repetir o contrasinal</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirmar</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Os contrasinals non coinciden</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Guarda-pantalla</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>prévia</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Guarda-pantalla personalizado</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>configuración</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>tempo inactivo</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minuto</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minutos</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minutos</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minutos</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minutos</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 hora</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>nunca</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Se necesite unha contrasinal para recuperación</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Protección de pantalla de diapositivas de fotos</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Protección de pantalla do sistema</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Buscar</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Engadir atalho personalizado</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Nome:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Requerido</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Comando:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Atalho</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Non</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Engadir</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Atalos</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Atalho do sistema, atalho personalizado</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Atalos de busca</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>feito</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>editar</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Clique</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>ou</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Substituír</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Restaurar os valores predeterminados</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Engadir atalho personalizado</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Son</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Dispositivos de saída</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Selecciona se queres activar os dispositivos</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Dispositivos de entrada</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Efectos sonoros</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Encendemento</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Apagar</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Sair</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Despertar</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volumen +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notificación</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Batería baixa</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Enviar o icona no Lanceiro ao Escritorio</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Borrar a lixeira</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Conectar</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Desconectar</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Dispositivo removíbel conectado</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Dispositivo removíbel desconectado</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Erro</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Modo</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Volumen de saída</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Amplificación do volumen</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Se o volumen é superior a 100%, pode distorcer o son e ser perjudicial para os dispositivos de saída</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Esquerdo</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Dereito</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Saída</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Non se atopou ningún dispositivo de saída para o son</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Equilibrio esquerdo-dereito</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Fundir canais esquerdo e dereito nun único canal</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Se o son irá pausarse automaticamente cando se desconeza o dispositivo de son actual</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Dispositivo de saída</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Son</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Poder</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Rexistro</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Actualizar</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Ecran de espera</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Máis fondos de pantalla</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Sincronización automática do tempo</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Servidor NTP</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Data e hora do sistema</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Personalizar</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Configuración</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Enderezo do servidor</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Requerido</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>A dirección do servidor ntp non pode estar vazia</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>Usar formato de 24 horas</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>fuso horario do sistema</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Lista de fusos horarios</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>desde</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>até</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Gardar as configuracións de visualización</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>As configuracións volverán a ser asixadas en %1s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Reanudar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Gardar</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Engadir fuso horario</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Determinar o fuso horario baseándose na localización actual</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Fuso horario:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Ciudad máis xistra:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Gardar</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Pantalla táctil</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Configuración aquí ao conectar a pantalla táctil</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Configuración básica</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Pantalla táctil</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Velocidade do indicador</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Lento</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Rápido</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Desactivar a pantalla táctil durante a entrada</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Tocar para clicar</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Deslizado natural</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Gestos con tres dedos</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Gestos con cuatro dedos</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Únete ao Programa de Experiencia do Usuario</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Verificación de seguridade</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>A acción é sensible, por favor introduce primeiro o contrasinal de inicio de sesión</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 caracteres</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>¿Olvidou a contrasinal?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancela</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirma</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>fondo de pantalla</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>As minhas imaxes</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Fondo de pantalla do sistema</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Fondo de pantalla de corolao sólido</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Fondos de pantalla personalizables</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>estilo de relleno</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Cambio de fondo de pantalla automático</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>nunca</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 segundos</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minuto</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minutos</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minutos</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minutos</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minutos</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>iniciar sesión</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>despertar</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Fondo de pantalla en vivo</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 hora</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>desdoblar</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Establecer pantalla de bloqueo</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Establecer escritorio</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Interfaz e efectos</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Configuración de ventanas</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Bordes redondeados de ventanas</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Ninguno</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Pequeño</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Grande</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Habilitar efectos transparentes ao mover ventanas</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Efecto de minimización de ventana</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Escala</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Lámpara mágica</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Opacidad</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Bajo</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Alto</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Barras de desplazamento</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Mostrar ao desplazarse</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Manter mostrado</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Mostraxe compacta</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Se está habilitado, se mostrará máis contido na ventá.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Altura da barra de títuloe</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Só se atopará para as barras de título das ventás de aplicación desenhadas polo gerador de ventá.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Extremadamente pequeno</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Chinés tradicional (Chinés de Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Chinés tradicional (Chinés de Taiwán)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwán China</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>O nome de usuario debe estar entre 3 e 32 caracteres</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>O primer carácter debe ser unha letra ou número</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>O seu nome de usuario non debe ter só números</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>O nome de usuario xa foi utilizado por outras contas de usuario</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>O nome completo é moi lonxe</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>O nome completo xa foi utilizado por outras contas de usuario</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Contrasinal incorrecto</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Este atallo entra en conflito con [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>A password non pode estar vacío</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>A password debe ter pelo menos %1 caracteres</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>A password non debe ter máis de %1 caracteres</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>A password únicamente pode contencer letras de inglés (sensible á caxa), números ou símbolos especiais (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Non use máis de %1 caracteres palíndromos</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Non use máis de %1 caracteres monotónicos</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Non use máis de %1 caracteres repetidos</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>A password debe contencer letras mayúsculas, minúsculas, números e símbolos (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>A password non debe contencer máis de 4 caracteres palíndromos</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Non use palabras e combinacións comúns como contrasinal</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Crea un contrasinal forte, por favor</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Non atopase aoas reas do contrasinal</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistema</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Xanela</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Escritorio</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Xogos de axuda</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Personalizado</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Ningún</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_he.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"he\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>ערוך</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>הוספת משתמש חדש</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>הגדר שם מלא</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>הגדרות כניסה</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>כניסה בלי סיסמה</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>מחק את חשבון המשתמש הנוכחי</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>הגדרת קבוצה</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>קבוצות חשבון</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>נגמר</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>שם הקבוצה</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>הוספת קבוצה</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>כניסה אוטומטית</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>מידע על חשבון</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>שם חשבון, שם מלא של חשבון, סוג חשבון</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>שם חשבון</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>שם מלא של חשבון</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>סוג חשבון</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>ה했는데ה של פנים</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>אילותי ומסכים ל</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>האזהרה</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>הבא</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>ה体制机制 של הפנים נרשם</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>סגנון קומיקס</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>סגנון ממד</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>סגנון מسطح</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ביטול</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>שמור</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>מסך ופסק פעילות</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>כבה את מסך המחשב לאחר</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>לOCK מסך המחשב לאחר</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>מחשב הפסק פעילות לאחר</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>כאשר סילוק הסלע נסגר</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>כאשר לחץ על כפתור האמצעי</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>בatterיה נמוכה</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Thông báo בatterיה נמוכה</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>פסק פעילות אוטומטי</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>היבריה אוטומטית</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>סף בatterיה נמוכה</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>ניהול בatterיה</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>הצגת זמן שימוש וטעינה оставшегося</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation> dung最大化容量</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>_LVL בatterיה נמוכה</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation> Dezactiva</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth נסגר, ושם מוצג כ&quot;%1&quot; </translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth פועל, ושם מוצג כ&quot;%1&quot; </translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>הסר</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>תחבר</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>חיבור פעיל</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>הסיסמה不能为空</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>הסיסמאות לא תואמות</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>הססמה שניתנה:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>בטל</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>SURE</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>STAR ANIMATION</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>JUST THE SIZE OF THE LOGO ANIMATION ON THE SYSTEM STARTUP INTERFACE</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Allow below apps to access your camera:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>אצבע1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>אצבע2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>אצבע3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>אצבע4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>אצבע5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>אצבע6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>אצבע7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>אצבע8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>אצבע9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>אצבע10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>הסריקה נכשלה</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>האצבע כבר קיימת</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>אנא סרק אצבעות אחרות</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>שגיאה לא ידועה</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>הסריקה פסקה</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>לא ניתן לזהות</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>ניעג TOO FAST</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>אצבע שוחזרה得太快，请不要在提示前抬起</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>האצבע לא ברורה</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>כין את האצבע או תרגל אתposição האצבע, ונסה שוב</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>נבדק כבר</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>תרגל את pozיציה האצבע כדי לסרוק את האצבע שלך לחלוטין</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>אצבע שוחזרה得太快，请不要在提示前抬起</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>הרים את האצבע והניח אותה על הסינזור שוב</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>תPOSITION את הפנים בתוך התמונה</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>פניה מתאגדות</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>תPOSITION פנים אנושיות, בבקשה</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>הישאר מהתמונה</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>הקרב את עצמך לתמונה</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>אל תPOSITION מספר פנים בתוך התמונה</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>確保相機鏡頭是乾淨的</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>אל תегистיר בvironments昏暗、明亮或背光环境中</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>הישאר את הפנים נטול כיסוי</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>הסריקה נגמרת</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ביטול</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>צבע מיתר</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>הגדרות סמל</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>תema של סמל</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>לא ניתן לקבל גישה לשורטט</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>אנא התחבר ל-ID שלך של המאוחד קודם</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>לא ניתן לקרוא מידע על המחשב שלך</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>אין תקשורת רשת</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>טעות בטעינת תעודת זהות, לא ניתן לקבל גישה לשורטט</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>ה��יה של חתימה נכשלה, לא ניתן לקבל גישה לשורטט</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>סכום ומשתתף בדוחת ניסוי משתמש</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>ה_DECLARATION של מצב מפתח</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>סכום ובקש גישה לשורטט</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>החל בהגדרת האנימציה החדשה של התחלה, אנא המתן רגע</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>ההגדרה של האנימציה החדשה של התחלה נסבה</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>ההגדרות יישמשו לאחר הפעלת המערכת מחדש</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>הסיסמה חייבת לכלול מספרים ואותיות</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>הסיסמה חייבת להימצא בין 8 ל-64 תווים</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>צור חשבון חדש</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>סוג חשבון</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>שם משתמש</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>אOLT</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>שם מלא</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>אפשרי</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>בטל</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>צור חשבון</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>אתה לא העלות עדיין אובט. לחץ או התענוג ותורד כדי להעלות תמונה.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation> זמין</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/פרטי-פרטיות-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/验伤-经验-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>הסכים להצטרף לתוכנית ניסוי משתמש</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>הגדרת תאריך וזמן</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>תאריך</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>שנה</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>חודש</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>יום</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>שעון</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>בטל</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>CAFIR</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>מחר</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>אתמול</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>היום</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 שעות לפני helyתי</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 שעות אחרי helyתי</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>فضה</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>שבוע</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>יום ראשון בשבוע</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>תאריך קצר</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>תאריך ארוך</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>זמן קצר</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>זמן ארוך</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>סמל מטבע</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>מטבע положительный</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>מטבע שלילי</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>סימן שבר</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>סימן חלוקה של ספרות</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>חלוקה של ספרות</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>גודל עמוד</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>האם יש צורך בתוכנית אימות כדי לשנות את שרת NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>בטל</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>שמור</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>מרכז kontrol מציע את האפשרויות לשינוי הגדרות מערכת</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>קשר לWhatsApp</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>ב联系我们，您可以安全且快速地登录到您的 %1 ID 和本地账户。</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>לא קשורים</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>פרישה</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>קשר</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>אתה בטוח שתרחק מWhatsApp?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>לאחר הפרישה מWhatsApp, לא תוכל להשתמש בWhatsApp כדי להתחבר באמצעות קוד QR ל %1 ID או חשבון מקומי.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>תתבונן בזה</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>קשר חשבון מקומי</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>לאחר הקישור לחשבון המקומי שלך, תוכל להשתמש בפונקציות הבאות:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>מערכת כניסה באמצעות קוד סcan של WhatsApp</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>استخدم WhatsApp، המושקף对你 %1 ID，扫码登录到您的本地账户。</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>איפוס סיסמה באמצעות %1 ID</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>אזורים אחרים</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>המאפיין לא זמין这时候先激活您的系统</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>לפי החוקים והתקנות המקומיים, זה זמין כעת באזור שלך.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>בבקשה בחר תוכנית סטנדרטית להפתיח &apos;%1&apos;, </translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>הוסף</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>פתור קובץ שולחן עבודה</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>יישומים (*.desktop), </translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>כל הקבצים (*) ,</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>גישה לroot</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>בקשה לגישה לroot</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>FTER ENTERING THE DEVELOPER MODE, YOU CAN OBTAIN ROOT PERMISSIONS, BUT IT MAY ALSO DAMAGE THE SYSTEM INTEGRITY, SO PLEASE USE IT WITH CAUTION.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>מותר</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>הכנס</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>בצורה מקוונת</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>התחבר עם UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>בצורה לא מקוונת</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>הוסף תעודת זהות</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>בחר קובץ</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>UOS ID שלך התחבר, לחץ כדי להיכנס למוד פיתוח</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>בבקשה התחבר עם UOS ID שלך קודם ומשך</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1. התמונות של המחשב</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>ייצא</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3. הוסף תעודת זהות</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>אפשרויות תכנון ובדיקות</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>רמת רישום מערכת</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>שינוי אפשרויות אלו יוביל לרשום מפורט יותר可能會降低系统性能和/或占用更多存储空间</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>הופסק</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>דיבגging</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>שינוי האפשרות עשוי לקחת עד דקה ליעשות, לאחר קבלת תזכורת בהצלחה להגדרה, אנא התחבר מחדש כדי שהשינוי יAPEK</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>תצוגה</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>תאפשר ל_APPS_ להיע朦文件和文件夹</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>קבצים של דוקומנטים</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>שולחן העבודה</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>תמונות</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>וידאו</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>מוזיקה</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>הורדות</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>תיקיה</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>גודל</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>שכיח שפה</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>שפה תווים אחידים</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>תנאי כוח</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>הגדרות שמירה של כוח</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>שמירת כוח אוטומטית ב batterylow</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>סף מינימלי של בATTERY</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>שמירת כוח אוטומטית ב batterysystem</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>הגדרות תעורר</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>האם יש צורך סיסמה כדי להתחבר למחשב</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>האם יש צורך סיסמה כדי להתחבר למדפסת</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>הגדרות היעדר</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>היעדר מוקדם</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>זמן</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>חזור</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>פעם</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>כל יום</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>הימים האכיפתיים</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>זמן מותאם אישית</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>איבד את הנורמות של המסך בזמן שמירת האנרגיה</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>חיפוש</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ביטול</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>הוסף</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>방식 של כניסה</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>סיסמה, ו챗, אימות פיזי, מפתח אבטחה</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>סיסמה</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>הצג סיסמה</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>ימים בתוקף</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>תמיד</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>כל הזכויות שמורות © 2011-%1 קהילת Deepin</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>כל הזכויות שמורות © 2019-%1 חברת תוכנה של וינדט</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>ה.fromStringילינג הסופטי של רעש</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>볼륨 של הכניסה</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>כמות הכניסה</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>הכנס</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>לא נמצאו תשתית להכנסה של סאונד</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>עכבר ומשטח מגע</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>הустройств שלי</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>שם המחשב</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>לא ניתן להתחיל או להסתיים בנקודות פסיק</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>שם הOS</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>גרסה</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>dition</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>סוג</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>השכלה</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>זמן התקנה של מערכת</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>כרnice</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>תמונה שטח</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>معالג</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>זיכרון</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>устройств אחרים</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>הצג-devices של Bluetooth ללא שמות</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>סיסמה נוכחית</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>נדרש</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>ضعيف</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>בינוני</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation> חזק</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>אתחול סיסמה</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>אזהרה סיסמה</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>לא חובה</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>הסיסמה不能为空</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>הסיסמאות לא תואמות</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>האזהרה מופיעה לכל משתמשים. אל תכתוב כאן את הסיסמה.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>הסיסמה החדשה צריכה להיות שונה מהסיסמה הנוכחית</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>לכבות את הסיסמה</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>אפס את הסיסמה</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>אורך הסיסמה צריך להיות לפחות 8 תווים, והסיסמה צריכה לכלול תערובת של לפחות 3 מהלולאות הבאות: אותיות גדולות, אותיות קטנות, מספרים וסימנים. הסיסמה הזו היא יותר בטוחה.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>איפוס הסיסמה ימחק את הנתונים שמורים בקירחון.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ביטול</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>התאמה אישית</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>בהיר</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>אוטומטי</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>😉</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation> Cástom</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>אזור הממוצעים</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>בחר את הסמלים שמת.ToDateTime</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation> TURN OFF</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>הסРИ</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>הסיסמה יכולה להכיל רק אותיות אנגלית (🙂-🙂), מספרים או סמלים מיוחדים (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>אינקסם יותר מ%1 סימנים פלינדרום, אנא</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>אינקסם יותר מ%1 סימנים רצופים, אנא</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>אינקסם יותר מ%1 סימנים מופ�מים, אנא</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>הסיסמה חייבת להכיל אותיות גדולות, אותיות קטנות, מספרים וסמלים (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>הסיסמה לא תכיל יותר מ-4 סימנים פלינדרום</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>אל תשתמש בסיסמאות משותפות או תכונות</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>בבקשה צור סיסמה חזקה</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>זה לא מקיים את כללי הסיסמה</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>מרכז kontrol</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>מפעיל</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>הצג</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>להפעיל</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>פעיל</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>הסתיימה</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>בתקופה ניסיון</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>תקופת הניסיון הסתיימה</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>הגדרות מסך-touch</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>ה הגדרות מסך-touch נמשכו</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>ה)(((( [[[ מותקן של מערכת זה מוטקן. אנא התató את המנהל שלך]]]] ((((ה</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>חיפוש</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>צורות ברירת מחדל</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>יום ראשון של שבוע</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>תאריך קצר</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>תאריך מאריך</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>שעה קצרה</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>שעה מאריך</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>סמל מטבע</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>מספר</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>גודל עמודה</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ביטול</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>שמור</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>חיפוש</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>設置密碼</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 תווים</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>הסיט סיסמה נוספת</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ביטול</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>#afirmar</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>הסיסמאות לא תואמות</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>ה哈哈哈</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>תצוגה מקדימה</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>螢幕保護程式</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>הגדרות</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>זמן בזבז</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 דקות</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 דקות</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 דקות</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 דקות</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 דקות</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>שעה</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>никогда</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>האם יש צורך בסיס סיסמה כדי להחזיר</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>הצג את התמונה בהצגה גלובית</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>הצג את מסגף מערכת</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>חיפוש</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>הוסף מקצט אישי</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>שם:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>נדרש</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>פקודה:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>מקצט</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>לא קיים</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>בטל</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>הוסף</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>מקצצים</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>מקצט מערכת, מקצט אישי</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>מקצצים לחיפוש</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>נגמר</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>ערוך</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>לחץ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ביטול</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>או</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>החלף</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>אשנה לבררת</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>הוסף מקצט אישי</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>שמע</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>устройств יציאה</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>בחר אם להפעיל את הустройств</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>устройств כניסה</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>הפקות קול</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>הפעלה</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>הסגר</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>יציאה</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>akeup</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>用微信翻译</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Thông báo</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>בatterיה נמוכה</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>שלח סמל מlauncher לשולחן עבודה</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>אפס את/recycle bin</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>העתק</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>העתק</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>DEVICE-CONNECTED</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>DEVICE-REMOVED</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>שגיאה</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>מצב</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>היקף יציאה</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>העלאה ב-volume</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>אם volume גדול מ-100%, הוא עשוי לפגוע ב음을 ולהיות מסוכן לש (*)(device)</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>שמאל</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>ימין</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>פלט</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>לא נמצאה מכשיר פלט ל-sound</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>균형 בין שמאליים-ימיניים</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>לכלול את ערוצי השמאליים והימיניים לערוץ אחד</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>האם האודיו ישבח אוטומטית כאשר מכשיר האודיו הנוכחי נתקל</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>음을</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>חשמל</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>ה *)&amp;mouse</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>עדכון</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>שימור מסך</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>מגזר קבצי שים מסך נוספים</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>הפעלת השתוא אוטומטי זמן</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>שרת NTP</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>תאריך וזמן מערכת</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation> Cáןוס</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>הגדרות</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>כתובת שרת</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>נדרש</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>כתובתשרת ntp不能为空</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>استخدم تنسيق 24 ساعة</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>منطقة الزمان النظامية</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>قائمة المناطق الزمنية</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>מ</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>עד</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>שמור הגדרות התצוגה</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>ת revenות הגדרותיו ב %1 שניות.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>חזרה</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>שמור</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>הוסףzonת ime</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>קבע אתzonת ime לפי המיקום הנוכחי</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>zonת ime:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation> עיר קרובת:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>בטל</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>שמור</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>מסך משיק</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>הגדר כאן בעת תצוגת מסך המשיק</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>הגדרות בסיסיות</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>מגנטית משיק</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>מהירות העיגול</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>איטי</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>רחב</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation> Dezקוף מגנטית המשיק במהלך הכניסה</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>לחץ כדי לחץ</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>התקדמות טבעי</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>ה惴 של שלושה אצבעות</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>ה惴 של ארבעה אצבעות</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>הצטרף לתוכנית ניסוי משתמש</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>הוכחת בטיחות</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>הפעולה היא רגישת, אנא הכנס את סיסמת הכניסה קודם</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 תווים</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>שכחתי סיסמה?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>בטל</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>אשר</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>תמונה מסך</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>תמונות שלי</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>תמונה מסך מערכת</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>.Snירחית צבע ثابت</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>.Snירחיות מ定制化</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>סגנון למלא</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>שינוי נייר הירח אוטומטי</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>никогда</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 שניות</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 דקה</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 דקות</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 דקות</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 דקות</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 דקות</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>כניסה</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>akeup</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Snירחית חיה</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 שעה</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation> desarROLLO</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>הגדר מסך ההסעה</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>הגדר שולחן עבודה</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>רפרון והפקות</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>הגדרות נוחות הווינטת</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>קצוות עגולים של החלון</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>לא כלום</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>סינית מסורתית (סינית הונג קונג)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>סינית מסורתית (סינית טיוואן)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>טיוואן סין</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>שם משתמש חייב להיות בין 3 ל-32 תווים</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>האות הראשונה חייבת להיות אות או מספר</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>שם משתמש שלך לא יכול להכיל רק מספרים</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>שם משתמש זה בשימוש על ידי חשבון משתמש אחר</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>שם מלא הוא מדי ארוך</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>שם מלא זה בשימוש על ידי חשבון משתמש אחר</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>סיסמה לא נכונה</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>משתמש סטנדרטי</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>מנהל</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation> Cástuizado</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>המארח שלך נמחק מהשרת של המתחום בהצלחה</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>המארח שלך הצטרף לשרת של המתחום בהצלחה</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>המארח שלך נכשל להיעלם מהשרת של המתחום</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>המארח שלך נכשל להצטרף לשרת של המתחום</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>הגדרות מתחום AD</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>הסיסמאות לא תואמות</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>מימדי</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>שטוח</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>הקצרה הזו מתנגשת עם [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>הסיסמה不能为空</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>הסיסמה חייבת להכיל לפחות %1 תווים</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>הסיסמה חייבת להכיל לא יותר מ-%1 תווים</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>הסיסמה יכולת להכיל רק אותיות אנגלית (😉שונה בין גדול小额写)，数字或特殊符号 (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>לא יותר מ-%1 תווים פלינדרום,  בבקשה</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>לא יותר מ-%1 תווים רציפים,  בבקשה</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>לא יותר מ-%1 תווים רואים שוב ושוב,  בבקשה</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>הסיסמה חייבת להכילאות גדול, אותיות מינuscile, מספרים וסימנים (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>הסיסמה לא יכולה להכיל יותר מ-4 תווים פלינדרום</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>אל תשתמשו בשמות משובחים ותאימות כסיסמה</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>בבקשה תיצור סיסמה חזקה</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>זה לא משקף את כללי הסיסמה</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>מערכת</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>חלון</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>מישור עבודה</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation> Werkzeuge zur Unterstützung</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>מאפיין</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>לא</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_hi_IN.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"hi_IN\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>कनेक्ट है </translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>कनेक्ट नहीं है</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द करें</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>डिस्प्ले </translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>इनपुट ध्वनि स्तर</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>अनुकूलीकरण </translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>स्वयं के द्वारा</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>कूटशब्द हेतु साधारण शब्द व संयोजन उपयोग न करें</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>यह कूटशब्द नियमानुसार नहीं है</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>नियंत्रण केंद्र</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>देखें</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>ध्वनि</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>ध्वनि प्रभाव </translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>बंद करें</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>लॉग आउट</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>सूचना </translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>लो बैटरी  </translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>मोड </translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>आउटपुट ध्वनि स्तर</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>बाएँ</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>दाएँ</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>पूर्ववत्</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>संचित करें</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>पुरातन चीनी (चीनी हंग कोंग)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>पुरातन चीनी (चीनी ताइवान)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>ताइवान चीन</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>यह शॉर्टकट [%1] के साथ विघटित है</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>सिस्टम</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>विंडो</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>वर्कस्पेस</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>सहायक उपकरण</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>स्वचालित</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>कोई नहीं</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_hr.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"hr\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Spojeno</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Nije spojeno</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Otisak prsta1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Otisak prsta2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Otisak prsta3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Otisak prsta4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Otisak prsta5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Otisak prsta6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Otisak prsta7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Otisak prsta8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Otisak prsta9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Otisak prsta10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Otisak prsta već postoji</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Nepoznata greška</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Prst se prebrzo pomicao, molim nemojte ga podizati dok ne budete obavješteni</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Otkaži</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Zaslon</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Ulazna glasnoća</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Miš i Touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Izgled</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Prilagođeno</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Lozinka ne smije biti prazna</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Lozinka mora imati najmanje %1 znakova</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Lozinka ne smije biti veća od %1 znakova</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Lozinka može sadržavati samo engleska slova (velika i mala), brojeve i posebne simbole (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Lozinka mora sadržavati velika slova, mala slova, brojeve i simbole (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Ne koristi uobičajene riječi i kombinacije kao lozinku</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Molim napravite jaku lozinku</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Nije u skladu s pravilima lozinke</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Središte upravljanja</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Aktiviran</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Pogled</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Biti će aktiviran</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Aktiviraj</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Isteklo</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>U probnom periodu</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Zvuk</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Zvučni efekti</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Učitaj sustav</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Isključi</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Odjava</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Probudi</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Glasnoća +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Obavijest</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Slaba baterija</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Pošalji ikonu iz pokretača na radnu površinu</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Isprazni smeće</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Ukopčaj</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Iskopčaj</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Uklonjivi uređaj je spojen</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Uklonjivi uređaj je uklonjen</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Greška</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Način</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Izlazna glasnoća</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Lijevo</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Desno</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Izlazni uređaj</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Vrati</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Spremi</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Tradicionalna kineska (Kina Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Tradicionalna kineska (Kina Tajvan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Tajvan Kina</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Ova skraćenica se konfliktira s [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sustav</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Prozor</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Radni prostor</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Pomoćne alate</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Prilagođeno</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Nijedan</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_hu.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"hu\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation> szerkesztés</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Új felhasználó hozzáadása</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Teljes nev beállítása</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Bejelentkezési beállítások</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Jelszó nélkül bejelentkezés</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Jelenlegi fiók törlése</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Csoport beállításai</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Fiók csoportai</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>kész</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Csoport neve</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Csoport hozzáadása</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Automatikus bejelentkezés</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Fiók információi</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Fióknév, fiók teljes neve, fióktípus</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Fióknév</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Fiók teljes neve</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Fióktípus</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Találat felvitele</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Olvastam és elfogadom a</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Monitortájékoztatás</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Következő</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Találat felvitt</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégsem</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Kész</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Környezet</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Késcsarnok stílus</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Plat stílus</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégse</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Mentés</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Értekezés és leállítás</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>A képernyő kikapcsolásakor</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>A képernyő zárolásakor</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>A számítógép leállításakor</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Ha zárja be a tapasztalólapot</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Ha nyomja a hajóalattal a hajógombot</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Alacsony bateriamegszint</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Alacsony bateriamegszint értesítés</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Automatikus leállítás</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Automatikus hibernálás</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Alacsony bateriamegszint határoló</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Bateriamegmentés</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Mutassa meg a maradék használati és charge időt</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Maximális kapacitás</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Alacsony bateriamegszint</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Kikapcsolás</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>A Bluetooth kikapcsolva, és a neve megjelenik a &quot;%1&quot; kifejezésben</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>A Bluetooth engedélyezve, és a neve megjelenik a &quot;%1&quot; kifejezésben</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Kapcsolat lezárása</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Kapcsolódás</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Fájlok küldése</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Átnevez</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Eszköz eltávolítása</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Fájl kiválasztása</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Szerkesztés</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Távoli Bluetooth-eszközöknek megtalálhatóvá tenni ezt az eszközt</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>A Bluetooth-függvényt használni szeretné, érvényesítenie kell a</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Repülési módszert</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Csatlakozva</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Nincs csatlakozva</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Indítási beállítások</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>A menü megnyomásával módosíthatja az alapértelmezett indítási beállításokat, vagy az képet a ablakba támasztva módosíthatja a háttérképet.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>grub indítási időtartam</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>téma</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>A téma bekapcsolása után látja a téma háttért, amikor bekapcsolja a számítógépet</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Indítási menü ellenőrzése</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>A megnyitás után a menü szerkesztése előtt jelszó szükséges.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Jelszó megváltoztatása</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Indítási menü ellenőrzési jelszó módosítása</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Bejelentkezési jelszó beállítása a betöltés menüben</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Felhasználónév :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Új jelszó :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Kötelező</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>A jelszó nem lehet üres</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>A jelszavak nem egyeznek</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Jelszó újrapróbálkozása:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégsem</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Igen</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Kezdő animáció</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Rendszertörlési felületen módosítsa a logó animáció méretét</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Alábbi alkalmazások engedélyezése kamerájának hozzáférésére:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Adatlap1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Adatlap2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Adatlap3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Adatlap4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Adatlap5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Adatlap6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Adatlap7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Adatlap8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Adatlap9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Adatlap10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>A visszaállítás sikertelen</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Az adatlap már létezik</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Kérjük, visszaállítsa más ellenőrzőlapokat</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Ismeretlen hiba</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Visszaállítás megszakítva</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Nem tudja azonosítani</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Túl gyorsan mozgatott</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>A szónyom túl gyorsan mozogott, kérjük, ne emelje fel, mielőtt kérne</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Nem jól látszóda a szónyom</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Tisztítsa a szónyomat vagy javítsa át a szónyom helyzetét, és próbálkozjon újra</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Már visszaállítva</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>A szónyom teljes körű felvételéhez javítsa át a szónyom helyzetét</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>A szónyom túl gyorsan mozogott. Kérjük, ne emelje fel, mielőtt kérne</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Emelje fel a szónyomat és helyezze át újra a szensoron</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Tárolja a személyt a keretben</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Személy bejelentkezve</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Kérjük, helyezze át egy emberi személyt</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Távolítsa el az kamerától</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Lépjen a kamerához</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Ne helyezze át több személyt a keretben</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Ügyeljen arra, hogy a kamerakész a tisztességben legyen</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Ne regisztráljon sötétségen, fáradtságon vagy háttér-illatos helyeken</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Ne hajtsa el a személyét</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>A visszaállítás időtúllép</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégse</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Kötőszín</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Ikon beállítások</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Ikon téma</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Töltse be a téma ikont</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Kurzor téma</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Töltse be a téma kurzorát</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Biztos, hogy törölni szeretné ezt az fiókot?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Fiók könyvtár törlése</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégsem</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Töröl</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Beállítások megnyitása</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégsem</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Általános</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Ismétlés időtartama</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Rövid</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Hosszú</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Ismétlés sebessége</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Hamarosan</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Ráadásan</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Számkódrészlet</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>Írd ide a tesztet</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Kisbetűk szükséges</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Másodszoros kattintás sebessége</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Másodszoros kattintás teszt</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Bal kezdő mód</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Nagy méret</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Kis méret</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>Nem sikerült a root hozzáférést kapni</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Kérjük, először jelentkezzen be Union ID-jére</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>Nem lehet olvasni a számítógép információit</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>Nincs hálózati kapcsolat</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>A tanúság betöltése sikertelen, nem sikerült a root hozzáférést kapni</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>A hitelesítő aláírás ellenőrzése sikertelen, nem sikerült a root hozzáférést kapni</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Elfogadás és felhasználói élményprogram bejovolása</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>Fejlesztői mód nyilatkozata</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>Elfogadás és root hozzáférést kérése</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>A új indítási animáció beállítását indítom el, kérlek, várj egy percig</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>A új indítási animáció beállítása befejeződött</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>A beállítások újraindítás után lesznek alkalmazva</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>A jelszó számokat és betűket kell tartalmazni</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>A jelszó hossza 8 és 64 karakter között kell lennie</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Új fiók létrehozása</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Fiók típusa</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Felhasználónév</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Szükséges</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Teljes neve</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Opcionalis</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégsem</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Fiók létrehozása</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>Nem feltöltöttél még avatarodat. Kattints vagy tarts ki és húzd az képet.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>elérhető</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Elfogadás és felhasználói élmény program feliratkozása</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Dátum és idő beállítása</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Dátum</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Év</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Hónap</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Nap</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Idő</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégsem</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Megerősítés</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Holnap</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Elteltszámított nap</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Ma</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 óra korábbi időzóna</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 óra későbbi időzóna</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Tér</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Hét</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Hét első napja</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Kis dátum</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Hosszú dátum</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Kis idő</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Hosszú idő</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Pénznem jele</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Pozitív pénz</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Negatív pénznem</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Tizedesjelző</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Számok csoportosítási jele</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Számok csoportosítása</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Oldalszám</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>A NTP-szerver módosításához azonosítás szükséges</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Hitelesítés szükséges a rendszer időzónájának beállításához</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégse</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Mentés</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>A rendszergazdai felület a rendszerbeállítások beállítására szolgáló lehetőségeket nyújt.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>WeChat kötése</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>A WeChat kötésével biztonságosan és gyorsan bejuthat a(z) %1 ID-je és helyi fiókjaihoz.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Köteles</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Kötvényeltetés</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Kötés</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Biztosan el szeretné következtetni a WeChat köteleséget?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>A WeChat köteleséget követően nem fogja használhatni a WeChat-ot a QR kódolásra és a(z) %1 ID- vagy helyi fiókjába bejelentkezésre.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Elnézést, gondolkozom</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Helyi fiók kötése</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>A helyi fiók kötése után a következő funkciókat is használhatja:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>WeChat kódoló kódfeltöltési rendszer</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Használja a %1 ID-jéhez kötött WeChat-ot a kódolásra és helyi fiókjába bejelentkezésre.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Jelszó visszaállítása a(z) %1 ID segítségével</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>A(z) %1 ID segítségével visszaállíthatja a helyi jelszavát, ha elérte.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>A fentiek használatához kérjük, lépjen a Kontrollkenterelem - Fiókokra, és engedélyezze a megfelelő beállításokat.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Kérjük, válasson alapprogramot a(z) &apos;%1&apos; megnyitására,</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>hozzáadás</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Ábrázolóasztal fájl megnyitása</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Alkalmazások (*.desktop</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Minden fájl (*</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Rendszerhelyzés hozzáférés</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Kérjen rendszerhelyzés hozzáférést</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Az alkalmazó mód bejelentkezése után rendszerhelyzési engedélyeket tudja megkapni, de ez lehetővé teheti a rendszer integritásának károsodását, ezért használja ösztönösen.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Engedélyezve</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Bejelentkezés</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>Online</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>UOS ID bejelentkezés</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Kilépés</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Kártya beimportálása</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Fájl kiválasztása</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>Az UOS ID-jének bejelentkezése sikerült, kattintson az alkalmazó mód bejelentkezéséhez</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Kérjük, először jelentkezzen be az UOS ID-jébe, majd folytassa</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1.PC információ exportálása</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Exportálás</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.Importálás</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Fejlesztési és hibaelhárítási beállítások</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Rendszer naplózás szintje</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>A beállítások módosítása erőfeszítések naplózását erősíti, ami a rendszer teljesítlenségét és/vagy tárhely fogyasztását is csökkenteni foghatja.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Ki van kapcsolva</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Hibakeresés</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>A beállítás módosítása felhasználói felület 60 másodpercig folyamatosan folytatódhat. A beállítások érvénybe történéséhez kérjük, ismételd be a számítógépet.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Kijelző</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>A következő alkalmazásokat engedélyezzük a fájloknak és mappáknak hozzáférése számára:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Dokumentumok</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Asztali munkaállományok</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Képek</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Videók</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Zene</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Letöltések</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>mappájához</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Méret</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Általános betűtípus</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Szövegbetűtípus</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Hozzáállítások</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Törlési beállítások</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Automatikus törlési beállítás alacsony bateriamezőn</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Alacsony bateriamező határérték</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Automatikus törlési beállítás bateriamezőn</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Felbukkanási beállítások</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Jelszó szükséges a számítógép felbukkanásához</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Jelszó szükséges a képernyő felbukkanásához</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Kilépés beállításai</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Műournemouth kilépés</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Idő</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Ismétlés</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Egyszer</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Minden nap</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Munka napjai</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Egyéni idő</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Többenergetési mód során csökkentse az élőkép fényintensitását</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>&quot;,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Optimalizált teljesípmutatás</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Dinamizmus</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>Legjobb nézet</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Nyelv</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>kész</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation> szerkesztés</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Más nyelvek</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>hozzáadás</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Terület</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>Terület</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>A rendszer és alkalmazások lehetővé teszik, hogy hozzáférjen a helyi tartalomhoz a személyes országa és területének alapján.</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>A rendszer és alkalmazások a helyi formátumok alapján beállíthatják a dátum- és időformátumokat.</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Nyelv hozzáadása</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Keresés</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégse</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Hozzáadás</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Bejelentkezési metódus</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Jelszó, wechat, betavonási hitelesítés, biztonsági kulcs</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Jelszó</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Jelszó módosítása</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Érvényes időpont</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>M Mindig</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Deepin Community</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Automatikus hangerős elhárítás</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Beviteli hangerő</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Beviteli szint</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Bevitel</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Nincs hangbeviteli eszköz található</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Bemeneti eszköz</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Egér és touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Egyéb eszközök</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Számítógép neve</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Nem lehet kezdő- vagy zárójelekkal kezdődő vagy vegződő</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Operációs rendszer neve</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Verzió</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Kiadás</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Típus</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Engedélyezés</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Rendszergazdai telepítés időpontja</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Kernel</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Grafikus platform</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Processzor</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Memória</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Egyéb eszközök</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Mutass Bluetooth-eszközöket, amelyek nem rendelkeznek nevükkel</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Jelenlegi jelszó</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Kötelező</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Könnyű</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Közepes</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Súlyos</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Jelszó újrapróbálkozása</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Jelszó segítsége</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Opszcionális</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>A jelszó nem lehet üres</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>A jelszavak nem egyeznek</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>A segítség az összes felhasználó számára látható. Nem írd a jelszót ide.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>A új jelszó nem szabad ugyanazt használni, mint az aktuális</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Jelszó módosítása</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Jelszó visszaállítása</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>A jelszónak legalább 8 karakter hosszúnak kell lennie, és tartalmaznia kell legalább 3 az alábbi közül: nagybetűk, kisbetűk, számok és szimbólumok. Ez a típusú jelszó biztonságosabb.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>A jelszó visszaállítása törli az adatokat a kulcszázalékban.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégse</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Megjelenés</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Kicsép</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Automatikus</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Sötét</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Egyéni</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Beépülők területe</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Válaszd ki mely ikonok jelennek meg a Dock-on</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Leállítás</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Halt</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Hibernate</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Kapcsold le a képernyőt</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Mutasd a leállítási felületet</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Semmi sem</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Éparítás és kihúzás</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>A képernyő kikapcsolása után</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Zárolap megnyitása után</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>A számítógép szükségbe-váltása után</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Amikor zárja be a lapot</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Amikor a hozzáálló gombra nyomunk</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Magas teljesítmény</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Egyenletes teljesítmény</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>A CPU munkaállapotán alapuló agresszív CPU működési gyakorisági módosítás</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Egyensúlyos</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Táplálkozó</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>A teljesítmény prioritizálása, ami jelentősen növeli az energiafelhasználást és a hőtényt</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>A teljesítmény és a bateriaválasztás egyensúlyozása, automatikusan a használat alapján módosítva</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>A bateriaválasztás prioritizálása, ami jelentős teljesítményt terjeszt a hőtény csökkentésére</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation> perc</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation> óra</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Soha</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Adatvédelmi politika</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>A jelszó nem lehet üres</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>A jelszó legalább %1 karakterből állnia kell</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>A jelszó %1 karakternél hosszabb nem lehet</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>A jelszó csak angol betűket (kis- és nagybetűs), számokat vagy speciális karaktereket tartalmazhat ( ~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Kérjük, ne legyen több %1 palindrom betű</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Kérjük, ne legyen több %1 monoton betű</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Kérjük, ne legyen több %1 ismétlődő betű</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>A jelszó tartalmaznia kell nagybetűket, kisbetűket, számokat és szimbolusokat (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)\n</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>A jelszó nem tartalmazhat több, mint 4 palindromos karaktert\n</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Ne használj négyzetes szavakat és kombinációkat a jelszóként\n</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Kérlek, hozz létre egy erős jelszót\n</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Nem felel meg a jelszavaz szabályai\n</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Kontrolkör\n</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Aktivált\n</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Nézés\n</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Aktiválandó\n</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Aktiválás\n</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Lejárt\n</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Próbaverzió időszakban\n</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Próbaverzió lejárt\n</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center\n</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Élőképernyő beállítások\n</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Az élőképernyő beállításai módosultak\n</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Ez a rendszer háttérkép zárolt. Kérjük, lépjen kapcsolatba a vezéreléssel.\n</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Keresés\n</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Alapértelmezett formátumok\n</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Hét első napja\n</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Kis dátum\n</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Hosszú dátum\n</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Kis idő\n</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Hosszú idő\n</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>nézés</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>beállítás</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Keresés</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Egyedi捷径</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Név:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Kötelező</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Parancs:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Gyorsbillentyű</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Nincs</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégse</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Hozzáadás</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Gyorsbillentyűk</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Rendszer快捷键, 可定制快捷键</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Gyorsbillentyűk keresése</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>kész</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>módosítás</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Kattintson</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégse</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>vagy</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Helyettesítés</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Visszaállítás alapértelmezett</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Egyedi gyorsbillentyű hozzáadása</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Hang</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Kimenő eszközök</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Az eszközök engedélyezését kiválasztja</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Beviteli eszközök</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Hang hatások</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Indítás</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Kilépés</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Kijelentkezés</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Felbukkanás</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Hangerő +/−</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Értesítés</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Alacsony állapot</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Ícone küldése a futtató panelből a asztali felületre</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Rádi az üres íránya</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Beírás</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Kijelentkezés</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Távolítható eszköz csatlakoztatva</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Távolítható eszköz kijelentkezve</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Hiba</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Mód</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Kimenő hangerő</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Hangerő növelés</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Ha a hangerő nagyobb, mint 100%, ez a hang lehetségesen megszegheti, és károsíthatja a kimenő eszközöket</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Bal</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Jobb</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Kimenés</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Nem található hang kimeneti eszköz</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Bal és jobb egyenlítés</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Bal és jobb kanálak összefogása egy kanálba</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Lehet, hogy az audio automatikusan megakadásba lép, ha az aktuális audio eszköz kihúzva van</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Kimeneti eszköz</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Hang</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Műtét</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Talajgép</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Frissítés</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Táblazat</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Több tapasztalat</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Idő automatikus szinkronizálása</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Ntp szerver</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Szoftver naptár és idő</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Személyre szabás</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Beállítások</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Szerver címe</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Kötelező</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>Az ntp szerver címe nem lehet üres</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>24 órás formátum használata</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>szoftver időzóna</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Időzóna lista</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>tól</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>ig</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>A megjelenés beállításainak mentése？</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>A beállítások visszaállnak %1 second múlva.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Visszaállítás</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Mentés</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Időtartomány hozzáadása</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Az időtartomány beállítása a jelenlegi hely alapján</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Időtartomány:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Legközelebbi város:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégsem</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Mentés</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Képernyőtájékoztató</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Képernyőtájékoztató bekapcsolásakor beállítása ide</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Alapbeállítások</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Képernyőtájékoztató</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Kijelző sebessége</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Hamarosan</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Ráadású</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Bemenő időszak során a képernyőtájékoztató letiltása</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Kattintás a kattintáshoz</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Természetes olvasás</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Három-finger jelzések</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Négy-finger jelzések</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Felhasználói élmény programhoz joind</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Biztonsági ellenőrzés</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>Az eljárás érzékeny, először bejelentkezési jelszót adjon meg</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 karakter</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Elfelejtett jelszó?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Mégsem</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Megerősítés</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>háttérkép</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Egyéni képek</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Rendszer háttérkép</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Egyenlő színű háttérkép</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Tövábbi háttérképek</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>Feltöltés stílus</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Automatikus háttérkép cseréje</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>soha</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 másodperc</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 perc</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 perc</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 perc</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 perc</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 perc</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>Bejelentkezés</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>Indítás</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Élő tapasztalat</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 óra</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>eltalálható</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Blokkoló képernyő beállítása</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Máscsillag beállítása</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Felület és hatások</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Ablak beállításai</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Ablak feje körbe vonva</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Nincs</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Kicsi</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Nagy</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Ablakok mozgatásakor engedélyezzék a transzparenciájú hatásokat</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Ablak csökkentési hatás</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Skálázás</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Természetes nyomkövetés</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Álmosított szín</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Alacsony</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Magas</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Kattintáscsatornák</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Kezdőlapon megjelenítés</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Tartás megjelenítésével</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Összetettek megjelenítése</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Ha engedélyezve, több tartalom jelenik meg a ablakban.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Címmező magassága</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Csak azokhoz az alkalmazás ablakcímzónak megfelel, amelyeket a ablakkezelő rajzol.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Rendkívül kicsi</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Hagyományos kínai (Kínai Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Hagyományos kínai (Kínai Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Kínai Taiwan</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>Az üzenetszín neve 3 és 32 karakter között kell lennie</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>Az első karakter betű vagy számnak kell lennie</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>Az üzenetszín nevében nem csak számokat lehet</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>Ez az üzenetszín név már használta más felhasználói fiókok</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>A teljes nev túl hosszú</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>Ez a teljes nev már használta más felhasználói fiókok</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Hibás jelszó</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Közönségi felhasználó</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Kezelő</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Egyéni</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Eltávolították a gép a dománis szerverről sikeresen</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>A gép sikeresen csatlakozott a dománis szerverhez</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>A gép sikertelenül kilépett a dománis szerverről</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>A gép sikertelenül csatlakozott a dománis szerverhez</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>AD dománis beállítások</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>Jelszó nem egyezik</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Tizenegydimenziós</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Tizedikdimenziós</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Ez a raktárkézés konfliktusba kerül [%1] címmel</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>A jelszó nem lehet üres</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>A jelszó legalább %1 karakterből állnia kell</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>A jelszó %1 karakternél rövidebbnek kell lennie</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>A jelszó csak angol betűk (kis- és nagybetűk különbségére számítva), számok vagy speciális jelek ( ~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/) tartalmazható (különbségre számítva)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Kérem, ne legyen több, mint %1 palindrom karakter</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Kérem, ne legyen több, mint %1 monoton karakter</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Kérem, ne legyen több, mint %1 ismétlődő karakter</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>A jelszó nagybetűk, kisbetűk, számok és speciális jelek ( ~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/) tartalmaznia kell</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>A jelszó nem tartalmazhat több, mint 4 palindrom karaktert</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Ne használja közönséges szavakat és kombinációkat a jelszóként</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Kérem, hozzon létre egy széles körben használható jelszót</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Ez nem felel meg a jelszó szabályoknak</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Rendszer</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Ablak</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Munkaterület</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Segítő eszközök</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Egyéni</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Nincs</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_hy.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"hy\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Պահել</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Պահել</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\">Ձախ</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\">Աջ</translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Ընտրովի</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\">Անջատել</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Ղեկավարման Կենտրոն</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Պահել</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Պահել</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">None</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Պահել</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Անջատել</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Դուրս գալ համակարգից</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Ձախ</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Աջ</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\">System</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Պահել</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Պահել</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Չեղարկել</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">None</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Traditional Chinese (Chinese Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Traditional Chinese (Chinese Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan China</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>This shortcut conflicts with [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>System</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Window</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Workspace</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>AssistiveTools</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Custom</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>None</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_id.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"id\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Tersambung</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Tidak tersambung</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Jari digerakkan terlalu cepat, mohon jangan angkat sampai diminta</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Batal</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Tampilan</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Volume Masukan</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Level Masukan</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Tetikus dan Touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalisasi</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Kustom</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Sandi lewat tidak boleh kosong</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Pusat Kontrol</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Lihat</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Suara</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Efek Suara</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Hidupkan</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Matikan</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Keluar</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Bangunkan</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volume +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notifikasi</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Baterai hampir habis</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Kirim ikon di Launcher ke Desktop</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Kosongkan Tempat Sampah</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Masukan</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Keluarkan</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Perangkat removable terpasang</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Perangkat removable dilepas</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Galat</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Mode</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Volume Keluaran</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Kiri</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Kanan</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Pulihkan</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Simpan</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Tionghoa Tradisional (Hong Kong Tionghoa)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Tionghoa Tradisional (Taiwan Tionghoa)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan Tionghoa</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Pintasan ini bertentangan dengan [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistem</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Jendela</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Ruang kerja</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Alat Bantu</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Kustom</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Tidak ada</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_id_ID.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"id_ID\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_it.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"it\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Annulla</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Fatto</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Connesso</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Non connesso</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Impronta1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Impronta2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Impronta3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Impronta4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Impronta5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Impronta6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Impronta7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Impronta8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Impronta9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Impronta10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Scansione fallita</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>L&apos;impronta esiste già</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Scansiona un altro dito</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Errore sconosciuto</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Scansione sospesa</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Riconoscimento non riuscito</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>L&apos;hai mosso troppo in fretta</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Il dito è stato mosso troppo rapidamente, non spostarlo sino a quando non riceverai ulteriori istruzioni</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Impronta non chiara</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Pulisci il lettore o riposiziona il dito prima di riprovare</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Già scansionato</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Sistema la posizione del dito per scannerizzare l&apos;impronta correttamente</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Movimento del dito troppo rapito, non spostarlo sino a nuova istruzione</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Posiziona il dito nuovamente sul sensore</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Posiziona il viso al centro dell&apos;inquadratura</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Viso acquisito</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Posiziona il viso per cortesia</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Allontanati dalla webcam</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Avvicinati alla webcam</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Non posizionare più visi all&apos;interno dell&apos;inquadratura</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Assicurati che l&apos;obiettivo della webcam sia pulito</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Non registrarti in ambienti bui, troppo luminosi o retroilluminati</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Mostra il tuo viso</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Scansione fuori tempo limite</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annulla</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Autenticazione necessaria per cambiare il server NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Autenticazione richiesta per impostare l&apos;orario di Sistema.</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Display</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Deepin Community, localizzazione italiana a cura di Massimo A. Carofano</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD, localizzazione italiana a cura di Massimo A. Carofano</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Soppressione automatica del rumore</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Volume di ingresso</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Livello input</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Dispositivo input</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Mouse e Touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalizza</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Personalizzazione</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>La password non può essere assente</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>La password deve contenere almeno %1 caratteri</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>La password non può superare %1 caratteri</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>La password deve contenere lettere Italiane (case-sensitive), numeri o caratteri speciali (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Non più di %1 caratteri palindromi per favore</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Non più di %1 caratteri monotoni per favore</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Non più di %1 caratteri ripetuti per favore</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>La password deve contenere lettere maiuscole, minuscole, numeri e simboli (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>La password non può contenere più di 4 caratteri palindromi</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Non utilizzare parole comuni e le loro combinazioni come password</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Per cortesia, crea una password più sicura</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Non rispetta le regole di password</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Centro di Controllo</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Attivato</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Visualizza</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Da attivare</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Attiva</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Scaduto</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Periodo di prova</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Periodo di prova scaduto</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Impostazioni Touch Screen</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Le impostazioni del Touch Screen sono state modificate</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Audio</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Effetti audio</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Accensione</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Spegni</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Logout</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Risveglio</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volume +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notifiche</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Batteria scarica</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Invia le app del Launcher sul Desktop</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Pulizia del Cestino</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Collegato alla rete elettrica</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Scollegato dalla rete</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Collegamento dispositivi removibili</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Rimozione dispositivi removibili</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Errore</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Modalità</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Volume di uscita</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Amplificazione volume</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Se il volume è superiore al 100%, potrebbe distorcere l&apos;audio e danneggiare i dispositivi di riproduzione</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Sinistra</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Destra</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Dispositivo output</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Salvare le impostazioni dello schermo?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Le impostazioni saranno ripristinate in %1s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Inverti</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Salva</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Cinese tradizionale (Cina di Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Cinese tradizionale (Cina di Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Cina di Taiwan</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Questo collegamento è in conflitto con [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistema</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Finestra</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Workspace</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>AssistiveTools</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Custom</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Nessuno</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_ja.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ja\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>編集</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>新しいユーザーを追加</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>フルネームを設定</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>ログイン設定</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>パスワードレスログイン</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>現在のアカウントを削除</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>グループ設定</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>アカウントグループ</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>完了</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>グループ名</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>グループを追加</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>自動ログイン</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>アカウント情報</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>アカウント名、アカウントのフルネーム、アカウントの種類</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>アカウント名</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>アカウントのフルネーム</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>アカウントの種類</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>フルネームが長すぎます</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>グループ名は32文字以下にしてください</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>グループ名を数字のみにすることはできません</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>文字、数字、アンダーバー、ハイフンのみを使用し、文字から始まるようにしてください</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>このグループ名はすでに使用されています</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>クイックログイン、自動ログイン、パスワードレスログイン</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>元に戻す</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>やり直す</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>切り取り</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>コピー</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>貼り付け</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>すべて選択</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>クイックログイン</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation>アカウント</translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation>アカウント管理</translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation>その他のアカウント</translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>顔を登録する</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>次を読みこれに同意します</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>免責事項</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>次へ</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>顔を登録しました</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>顔を登録できませんでした</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>完了</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>登録を再試行</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>「生体認証」とは、UnionTech Software Technology Co., Ltd.が提供するユーザー本人認証機能です。「生体認証」では、収集した生体データとデバイスに保存されている生体データを照合し、その照合結果に基づいてユーザーの本人確認を行います。\n\nUnionTech Software Technology Co., Ltd.は、お客様の生体認証情報を収集またはアクセスすることはありません。生体認証情報はお客様のローカルデバイスに保存されます。個人用デバイスでのみ生体認証を有効にし、関連する操作にはご自身の生体認証情報を使用してください。また、当該デバイス上の他者の生体認証情報は速やかに無効化または削除してください。そうしないと、当該情報に起因するリスクを負うことになります。\n\nUnionTech Software Technology Co., Ltd.は、生体認証のセキュリティ、精度、安定性の向上に尽力しております。しかしながら、環境、設備、技術、その他の要因やリスク管理上の理由により、生体認証が一時的に成功するという保証はございません。そのため、生体認証をUOSへのログインの唯一の方法としないでください。生体認証のご利用に関してご質問やご提案がございましたら、UOSの「サービスとサポート」からフィードバックをお寄せください。</translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>完了</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>指紋を登録する</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>登録したい指を指紋センサーに置き、下から上にスワイプしてください。操作が完了したら、指を離してください。</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>次を読みこれに同意します</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>免責事項</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>次へ</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>登録を再試行</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>「生体認証」とは、UnionTech Software Technology Co., Ltd.が提供するユーザー本人認証機能です。「生体認証」では、収集した生体データとデバイスに保存されている生体データを照合し、その照合結果に基づいてユーザーの本人確認を行います。\n\nUnionTech Software Technology Co., Ltd.は、お客様の生体認証情報を収集またはアクセスすることはありません。生体認証情報はお客様のローカルデバイスに保存されます。個人用デバイスでのみ生体認証を有効にし、関連する操作にはご自身の生体認証情報を使用してください。また、当該デバイス上の他者の生体認証情報は速やかに無効化または削除してください。そうしないと、当該情報に起因するリスクを負うことになります。\n\nUnionTech Software Technology Co., Ltd.は、生体認証のセキュリティ、精度、安定性の向上に尽力しております。しかしながら、環境、設備、技術、その他の要因やリスク管理上の理由により、生体認証が一時的に成功するという保証はございません。そのため、生体認証をUOSへのログインの唯一の方法としないでください。生体認証のご利用に関してご質問やご提案がございましたら、UOSの「サービスとサポート」からフィードバックをお寄せください。</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>虹彩を登録</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>次を読みこれに同意します</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>免責事項</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>次へ</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>完了</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>登録を再試行</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>虹彩を登録しました</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>虹彩を登録できませんでした</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>「生体認証」とは、UnionTech Software Technology Co., Ltd.が提供するユーザー本人認証機能です。「生体認証」では、収集した生体データとデバイスに保存されている生体データを照合し、その照合結果に基づいてユーザーの本人確認を行います。\n\nUnionTech Software Technology Co., Ltd.は、お客様の生体認証情報を収集またはアクセスすることはありません。生体認証情報はお客様のローカルデバイスに保存されます。個人用デバイスでのみ生体認証を有効にし、関連する操作にはご自身の生体認証情報を使用してください。また、当該デバイス上の他者の生体認証情報は速やかに無効化または削除してください。そうしないと、当該情報に起因するリスクを負うことになります。\n\nUnionTech Software Technology Co., Ltd.は、生体認証のセキュリティ、精度、安定性の向上に尽力しております。しかしながら、環境、設備、技術、その他の要因やリスク管理上の理由により、生体認証が一時的に成功するという保証はございません。そのため、生体認証をUOSへのログインの唯一の方法としないでください。生体認証のご利用に関してご質問やご提案がございましたら、UOSの「サービスとサポート」からフィードバックをお寄せください。</translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>生体認証</translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>生体認証</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>顔</translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation>最大５つの顔データを登録できます</translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation>指紋</translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation>指紋をスキャンしてユーザーの本人確認を行います</translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation>虹彩</translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation>虹彩をスキャンして認証を行います</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation>文字、数字、アンダーバーのみを使用し、15文字以下にしてください</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation>文字、数字、アンダーバーのみを使用してください</translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation>15文字以下にしてください</translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation>この名前はすでに存在します</translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation>%1 を追加...</translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation>名前を空白にすることはできません</translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>&quot;自動ログイン&quot;は１つのアカウントでのみ利用できます。このアカウントで行う場合は、&quot;%1&quot;で無効にしてください。</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>OK</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>画像</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>人</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>動物</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>シーン</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>イラスト</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>絵文字</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>カスタム</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>カートゥーン風</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>写真風</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>フラット</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>ディスプレイとサスペンド</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>ディスプレイの電源を切るまでの時間</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>ロックするまでの時間</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>コンピューターをサスペンドするまでの時間</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>カバーを閉じたときの動作</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>電源ボタンを押したときの動作</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>バッテリー残量低下時</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>バッテリー残量低下通知</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>自動サスペンド</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>自動ハイバネート</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>バッテリー残量低下のしきい値</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>バッテリー管理</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>残り稼働可能時間と残り充電時間を表示する</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>最大容量</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>バッテリー残量低下時の動作</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>無効</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation>Bluetooth設定、デバイス</translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetoothはオフです。このデバイスは&quot;%1&quot;として表示されます</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetoothはオンです。このデバイスは&quot;%1&quot;として表示されます</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>切断</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>接続</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>ファイルを送信</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>名前を変更</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>デバイスを削除</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>ファイルを選択</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>編集</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>他のBluetoothデバイスがこのデバイスを検出するのを許可する</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Bluetoothを利用するには次の機能をオフにしてください</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>機内モード</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>Bluetooth名は64文字以下にしてください</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>接続済み</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>未接続</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>起動設定</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>メニューをクリックして、デフォルトで起動するアイテムを変更するか、ウィンドウに画像をドラッグして背景を変更することができます。</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>grubの開始を遅延</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>テーマ</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>テーマを有効にすると、コンピューターの起動時に指定した背景が表示されるようになります</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>ブートメニュー認証</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>開いた後にメニューを編集するにはパスワードを必要とする</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>パスワードを変更</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>ブートメニュー認証パスワードを変更</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>ブートメニュー認証パスワードを設定</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>ユーザー名：</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>新しいパスワード：</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必須</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>パスワードは空欄にできません</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>パスワードが一致しません</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>パスワードを再入力：</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>起動アニメーション</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>起動ロゴのサイズを変更できます</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>カメラへのアクセスを許可するアプリケーション:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>指紋1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>指紋2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>指紋3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>指紋4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>指紋5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>指紋6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>指紋7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>指紋8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>指紋9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>指紋10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>スキャンできませんでした</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>この指紋は既に登録されています</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>他の指でお試しください</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>不明なエラーです</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>スキャンを一時停止しました</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>認識できません</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>動かすのが速すぎます</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>指を動かすのが速すぎます。表示が出るまで離さないでください</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>指紋が不明瞭です</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>指をキレイにするか、位置を調節してもう一度お試しください</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>スキャンされました</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>指紋が十分にスキャンできるように、指の位置を調節してください</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>指を動かすのが速すぎます。表示が出るまで離さないでください</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>指をセンサーから離して、もう一度置いてください</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>顔がフレーム内に映るようにしてください</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>顔を登録しました</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>顔の位置を調節してください</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>カメラとの距離を保ってください</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>もう少しカメラに近づいてください</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>フレーム内に複数の顔が入らないようにしてください</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>カメラのレンズが汚れていないことを確認してください</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>暗すぎます。明るい/逆光のない環境で登録してください</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>顔が覆われないようにしてください</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>スキャンがタイムアウトしました</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>カメラが占有されています！</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>アクセントカラー</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>アイコン設定</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>アイコンテーマ</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>アイコンテーマをカスタマイズ</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>カーソルテーマ</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>カーソルをカスタマイズ</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>このアカウントを削除してもよろしいですか？</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>アカウントのディレクトリも削除する</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>削除</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>設定に移動</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>一般</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>繰り返し時間</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>短い</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>長い</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>繰り返し率</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>遅い</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>速い</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>テンキー</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>ここで確認できます</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Caps Lockプロンプト</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>ダブルクリックの速度</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>ダブルクリックの確認</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>左利きモード</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>キーボードを有効化</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>一般</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>スクロールの速度</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation>起動メニュー</translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation>起動メニューを管理</translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation>開発者向けroot権限管理</translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation>開発者向けオプション</translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation>開発者向けデバッグオプション</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>大サイズ</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>小サイズ</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>rootアクセスを取得できませんでした</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>まずUnion IDにサインインしてください</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>PC情報を読み込めません</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>ネットワーク接続がありません</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>証明書を読み込めませんでした。rootアクセスを取得できません</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>署名を確認できませんでした。rootアクセスを取得できません</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>同意してユーザーエクスペリエンスプログラムに参加</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>開発者向けモードの免責事項</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>同意してrootアクセスを要求</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>起動アニメーションの設定を変更しています。しばらくお待ちください。</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>起動アニメーションの設定が変更されました</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>設定は再起動後に適用されます</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation>今すぐ再起動</translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation>無視</translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation>Solidシステム読み取り専用保護の設定を適用するには、再起動してください。</translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>パスワードは数字と文字を含む必要があります</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>パスワードは8文字以上64文字以下にする必要があります</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>アカウントを作成</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>アカウントの種類</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>ユーザー名</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必須</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>フルネーム</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>任意</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>アカウントを作成</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>ユーザー名は32文字以下にしてください</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>ユーザー名には文字、数字、　-と_が使用できます</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>フルネームは32文字以下にしてください</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>フルネームにコロンを含めることはできません</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation>大</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>アバターはまだアップロードされていません。ドラッグアンドドロップで画像をアップロードできます。</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>アップロードされたファイルの形式が正しくありません。もう一度お試しください。</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>利用可能</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>同意してユーザーエクスペリエンスプログラムに参加</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation>&lt;p&gt;当社は、お客様の個人情報がお客様にとって極めて重要であることを深く認識しております。そのため、個人情報の収集・利用・共有・移転・公開・保管に関する方針を定めたプライバシーポリシーを策定しております。&lt;/p&gt;&lt;p&gt;最新のプライバシーポリシーは、&lt;a href=&quot;%1&quot;&gt;こちら&lt;/a&gt;から、もしくは&lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;にアクセスすることでご覧いただけます。当社のお客様のプライバシーに関する取り組みと方針を注意深くお読みいただき、十分にご理解いただきますよう、お願いいたします。本件に関するご質問は、こちらにご連絡ください: %2&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;ユーザーエクスペリエンスプログラムに参加すると、お使いのデバイス、システム、アプリケーションの情報を収集し、利用させていただくことを許可します。これらの情報の収集と利用を拒否する場合は、ユーザーエクスペリエンスプログラムに参加しないでください。詳細は、Deepin プライバシーポリシー (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;) を参照してください。&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;ユーザーエクスペリエンスプログラムに参加すると、お使いのデバイス、システム、アプリケーションの情報を収集し、利用させていただくことを許可します。これらの情報の収集と利用を拒否する場合は、ユーザーエクスペリエンスプログラムに参加しないでください。詳細は、&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt; を参照してください。&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>日付と時刻の設定</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>日付</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>年</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>月</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>日</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>時刻</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>確認</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation>時刻と日付</translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation>時刻と日付、タイムゾーン設定</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation>言語と地域</translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation>システム言語、地域の形式</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>明日</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>昨日</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>今日</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>現在地より%1時間早い</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>現在地より%1時間遅い</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>スペース</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>週</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>週最初の曜日</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>日付(短縮形式)</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>日付</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>時刻(短縮形式)</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>時刻</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>通貨記号</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>通貨(+)</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>通貨(-)</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>小数点記号</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>桁区切り記号</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>桁区切り</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>紙のサイズ</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>例</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>NTPサーバーを変更するには認証が必要です</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>システムのタイムゾーンを変更するには認証が必要です</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>コントロールセンターは、システムの設定を変更するためのオプションを提供します。</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>WeChatと連携</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>WeChatと連携することで、%1 IDとローカルアカウントに素早く、安全にログインすることができるようになります。</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>リンクを解除しました</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>連携を解除しています</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>リンク</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>WeChatとの連携を解除してもよろしいですか？</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>WeChatを連携解除すると、WeChat QRコードを使用して%1 IDまたはローカルアカウントにログインすることができなくなります。</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>ローカルアカウント連携</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>クラウド同期</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>%1 ID を管理し、デバイス間で個人データを同期します。\n%1 ID にサインインして、ブラウザ、アプリストア、サポートなどのパーソナライズされた機能とサービスを取得します。</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>%1 IDにサインイン</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>自動同期</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>クラウドでシステム設定データと情報を安全に保管して、デバイス間で同期できます。</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>システム設定</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>最終同期: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>クラウド内のデータをクリア</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>クラウド内に保存されているシステム設定や個人情報などのデータを削除してもよろしいですか？</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>データを削除すると、復元することはできません！</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>クリア</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>同期サービス</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>アカウントとセキュリティ</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>サインアウト</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Web設定に移動</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>ニックネームは1~32文字である必要があります</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>パスワードが違います。あと %1 回試行できます</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>ログインエラー回数が本日の上限に達しました。パスワードをリセットして、やり直すことができます。</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>操作は正常に完了しました</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>ニックネームは一日に一度だけ変更することができます</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation>deepin ID</translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation>UOS ID</translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation>クラウドサービス</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>中国本土</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>その他の地域</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>この機能は現在利用できません。まずシステムをアクティベートしてください</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>お住まいの地域の法律および制限により、現在ご利用いただけません。</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation>デフォルトアプリケーション</translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation>ファイルの種類ごとにデフォルトアプリケーションを設定</translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation>ウェブページ</translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation>メール</translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation>テキスト</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>ミュージック</translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation>ビデオ</translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation>ピクチャー</translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation>ターミナル</translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>%1用のデフォルトアプリケーション</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>追加</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>デスクトップファイルを開く</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>アプリケーション (*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>すべてのファイル (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>ルートアクセス</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>ルートアクセスを要求</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>開発者モードを有効にすると、root権限を取得することができますが、システムの完全性を損なうことがあります。注意してください。</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>オンライン</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>オフライン</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>証明書をインポート</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>ファイルを選択</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>エクスポート</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>開発とデバッグオプション</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>システムロギングレベル</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>OFF</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>デバッグ</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>OK</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation>Solidシステム読み取り専用保護</translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation>システムディレクトリの保護を無効化します。システムが破損する可能性があります。</translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation>Bluetoothとデバイス</translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>免責事項</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>同意</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>ディスプレイ</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation>輝度、解像度、スケーリング</translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation>100%</translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation>125%</translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation>150%</translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation>175%</translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation>200%</translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation>225%</translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation>250%</translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation>275%</translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation>300%</translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation>複製</translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation>拡張</translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation>デフォルト</translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation>%1 のみ</translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation>マルチディスプレイの設定</translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation>識別</translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation>ディスプレイの配置は変更から%1秒後に適用されます</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>モード</translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation>メインスクリーン</translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation>ディスプレイとレイアウト</translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation>輝度</translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation>解像度</translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation>デスクトップのリサイズ</translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation>リフレッシュレート</translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation>回転</translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation>標準</translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation>90°</translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation>180°</translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation>270°</translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation>モニターは 100% ディスプレイスケーリングのみに対応しています</translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation>目の保護モード</translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation>目の保護モードを有効にする</translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation>暖かい色に調節して、ディスプレイのブルーライトを軽減します</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>時間</translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation>終日</translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation>日没から日の出まで</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>カスタム</translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation>開始時刻</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>終了時刻</translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation>色温度</translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation>%1x%2 (推奨)</translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation>%1x%2</translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation>%1 Hz (推奨)</translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation>%1 Hz</translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation>スケーリング</translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation>デスクトップとタスクバー</translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation>デスクトップの構成、タスクバーのモード、プラグインエリアの設定</translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation>ドック</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>モード</translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation>クラシック</translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation>中央</translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation>ドックのサイズ</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>大</translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation>表示位置</translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation>上</translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation>下</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>左</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>右</translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation>状態</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>常に表示</translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation>非表示</translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation>スマートハイド</translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation>マルチディスプレイ</translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation>タスクバーの位置</translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation>メインのみ</translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation>カーソルのあるディスプレイ</translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation>プラグインエリア</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>ドックに表示するアイコンの選択</translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation>ドックを固定</translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation>アプリケーションアイコンの結合</translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>ファイルとフォルダへのアクセスを許可するアプリケーション:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>ドキュメント</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>デスクトップ</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>ピクチャー</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>ビデオ</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>ミュージック</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>ダウンロード</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>フォルダ</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>サイズ</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>標準フォント</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>等幅フォント</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>電源プラン</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>省電力設定</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>低バッテリー残量時に自動で省電力モードにする</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>バッテリー残量低下とみなす閾値</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>バッテリー駆動時に自動で省電力モードにする</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>復帰時の動作</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>コンピューターの復帰時にパスワードを要求</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>モニターの復帰時にパスワードを要求</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>シャットダウンの設定</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>シャットダウンのスケジュール</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>時刻</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>繰り返し</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>１回</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>毎日</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>平日</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>カスタム</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>省電力モード使用時にディスプレイの明るさを減らす</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation>3本指、上にスワイプ</translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation>3本指、下にスワイプ</translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation>3本指、左にスワイプ</translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation>3本指、右にスワイプ</translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation>3本指、タップ</translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation>4本指、上にスワイプ</translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation>4本指、下にスワイプ</translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation>4本指、左にスワイプ</translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation>4本指、右にスワイプ</translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation>4本指、タップ</translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>パフォーマンス優先</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>バランス</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>ビジュアル優先</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>すべてのウィンドウ効果を無効化します。パフォーマンスが効率化されます。</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>一部のウィンドウ効果を抑制します。ビジュアルを保ちますが、ビジュアル優先モードより比較的スムーズに動作します。</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>すべてのウィンドウ効果を有効にします。最高のビジュアル体験が利用できます。</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation>キーボード</translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation>一般設定、入力メソッド、ショートカット</translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation>一般</translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>言語</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>完了</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>編集</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>他の言語</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>追加</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>地域</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>エリア</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>システムとアプリケーションは地域や国に応じたコンテンツを提供します</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>システムとアプリケーションは地域の形式から日付と時刻を設定することがあります</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>地域の形式</translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>言語の追加</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>検索</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>追加</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>ログイン方法</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>パスワード,WeChat,生体認証,セキュリティキー</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>パスワード</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>パスワードを変更</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>有効日数</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>いつも</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>パスワードのリセット</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Deepin Community</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>自動ノイズ除去</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>入力音量</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>入力レベル</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>入力</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>サウンド入力デバイスが見つかりませんでした</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>入力デバイス</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>マウスとタッチパッド</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation>一般、マウス、タッチパッド</translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation>一般</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>マウス</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>タッチパッド</translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation>マウス</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>ポインターの速度</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>遅い</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>速い</translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation>ポインターのサイズ</translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation>マウスの加速</translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation>マウス接続時はタッチパッドを無効にする</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>ナチュラルスクロール</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>中</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>大</translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation>特大</translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation>一部のアプリケーションで変更を適用するためにログアウトまたは再起動が必要な場合があります</translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>使用中のデバイス</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>コンピューター名</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>ダッシュで始まったり終わったりすることはできません</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>OS名</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>バージョン</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>エディション</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>タイプ</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>認証</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>システムのインストール日時</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>カーネル</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>グラフィックスプラットフォーム</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>プロセッサ</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>メモリ</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>1~63文字にしてください</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation>おやすみモード、アプリケーションの通知</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>通知</translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation>おやすみモードの設定</translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation>アプリケーションの通知が表示されたり通知音が鳴ったりしなくなります。通知センターですべてのメッセージを確認できます。</translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation>おやすみモードを有効にする</translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation>画面がロックされたとき</translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation>デスクトップに表示する通知の数</translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation>アプリケーション通知</translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation>通知を許可</translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation>デスクトップまたは通知センターに未読のメッセージを表示する</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>デスクトップ</translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation>ロック画面</translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation>通知センター</translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation>メッセージプレビューを表示する</translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation>音を鳴らす</translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>その他のデバイス</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>名前のないBluetoothデバイスを表示</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>現在のパスワード</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必須</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>弱</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>中</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>強</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>パスワードを再入力</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>パスワードのヒント</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>任意</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>パスワードは空欄にできません</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>パスワードが一致しません</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>ヒントはすべてのユーザーに表示されます。ヒントにパスワードを含めないでください。</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>新しいパスワード</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>新しいパスワードは現在とは異なるパスワードにしてください</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation>ユーザー名と同一のパスワードを設定することはできません。</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>パスワードを変更</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>パスワードをリセット</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>パーソナライズ</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>ライト</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>自動</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>ダーク</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation>ピッカーサービスが利用できません</translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation>無効なカラー形式: %1</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation>テーマ</translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation>外観</translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation>ウィンドウ効果</translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation>壁紙とスクリーンセーバーの変更</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>スクリーンセーバー</translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation>色とアイコン</translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation>アクセントカラーとテーマアイコンの変更</translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation>フォントのスタイルとサイズ</translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation>システムフォントのスタイルとサイズの変更</translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation>壁紙</translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation>ライト、ダークまたは自動設定の選択</translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation>インターフェースと効果、角の丸み</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>カスタム</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>プラグインエリア</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>ドックに表示するアイコンの選択</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation>電力節約の設定、ディスプレイとサスペンド</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>電源</translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation>一般</translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation>電源プラン、電力節約の設定、復帰時の設定、シャットダウンの設定</translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation>電源接続時</translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation>ディスプレイとサスペンド</translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation>バッテリー駆動時</translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation>ディスプレイとサスペンド、バッテリー残量低下時の設定、バッテリー管理</translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>シャットダウン</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>サスペンド</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>ハイバネート</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>モニターの電源を切る</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>シャットダウンインターフェースの表示</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>何もしない</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>ディスプレイとサスペンド</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>ディスプレイの電源を切るまでの時間</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>ロックするまでの時間</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>コンピューターをサスペンドするまでの時間</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>カバーを閉じたときの動作</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>電源ボタンを押したときの動作</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>高パフォーマンス</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>バランスパフォーマンス</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>CPUのロード状況に応じて、CPUの動作周波数をアクティブに可変します。</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>バランス</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>エコモード</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>パフォーマンスを優先します。消費電力と発熱が最も大きくなります。</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>パフォーマンスとバッテリー使用可能時間のバランスを使用状況により自動で調節します。</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>バッテリー使用可能時間を優先します。消費電力を削減しますが、パフォーマンスも低下します。</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>分</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>時間</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>なし</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation>プライバシーとセキュリティ</translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation>カメラ、フォルダ権限</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation>カメラ</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation>カメラへのアクセスを許可するアプリケーションを選択</translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation>ファイルとフォルダ</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation>ファイルとフォルダへのアクセスを許可するアプリケーションを選択</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>プライバシーポリシー</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>リンクアドレスをコピー</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>パスワードは空欄にできません</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>パスワードは %1 文字以上にする必要があります</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>パスワードは %1 文字以上にする必要があります</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>パスワードには英字 (大文字と小文字を区別します)、数字、特殊記号 (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/) のみを使用できます</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>回文になっている文字を%1文字以上含めないでください</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>連続する単調な文字列を%1文字以上含めないでください</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>連続した同じ文字を%1文字以上含めないでください</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>パスワードには、英字(大文字、小文字)、数字と記号(~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)を含める必要があります</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>パスワードに回文になっている文字列を4文字以上含めないでください。</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>パスワードに一般的な単語や組み合わせを含めないでください</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>もっと強いパスワードを作成してください</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>パスワードのルールに適合していません</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>コントロールセンター</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>有効</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>表示</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>有効化</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>有効期限切れ</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>試用期間中</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>試用期間の有効期限切れ</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>タッチスクリーン設定</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>タッチスクリーンの設定を変更しました</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>このシステム壁紙は無効化されています。詳細はシステム管理者にお問い合わせください。</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>検索</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>デフォルトの形式</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>週最初の曜日</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>日付(短縮形式)</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>日付</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>時刻(短縮形式)</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>時刻</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>通貨記号</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>桁</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>紙のサイズ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>地域の形式</translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>検索</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>パスワードを設定</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64文字</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>パスワードを再入力</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>確認</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>パスワードが一致しません</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>カスタムの繰り返し時間</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>スクリーンセーバー</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>プレビュー</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>カスタムスライドショー</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>設定</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>アイドル時間</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1分</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5分</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10分</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15分</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30分</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1時間</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>なし</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>復帰時にパスワードを必要とする</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>画像スライドショースクリーンセーバー</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>システムスクリーンセーバー</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>検索</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>検索結果はありません</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>カスタムショートカットを追加</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>名前:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必須</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>コマンド:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>ショートカット</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>無し</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>追加</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation>ショートカットキーを入力してください</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>ショートカット</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>システムショートカット、カスタムショートカット</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>ショートカットを検索</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>完了</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>編集</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>クリック</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>または</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>置き換える</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>デフォルトを復元</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>カスタムショートカットを追加</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation>新しいショートカットキーを入力してください</translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>音</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation>出力、入力、効果音、デバイス</translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>出力デバイス</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>有効にするデバイス</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>入力デバイス</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>効果音</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation>設定</translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation>効果音</translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation>効果音を有効/無効にする</translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation>オーディオデバイスを有効/無効にする</translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation>デバイス管理</translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>起動</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>シャットダウン</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>ログアウト</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>ウェイクアップ</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>音量の調整</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>通知</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>バッテリー残量低下</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>ランチャーのアイコンをデスクトップに送る</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>ゴミ箱を空にする</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>電源に接続</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>電源を切断</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>リムーバブルデバイスの接続</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>リムーバブルデバイスの取り外し</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>エラー</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>モード</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>出力音量</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>音量増強</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>音量を100%以上にすると、音声が歪んだりスピーカーに悪影響を及ぼしたりする可能性があります</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>左</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>右</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>出力</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>サウンド出力デバイスが見つかりませんでした</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>左右のバランス</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>左右のチャンネルを統合してシングルチャンネルにします</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>オーディオデバイスが切断されたときに自動で一時停止します</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation>モノラルオーディオ</translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation>自動で一時停止</translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>出力デバイス</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>サウンド</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>電源</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>マウス</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>アップデート</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>スクリーンセーバー</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation>一般設定</translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation>システム</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation>補助的な情報</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation>この PC について</translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation>システムバージョン、デバイス情報</translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation>オープンソースソフトウェアに関する通知を表示</translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation>ユーザーエクスペリエンスプログラム</translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation>ユーザーエクスペリエンスプログラムに参加して製品の開発を支援</translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation>利用規約(EULA)</translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation>利用規約(EULA)を表示</translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>プライバシーポリシー</translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation>プライバシーポリシーに関する情報を表示</translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation>オープンソースソフトウェアに関する通知</translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>他の壁紙</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>時刻の自動同期</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>NTPサーバー</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>システム時刻と日付</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>カスタマイズ</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>設定</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>サーバーアドレス</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必須</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>NTPサーバーアドレスは空欄にできません</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>24時間表示</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>システムのタイムゾーン</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>タイムゾーンの一覧</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>追加</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>開始時刻</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>終了時刻</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>ディスプレイの設定を保存しますか?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>%1秒後に元の設定に戻ります。</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>取り消す</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>タイムゾーンを追加</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>現在地をタもとにイムゾーンを設定する</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>タイムゾーン:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>最も近い都市:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>タッチスクリーン</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>タッチスクリーンをここで構成できます</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>基本設定</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>タッチパッド</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>ポインターの速度</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>遅い</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>速い</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>入力中はタッチパッドを無効にする</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>タップしてクリック</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>ナチュラル・スクロール</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>３本指のジェスチャー</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>４本指のジェスチャー</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation>ジェスチャー</translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation>タッチスクリーン</translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation>タッチスクリーンの構成</translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation>一般</translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>ユーザーエクスペリエンスプログラムに参加</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>リンクアドレスをコピー</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>セキュリティ認証</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>本人確認ため、まずはログインパスワードを入力してください。</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64文字</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>パスワードをお忘れですか？</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>キャンセル</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>確認</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation>ワコム</translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation>ワコム</translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation>ペンモード</translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation>マウスモード</translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation>押し込み感度</translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation>軽い</translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation>強い</translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation>モデル</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>壁紙</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>カスタム画像</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>システム壁紙</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>単色壁紙</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>カスタム壁紙</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>表示方法</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>壁紙を自動で切り替えるタイミング</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>なし</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30秒</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1分</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5分</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10分</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15分</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30分</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>ログイン時</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>起動時</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>ライブ壁紙</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1時間</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation>システム壁紙</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>一部を表示</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>ロック画面に設定</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>デスクトップに設定</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation>すべて(%1個)を表示</translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation>画像を追加</translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>インターフェースと効果</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>ウィンドウの設定</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>ウィンドウの角の丸み</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>無し</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>大</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>ウィンドウの移動時に透明度を上げる</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>ウィンドウ最小化時の効果</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>スケール</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>魔法のランプ</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>不透明度</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>低</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>高</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>スクロールバー</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>スクロール時のみに表示</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>常に表示</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>コンパクトディスプレイ</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>有効にすると、より多くの要素がウィンドウ内に表示されるようになります。</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>タイトルバーの高さ</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>ウィンドウマネージャによって描画されるアプリケーションウィンドウのタイトルバーにのみ適用可能です。</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>極小</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>中</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>中</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>繫体中国語 (香港)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>繫体中国語 (台湾)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation>閩南語</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>台湾</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>ユーザー名は3文字以上32文字以下にする必要があります</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>最初の文字は英数字にする必要があります</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>ユーザー名を数字のみにすることはできません</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>このユーザー名は他のアカウントによって使用されています</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>フルネームが長すぎます</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>このフルネームは他のアカウントによって使用されています</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>パスワードが間違っています</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>標準ユーザー</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>管理者</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>カスタム</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>ADドメイン設定</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>パスワードが一致しません</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation>顔</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>顔</translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation>指紋</translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation>指をセンサーに置いてください</translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation>センサーに指を置いて、指示があるまで離さないでください</translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation>指をセンサーから離してください</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>指をセンサーから離して、もう一度置いてください</translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation>指をセンサーから離して、もう一度行ってください</translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation>スキャンを一時停止しました</translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation>指紋の端をスキャンしてください</translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation>指紋の端をセンサーに置いてください</translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation>指紋の端をスキャンする位置を調整してください</translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation>指紋を追加しました</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation>虹彩</translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>このショートカットは[%1]と競合しています</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>パスワードは空欄にできません</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>パスワードは %1 文字以上にする必要があります</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>パスワードは %1 文字以上にする必要があります</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>パスワードには英字 (大文字と小文字を区別します)、数字、特殊記号 (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/) のみを使用できます</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>回文になっている文字を%1文字以上含めないでください</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>連続する単調な文字列を%1文字以上含めないでください</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>連続した同じ文字を%1文字以上含めないでください</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>パスワードには、英字(大文字、小文字)、数字と記号(~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)を含める必要があります</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>パスワードに回文になっている文字列を4文字以上含めないでください。</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>パスワードに一般的な単語や組み合わせを含めないでください</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>もっと強いパスワードを作成してください</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>パスワードのルールに適合していません</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>システム</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>ウィンドウ</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>ワークスペース</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>アシストツール</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>カスタム</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>なし</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_ka.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ka\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>დაკავშირებულია</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>არ დაკავშირდა</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>გაუქმება</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>პაროლი არ შეიძლება იყოს ცარიელი</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>პაროლი უნდა შეიცავდეს მინიმუმ %1 სიმბოლო</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>პაროლი არ უნდა იყოს %1 სიმბოლოზე მეტი</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>პაროლი არ უნდა შეიცავდეს მაქსიმუმ 4 პალინდრომ სიმბოლოს</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>პაროლი არ უნდა შეიცავდეს გავრცელებულ სიტყვებს და კომბინაციებს</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>მართვის ცენტრი</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>სენსორული მონიტორის პარამეტრები</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>სენსორული მონიტორის პარამეტრები შეიცვალა</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>შეტობინება</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>შენახვა</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>ტრადიციული ჩინელი (ჩინელის ჰონგ კონგ)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>ტრადიციული ჩინელი (ჩინელის ტაივანი)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>ტაივანი ჩინელი</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>ეს შემოკლება კონფლიქტს მონიშვნას [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>სისტემა</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>ფანჯარა</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>სამუშაო სივრცე</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>დამხმარე ხელსაწყოები</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>საკუთრივი</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>არაფერი</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_kab.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"kab\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>düzelt</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>ajjer uus add</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>sifra el-nemmen</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>ttaghadam login</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>login imen tissifra</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>dell akun aktuell</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>ttaghadam tgrup</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>grup akun</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>fih</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>el-nom tgrup</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>add grup</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>login automatik</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>ttaghadam akun</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>el-nom akun, el-nom tafull akun, ttaghadam akun</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>el-nom akun</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>el-nom tafull akun</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>ttaghadam akun</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>insere face</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>nifra akkam wi ntaqad la</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>ttafahim</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>next</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>face insere</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>styla tizit</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>styla dimansional</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>styla flata</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cencell</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Gadef</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Skrin rassus</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Dafra dafus ta sifra sifra</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Kathla skrin rassus</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Rassus komptata rassus</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Lid liggas</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Quenni bittun ta sifra liggas</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Battari tiskad</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Notifikuz battari tiskad</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Rassus automatik</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Hibernat automatik</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Tiskad battari</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Gadef battari</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Difras dhenar tisfit i tufra i tisfit</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Kapasitt amax</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Nivell tiskad battari</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Difasak</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth dafus, i n tafra tiguzi &quot;%1&quot; </translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth cencell, i n tafra tiguzi &quot;%1&quot; </translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Dafus</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Cencell</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Tseni filen</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Tefrirt n nafsa</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Tefuzi dëyj</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Tefri filen</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Tefrirt</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Tawen dëyj Bluetooth tawen nifuzi dëyj nis</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Wen tefri Bluetooth, tefuzi Airplane Mode</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Mode Airplane</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Tawen</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Tawen nes</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Tefrirt tachti</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Tefri menu tefri items tachti nis, yew tefri amal tefri amal tafuzi ta amal</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>grub start delay</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>tajmaht</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Wen tefri tajmaht, tefri tafrirt tajmaht nis</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Tefrirt menu tachti</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Wen tefri, tefri password tefri menu</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Tefri password</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Tefri password tefrirt menu tachti</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Tefri password tefrirt authentication menu tachti</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Nefes n usser :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Password nes :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Wajb</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>La chifla chaχaχtah sifil uggawen</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Chifla chaχaχtah sifil uggawen iktan</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Tefiχ sifil:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cac</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Tefiχ</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Sefiχ l&apos;animazif</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Sefiχ l&apos;ekra d&apos;animazif l&apos;logo fi l&apos;ekra d&apos;uzufis</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Sefiχ l&apos;azufi b&apos;azufi d&apos;aplikazif tefiχ t&apos;accéss l&apos;azufi tefiχ</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Impramit1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Impramit2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Impramit3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Impramit4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Impramit5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Impramit6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Impramit7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Impramit8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Impramit9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Impramit10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Sefiχ l&apos;azufi chen</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Impramit uggawen iktan</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Tefiχ l&apos;azufi d&apos;ik</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Errort uggawen</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Sefiχ l&apos;azufi suggawen</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Sefiχ l&apos;azufi</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Sefiχ l&apos;azufi iktan</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Tefed n tefed tefed, sii tefed tefed tefed u tefed</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Fingerprint tefed tefed</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Tefed tefed tefed u tefed tefed tefed, tefed tefed tefed tefed</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Tefed tefed tefed</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Tefed tefed tefed tefed tefed tefed</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Tefed n tefed tefed, sii tefed tefed tefed u tefed</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Tefed tefed tefed tefed tefed tefed</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Tefed tefed tefed tefed tefed tefed</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Tefed tefed tefed</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Tefed tefed tefed tefed tefed tefed</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Tefed tefed tefed tefed tefed</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Tefed tefed tefed tefed tefed</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Tefed tefed tefed tefed tefed tefed</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Tefed tefed tefed tefed tefed tefed</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Tefed tefed tefed tefed tefed tefed</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Tefed tefed tefed tefed tefed</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Tefed tefed tefed tefed</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annule</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Color accent</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Settings ikon</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Theme ikon</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Tafustawen tewm t lïk</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Tewem t tawur</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Tafustawen tawur t tewem</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Iziz waa iskwiz nis yuz t tefez t tajjurt t akount tss?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Tefez dertiwin t akount</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Tefez</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Tefez t tajjurt</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Wiz girt t tisayen</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Tefez</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Common</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Tidlet t tafustawen</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Xeurt</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Tlalt</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Tidlet t tafustawen</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Xeurt</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Tlalt</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Keypad t nurnern</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>test here</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Tafustawen t tiskal t mayus</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Tidlet t tiskal t niskal</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Test t tiskal t niskal</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Mode t tiskal t xef</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Xef t tefuz</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Xef t xeurt</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Amassam dawt nisfis nisfiyek User Experience Program</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Dawt nisfis nisfiyek nisfis nisfiyek</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Nisfis nisfiyek</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Ann</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Mans</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Ams</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Nisfis</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cencle</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Tafassasen</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Tafassasen</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Tafassasen tafassasen</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Nisfis nisfiyek</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 nisfis tafassasen nisfis nisfiyek</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 nisfis tafassasen nisfis nisfiyek</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Space</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Wek</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Ams wekk</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Nisfis nisfiyek tafassasen</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Nisfis nisfiyek nisfis nisfiyek</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Nisfis nisfiyek tafassasen</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>temps long</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>simbole de currency</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>currency positif</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>currency négatif</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>simbole décimal</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>simbole de regroupement de chiffres</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>regroupement de chiffres</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>taille de la page</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>l&apos;authentification est requise pour changer le serveur NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>annule</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>sauvegarde</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Le Center de contrôle propose les options pour les paramètres du système.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>liée WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>En liant WeChat, vous pouvez vous connecter de manière sécurisée et rapide à votre compte %1 et à vos comptes locaux.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>déconnecté</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>déconnexion</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>lier</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Êtes-vous sûr de vouloir déconnecter WeChat ?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Après avoir déconnecté WeChat, vous ne pourrez pas utiliser WeChat pour scanner le code QR pour vous connecter à votre compte %1 ou à votre compte local.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Laissez-moi y réfléchir</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>liaison du compte local</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Après avoir lié votre compte local, vous pouvez utiliser les fonctions suivantes :</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>système de connexion par code QR WeChat</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Utilisez WeChat, qui est lié à votre compte %1, pour scanner le code pour vous connecter à votre compte local.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>réinitialiser le mot de passe via %1 ID</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Resset y kassawd lokel taa %1 ID li taw bisknouh.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Li taw 3li l-féet l-fessaa, taw 3l-3ddi 3l-l3wz l-Kontrol Center - Accounts ak 3l-3ddi l-fessaa 3li 3li l-fessaa.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Sinck Cloud</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>3ddi l-kassawd %1 ID ak sinck dawdat 3ddi ykken l3ddi 3li l-kassawd %1 ID 3l-3ddi l-fessaa ak l-servis 3li 3li l-fessaa 3li 3li l-3wz l-browser ak l-App Store ak 3ddi.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>3ddi l-kassawd %1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Sinck Awat</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>3ddi dawdat 3ddi l-tassawd ak l-fessaa 3ddi 3li l-tassawd l-systam 3li 3li l-kassawd ak sinck dawdat 3ddi 3li l-tassawd l-systam 3li 3li l-3wz</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Fessaa Systam</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>3ddi sinck 3ddi m3l: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Bris dawdat 3ddi kassawd</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>Taw b3rsi dawdat 3ddi kassawd ak dawdat 3ddi ykken l-tassawd l-systam 3li 3ddi kassawd?\n\n</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>L3ddi 3ddi 3ddi sinck, y3ddi b3rsi!\n\n</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>B3nsil</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>B3rsi</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Servis Sinck</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>3ddi Ak Sifriyut</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>B3ddi</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>3l-3ddi fessaa 3ddi w3b</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>3ddi kassawd 3li 3ddi b3rsi</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Kassawd gharb, %1 dawdat 3li 3ddi</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>L3ddi 3ddi 3ddi 3ddi l-kassawd l3ddi m3l, y3ddi b3rsi l-kassawd ak taw 3ddi 3ddi 3ddi 3ddi l-kassawd</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>3ddi 3ddi t3msal</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>Chinna 3ddi m3l</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Ajtisamal n dafayet n tajribat n tiskriyt</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Nivwal tafissal tisla tassubt n aqsas</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Amsalihen tawjihen tafissal tisla tassubt n aqsas n tajribat n tiskriyt, 3awen ntaghriben n tafissal tassubt n aqsas aw n tafissal tisla n tissufas</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Tafissal</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Tiskriyt</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>Amsalihen tawjihen tafissal tisla tassubt n aqsas n tafissal 10 sifra, t7afdan b tawjihen tafissal tisla tassubt n aqsas, 3awen ntaghriben n tafissal tisla tassubt n aqsas, t3awen t3alib t7a7rif tafissal tisla tassubt n aqsas.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Tangawen b dafayet n tissufas t3awen tafissal tisla tassubt n aqsas n 3al3an t3amal n tissufas n tafissal tisla tassubt n aqsas</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Tissufas t3adamat</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Dalb tafissal tassubt</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Tissufas tifissal</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Tissufas tivissal</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Tissufas t3issal</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Tissufas t3alib</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>tissufas</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Tafissal</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Tissufas tafissal t3issal</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Tissufas tafissal t3a3dar</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Tissufas tafissal t3issal t3a3dar</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Ajtisamal tafissal t3issal t3a3dar</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Tafissal t3issal t3a3dar n tafissal t3a3dar t3al3an</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Tafissal t3a3dar t3al3an</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Tafissal t3issal t3a3dar n tafissal t3a3dar</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Ajtisamal t3alib tafissal t3a3dar</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Tafissal t3a3dar t3alib tafissal t3issal t3alib</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Tafissal t3a3dar t3alib tafissal t3issal t3alib tafissal tafissal t3a3dar</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Nesben a tashut</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Tashut tasbed</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Temps</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Répéter</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Une fois</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Chaque jour</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Jours ouvrables</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Temps personnalisé</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Diminuer l&apos;éclat de l&apos;écran en mode économiseur d&apos;énergie</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Teb</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cenc</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Adja</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Metod l-ibdaḍ l-akl</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Wafir, WeChat, tefir biyiaḍit, tefir sifāriḍit</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Wafir</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Tefiḍ wafir</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Diyawen t-taḍil</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Amsak</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Asaṣ-Ṣanad Al-Deepin</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Tefir t-taḍil t-tanādd</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Tafir l-ḍir</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Tafir l-miḍl</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Ḍir</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Amskun deviṣ t-ḍir t-tanādd</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Ibenk n unekcum</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Amalch mih</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Nom tafayut</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Yamzur iskra u tisra l-dragh</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Nom tiswurt tafayut</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Tasnaft</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Tassnat</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Tashit</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Tasfar</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Tasnaft tisnawen tafayut</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Kernel</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Plattform tigrafi</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Processeur</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Mémoire</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Amalch akhbar</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Ghayr tishir nom amalch Bluetooth</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Mot de passe actuel</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Dreksan</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Kabt</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Midel</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Tefus</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Tefus ddiwuss</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Ddawdus tefus</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Korofis</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Tefus ddiwuss ddiwuss ddiwuss ddiwuss</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Tefus ddiwuss aw tefus ddiwuss ddiwuss ddiwuss</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>Ddawdus tefus ddiwuss ddiwuss ddiwuss tefus ddiwuss</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>Tefus ddiwuss ddiwuss ddiwuss tefus ddiwuss</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Tefus ddiwuss ddiwuss</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Tefus ddiwuss ddiwuss</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>Tefus ddiwuss ddiwuss 8 ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Tefus ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Ddiwuss</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Ddus</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Ddiwuss ddiwuss</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Tefus</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Ddiwuss ddiwuss</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Ara ddiwuss ddiwuss</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss ddiwuss</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Tefus</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Suspend</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Ammach</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Fass ghadef tichell</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Ammach l&apos;interface d&apos;arrêt</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Chak</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Tichell n&apos;tass</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Fass ghadef tichell tach</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Tass tichell tach</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Tass tach tach</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Chak l&apos;ouaress tichell tichell</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Chak ghadef tichell tichell</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>High Performance</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Balance Performance</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>Aggressifment ajoutez l&apos;fréquence d&apos;opération de CPU en fonction de la charge de CPU</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Balanced</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Power Saver</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Prioritize performance, which will significantly increase power consumption and heat generation</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Balancing performance and battery life, automatically adjusted according to usage</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Minut</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Heur</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Chak</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Politique de confidentialité</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Le mot de passe ne peut pas être vide</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Le mot de passe doit avoir au moins %1 caractères</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Le mot de passe ne doit pas dépasser %1 caractères</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Ammas n usenqed</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Yetturmed</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Tamuɣli</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Yemmut</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>dat gsbir</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>dat nser</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>waqt gsbir</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>waqt nser</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>simbole n dharb</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>nzer</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>mesur n tsiruf</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>cenc</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>gser</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>tazdir</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>sifra sghir</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 tefdits</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>sifra t gser</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>cenc</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>kofir</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>sifra t gser ntn</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>screensaver</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>tewer</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>screensaver 3asir</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>tajrib</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>waqt t ghiss</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 ddir</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 ddir</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 ddir</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 ddir</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 dëgëdd</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 sern</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>an siih</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Talgu wertefit yuzi itefen</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Screensaver tefit agu gushush</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Screensaver tefit system</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Tefit itefen</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Tefit talgu wertefit zefen</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Zefen:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Siih</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Tefit:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Tefit</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>An siih</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Tefit itefen</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Tefit</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Tefit</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Tefit system, talgu wertefit zefen</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Tefit tefit zefen</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>siih</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>tefit zefen</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Tefit</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Talb</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>aw</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Substitu</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Ressubstitu</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Ajout d&apos;un raccourci personnalisé</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Appareils de sortie</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Sélectionnez si vous voulez activer les appareils</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Appareils d&apos;entrée</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Effets sonores</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Redémarrage</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Arrêt</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Déconnexion</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Réveil</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volume +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notification</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Batterie faible</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Envoyer l&apos;icône de l&apos;icône du lanceur vers le bureau</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Vider la corbeille</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Insérer</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Retirer</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Dispositif amovible connecté</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Dispositif amovible retiré</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Erreur</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Mode</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Volume de sortie</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Ampli kasba</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Ifsayen amuzi yezguzi 100% ugg, yassasghar audiu wi amnassasghar dëgawen amuzi</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Dawt</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Dawti</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Dëgawen</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Dëgawen amuzi ddiwassasghar</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Equilibre dawt-dawti</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Tassaghar kanal dawt wi kanal dawti n kanal defnus</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Idem amuzi yassasghar wassasghar amuzi wazzug yebb drass</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Ibenk n tuffɣa</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Audiu</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Géni</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Moust</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Amzilh</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Géni fezzan</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Zghur defnus</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Synchro géni yebb drass</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Server NTP</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Géni defnus</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Tawassir</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Dëfni</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Adresse server</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Obligatoire</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>L&apos;adresse de l&apos;serveur ntp ne peut pas être vide</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>Usez le format 24 heures</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>zone horaire du système</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>liste des fuseaux horaires</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>dari</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>kseb</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Garder les paramètres d&apos;affichage</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Les paramètres seront rétablis dans %1s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Rétablir</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Garder</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Ajouter une zone horaire</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Déterminez la zone horaire en fonction de la localisation actuelle</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Zone horaire :</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Ville la plus proche :</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuler</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Garder</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>TouchScreen</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Configurer ici lors de la connexion du touch screen</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Paramètres de base</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Touchpad</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Vitesse du pointeur</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Lent</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Rapide</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Désactiver le touchpad pendant l&apos;entrée</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Appuyez pour cliquer</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Talqalqal n tahan</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Gestu bil-lexen-3</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Gestu bil-lexen-4</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Join Program Experience User</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Verification security</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>Action tafawwuz, tefawwuz nis u dawen password login first</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 characters</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Forgot Password</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancel</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirm</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>wallpaper</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>My pictures</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Wallpaper system</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Xeuwa</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Xeuwa Guday</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Aktivaz gafsa transparents asitafay xewen</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Effekt fes xew</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Gafsa</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Lamp Magïk</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Opaçite</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Bédd</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Xudd</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Nafsan chelch</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Shus as chelch</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Shus wani</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Drezzt Display</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Amal, mën dëggu content dëzzt ad shus as xew.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Xef Tit Bar</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Dëgg mën dëggu dëzzt as bar tit ad shus as xew dëgg ad chellaz window manager.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Dëgg bëdd</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>L&apos;username dawer 3 i akz 32 charakters</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>L&apos;charakter tawer dawer letre i akz nqamre</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>L&apos;username dawer tawer nqamres</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>L&apos;username dawer tafiq yuqra yuqra ak l&apos;insass</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>L&apos;nom dawer tawer</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>L&apos;nom dawer tafiq yuqra yuqra ak l&apos;insass</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Mot de passe tafiq</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Wesetla</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Administrateur</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Kusususit</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Ammushit amsak yuwen nsenzawen asen</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>Amsak yuwen nsenzawen amsak asen</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>Amsak yuwen nsenzawen yidawen amassak asen</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>Amsak yuwen nsenzawen yidawen amsak asen</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>Tassawif amsak AS</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>Chif dawen amassif</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Dimansional</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Plan</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Kesfassen dawen tefedjet yidawen [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_kk.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"kk\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>редагуу</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Жаңы користувача қосу</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Толук аты-жөнін аттау</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Жүктелдік айту құралы</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Пароль арқылы жүктелдік айту</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Жетілдік сметаны сатып алу</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Жеке салынамасын құралу</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Сметалар салынамалары</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Тамыр</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Жеке салынама аты</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Жеке салынамасы қосу</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Авто жүктелдік айту</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Сметанын мақсаты</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Сметанын аты, толук аты-жөні, сметанын түрі</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Сметанын аты</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Сметанын толук аты-жөні</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Сметанын түрі</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Жақсыру өз аты</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Мен бул қалыптанузды оқыймын жана атқаруым</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Туура келбейт</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Келесі</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Аты жақсырылды</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Картона стилі</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Демпстүрөлүк стилі</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Түкөлүк стилі</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Келтірім</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Сактау</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Көрүнгілік және түртілу</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Мониторды жылыңыз барып жылыңызды ынталандырат</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Көрүнгілік жылыңыз барып жылыңызды кіру</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Компьютер түртін барып түртілу</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Капақты жылыңыз барып</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Көңілдік түсті басылғанда</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Жақсырақ кіші</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Жақсырақ кіші табиғат</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Ортасында түртілу</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Ортасында қысымылу</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Жақсырақ кіші бөлігі</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Жақсырақ куралы</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Корытындылық және өнімділікті көрсете</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Максималды бөлігі</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Жақсырақ кіші бөлігі</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Коркун</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Блутутты жылыңыз барып, аты &quot;%1&quot; деп көрсек</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Блутутты жылыңызды ынталандырат, аты &quot;%1&quot; деп көрсек</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Жылыңызды жою</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Жылыңызды жетілу</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Файлы жіберу</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Теріс жазу</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Қорқыту</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Файлды таңдау</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Тамырлау</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Башка Bluetooth касиеттерінің бұл касиетті табуға мүмкіндік беру</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Bluetooth функциясын қолдану үшін lütfen оттыңыз</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Салкау режимі</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Байланысқа кіреді</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Байланысқа кіреді жоқ</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Аяқталу атқарадары</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Сіз менюн түзіп, әрекеттеріңізді өзгертіңіз, немесе ретесіңізді қатынастыңыз үшін ретесіңізді қалыптастырыңыз</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>grub басталу тарту</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>тәрібі</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Тәрібын қосқанда, қ putі қосқанда тәрібінің ретесін ойнайтын</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Баштау менюсінің тексеруі</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Колдану суретінен кийін, менюсін өзгертудіңіз үшін пароль керек</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Парольді өзгертіңіз</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Баштау менюсінің тексеруін өзгертіңіз</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Баштау менюсінің аттестация парольын атқарады</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Пайдалануын аты :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Жаңы пароль :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Төлөлсөз</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Пароль эмпір емес</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Паролдар бір-біріне тақырып жоқ</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Қайта пароль:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Тәжіри</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Анимацияны бастау</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Система басталу интерфейсінде логотип анимациясындын өлкесін өзгерту</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Төмөнкі арпта ап Parol айланасына таңдауға рұқсат ету:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Тізімді 1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Тізімді 2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Тізімді 3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Тізімді 4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Тізімді 5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Тізімді 6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Тізімді 7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Тізімді 8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Тізімді 9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Тізімді 10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Тізім өтінішіне болмады</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Тізім бар</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Басқа айланаларды тізімді өт</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Түсірілмейген катастрофа</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Тізім ақпараттарды өтінішін таңдайтын</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Негізде айналып калды</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Тізім өткізілген</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Турум көп жылып, алдынча көргенде көргөндерди пайда болбайын</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Турум толук көрүлбөй</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Турумдун айрым ырларын чыңдоого же турумдын өлчөмүн түзүүгө аракет et ий, алдынча көргенде көргөндерди пайда бол</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Чындыкты көргөн</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Турумдын жетишкен өлчөмүнүн түзүүгө аракет et ий, турумду чындыкты көргөнде көргөндерди пайда бол</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Турум көп жылып, алдынча көргенде көргөндерди пайда болбайын</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Турумдын көргөндерди пайда бол, алсызда сенсорго ылайык көрсөт</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Көзөңүңүздү кадрдагы айрым аймакта көрсөт</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Көзөңүү киргизилген</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Көзөңүүнүн айрым аймакын кадрдагы айрым аймакта көрсөтүүлүк</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Камердан айырмалык</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Камерга чыныгы көргөндерди пайда бол</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Кадрдагы айрым аймакта көзөңүүлөрдүн айрым аймактарын көрсөтүүгө аракет etпайын</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Камеранын өлкөнү чындыктын айрым аймакын чыңдоого аракет et ий</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Таң-таңсыз, жок-жок же аркылуу айырмалык айырмаларда киргизүүгө аракет etпайын</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Көзөңүүнүн айрым аймакын чыңдоого аракет et ий</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Чындык таң кайсып кетти</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Болушуна аракет</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Таң-тартуу салыны</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Иконка өнүгүүлөрү</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Иконка темасы</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Тема иконасын өзгөртүү</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Курсор темасы</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Тема курсорун өзгөртүү</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Сиз бул суреттүүнүн жоюунун төмөнкү нерсесинде эскерсиз?\n</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Суреттүүнүн жолун жоюу</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Болсун</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Жоюу</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Түзүлүүлөргө жүрүү</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Болсун</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Берилген</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Толугу жарыс күнгөрү</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Кыска</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Жашыраак</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Толуу түзүлүшү</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Төмөнкү</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Жашыраак</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Саналык түштүк</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>Бул жерде тест</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Caps lock көрсөткүчү</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Негизги бирликтешүү жылысы</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Негизги бирликтешүү тест</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Калкын көлөм</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Байыркы көлөм</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Кичирик көлөм</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-kk</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-kk</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Клиенттердің досы программасына қатысуу үшін қатысқаныңызды қатыстыру</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Жыл жана күнүү түзінүү</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Жыл</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Жыл</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Ай</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Күн</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Жыныс</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Тақырыпты тақырыптау</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Күн бойы</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Күнөгө кеткен күн</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Бүгін</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 саат бұрын барлығы</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 саат кейін барлығы</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Түсті</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Жаңғырта</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Жаңғыртаның бирінші күні</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Кыска жыл</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Жаңы жыл</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Кыска жыныс</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Жаңырту аралыгы</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Төлө жөнүндө симболу</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Төлө үчүн позитивдик симболу</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Төлө үчүн негативдик симболу</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Тартуу символу</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Сан өзгөчөлүктөрүнө символу</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Сан өзгөчөлүктөрү</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Башкаруу окуянын өлчөмү</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>NTP серверин өзгөртүү үчүн эпгөрүү керек</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Болбос</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Сактау</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Контроль центрү система параметрлеринин түзөлуу мүмкүнчилери бере алат</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>Вэйхатты байланышташ</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>Вэйхатты байланышташ кылганда, сиз %1 ID-синен жана жергиликтүү суроого жардамчылык кылышыңыз жана жогору маанай жана жакын кабыл алуу үчүн</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Байланыштуу эмес</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Байланышты баскып чыгуу</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Байланышташ</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Siz мында баскып чыгууну аныктоо лы？</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Вэйхатты баскып чыгуу кпоскунда, сиз Вэйхатты QR кодуна сүрөп кабыл алуу үчүн %1 ID-синен же жергиликтүү суроого жардамчылык кылышыңыз эмес</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Мен бул суроого аракет кылым</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Жергиликтүү суроого байланышташ</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Жергиликтүү суроонун байланышташтын кпоскунда, сиз ар бир чечимди колдонуу ыкмасыздыңыз:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>Вэйхат кодун сүрөп жардамчылык системасы</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Вэйхатты колдонуу, бул Вэйхат %1 ID-синен байланышташып жатып, кодун сүрөп кабыл алуу үчүн жергиликтүү сурооңузга кабыл алуу үчүн</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>%1 ID-сиз аркылуу паролун тастыгуу</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Башка региондер</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>Сегиңиз бармак, ал эми сizin системаны баштап кылыңыз</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Башкастырылышыңыз уюштурулган өлкөлөрдө жана иштеп чыгуу өлкөлөрдө бармак.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Туура түркө баштап кылуунун өзгөчө программасын таңдаңыз, &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>жою</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Компьютер тарабынан өстүрүү файлын баштап кылуу</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Программалар (*.desktop), </translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Бардык файлдар (*), </translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Админ аркылуу жеткиликтүү</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Админ аркылуу жеткиликтүүнү сүрөңүз</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Программчы режимуна киргизген так, админ аркылуу жеткиликтүүгө ээ болушу мүмкүн, бирок системанын толуктуулугун калыптануу үчүн эң жетишкендикте колдоноо керек.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Разрешет</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Жылуу</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>Онлайн</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>UOS ID-нен киргизүү</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Оффлайн</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Төмөнкү кэдитти импорттоо</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Файлды таңдаңыз</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>Сиздин UOS ID-нин башталып калып жатат, программчы режимун киргизүү үчүн бир нече түшүнүүлөрдү түшүнүү</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Сиздин UOS ID-сизге киргизүү үчүн эң баштап кылыңыз жана иштеп чыгуу</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1. PC маалыматын экспортуу</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Экспорт</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3. Кэдитти импорттоо</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Девелопердік және түзініктіру арқылы көмек</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Система логдайтын дәрежесі</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Нәтижелерін өзгертілгенде, бірнеше сапаттау жүйесінің құқығын және/ немесе қол жабуын арттыруға арналған болу мүмкін.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Офф</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Тест</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>Нәтижелерін өзгертілгенде, уақыт үшін бір минутына дейін басқару құрылымын көрсету үшін, қолдану үшін басқару құрылымын қайта басқару керек.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Төмендегі ұстақтарды бұл файлдар және жолдарды қолдану үшін рота беріңіз:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Документтер</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Міңгілік</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Каралар</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Відеке</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Музыка</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Жарық жасалу</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>фолдер</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Размер</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Стандарттық шығын</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Тұрақты шығын</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Жүйе пландары</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Жүйе қорғау құралдары</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Низа батареясында автоматты қорғау</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Низа батареясында жетекшілік</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Батареясында автоматты қорғау</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Басқару құрылымының жыртылу құралдары</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Пароль қажет етеді, әртүрлі компьтерді басқару үшін</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Пароль қажет етеді, мониторды басқару үшін</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Шығару ашылуу параметрлері</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Жетише жығаруу</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Саат</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Таңдау</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Бір жол</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Күн күн</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Шаардағы күндер</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Кастом саат</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Жаңырақ модде аркылуынан екінші есептің көршілігін азайту</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Түзімді артыру</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Негізделген</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>Түзімді артыру</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Тіл</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Тапсырмадан басылды</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>редактіру</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Басқа тілдер</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>қоса</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Бөлім</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>Бөлім</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>Операциялық система және әрекеттер ұстазыңызға өзіңіздің қызметінде және бөлімінде міндетті контент береді</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>Операциялық система және әрекеттер регіондық форматтарға қатысты даталар және уақыт форматтарын атқарады</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Тіл қосу</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Табыс</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Тастау</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Қосу</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Кіріс түрі</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Құпия сөз, WeChat, биометриялық аутентификация, құралдық құпия сөз</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Құпия сөз</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Құпия сөз ауқой</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Корытынды күндің саны</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Әр күн</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Deepin Community</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Автоматтық шумды түштіру</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Кірістік ортамдығындың жалпысы</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Кірістік ортамдығындың дәрежесі</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Кірістік</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Зомдын кірістік ортамдығы табылмады</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Міндетімініңізді</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Компьютердин аты</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Ол таңбалармен басталып аякталмайды</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>ОС аты</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Жылысы</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Жүйесі</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Түрі</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>бит</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Тандалу</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Система ыңғайлысының таңдауының уақыты</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Кернел</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Графикалық платформа</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Процессор</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Негізгі памық</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Басқа міндеттер</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Аты жок Bluetooth міндеттерін көрсөт</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Жою күлкі</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Қажетті</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Төмөнкү</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Мындай</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Қалыптастырылған</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Құпия сөзді көрсет</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Құпия сөз көрсетуі</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Кездесетін</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Құпия сөз басқа жоқ</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Құпия сөздер тең емес</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>Көрсеткіш бар пользоваттерге түсінікті. Құпия сөзді бұттан көрсетуі мүмкін.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>Жаңы құпия сөз кеңесінде қолданылған құпия сөзден кеңейтіледі</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Құпия сөзі өзгерту</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Құпия сөзі азайту</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>Құпия сөз кіруі 8 символдан аз болмасыз және құпия сөзі келесі 3 символдан бірінің комбинациясын жинағып, өзгерістерге жетілдіріледі. Бұл құпия сөздің жақсартылуы мүмкін.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Құпия сөзі азайту үшін кеңесінде қалыптасқан мақсаттарды өлтіреді.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Болдырмау</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Көркем</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Авто</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Күнімді</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Туғандаған</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Плагин аймағы</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Қай иконкалар Докта көрсетіледі</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Тындау</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Тақырыптау</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Жүгүртүү</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Экранды жою</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Катышу интерфейсін көрсет</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Ол көбүнчө</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Экранды жана тазыруу</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Экранды жоюňын keyін</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Экранды көңілді түштүрүү keyін</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Компьютер тазыркы keyін</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Капкан жылынан курулганда</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Пайыз түстүн басылып</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Таңдалгы таразы</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Таразы балансы</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>CPU иштөө жүйесинин иштөө узундугуна жетишкендік таанды</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Баланс</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Көп аркылуу арқылы</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Таразын арттырууга жетишкендік, бул энергияды жана жогорулыгын иштеп чыгууга арналыштырат</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Таразы жана батареянын күчтүүлүгү балансы, колдонууна арналыштырмалы таанды</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Батареянын күчтүүлүгүн арттырууга жетишкендік, бул системанын көбүнчө таразын жогорулоо үчүн аткарууга арналыштыралып</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Минут</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Саат</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Ал эмес</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Кіріспе калыптану</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Пароль булак болушу мүмкүн эмес</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Пароль %1 символдан аз болушу мүмкүн эмес</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Пароль %1 символдан көп болушу мүмкүн эмес</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Пароль бірнеше міндетті симболдарындағы, сандардың немесе ретінде кішкентай латынша сөздерге (беттілік арқылы көрсетілген) мүнөздірілген. (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>%1 деген санда бірнеше симболдың саралуы бар символдары кіруі мүмкін</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>%1 деген санда бірнеше жетістік символдары кіруі мүмкін</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>%1 деген санда бірнеше қайталап қалатын символдары кіруі мүмкін</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Пароль кішкентай латынша сөздер, кішкентай латынша сөздер, сандар және символдар (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ ) қандайсыздарды барысында кірілуі мүмкін</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Пароль 4 деген санда бірнеше симболдың саралуы бар символдарын барысында кіруі мүмкін емес</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Оңтүстік сөздер және комбинацияларды паролы кіруі мүмкін емес</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Күчті пароль түзіңіз</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Бұл пароль қате</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Контрол жоғарылышы</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Активді</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Жасалу</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Активді етіледі</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Активді ету</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Сыртқы</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Триaling уақытына</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Триaling уақыты басты</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Түсті экран параметрлері</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Түсті экран параметрлері өзгертілді</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Бұл системалық курама жою өндірілген. Өзіңіздің администраторына байланысқаныңыз.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Көрсете</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Стандарттаулар форматтары</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Недең өзгөчө күні</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Короткая дата</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Долгая дата</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Короткое время</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Долгое время</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Монета симболы</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Жылыз</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Көзөмөл көлөмү</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Түшүнө</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Сактоо</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Тызбөө</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Көзөмөл сүрөттөө</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 символ</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Көзөмөлдүн тарабынан үлгүнүнү көрсөтүү</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Түшүнө</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Таанылыш</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Көзөмөлдөр толуктук келбейт</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Көзөмөл көлөмү</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>Түзө</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Көзөмөл көлөмүнү кыскачуу</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>Түштүк</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>Көзөмөл көлөмү</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 минутта</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 минутта</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 минутта</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 минутта</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 минут</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 сағат</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>ақпарат бермей</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Користуу паролу керек</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Көрсөткүч карточкалар слайс</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Системалык карточкак слайс</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Табу</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Кастом шорткат қосу</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Аты:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Талапталат</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Команда:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Шорткат</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Жоқ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Тарту</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Қосу</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Шорткаттар</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Системалық шорткат, кастом шорткат</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Табу шорткаттары</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Берілген</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>Түз</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Көрсөткүчке түз</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Тастық</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>ысырыңыз</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Көрсеткенди өзгерт</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Натыйжанын таңдауына қайтыстыру</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Кастом шорткат қосу</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Шығу жөндөмдөрү</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Жөндөмдөрдү өнөрдүнүн өзгөчөлүктөрүнүн алууну созу</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Жүйө жөндөмдөрү</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Звук жөндөмдөрү</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Арттыру</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Жою</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Жетиштүү</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Акыркылыш</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Гүлдөрүнө +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Жалпысыз бөлүштүрүү</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Жылыз батарейка</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Лаунчерда иконкага басып, аркылы жердеги жылыз батарейка</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Көргөзмөнү тазалоо</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Жүктөнү жүктеу</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Жүктөнү жылуу</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Таңдашуу жөндөм жетиштүү болгон</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Таңдашуу жөндөм жылуу болгон</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Таа</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Мода</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Шығу гүлдөрү</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Гүлдік арттыру</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Егер гүлдік 100% дегенде аз емес болса, ол звука көркемді калыптандыруы мүмкін және шығыс жөндерге жақсартылатын</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Калім</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Тұрақты</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Шығыс</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Звука шығыс жөнірі жоқ</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Калім-турақты баланс</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Калім және тұрақты каналдарды бір каналға қосу</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Егер жүзеге асырғанда негізгі аудио жөнірі тақталады ма?</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Звук</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Көзөмөлдүк</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Мause</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Өзгөртүү</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Көзөмөлдүк туралы қаралу</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Көбірек көзөмөлдүктер</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Орналасқан уақыт синхронизациясы</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>NTP сервері</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Система уақыт жана күн</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Туындайтын</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Түзүлүш</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Сервер аドレスі</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Талапталатын</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>NTP серверин айрым айрым бере алмайсын</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>24-саат форматын колдон</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>система время зонасы</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Zona жасалуы</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>соңғы</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>күнү</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Көрүнүш түзүлөшүн кеңейт</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Түзүлөш %1с кайтышында кайтышы керек</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Кайттыру</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Кеңейтүү</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Zona жөнөтүү</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Жергиликтеги жайга киргизсизде күнө жазуу зонасын таңдашын</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Zona:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Күнүк шаар:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Оттыруу</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Кеңейтүү</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Жасыл экран</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Жасыл экранга байланышып, бул жерде түзүү</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Негизги түзүлөш</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Жасыл экран</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Белештүү жылысы</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Жогору</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Төмөнкү</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Киргизүүдө жасыл экранды жайгаштыруу</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Кликтөрүү</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Түз бекіту</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Три жылыс жүйелері</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Төрт жылыс жүйелері</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Користушуу мамилесине кирүү</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Жамбылдатуу тасымалык</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>Намыс ар кандай, эң бирин користуу паролу киргизин</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 символ</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Паролун жайгаштырдыңыз?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Болбосу</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Тааным</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>бекас</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Менин кадрларым</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Системадык бекас</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Кішкентай</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Демек</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Окнадан жүктүндүк кезде прозрачтандыруу өзгөртүүлерди иштеп чыгуу</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Окно кемитүү өзгөртүүсү</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Масштабдандыруу</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Магиялы таң</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Таңдама</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Негизги</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Түшүк</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Көрсөткүч бары</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Көрсөтүү кезде көрсөтүү</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Көрсөтүүнү кыскартуу</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Компакттык көрсөткүч</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Егер иштеп чыгылып келсе, окнада ар көп контент көрсөтүлөт.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Окно ат барынын көлөмү</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Негизинен оюн жөнүндө окнадын ат барындашатын оюн менеджери менен сүрөттөлгөн.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Жөнөкөй</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>Қалқысыңыз 3-ден 32-ге дейін болуы керек</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>Ең бірінші символ сөймеге немесе сан болуы керек</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>Қалқысыңыз сандарға биікті болмайтын керек</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>Кейде басқа користуу сәйкесініңізді пайдаланылған</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Толық аты-жөні толған</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>Кейде басқа користуу сәйкесініңізді пайдаланылған</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Қате пароль</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Стандарттыс пользователь</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Администратор</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Кастомдыс</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Жаңырыңыз көмүн домен серверинен жетишиңиз керек</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>Жаңырыңыз көмүн домен серверге жетишиңиз керек</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>Жаңырыңыз көмүн домен серверинин туратыңыз керек</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>Жаңырыңыз көмүн домен серверге жетишиңиз керек</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>AD домен маалыматтары</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>Құпия сөз тақырыбын түз</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Дөңгелектік</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Толугон</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Бұл қысқаша пайдалануы [1] сақталуы сұрайыт</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Пароль булактан тастырылмайсыз</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Пароль minimum %1 симболдан туратында</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Пароль %1 симболдунан аз болуп туратында</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Парольдин бірнеше символдарындағы барлығы англий тілінің сөймесі (басып-таңк), саны немесе атқарадық симболдары (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/) барысында болушы мүмкін</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Палиндром символдардын барысы %1-ге эсептіңіз</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Тек түрдік символдардын барысы %1-ге эсептіңіз</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Түзгі символдардын барысы %1-ге эсептіңіз</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Парольдин барысы басып-таңк сөймесі, таңк сөймесі, сандар және атқарадық симболдар (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/) болып туратында</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Парольдин барысы 4-ден ашық палиндром символдарын жоқ болуы керек</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Түп-түнді сөздер және комбинацияларды паролын қолданып қойыңыз</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Жаңы жоғары пароль құрыңыз</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Пароль кездерге жетіспейт</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Система</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Кеңістік</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Мекен-жай</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Таасирпесіз алаттар</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Кастом</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Жоқ</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_km_KH.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"km_KH\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">រក្សាទុក</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>បានភ្ជាប់</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>មិនបាន​តភ្ជាប់</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>បោះបង់</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">រក្សាទុក</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\">ការកំណត់ត្រាការបញ្ចូល</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\">បិទ</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>មជ្ឈមណ្ឌលបញ្ជា</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">រក្សាទុក</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">រក្សាទុក</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">គ្មេាំង</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">រក្សាទុក</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>បិទ</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\">ការកំណត់ត្រាការបញ្ចូល</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>រក្សាទុក</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">រក្សាទុក</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">បោះបង់</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">គ្មេាំង</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>ចិនបុរាណ (ហុងកុង ចិន)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>ចិនបុរាណ (តៃវ៉ាន់ ចិន)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>តៃវ៉ាន់ ចិន</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>ការបញ្ជូលច្បាប់នេះមានជំនួយខាងចុងខាងស្តាំ [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>ការកំណត់ត្រាការបញ្ចូល</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>បង្អួច</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>គាំទ្រការបញ្ចូល</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>កម្មវិធីការងារការបញ្ចូល</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>ការកំណត់ត្រាការបញ្ចូល</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>គ្មេាំង</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_kn_IN.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"kn_IN\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\">ಕಸ್ಟಮ್</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">ಯಾವುದೂ ಇಲ್ಲ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\">ಸಿಸ್ಟಮ್</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">ಯಾವುದೂ ಇಲ್ಲ</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>ಕ್ಯಾಚಿನ್ ಕ್ಯಾಚಿನ್ (ಕ್ಯಾಚಿನ್ ಹಾಂಗ್ ಕಾಂಗ್)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>ಕ್ಯಾಚಿನ್ ಕ್ಯಾಚಿನ್ (ಕ್ಯಾಚಿನ್ ತೈವಾನ್)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>ತೈವಾನ್ ಕ್ಯಾಚಿನ್</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>ಈ ಶರ್ಕ್ಯಟ್ ಕಾನ್ಫ್ಲಿಕ್ಟ್ ಆಗಿದೆ [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>ಸಿಸ್ಟಮ್</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>ವಿಂಡೋ</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>ವರ್ಕ್ಸ್ಪೇಸ್</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>ಸಹಾಯಕ ಕರಗಳು</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>ಕಸ್ಟಮ್</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>ಯಾವುದೂ ಇಲ್ಲ</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_ko.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ko\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>수정</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>새 사용자 추가</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>전체 이름 설정</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>로그인 설정</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>비밀번호 없이 로그인</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>현재 계정 삭제</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>그룹 설정</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>계정 그룹</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>완료</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>그룹 이름</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>그룹 추가</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>자동 로그인</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>계정 정보</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>계정 이름, 계정 전체 이름, 계정 유형</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>계정 이름</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>계정 전체 이름</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>계정 유형</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>얼굴 등록</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>我已经阅读并同意</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>免责声明</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>다음</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>已注册面部</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>얼굴 등록에 실패했습니다</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>완료</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>다시 등록</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>완료</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>지문 등록</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>등록할 지문을 지문 센서에 위치시키고, 아래에서 위로 움직입니다. 작업을 완료한 후에는 손을 들어주세요.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>我已经阅读并同意</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>免责声明</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>다음</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>다시 등록</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>&quot;생체 인증&quot;는 유닉스테크 소프트웨어 기술 주식회사가 제공하는 사용자 인증 기능입니다. &quot;생체 인증&quot;을 통해 수집된 생체 정보는 장치에 저장된 정보와 비교되어 사용자 인증이 이루어집니다.\n\n유닉스테크 소프트웨어 기술 주식회사는 생체 정보를 수집하거나 접근하지 않으며, 해당 정보는 로컬 장치에 저장됩니다. 개인 장치에서 생체 인증을 활성화하고 관련 작업을 수행하려면 자신의 생체 정보만 사용하고, 다른 사람의 생체 정보를 즉시 비활성화 또는 삭제하십시오. 그렇지 않으면 그로 인해 발생하는 위험을 부담해야 합니다.\n\n유닉스테크 소프트웨어 기술 주식회사는 생체 인증의 보안, 정확성 및 안정성을 연구하고 개선하고 있습니다. 하지만 환경, 장비, 기술 등 다양한 요인과 위험 관리로 인해 일시적으로 생체 인증을 통과할 수 없다는 보장이 없습니다. 따라서 유닉스에서 &quot;서비스와 지원&quot;을 통해 생체 인증 사용 시 질문이나 제안을 제공하지 않아 UOS에 로그인하는 유일한 방법으로 생체 인증을 사용하지 마십시오.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>자동 로그인은 한 계정만 활성화할 수 있습니다. 먼저 &quot;%1&quot; 계정의 자동 로그인을 비활성화해주세요</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>확인</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>이미지</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>사람</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>동물</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>경치</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>LLU</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>모티브</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>커스텀</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>카툰 스타일</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>다차원 스타일</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>평평한 스타일</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>저장</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>화면과 정지</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>모니터를 끄는 후</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>화면 잠금 후</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>컴퓨터는 후에 정지</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>노트북 떡장이 닫힌 시점</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>전원 버튼이 누를 때</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>저전력</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>저전력 알림</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>자동 정지</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>자동 하ibernation</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>저전력 임계값</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>배터리 관리</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>사용 시간과 충전 시간을 표시</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>최대 용량</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>저전력 수준</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>비활성화</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>블루투스가 끄고, 이름은 &quot;%1&quot;로 표시됨</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>블루투스가 켜지고, 이름은 &quot;%1&quot;로 표시됨</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>끊기</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>연결</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>파일 전송</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>이름 변경</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>장치 삭제</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>파일 선택</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>편집</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>기타 블루투스 장치가 이 장치를 찾을 수 있도록 허용</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>블루투스 기능을 사용하려면 비행기 모드를 켜주세요</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>비행기 모드</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>연결됨</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>연결되지 않음</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>시작 설정</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>메뉴를 클릭하여 기본 시작 항목을 변경하거나 이미지를 드래그하여 배경 이미지를 변경할 수 있습니다.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>grub 시작 지연 시간</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>테마</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>테마를 켜면 컴퓨터를 켰을 때 테마 배경을 볼 수 있습니다.</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>시작 메뉴 인증</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>열린 후 메뉴 편집을 위해서는 비밀번호가 필요합니다.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>비밀번호 변경</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>시작 메뉴 인증 비밀번호 변경</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>시작 메뉴 인증 비밀번호 설정</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>사용자 이름 :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>새 비밀번호 :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>필수</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>비밀번호는 비어있을 수 없습니다.</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>비밀번호가 일치하지 않습니다.</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>비밀번호 다시 입력:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>확인</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>시작 애니메이션</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>시스템 시작 화면의 로고 애니메이션 크기를 조정합니다</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>아래 앱이 카메라에 접근할 수 있도록 허용합니다:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>인식번호1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>인식번호2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>인식번호3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>인식번호4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>인식번호5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>인식번호6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>인식번호7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>인식번호8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>인식번호9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>인식번호10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>스캔 실패</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>이미 인식번호가 존재합니다</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>다른 손가락을 스캔해주세요</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>알 수 없는 오류</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>스캔 중지</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>인식할 수 없습니다</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>빠르게 움직였습니다</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>지나치게 빠르게 움직였습니다. 안내에 따라提升请勿抬起</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>모호한 손바닥 인식</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>손을 깨끗이 하거나 손 위치를 조정한 후 다시 시도해주세요</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>이미 스캔되었습니다</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>손 위치를 조정하여 손바닥을 완전히 스캔하십시오</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>지나치게 빠르게 움직였습니다. 안내에 따라提升请勿抬起</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>손을 들어 다시 센서 위에 두세요</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>얼굴을 프레임 안에 위치시킵니다</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>얼굴 등록 완료</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>인간 얼굴을 위치시켜주세요</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>카메라로부터 멀리 떨어져 있어야 합니다</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>카메라에 가까이 가세요</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>프레임 안에 여러 얼굴을 위치시키지 마세요</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>카메라 렌즈가 깨끗한지 확인하세요</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>어두운 곳, 밝은 곳 또는 뒤등반된 환경에서 등록하지 마세요</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>얼굴을 덮지 마세요</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>스캔 시간 초과</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>강조 색상</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>아이콘 설정</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>아이콘 테마</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>테마 아이콘을 설정합니다</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>커서 테마</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>테마 커서를 설정합니다</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>이 계정을 정말로 삭제하시겠습니까?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>계정 디렉토리 삭제</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>삭제</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>설정으로 이동</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>일반</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>반복 지연</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>짧음</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>긴</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>반복 속도</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>느림</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>빠름</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>숫자 키패드</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>테스트 여기</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Caps Lock 표시</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>더블 클릭 속도</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>더블 클릭 테스트</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>左手模式</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>크기 큰 것</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>크기 작은 것</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>루트 액세스를 얻을 수 없습니다</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>먼저 유니온 ID로 로그인하세요</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>PC 정보를 읽을 수 없습니다</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>네트워크 연결이 없습니다</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>인증서 로딩에 실패했습니다, 루트 액세스를 얻을 수 없습니다</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>서명 검증에 실패했습니다, 루트 액세스를 얻을 수 없습니다</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>사용자 경험 프로그램에 동의하고 참여하기</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>개발자 모드의 공지사항</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>동의하고 루트 액세스 요청하기</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>새로운 부트 애니메이션 설정을 시작합니다, 한 분 정도 기다려주세요</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>새로운 부트 애니메이션 설정이 완료되었습니다</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>시스템 재부팅 후 설정이 적용됩니다</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>비밀번호는 숫자와 문자를 포함해야 합니다</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>비밀번호는 8글자에서 64글자 사이여야 합니다</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>새로운 계정 만들기</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>계정 유형</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>사용자 이름</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>필수</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>전체 이름</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>선택 사항</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>계정 만들기</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>아직 프로필 사진을 업로드하지 않았습니다. 이미지를 업로드하려면 클릭하거나 드래그 앤 드롭하세요.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>사용 가능</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>사용자 경험 프로그램에 동의하고 참여하기</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>날짜 및 시간 설정</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>날짜</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>년</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>월</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>일</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>시간</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>확인</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>내일</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>어제</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>오늘</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1시간 전</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1시간 후</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>스페이스</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>주</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>주 시작일</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>단순 날짜</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>상세 날짜</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>단순 시간</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>상세 시간</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>통화 기호</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>양수 통화</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>음수 통화</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>소수점 표시</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>숫자 그룹화 표시</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>숫자 그룹화</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>페이지 크기</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>NTP 서버 변경을 위해 인증이 필요합니다</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>시스템 시간대를 설정하려면 인증이 필요합니다</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>저장</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>컨트롤 센터는 시스템 설정 옵션을 제공합니다.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>WeChat 바인딩</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>WeChat을 바인딩하면 %1 ID와 로컬 계정에 안전하고 빠르게 로그인할 수 있습니다.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>해제됨</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>해제 중</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>바인딩</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>WeChat을 해제하시겠습니까?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>WeChat을 해제하면 WeChat을 사용하여 %1 ID 또는 로컬 계정에 QR 코드를 스캔하여 로그인할 수 없습니다.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>생각해 보겠습니다</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>로컬 계정 바인딩</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>로컬 계정을 바인딩하면 다음 기능을 사용할 수 있습니다:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>WeChat 스캔 코드 로그인 시스템</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>WeChat을 %1 ID와 바인딩한 후 로컬 계정에 로그인하기 위해 코드를 스캔합니다.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>%1 ID를 통해 비밀번호 재설정</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>비밀번호를 잊었다면 %1 ID를 통해 로컬 비밀번호를 재설정할 수 있습니다.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>이 기능을 사용하려면 컨트롤 센터 - 계정으로 이동하여 관련 옵션을 활성화하세요.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>데빈</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>&apos;%1&apos;를 열기 위한 기본 프로그램을 선택해 주세요,</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>추가</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>데스크톱 파일 열기</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>응용 프로그램 (*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>모든 파일 (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>루트 액세스</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>루트 액세스 요청</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>개발자 모드에 진입하면 루트 권한을 얻을 수 있지만, 시스템의 안전성을 손상시킬 수도 있으므로 주의하십시오.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>허용됨</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>입장</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>온라인</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>UOS ID 로그인</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>오프라인</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>인증서 가져오기</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>파일 선택</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>당신의 UOS ID가 로그인되었습니다. 개발자 모드로 진입하려면 클릭하세요</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>먼저 UOS ID에 로그인하십시오. 계속하십시오</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1. PC 정보export</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>EXPORT</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.인증서 가져오기</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>개발 및 디버깅 옵션</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>시스템 로깅 수준</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>옵션을 변경하면 더 자세한 로깅이 발생하여 시스템 성능이 저하될 수 있으며/또는 더 많은 저장 공간을 차지할 수 있습니다.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>꺼짐</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>디버그</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>옵션 변경은 성공 메시지를 받은 후 최대 1분 동안 처리될 수 있습니다. 적용을 위해서는 장치를 재부팅해야 합니다.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>디스플레이</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>아래 앱들이 이 파일과 폴더에 접근할 수 있도록 허용합니다:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>문서</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>데스크톱</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>사진</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>비디오</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>음악</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>다운로드</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>폴더</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>크기</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>표준 폰트</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>고정 폰트</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>파워 플랜</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>파워 절약 설정</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>저전력 상태에서 자동으로 파워 절약 모드로 전환</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>저전력 임계값</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>배터리 상태에서 자동으로 파워 절약 모드로 전환</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>akeup 설정</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>컴퓨터를 깨우려면 비밀번호가 필요합니다</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>모니터를 깨우려면 비밀번호가 필요합니다</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>シャットダウン設定</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>예약된 종료</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>시간</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>반복</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>한 번만</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>매일</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>평일</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>커스텀 시간</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>절전 모드에서 화면 밝기 줄이기</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>최적의 성능</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>균형</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>최적의 시각적 효과</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>언어</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>완료</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>편집</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>다른 언어</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>추가</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>지역</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>지역</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>운영 체제와 애플리케이션은 국가와 지역에 따라 로컬 콘텐츠를 제공할 수 있습니다.</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>운영 체제와 애플리케이션은 지역 형식에 따라 날짜와 시간 형식을 설정할 수 있습니다.</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>언어 추가</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>검색</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>추가</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>로그인 방법</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>비밀번호, 위챗, 생체 인증, 보안 키</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>비밀번호</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>비밀번호 변경</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>유효 기간</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>항상</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>저작권© 2011-%1 Deepin 커뮤니티</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>저작권© 2019-%1 유니온텍 소프트웨어 기술 회사</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>자동 소음 억제</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>입력 볼륨</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>입력 레벨</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>입력</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>음소리에 대한 입력 장치를 찾지 못했습니다</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>마우스와 터치패드</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>내 기기</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>우ОС</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>컴퓨터 이름</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>시작이나 끝에 빼 Gratuité선은 사용할 수 없습니다</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>운영 체제 이름</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>버전</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>판본</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>유형</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>비트</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>인증</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>시스템 설치 시간</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>커널</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>그래픽스 플랫폼</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>프로세서</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>메모리</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>기타 기기</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>이름이 없는 블루투스 기기를 표시</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>현재 비밀번호</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>필수</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>약함</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>중간</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>강함</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>비밀번호 재입력</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>비밀번호ヒント</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>선택 사항</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>비밀번호不能为空</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>비밀번호가 일치하지 않습니다</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>힌트는 모든 사용자가 볼 수 있습니다. 여기에 비밀번호는 포함하지 마십시오.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>새 비밀번호는 현재 비밀번호와 다릅니다</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>비밀번호 변경</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>비밀번호 초기화</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>비밀번호 길이는 최소 8자 이상이어야 하며, 비밀번호는 최소 3개 이상의 대문자, 소문자, 숫자, 그리고 기호의 조합을 포함해야 합니다. 이러한 유형의 비밀번호는 더 안전합니다.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>비밀번호를 초기화하면 키링에 저장된 데이터가 지워집니다.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>개인 설정</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>밝은</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>자동</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>어둡게</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>사용자 정의</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>플러그인 영역</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>다크에 표시할 아이콘을 선택합니다</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>끄기</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>중지</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>휴면</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>모니터 꺼짐</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>끄기 인터페이스 표시</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>무시하기</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>화면과 대기 모드 전환</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>모니터를 꺼낼 시간 후</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>화면 잠금 시간 후</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>컴퓨터가 대기 모드로 전환되는 시간 후</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>노트북 뚜껑이 닫힐 때</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>전원 버튼이 눌릴 때</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>고성능</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>균형 성능</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>CPU 부하 상태에 따라 CPU 작업 주파수를 적극적으로 조정</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>균형</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>전력 절약</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>성능 우선, 이는 전력 소비와 열 발생을 크게 증가시킬 수 있습니다</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>성능과 배터리 수명을 균형잡아 조정하며 사용량에 따라 자동으로 조정됩니다</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>배터리 수명 우선, 이는 일부 성능을 희생하여 전력 소비를 줄입니다</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>분</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>시간</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Никогда</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>개인 정보 정책</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>비밀번호는 공백일 수 없습니다</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>비밀번호는 최소 %1 글자 이상이어야 합니다</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>비밀번호는 %1 글자 미만이어야 합니다</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>비밀번호는 대소문자를 구별하는 영문자, 숫자 또는 특수기호 (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)만 포함할 수 있습니다</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>거꾸로 읽어도 같은 문자가 %1개 미만이어야 합니다</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>증가하거나 감소하는 문자가 %1개 미만이어야 합니다</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>연속 문자가 %1개 미만이어야 합니다</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>비밀번호는 대문자, 소문자, 숫자 및 특수 문자 (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)\n을 포함해야 합니다.</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>비밀번호는 4개 미만의 팰린드롬 문자를 포함할 수 없습니다.\n</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>일반적인 단어나 조합을 비밀번호로 사용하지 마세요\n</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>강력한 비밀번호를 만들어 주세요\n</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>비밀번호 규칙을 충족하지 않습니다\n</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>통합 제어 센터\n</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>활성화됨\n</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>보기\n</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>활성화 예정\n</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>활성화\n</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>만료됨\n</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>시연 기간 중\n</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>시연 기간 만료됨\n</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-통합 제어 센터\n</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>터치 스크린 설정\n</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>터치 스크린 설정이 변경되었습니다\n</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>이 시스템 배경화면은 잠겨 있습니다. 관리자에게 문의하세요.\n</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>검색\n</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>기본 형식\n</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>주 시작일\n</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>단축 날짜\n</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>긴 날짜\n</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>단축 시간\n</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>긴 시간\n</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>미리보기</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>설정</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>검색</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>커스텀 단축키 추가</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>이름:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>필수</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>명령:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>단축키</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>없음</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>추가</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>단축키</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>시스템 단축키, 사용자 정의 단축키</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>단축키 검색</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>완료</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>편집</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>클릭</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>또는</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>대체</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>기본값으로 복원</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>커스텀 단축키 추가</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>소리</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>출력 장치</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>장치를 활성화할지 선택</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>입력 장치</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>음향 효과</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>시작</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>끄기</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>로그아웃</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>다시 깨우기</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>볼륨 +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>알림</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>저전력</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>런처의 아이콘을 데스크톱으로 보내기</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>쓰레기통 비우기</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>삽입</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>제거</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>이동식 장치 연결됨</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>이동식 장치 제거됨</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>오류</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>모드</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>출력 볼륨</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>볼륨 향상</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>볼륨이 100%를 초과하면 음향이 왜곡될 수 있으며 출력 장치에 해로울 수 있습니다</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>좌측</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>우측</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>출력</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>사운드에 대한 출력 장치를 찾을 수 없음</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>좌우 균형</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>좌우 채널을 하나의 채널로 병합</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>현재 사운드 장치가 unplugged될 때 사운드가 자동으로 일시정지될지 여부</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>소리</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>전원</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>마우스</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>업데이트</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>스twor스페이버</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>더 많은 배경화면</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>자동 시간 동기화</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>ntp 서버</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>시스템 날짜와 시간</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>커스터마이즈</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>설정</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>서버 주소</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>필수</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>ntp 서버 주소는 비어있을 수 없습니다</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>24시간 형식 사용</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>시스템 시간대</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>시간대 목록</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>부터</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>까지</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>표시 설정 저장？</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>%1s 후 설정이 원래 상태로 돌아갑니다.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>원래 상태로 되돌리기</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>저장</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>시간대 추가</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>현재 위치를 기반으로 시간대를 결정</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>시간대:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>가장 가까운 도시:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>저장</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>터치스크린</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>터치스크린을 연결할 때 여기서 설정</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>기본 설정</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>터치패드</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>포인터 속도</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>느림</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>빠름</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>입력 중 터치패드 비활성화</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>탭하여 클릭</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>자연스러운 스크롤링</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>세 번째 손가락 가esture</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>네 번째 손가락 가esture</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>사용자 경험 프로그램 참여</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>보안 인증</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>이 작업은 민감합니다. 먼저 로그인 비밀번호를 입력해주세요</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64자</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>비밀번호를 잊으셨나요？</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>취소</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>확인</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>화면 배경</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>사진 보기</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>시스템 배경화면</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>단색 배경화면</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>사용자 정의 배경화면</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>채우기 스타일</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>자동 배경화면 변경</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>없음</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30초</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1분</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5분</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10분</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15분</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30분</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>로그인</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>시작</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>라이브 배경화면</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 시간</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>펼치기</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>잠금 화면 설정</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>데스크톱 설정</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>인터페이스 및 효과</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>창 설정</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>창 둥글게 둘러싸기</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>없음</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>작은 것</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>큰 것</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>창 이동 시 투명 효과 활성화</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>창 최소화 효과</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>확대/축소</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>마법등</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>불투명도</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>낮음</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>높음</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>스크롤 바</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>스크롤 시 표시</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>항상 표시</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>간결한 표시</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>활성화 시 창에 더 많은 내용이 표시됩니다.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>제목 표시줄 높이</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>창 관리자가 그린 애플리케이션 창의 제목 표시줄에만 적합합니다.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>극히 작은 것</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>전통적인 중국어 (중국 홍콩)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>전통적인 중국어 (중국 대만)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>대만 중국</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>사용자 이름은 3에서 32개의 문자 사이여야 합니다</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>첫 번째 문자는 문자 또는 숫자여야 합니다</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>사용자 이름은 단순히 숫자만으로는 안 됩니다</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>이미 다른 사용자 계정에 사용되었습니다</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>전체 이름이 너무 길�습니다</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>이미 다른 사용자 계정에 사용되었습니다</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>비밀번호가 틀렸습니다</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>표준 사용자</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>관리자</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>커스텀</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>호스트가 도메인 서버에서 성공적으로 제거되었습니다</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>호스트가 도메인 서버에 성공적으로 가입되었습니다</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>호스트가 도메인 서버에서 제거에 실패했습니다</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>호스트가 도메인 서버에 가입에 실패했습니다</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>AD 도메인 설정</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>비밀번호가 일치하지 않습니다</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>차원의</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>평평한</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>이 단축키는 [%1]와 충돌합니다</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>비밀번호는 공백일 수 없습니다</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>비밀번호는 최소 %1자 이상이어야 합니다</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>비밀번호는 %1자 이하여야 합니다</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>비밀번호는 대소문자 구분하는 영문자, 숫자 또는 특수문자(~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)만 포함할 수 있습니다</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>거울문자(%1자 이하)는 사용하지 마세요</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>증가문자(%1자 이하)는 사용하지 마세요</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>연속문자(%1자 이하)는 사용하지 마세요</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>비밀번호는 대소문자, 숫자 및 특수문자(~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)를 포함해야 합니다</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>거울문자는 4자 이하여야 합니다</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>일반 단어 또는 조합은 비밀번호로 사용하지 마세요</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>강력한 비밀번호를 생성하세요</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>비밀번호 규칙을 충족하지 않습니다</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>시스템</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>창</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>워크스페이스</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>보조 도구</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>커스텀</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>없음</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_krl.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"krl\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_ku.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ku\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Girêdayî ye</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Ne girêdayî ye</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Betal Bike</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Pêşbarkirin</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Bigire</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Derkeve</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Hişyar Bike</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Deng +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Agahdarî</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Pîla kêm</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Îkona ku di Destpêkerê de ye bişîne Sermaseyê</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Çopa Vala</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Têxe prîzê</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Ji prîzê derxe</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Amûra hilgirter grêdayî ye</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Amûra hilgirter derxistî ye</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Çewtî</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Qeyd Bike</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Çînî ya Kevneşopî (Çînî Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Çînî ya Kevneşopî (Çînî Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan Çîn</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Ev kurterê bi [%1] re nakokî dike</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Pergal</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Pace</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Cihê kar</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Amûrên alîkarî</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Taybet</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Tu tişt</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_ku_IQ.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"ku_IQ\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Taybet</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Dîtin</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">هیچ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\">سیستم</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">پاشگەزبوونەوە</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">هیچ</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>چینی تاریخی (چینی هنگ کنگ)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>چینی تاریخی (چینی تایوان)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>تایوان چین</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>این سریع با [%1] متضاد است</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>سیستم</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>پنجره</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>فضای کار</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>ابزار های کمکی</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>منسوخ</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>هیچ</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_ky.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"ky\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\">Ыңгайлаштырылган</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">Жок</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\">Система</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">жокко чыгаруу</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">Жок</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Салттуу кытай тили (Гонконг кытай тили)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Салттуу кытай тили (Тайвань кытай тили)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Тайвань Кытай</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Бул кыска жол [%1] менен кайшылашат</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Система</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Терезе</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Иш аймагы</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Жардамчы куралдар</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Ыңгайлаштырылган</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Жок</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_ky@Arab.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"ky@Arab\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_la.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"la\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_lo.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"lo\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>ແກ້ໄຂ</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>ເພີ່ມຜູ້ໃຊ້ໃມ່</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>ກຳນົດຊື່ເຕັມ</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>ການຕັ້ງຄ່າການເຂົ້າສູ່ລະບົບ</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>ເຂົ້າສູ່ລະບົບໂດຍບົ່ໃສ່ລະຫັດຜ່ານ</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>ລົບບັນຊີປັດຈຸບັນ</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>ການຕັ້ງຄ່າກຸ່ມ</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>ກຸ່ມບັນຊີ</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>ສຳເລັດ</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>ຊື່ກຸ່ມ</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>ເພີ່ມກຸ່ມ</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>ເຂົ້າສູ່ລະບົບອັດຕະໂນມັດ</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>ຂົ້ມູນບັນຊີ</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>ຊື່ບັນຊີ, ຊື່ເຕັມບັນຊີ, ປະເພດບັນຊີ</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>ຊື່ບັນຊີ</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>ຊື່ເຕັມບັນຊີ</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>ປະເພດບັນຊີ</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>ຊື່ເຕັມຍາວເກີນໄປ</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>ຊື່ກຸ່ມຄວນບໍ່ເກີນກວ່າ 32 ຕົວອັກສອນ</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>ຊື່ກຸ່ມບໍ່ສາມາດມີແຕ່ຕົວເລກເທົ່ານັ້ນ</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>ໃຊ້ເຉພາະຕົວອັກສອນ, ຕົວເລກ, ເສັ້ນກ້ອງ ແລະ ເສັ້ນຂີດເທົ່ານັ້ນ, ແລະຕ້ອງເລີ່ມດ້ວຍຕົວອັກສອນ</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>ຊື່ກຸ່ມນີ້ຖືກໃຊ້ແລ້ວ</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>ເຂົ້າສູ່ລະບົບໄວ, ເຂົ້າສູ່ລະບົບອັດຕະໂນມັດ, ເຂົ້າສູ່ລະບົບໂດຍບໍ່ມີລະຫັດຜ່ານ</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>ເລີກທຳ</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>ເຮັດຊ້ຳ</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>ຕັດ</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>ສຳເນົາ</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>ວາງ</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>ເລືອກທັງໝົດ</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>ລົງທະບຽນໃບໜ້າ</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>ຂ້ອຍໄດ້ອ່ານແລະຢືນຢັນກັບ</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>ຂົ້ປະກາດ</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>ຕົ່ໄປ</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>ລົງທະບຽນໃບໝນ້າແລ້ວ</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>ບົ່ສາມາດລົງທະບຽນໃບໝນ້າຂອງທ່ານ</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>ສຳເລັດ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>ລົງທະບຽນໃໝ່</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>ສຳເລັດ</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>ລົງທະບຽນລາຍນິ້ວມື</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>ວາງນິ້ວມືທີ່ຈະລົງທະບຽນໃສ່ເຄື່ອງອ່ານລາຍນິ້ວມື ແລະເລື່ອນໄຫ໇ຈາກດ້ານລ່າງໄປດ້ານບນ. ຫຼັງຈາກທຳການກະທຳເສັ້ນ ກະລຸນາຍກມນິ້ວມືຂອງທ່ານອອກ</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>ຂ້າພະເຈົ້າໄດ້ອ່ານແລະຕົກລົງກັບ</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>ຂົ້ປະກາດ</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>ຕົ່ໄປ</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>ລົງທະບຽນໃໝ່</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>&quot;ການກວດສອບຊີວະມິຕິ&quot; ແມ່ນຫນ້າທີ່ການກວດສອບຕົວຕົນຜູ້ໃຊ້ທີ່ສະໜອງໃຫ້ໂດຍບໍລິສັດ UnionTech Software Technology Co., Ltd. ຜ່ານ &quot;ການກວດສອບຊີວະມິຕິ&quot;, ຂໍ້ມູນຊີວະມິຕິທີ່ເກັບກຳຈະຖືກປຽບທຽບກັບຂໍ້ມູນທີ່ເກັບໄວ້ໃນອຸປະກອນ, ແລະຕົວຕົນຜູ້ໃຊ້ຈະຖືກກວດສອບຕາມຜົນການປຽບທຽບ.\n\nກະລຸນາຮັບຊາບວ່າບໍລິສັດ UnionTech Software Technology Co., Ltd. ຈະບໍ່ເກັບກຳຫຼືເຂົ້າເຖິງຂໍ້ມູນຊີວະມິຕິຂອງທ່ານ, ຂໍ້ມູນເຫຼົ່ານີ້ຈະຖືກເກັບໄວ້ໃນອຸປະກອນໃນທ້ອງຖິ່ນຂອງທ່ານ. ກະລຸນາເປີດໃຊ້ການກວດສອບຊີວະມິຕິໃນອຸປະກອນສ່ວນຕົວຂອງທ່ານເທົ່ານັ້ນ ແລະໃຊ້ຂໍ້ມູນຊີວະມິຕິຂອງທ່ານເອງສຳລັບການດຳເນີນງານທີ່ກ່ຽວຂ້ອງ, ແລະໃຫ້ປິດການໃຊ້ງານຫຼືລົບຂໍ້ມູນຊີວະມິຕິຂອງຄົນອື່ນຢ່າງທັນທີ, ຖ້າບໍ່ດັ່ງນັ້ນທ່ານຈະຮັບຄວາມສ່ຽງທີ່ເກີດຂຶ້ນຈາກການນັ້ນ.\n\nບໍລິສັດ UnionTech Software Technology Co., Ltd. ມຸ່ງໝັ້ນທີ່ຈະຄົ້ນຄວ້າແລະປັບປຸງຄວາມປອດໄພ, ຄວາມຖືກຕ້ອງ ແລະຄວາມໝັ້ນຄົງຂອງການກວດສອບຊີວະມິຕິ. ຢ່າງໃດກໍ່ຕາມ, ເນື່ອງຈາກສິ່ງແວດລ້ອມ, ອຸປະກອນ, ເຕັກນິກ ແລະປັດໄຈອື່ນໆ ລວມທັງການຄວບຄຸມຄວາມສ່ຽງ, ບໍ່ມີການຮັບປະກັນວ່າທ່ານຈະຜ່ານການກວດສອບຊີວະມິຕິໃນແຕ່ລະຄັ້ງ. ດັ່ງນັ້ນ, ກະລຸນາຢ່າໃຊ້ການກວດສອບຊີວະມິຕິເປັນວິທີດຽວໃນການເຂົ້າສູ່ລະບົບ UOS. ຖ້າທ່ານມີຄຳຖາມຫຼືຄຳແນະນຳໃດໆໃນການໃຊ້ການກວດສອບຊີວະມິຕິ, ທ່ານສາມາດໃຫ້ຄຳຄິດເຫັນຜ່ານ &quot;ການບໍລິການແລະການສະໜັບສະໜູນ&quot; ໃນ UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>&quot;ການເຂົ້າສູ່ລະບົບອັດຕະໂນມັດ&quot; ສາມາດເປີດໃຊ້ໄດ້ສະເພາະບັນຊີດຽວເທົ່ານັ້ນ, ກະລຸນາປິດການໃຊ້ງານສຳລັບບັນຊີ &quot;%1&quot; ກ່ອນ</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>ຕົກລົງ</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>ຮູບພາບ</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>ມະນຸດ</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>ສັດ</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>ທິດທະເລ</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>ຮູບປະກອບ</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>ອີໂມຈິ</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>ກຳຫນດເອງ</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>ຮູບແບບກາດຕູນ</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>ຮູບແບບສາມມິຕິ</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>ຮູບແບບແບນ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>ບັນທຶກ</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>ໜ້າຈໍ ແລະ ການພັກ</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>ປິດໜ້າຈໍຫຼັງຈາກ</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>ຂົດໜ້າຈໍຫຼັງຈາກ</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>ຄອມພິວເຕົ້ນພັກຫຼັງຈາກ</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>ເມື່ອປິດຝາແລ້ວ</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>ເມື່ອກດປຸ່ມໄຟ</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>ແບັດເຕີຣີ່ອ່ອນ</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>ການແຈ້ງເຕືອນແບັດເຕີຣີ່ອ່ອນ</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>ອັດຕະໂນມັດພັກຜ່ອນ</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>ອັດຕະໂນມັດເຂົ້າສູ່ຕ່ຳຈ່າຍິດ</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>ຂີດຈຳກັດແບຕເຕົຣີ່ຕຳ່</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>ການຈັດການແບັດເຕີຣີ່</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>ແສດງເວລາທີ່ເຫຼືອໃນການໃຊ້ແລະການສາກໄຟ</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>ຄວາມຈຸສູງສຸດ</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>ລະດັບແບຕເຕົຣີ່ຕ່ຳ</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>ປິດການໃຊ້ງານ</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth ຖືກປິດ, ແລະຊື່ຈະສະແດງເປັນ &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth ຖືກເປີດ, ແລະຊື່ຈະສະແດງເປັນ &quot;%1&quot;</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>ຕັດການເຊື່ອມຕົ່</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>ເຊື່ອມຕົ່</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>ສົ່ງໄຟລໄ</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>ປ່ຽນຊື່</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>ເອົາອຸປະກອນອອກ</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>ເລືອກໄຟລໄ</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>ແກ້ໄຂ</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>ອນຸຍາດໃຫ້ອຸປະກອນ Bluetooth ອື່ນສາມາດຄ້ນພົບອຸປະກອນນີ້ໄດ້</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>ເພື່ອໃຊ້ຟັງກ໌ຍ Bluetooth, ກະລຸນາປິດ</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>ໂຮດເຄື່ອງບິນ</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>ຊື່ Bluetooth ບໍ່ສາມາດເກີນ 64 ຕົວອັກສອນ</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>ເຊື່ອມຕົ່ແລ້ວ</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>ຍັງບົ່ໄດ້ເຊື່ອມຕົ່</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>ການຕັ້ງຄ່າການເລີ່ມຕ້ນ</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>ທ່ານສາມາດຄິກເມນູເພື່ອເປລີ່ຍນລາຍການເລີ່ມຕ້ນເຄ໊າໃນປິ, ຫລືລາກຣູບສູ່ຫນ້າຕ່າງເພື່ອເປລີ່ຍນລາຍພື້ນຫຼັງ</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>ຄວາມເສົ່າການເລີ່ມຕົ້ນ GRUB</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>ຫັວຂົ້</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>ຫຼັງຈາກເປີດຫັວຂໍ້ແລ້ວ, ທ່ານສາມາດເຫັນພື້ນຫຼັງຫັວຂໍ້ໄດ້ເມື່ອເປີດຄອມພີວເຕອ້</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>ການຕຣວຈສອບເມນູເລີ່ມຕ້ນ</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>ຫຼັງຈາກເປີດແລ້ວ, ການເຂົ້າສູ່ການແກ້ໄຂເມນູຈະຕ້ອງໃຊ້ລະຫັດຜ່ານ</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>ເປລີ່ຍນລະຫັດຜ່ານ</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>ເປລີ່ຍນລະຫັດຜ່ານການຕຣວຈສອບເມນູເລີ່ມຕ້ນ</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>ຕັ້ງລະຫັດຜ່ານການພິສູດຕັວຕົນເມນູເລີ່ມຕ້ນ</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>ຊື່ຜູ້ໃຊ້ :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>ຜູ້ດູແລລະບົບ</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>ລະຫັດຜ່ານໃຫມ່ :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>ຈຳເປັນ</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>ລະຫັດຜ່ານບໍ່ສາມາດວ່າງເປົ່າ</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>ລະຫັດຜ່ານບໍ່ຕົງກັນ</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>ເຮັດຊ້ໍາລະຫັດຜ່ານ:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>ແນ່ນອນ</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>ອານິເມຊັນເລີ່ມຕ້ນ</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>ປັບປຸງຂະໜາດອານິເມຊັນໂລກອເທີ່ງຫນ້າຕ່າງເລີ່ມຕ້ນລະບົບ</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>ອນຸຍາດໃຫ້ແອປຂ້າງລ່າງເຂົ້າຫາກະລ້ອງຂອງທ່ານ:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>ລາຍນິ້ວມື 1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>ລາຍນິ້ວມື 2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>ລາຍນິ້ວມື 3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>ລາຍນິ້ວມື 4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>ລາຍນິ້ວມື 5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>ລາຍນິ້ວມື 6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>ລາຍນິ້ວມື 7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>ລາຍນິ້ວມື 8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>ລາຍນິ້ວມື 9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>ລາຍນິ້ວມື 10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>ການສແກນຜິດພລາດ</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>ລາຍນິ້ວມືນີ້ມີອຍູ່ແລ້ວ</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>ກະລຸນາສແກນນິ້ວມືອອື່ນສ</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>ຂໍ້ຜິດພລາດທີ່ໄມ່ທາບ</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>ການສແກນຖືກພັກ</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>ໄມ່ສາມາດຈຳແນກໄດ້</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>ເລື່ອນໄວເກີນໄປ</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>ນິ້ວມືອເລື່ອນໄວເກີນໄປ, ກະລຸນາໄມ່ຍົກອອກຈນກວ່າຈະໄດ້ຣັບແນະນຳ</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>ລາຍນິ້ວມືອໄມ່ຊັດເຈນ</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>ທຳຄວາມສະອາດນິ້ວມືອຫລືປັບຕຳແໜ່ງນິ້ວມືອ, ແລະລອງອີກຄັ້ງ</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>ສແກນແລ້ວ</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>ປັບຕໍາແຫນ່ງນິ້ວມືເພື່ອສະແກນລາຍນິ້ວມືຂອງທ່ານຢ່າງເຕັມທີ່</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>ນິ້ວມືຍ້າຍໄວເກີນໄປ. ກະລຸນາຢ່າຍົກຈົນກ່ວາທີ່ຖືກກະຕຸ້ນ</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>ຍົກນິ້ວມືຂອງທ່ານແລະວາງມັນໃສ່ເຊັນເຊີອີກຄັ້ງ</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>ວາງໜ້າຂອງທ່ານໃສ່ໃນກອບ</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>ລົງທະບຽນໃບໝນ້າແລ້ວ</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>ວາງຫນ້າຕາຂອງມະນຸດ</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>ກະລຸນາອະຍາຫ່າງຈາກກ້ອງ</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>ເຂົ້າໃກປ້ກ້ອງມາກຂຶ້ນ</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>ໄມ່ວາງໜ້າຫລາຍຄົນໄວ້ໃນກອບ</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>ໃຫ້ແນ່ໃຈວ່າເລນສກ້ອງສະອາດ</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>ໄມ່ລົງທະບຽນໃນສິ່ງແວດລໍ້ມທີ່ມືດ, ສະຫວ່າງ ຫລື ແສງສໍ່ອງຈາກຂ້າງຫຼັງ</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>ໃຫ້ໜ້າຂອງທ່ານໄມ່ແອງຖືກປິດ</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>ການສະແກນໝົດເວລາ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>ກ້ອງຖ່າຍຮູບທີ່ຄອບຄອງ!</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>ສີເດັ່ນ</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>ການຕັ້ງຄ່າໄອຄອນ</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>ຫົວຂໍ້ໄອຄອນ</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>ປັບແຕ່ງໄອຄອນຫົວຂໍ້ຂອງທ່ານ</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>ຫົວຂໍ້ຕົວຊີ້</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>ປັບແຕ່ງຕົວກະພິບຫົວຂໍ້ຂອງທ່ານ</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການລຶບບັນຊີນີ້?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>ລຶບໂຟເດີບັນຊີ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>ລົບ</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>ໄປທີ່ການຕັ້ງຄ່າ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>ທົ່ວໄປ</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>ຊັກຊ້າຄືນ</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>ສັ້ນ</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>ຍາວ</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>ອັດຕາ</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>ຊ້າ</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>ໄວ</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>ປຸ່ມກົດ</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>ການທົດສອບທີ່ນີ້</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>ການແຈ້ງເຕືອນ Caps Lock</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>ຄວາມໄວຄິກຄູ່</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>ການທົດສອບກົດສອງຄັ້ງ</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>ໂໝດມືຊ້າຍ</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>ເປີດແປ້ນພິມ</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>ຂະໜາດໃຫຍ່</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>ຂະໜາດນ້ອຍ</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>ລົ້ມເຫລວໃນການເຂົ້າເຖິງຮາກ</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>ກະລຸນາເຂົ້າສູ່ລະບົບ ID ຂອງສະຫະພັນຂອງທ່ານກ່ອນ</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>ບໍ່ສາມາດອ່ານຂໍ້ມູນຄອມພິວເຕີຂອງທ່ານໄດ້</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>ບໍ່ມີການເຊື່ອມຕໍ່ເຄືອຂ່າຍ</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>ໃບຢັ້ງຢືນການໂຫຼດລົ້ມເຫລວ, ບໍ່ສາມາດຮັບເອົາການເຂົ້າເຖິງຮາກ</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>ການຢັ້ງຢືນລາຍເຊັນລົ້ມເຫລວ, ບໍ່ສາມາດໄດ້ຮັບການເຂົ້າເຖິງຮາກ</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>ຕົກລົງແລະເຂົ້າຮ່ວມໂຄງການປະສົບການຂອງຜູ້ໃຊ້</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>ຂໍ້ປະກາດໂມດຜູ້ພັດທະນາ</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>ຕົກລົງແລະຂໍສິທທິຜູ້ດູແລຄົນ</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>ເລີ່ມຕົ້ງຄ່າແອນນີເມຊັນເປີດເຄື່ອງໃຫມ່, ກະລຸນາໃສ່ຈາຍສັກຄືດ</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>ການຕົ້ງຄ່າແອນນີເມຊັນເປີດເຄື່ອງໃຫມ່ເສັດແລ້ວ</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>ການຕັ້ງຄ່າຈະຖືກນໍາໃຊ້ຫຼັງຈາກເປີດໃຫມ່ລະບົບ</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>ລະຫັດຜ່ານຕ້ອງມີຕົວເລກແລະຕົວອັກສອນ</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>ລະຫັດຜ່ານຕ້ອງຢູ່ລະຫວ່າງ 8 ຫາ 64 ຕົວອັກສອນ</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>ສ້າງບັນຊີໃຫມ່</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>ປະເພດບັນຊີ</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>ສັນຍາລັກ</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>ຈຳເປັນ</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>ເຕັມຫນ້າ</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>ທີ່ເລືອກໄດ້</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>ສ້າງບັນຊີ</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>ຊື່ຜູ້ໃຊ້ບໍ່ສາມາດເກີນ 32 ຕົວອັກສອນ</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>ຊື່ຜູ້ໃຊ້ສາມາດມີພຽງແຕ່ຕົວອັກສອນ, ຕົວເລກ, - ແລະ _</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>ຊື່ເຕັມບໍ່ເກີນ 32 ຕົວອັກສອນ</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>ຊື່ເຕັມບໍ່ສາມາດມີກ</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>ທ່ານຍັງບໍ່ໄດ້ອັບໂຫລດຮູບໂປຣໄຟລ໌ເທື່ອ. ກົດຫຼືລາກແລະວາງເພື່ອອັບໂຫລດຮູບພາບ.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>ປະເພດເອກະສານທີ່ຖືກອັບໂຫລດແມ່ນບໍ່ຖືກຕ້ອງ, ກະລຸນາອັບໂຫລດມັນອີກຄັ້ງ</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>ມີໄວ້</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>ຕົກລົງແລະເຂົ້າຮ່ວມໂຄງການປະສົບການຂອງຜູ້ໃຊ້</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>ວັນທີແລະເວລາ</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>ວັນທີ</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>ປີ</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>ເດືອນ</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>ວັນ</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>ເວລາ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>ຢືນຢັນ</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>ມື້ອື່ນ</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>ມື້ວານນີ້</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>ມື້ນີ້</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 ຊົ່ວໂມງກ່ອນຫນ້ານີ້ກ່ວາທ້ອງຖິ່ນ</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 ຊົ່ວໂມງຕໍ່ມາພາຍໃນທ້ອງຖິ່ນ</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>ອະວະກາດ</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>ອາທິດ</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>ມື້ທໍາອິດຂອງອາທິດ</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>ວັນທີສັ້ນ</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>ວັນທີຍາວ</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>ທີ່ໃຊ້ເວລາສັ້ນ</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>ເວລາດົນ</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>ສັນຍາລັກເງິນຕາ</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>ສິນຄ້າສະກຸນເງິນ</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>ສະກຸນເງິນລົບ</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>ສັນຍາລັກທົດສະນິຍົມ</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>ສັນຍາລັກຂອງການຈັດກຸ່ມຕົວເລກ</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>ການຈັດກຸ່ມຕົວເລກ</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>ຂະຫນາດຫນ້າ</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>ກະສັດ</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>ການກວດສອບຄວາມຖືກຕ້ອງແມ່ນຈໍາເປັນຕ້ອງມີການປ່ຽນເຄື່ອງແມ່ຂ່າຍ NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>ບັນທຶກ</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>ສູນຄວບຄຸມສະຫນອງທາງເລືອກສໍາລັບການຕັ້ງຄ່າລະບົບ.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>ຜູກມັດ WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>ໂດຍການຜູກມັດ WeChat, ທ່ານສາມາດເຂົ້າສູ່ລະບົບ %1 ID ແລະບັນຊີທ້ອງຖິ່ນຂອງທ່ານໄດ້ຢ່າງປອດໄພແລະໄວ.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>ບໍ່ມີເຫລັກ</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>ປົດອອກ</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>ການເຊື່ອມໂຍງ</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການທີ່ຈະຍົກເລີກ WeChat?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>ຫຼັງຈາກຍົກເລີກການຜູກມັດ WeChat, ທ່ານຈະບໍ່ສາມາດໃຊ້ WeChat ເພື່ອສະແກນລະຫັດ QR ເພື່ອເຂົ້າສູ່ບັນຊີ %1 ຫຼືບັນຊີທ້ອງຖິ່ນ.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>ຂ້າພະເຈົ້າຂໍຄິດວ່າມັນເກີນ</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>ການຜູກມັດບັນຊີທ້ອງຖິ່ນ</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>ຫຼັງຈາກຜູກມັດບັນຊີທ້ອງຖິ່ນຂອງທ່ານ, ທ່ານສາມາດໃຊ້ຫນ້າທີ່ດັ່ງຕໍ່ໄປນີ້:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>ລະບົບເຂົ້າລະບົບລະຫັດລະຫັດສະແກນ WeChat Scan</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>ໃຊ້ WeChat, ເຊິ່ງຖືກຜູກມັດກັບບັດປະຈໍາຕົວ %1 ຂອງທ່ານ, ເພື່ອສະແກນລະຫັດເພື່ອເຂົ້າສູ່ບັນຊີທ້ອງຖິ່ນຂອງທ່ານ.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>ຕັ້ງລະຫັດຜ່ານຄືນໃຫມ່ຜ່ານ %1 ບັດປະຈໍາຕົວ</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>ຕັ້ງລະຫັດຜ່ານຂອງທ້ອງຖິ່ນຂອງທ່ານຄືນຜ່ານ %1 ບັດປະຈໍາຕົວໃນກໍລະນີທີ່ທ່ານລືມມັນ.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>ເພື່ອໃຊ້ຄຸນລັກສະນະຂ້າງເທິງ, ກະລຸນາໄປທີ່ສູນຄວບຄຸມ - ບັນຊີແລະເປີດຕົວເລືອກທີ່ສອດຄ້ອງກັນ.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>ຟັງຊິ້ງຂໍ້ມູນ</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>ຈັດການ %1 ID ຂອງທ່ານແລະຊິງຂໍ້ມູນສ່ວນຕົວຂອງທ່ານໃນທົ່ວອຸປະກອນ. ເຂົ້າສູ່ລະບົບ %1 ບັດປະຈໍາຕົວເພື່ອໃຫ້ມີຄຸນລັກສະນະແລະການບໍລິການທີ່ເປັນສ່ວນຕົວຂອງໂປແກຼມທ່ອງເວັບ, ຮ້ານແອັບ, ແລະອື່ນໆ.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>ເຂົ້າສູ່ລະບົບ %1 ບັດປະຈໍາຕົວ</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>ການຊິ້ງຂໍ້ມູນອັດຕະໂນມັດ</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>ການຕັ້ງຄ່າລະບົບແລະຂໍ້ມູນສ່ວນຕົວຢ່າງປອດໄພໃນເມຄ, ແລະເກັບຮັກສາໄວ້ໃນອຸປະກອນຕ່າງໆ</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>ການຕັ້ງຄ່າລະບົບ</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>ເວລາ Sync ຫຼ້າສຸດ: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>ຂໍ້ມູນທີ່ຈະແຈ້ງ</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>ທ່ານແນ່ໃຈວ່າທ່ານຕ້ອງການກໍາຈັດການຕັ້ງຄ່າລະບົບແລະຂໍ້ມູນສ່ວນຕົວຂອງທ່ານທີ່ບັນທຶກໄວ້ໃນເມຄບໍ?</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>ເມື່ອຂໍ້ມູນຖືກລຶບລ້າງແລ້ວ, ມັນບໍ່ສາມາດກູ້ຄືນໄດ້!</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>ແຈ່ມແຈ້ງ</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>ບໍລິການ Synchronization</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>ບັນຊີແລະຄວາມປອດໄພ</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>ອອກຈາກລະບົບ</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>ໄປທີ່ການຕັ້ງຄ່າເວບໄຊທ໌</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>ຊື່ຫຼິ້ນຕ້ອງມີຄວາມຍາວ 1 ~ 32 ຕົວອັກສອນ</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>ລະຫັດຜ່ານທີ່ເຂົ້າລະຫັດລົ້ມເຫລວ</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>ລະຫັດຜ່ານທີ່ບໍ່ຖືກຕ້ອງ, %1 ໂອກາດທີ່ເຫລືອ</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>ຂໍ້ຜິດພາດໃນການເຂົ້າສູ່ລະບົບໄດ້ບັນລຸຂີດຈໍາກັດໃນມື້ນີ້. ທ່ານສາມາດຕັ້ງລະຫັດລັບໃຫມ່ແລະລອງໃຫມ່ອີກຄັ້ງ.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>ການປະຕິບັດງານປະສົບຜົນສໍາເລັດ</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>ຊື່ຫຼິ້ນສາມາດໄດ້ຮັບການດັດແກ້ພຽງແຕ່ມື້ລະຄັ້ງ</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>ຈີນແຜ່ນດິນໃຫຍ່</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>ພາກພື້ນອື່ນໆ</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>ຄຸນນະສົມບັດບໍ່ມີຢູ່ໃນປະຈຸບັນ, ກະລຸນາກະຕຸ້ນລະບົບຂອງທ່ານກ່ອນ</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>ຂຶ້ນກັບກົດຫມາຍແລະລະບຽບການທ້ອງຖິ່ນຂອງທ່ານ, ມັນບໍ່ມີຢູ່ໃນຂົງເຂດຂອງທ່ານ.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>ກະລຸນາເລືອກໂປແກຼມເລີ່ມຕົ້ນເພື່ອເປີດ &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>ເພີ່ມ</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>ເປີດເອກະສານ desktop</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>ແອັບພລິເຄຊັນ (*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>ເອກະສານທັງຫມົດ (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>ການເຂົ້າເຖິງຮາກ</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>ຮ້ອງຂໍການເຂົ້າເຖິງຮາກ</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>ຫຼັງຈາກທີ່ເຂົ້າໄປໃນຮູບແບບຂອງນັກພັດທະນາ, ທ່ານສາມາດໄດ້ຮັບສິດຮາກ, ແຕ່ມັນກໍ່ອາດຈະເຮັດໃຫ້ລະບົບຄວາມສັດຊື່, ສະນັ້ນກະລຸນາໃຊ້ມັນຢ່າງລະມັດລະວັງ.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>ໄດ້ຮັບອະນຸຍາດ</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>ໃສ່ເຂົ້າ</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>ອອນລາຍ</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>ເຂົ້າສູ່ລະບົບ UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>ອອບໄລ</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>ໃບຝົດເຂົ້າ</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>ເລືອກໄຟລໄ</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>ID UOS ຂອງທ່ານໄດ້ເຂົ້າສູ່ລະບົບແລ້ວ, ກົດເຂົ້າໄປທີ່ໂໝດນັກພັດທະນາ</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>ກະລຸນາເຂົ້າສູ່ລະບົບ UOS ID ຂອງທ່ານກ່ອນແລະດໍາເນີນການຕໍ່ໄປ</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1. ຂໍ້ມູນ PC</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>ສົ່ງອອກ</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3. ນຳເຂົ້າໃບຢັ້ງຢືນ</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>ທາງເລືອກໃນການພັດທະນາແລະການແກ້ໄຂບັນຫາ</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>ລະດັບການບັນທຶກລະບົບ</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>ປິດ</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>ການແກ້ໄຂຂໍ້ຜິດພາດ</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>ການປ່ຽນແປງທາງເລືອກອາດຈະໃຊ້ເວລາເຖິງນາທີເພື່ອປະມວນຜົນ, ຫຼັງຈາກໄດ້ຮັບການກະຕຸ້ນທີ່ປະສົບຜົນສໍາເລັດ, ກະລຸນາເປີດເຄື່ອງໃໝ່ເພື່ອໃຫ້ມີຜົນ.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>ເພື່ອຕິດຕັ້ງແລະເປີດໃຊ້ແອັບທີ່ໄມ່ໄດ້ລົງນາມ, ກະລຸນາໄປທີ່ &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; ສູນຄວາມປອດທັຍ &lt;/a&gt; ເພື່ອປ່ຽນການຕັ້ງຄ່າ</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation>ເພື່ອຕິດຕັ້ງແລະເປີດໃຊ້ແອັບທີ່ໄມ່ໄດ້ລົງນາມ, ກະລຸນາໄປທີ່ສູນຄວາມປອດທັຍເພື່ອປ່ຽນການຕັ້ງຄ່າ</translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>ຂົ້ປະກາດ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>ຕົກລົງ</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>ອະນຸຍາດໃຫ້ຢູ່ດ້ານລຸ່ມຂອງແອັບ apps ທີ່ຈະເຂົ້າເຖິງເອກະສານແລະໂຟນເດີເຫຼົ່ານີ້:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>ເອກະສານ</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>ຂໍ້ທີ</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>ຮູບພາບ</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>ວິດີກ້າ</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>ດົນຕີ</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>ດາວໂຫລດ</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>ມານພັນ</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>ຂະຫນາດ</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>ຕົວຫນັງສືມາດຕະຖານ</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>monospaced font</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>ແຜນໄຟຟ້າ</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>ການຕັ້ງຄ່າພະລັງງານ</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>ການປະຫຍັດພະລັງງານອັດຕະໂນມັດໃນແບັດເຕີຣີຕ່ໍາ</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>ຂອບເຂດຕໍາຫຼວດຕ່ໍາ</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>ປະຢັດພະລັງງານອັດຕະໂນມັດໃນແບດເຕີລີ່</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>ການຕັ້ງຄ່າ WakeUp</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>ລະຫັດຜ່ານແມ່ນຈໍາເປັນເພື່ອປຸກຄອມພິວເຕີ້</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>ລະຫັດຜ່ານແມ່ນຈໍາເປັນຕ້ອງໄດ້ຕື່ນຕົວຕິດຕາມກວດກາ</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>ການຕັ້ງຄ່າການປິດເຄື່ອງ</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>ການປິດເຄື່ອງຕາມຕາຕະລາງ</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>ເວລາ</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>ຊ້ໍາ</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>ແລ້ວເທື່ອ</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>ທຸກໆວັນ</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>ມື້ເຮັດວຽກ</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>ເວລາຕາມຄູ່</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>ຫຼຸດລົງຄວາມສະຫວ່າງຂອງຫນ້າຈໍໃນເຄື່ອງປະຢັດພະລັງງານ</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>ການປະຕິບັດທີ່ດີທີ່ສຸດ</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>ຕົບ</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>ສາຍຕາທີ່ດີທີ່ສຸດ</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>ປິດການໃຊ້ງານການໂຕ້ຕອບແລະຜົນກະທົບທັງຫມົດສໍາລັບການປະຕິບັດລະບົບທີ່ມີປະສິດຕິພາບ.</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>ຈໍາກັດຜົນກະທົບຂອງປ່ອງຢ້ຽມບາງຢ່າງສໍາລັບການເບິ່ງເຫັນທີ່ດີເລີດໃນຂະນະທີ່ຮັກສາການປະຕິບັດລະບົບໃຫ້ລຽບ.</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>ເປີດໃຊ້ງານການໂຕ້ຕອບທັງຫມົດແລະປ່ອງຢ້ຽມຜົນກະທົບສໍາລັບປະສົບການດ້ານສາຍຕາທີ່ດີທີ່ສຸດ.</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>ພາສາ</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>ສຳເລັດ</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>ແກ້ໄຂ</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>ພາສາອື່ນໆ</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>ເພີ່ມ</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>ພາກພື້ນ</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>ພື້ນທີ່</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>ລະບົບປະຕິບັດການແລະການນໍາໃຊ້ອາດຈະໃຫ້ທ່ານມີເນື້ອໃນທ້ອງຖິ່ນໂດຍອີງໃສ່ປະເທດແລະພາກພື້ນຂອງທ່ານ</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>ລະບົບປະຕິບັດການແລະການສະຫມັກສາມາດກໍານົດວັນທີແລະເວລາໂດຍອີງໃສ່ຮູບແບບພາກພື້ນ</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>ເພີ່ມພາສາ</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>ຄົ້ນຫາ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>ເພີ່ມ</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>ວິທີການເຂົ້າສູ່ລະບົບ</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>ລະຫັດຜ່ານ, Wechat, ການກວດສອບຊີວະປະຫວັດ, ລະຫັດຄວາມປອດໄພ</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>ລະຫັດຜ່ານ</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>ແກ້ໄຂລະຫັດຜ່ານ</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>ວັນທີ່ຖືກຕ້ອງ</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>ສະເຫມີ</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>ຕັ້ງລະຫັດຜ່ານຄືນໃຫມ່</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>ລິຂະສິດ© 2011-%1 ຊຸມຊົນ Deepin</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>ລິຂະສິດ© 2019-%1 ບໍລິສັດ UnionTech Software Technology Co., ຈໍາກັດ</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>ການສະກັດກັ້ນສຽງໂດຍອັດຕະໂນມັດ</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>ປະລິມານການປ້ອນຂໍ້ມູນ</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>ລະດັບການປ້ອນຂໍ້ມູນ</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>ການປ້ອນຂໍ້ມູນ</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>ບໍ່ມີອຸປະກອນປ້ອນຂໍ້ມູນສໍາລັບສຽງທີ່ພົບ</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>ອຸປະກອນຂອງຂ້ອຍ</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>ຊື່ຄອມພິວເຕີ</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>ມັນບໍ່ສາມາດເລີ່ມຕົ້ນຫຼືສິ້ນສຸດລົງດ້ວຍ dashes</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>os ຊື່</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>ເວີລແຈນ</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>ບານເວີລແຈນ</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>ປະເພດ</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>ສະກັດກັ້ນ</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>ການໄດ້ຮັບອໍານາດ</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>ເວລາຕິດຕັ້ງລະບົບ</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>ແກ່ນຫລົ່ງ</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>ເວທີຮູບພາບ</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>ໂປເຊດເຊີ</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>ຄວາມຈໍາ</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>1 ~ 63 ຕົວອັກສອນກະລຸນາ</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>ອຸປະກອນອື່ນໆ</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>ສະແດງອຸປະກອນ Bluetooth ໂດຍບໍ່ມີຊື່</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>ລະຫັດຜ່ານໃນປະຈຸບັນ</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>ຈຳເປັນ</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>ອ່ອນແອ</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>ກາງ</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>ແຂງແຮງ</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>ເຮັດຊ້ໍາອີກຄັ້ງ</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>ຄໍາແນະນໍາລະຫັດຜ່ານ</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>ທີ່ເລືອກໄດ້</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>ລະຫັດຜ່ານບໍ່ສາມາດວ່າງເປົ່າ</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>ລະຫັດຜ່ານບໍ່ຕົງກັນ</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>ຄໍາແນະນໍາແມ່ນສາມາດເບິ່ງເຫັນໄດ້ກັບຜູ້ໃຊ້ທັງຫມົດ. ຢ່າລວມເອົາລະຫັດຜ່ານຢູ່ທີ່ນີ້.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>ລະຫັດລັບໃຫມ່</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>ລະຫັດລັບໃຫມ່ຄວນແຕກຕ່າງຈາກປະຈຸບັນ</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>ແກ້ໄຂລະຫັດຜ່ານ</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>ຕັ້ງລະຫັດຜ່ານຄືນໃຫມ່</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>ຄວາມຍາວຂອງລະຫັດຜ່ານຄວນມີຢ່າງຫນ້ອຍ 8 ຕົວອັກສອນ, ແລະລະຫັດຜ່ານຄວນປະກອບດ້ວຍການປະສົມປະສານຢ່າງຫນ້ອຍ 3 ອັນຕໍ່ໄປນີ້: ຕົວອັກສອນໃຫຍ່, ຕົວອັກສອນນ້ອຍ, ຕົວເລກ, ແລະສັນຍາລັກ. ລະຫັດຜ່ານປະເພດນີ້ມີຄວາມປອດໄພກວ່າ.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>ການຕັ້ງລະຫັດຜ່ານຄືນໃຫມ່ຈະເກັບກູ້ຂໍ້ມູນທີ່ເກັບໄວ້ໃນ keyring.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>ແສງສະຫວ່າງ</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>ອັດຕະໂນມັດ</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>ມືດ</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>ກຳນົດເອງ</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>ບໍລິເວນປັ plugin</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>ເລືອກຮູບສັນຍາລັກໃດທີ່ຢູ່ໃນທ່າເຮືອ</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>ປິດລົງ</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>ແຂວນໄວ້</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>ຮູດ</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>ປິດຈໍ Monitor</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>ສະແດງການປິດການປິດ</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>ຢ່າເຮັດຫຍັງເລີຍ</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>ໜ້າຈໍ ແລະ ການພັກ</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>ປິດໜ້າຈໍຫຼັງຈາກ</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>ຂົດໜ້າຈໍຫຼັງຈາກ</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>ຄອມພິວເຕົ້ນພັກຫຼັງຈາກ</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>ເມື່ອປິດຝາແລ້ວ</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>ເມື່ອກດປຸ່ມໄຟ</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>ປະສິດທິພາບສູງ</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>ການປະຕິບັດການດຸ່ນດ່ຽງ</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>ປັບຄວາມຖີ່ຂອງການດໍາເນີນງານ CPU ຢ່າງຮຸນແຮງໂດຍອີງໃສ່ສະພາບການໂຫຼດຂອງ CPU</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>ດຸ່ນດ່ຽງ</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>ປະຫຍັດພະລັງງານ</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>ຈັດລໍາດັບຄວາມສໍາຄັນ, ເຊິ່ງຈະເພີ່ມທະວີການບໍລິໂພກພະລັງງານແລະການຜະລິດຄວາມຮ້ອນຢ່າງຫຼວງຫຼາຍ</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>ການດຸ່ນດ່ຽງການປະຕິບັດແລະຊີວິດຫມໍ້ໄຟ, ປັບໂດຍອັດຕະໂນມັດຕາມການນໍາໃຊ້</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>ຊີວິດແບດເຕີຣີ, ເຊິ່ງລະບົບຈະເສຍສະລະການສະແດງບາງຢ່າງເພື່ອຫຼຸດຜ່ອນການໃຊ້ພະລັງງານ</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>ນາທີ</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>ຊົ່ວໂມງ</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>ບໍ່ເຄີຍ</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>ນະໂຍບາຍຄວາມເປັນສ່ວນຕົວ</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>ສໍາເນົາທີ່ຢູ່ທີ່ຢູ່</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>ລະຫັດຜ່ານບໍ່ສາມາດວ່າງເປົ່າ</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>ລະຫັດຜ່ານຕ້ອງມີຢ່າງຫນ້ອຍ %1 ຕົວອັກສອນ</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>ລະຫັດຜ່ານຕ້ອງບໍ່ເກີນ %1 ຕົວອັກສອນ</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>ລະຫັດຜ່ານສາມາດມີພຽງແຕ່ຕົວອັກສອນພາສາອັງກິດ (ຕົວພິມໃຫຍ່-ຕົວພິມນ້ອຍແຕກຕ່າງກັນ), ຕົວເລກ ຫຼື ສັນຍາລັກພິເສດ (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>ບໍ່ເກີນ%% 1 ຕົວອັກສອນ palindrome 1 ກະລຸນາ</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>ບໍ່ເກີນ %1 ຕົວອັກສອນ monotonic</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>ກະລຸນາບໍ່ເກີນ %1 ຕົວອັກສອນ</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>ລະຫັດຜ່ານຕ້ອງມີຕົວພິມໃຫຍ່, ຕົວພິມນ້ອຍ, ຕົວເລກ ແລະ ສັນຍາລັກ (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>ລະຫັດຜ່ານຕ້ອງບໍ່ມີຕົວອັກສອນຫຼາຍກ່ວາ 4 palindrome</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>ຢ່າໃຊ້ຄໍາສັບທີ່ຄ້າຍຄືກັນແລະການປະສົມປະສານກັນເປັນລະຫັດຜ່ານ</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>ສ້າງລະຫັດລັບທີ່ເຂັ້ມແຂງກະລຸນາ</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>ມັນບໍ່ໄດ້ຕາມລະຫັດລະຫັດຜ່ານ</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>ສູນຄວບຄຸມ</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>ໄດ້ເປີດໃຊ້ງານ</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>ທັດສະນະ</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>ໄດ້ຮັບການກະຕຸ້ນ</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>ກະຕຸ້ນ</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>ຫມົດອາຍຸແລ້ວ</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>ໃນໄລຍະເວລາທົດລອງ</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>ການທົດລອງຫມົດອາຍຸ</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>ສູນຄວບຄຸມ DDE</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>ການຕັ້ງຄ່າຫນ້າຈໍສໍາພັດ</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>ການຕັ້ງຄ່າຂອງຫນ້າຈໍສໍາຜັດປ່ຽນແປງ</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>ຮູບວໍເປເປີລະບົບນີ້ຖືກລັອກ. ກະລຸນາຕິດຕໍ່ admin ຂອງທ່ານ.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>ຄົ້ນຫາ</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>ຮູບແບບໃນຕອນຕົ້ນ</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>ມື້ທໍາອິດຂອງອາທິດ</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>ວັນທີສັ້ນ</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>ວັນທີຍາວ</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>ທີ່ໃຊ້ເວລາສັ້ນ</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>ເວລາດົນ</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>ສັນຍາລັກເງິນຕາ</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>ຕົວເລກ</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>ຂະຫນາດເຈ້ຍ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>ບັນທຶກ</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>ຄົ້ນຫາ</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>ຕັ້ງຄ່າລະຫັດຜ່ານ</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 ຕົວອັກສອນ</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>ຢືນຢັນລະຫັດຜ່ານ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>ຢືນຢັນ</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>ລະຫັດຜ່ານບໍ່ກົງກັນ</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>ລູກຄ້າກໍານົດເວລາຄ້າງຫ້ອງ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>ບັນທຶກ</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>ແພແຫ່</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>ການສະແດງຕົວຢ່າງ</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>ຫນ້າຈໍສ່ວນບຸກຄົນ</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>ການຕັ້ງຄ່າ</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>ທີ່ໃຊ້ເວລາບໍ່ເຮັດວຽກ</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 ນາທີ</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>ຫ້ານາທີ</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>ປະມານ 10 ນາທີ</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 ນາທີ</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 ນາທີ</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 ຊົ່ວໂມງ</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>ບໍ່ເຄີຍ</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>ລະຫັດຜ່ານທີ່ຕ້ອງການສໍາລັບການຟື້ນຕົວ</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>ພາບຫນ້າຈໍສະແດງຮູບເງົາ</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>ຫນ້າຈໍລະບົບ</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>ຄົ້ນຫາ</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>ບໍ່ມີຜົນການຄົ້ນຫາ</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>ເພີ່ມທາງລັດແບບກຳນົດເອງ</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>ຊື່:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>ຈຳເປັນ</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>ຄໍາສັ່ງ:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>ລັດ</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>ບໍ່ມີ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>ເພີ່ມ</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>ກາງເຂັນ</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>ທາງລັດລະບົບ, ທາງລັດທີ່ກໍາຫນົດເອງ</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>ທາງລັດຄົ້ນຫາ</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>ສຳເລັດ</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>ແກ້ໄຂ</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>ກົດ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>ຫຼື</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>ປ່ຽນແທນ</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>ຟື້ນຟູຄ່າເລີ່ມຕົ້ນ</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>ເພີ່ມທາງລັດແບບກຳນົດເອງ</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>ອຸປະກອນຜົນໄດ້ຮັບ</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>ເລືອກວ່າຈະເປີດໃຊ້ອຸປະກອນໃດຫນຶ່ງ</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>ອຸປະກອນປ້ອນຂໍ້ມູນ</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>ຜົນກະທົບສຽງ</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>ເປີດເຄື່ອງ</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>ປິດ​ເຄື່ອງ</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>ອອກ​ຈາກ​ລະ​ບົບ</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>ຕື່ນ</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>ປະລິມານ +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>ການແຈ້ງການ</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>ແບດເຕີລີ່ຕ່ໍາ</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>ສົ່ງຮູບສັນຍາລັກໃນ Launcher ໄປທີ່ desktop</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>ຂີ້ເຫຍື້ອເປົ່າ</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>ສຽບໃສ່</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>ສຽບອອກ</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>ອຸປະກອນທີ່ຖອດອອກໄດ້</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>ອຸປະກອນທີ່ຖອດອອກໄດ້</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>ຜິດ</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>ຮູບແບບ</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>ປະລິມານຜົນຜະລິດ</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>ປະລິມານ boost</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>ຖ້າປະລິມານດັງກວ່າ 100%, ມັນອາດຈະບິດເບືອນສຽງແລະເປັນອັນຕະລາຍຕໍ່ອຸປະກອນການຜະລິດ</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>ຊ້າຍ</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>ຂວາ</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>ຜົນໄດ້ຮັບ</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>ບໍ່ມີອຸປະກອນຜົນຜະລິດສໍາລັບສຽງທີ່ພົບ</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>ຄວາມສົມດຸນຊ້າຍຂວາ</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>ລວມຊ່ອງທາງຊ້າຍແລະຂວາເຂົ້າໄປໃນຊ່ອງທາງດຽວ</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>ບໍ່ວ່າສຽງຈະຖືກຢຸດໂດຍອັດຕະໂນມັດເມື່ອອຸປະກອນສຽງໃນປະຈຸບັນຖືກຖອດອອກ</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>ສຽງ</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>ພະເດດ</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>ຫນູ</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>ອັບເດດ</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>ແພແຫ່</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>ວໍເປເປີເພີ່ມເຕີມ</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>ເວລາ sync ອັດຕະໂນມັດ</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Server NTP</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>ວັນທີແລະເວລາຂອງລະບົບ</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>ປັບແຕ່ງ</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>ການກໍານົດ</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>ທີ່ຢູ່ຂອງເຄື່ອງແມ່ຂ່າຍ</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>ຈຳເປັນ</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>ທີ່ຢູ່ຂອງເຄື່ອງແມ່ຂ່າຍ NTP ບໍ່ສາມາດຫວ່າງໄດ້</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>ໃຊ້ຮູບແບບ 24 ຊົ່ວໂມງ</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>ເຂດເວລາຂອງລະບົບ</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>ລາຍຊື່ TimeZone</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>ເພີ່ມ</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>ແຕ່</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>ເພື່ອ</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>ບັນທຶກການຕັ້ງຄ່າຈໍສະແດງຜົນບໍ?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>ການຕັ້ງຄ່າຈະຖືກສົ່ງຄືນໃນ %1s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>ສົ່ງລາງວັນໄດ້</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>ບັນທຶກ</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>ຕື່ມເຂດເວລາ</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>ກໍານົດເຂດເວລາທີ່ອີງໃສ່ສະຖານທີ່ປະຈຸບັນ</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>ເຂດເວລາ:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>ເມືອງທີ່ໃກ້ທີ່ສຸດ:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>ບັນທຶກ</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>ຫນ້າຈໍສໍາພັດ</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>ຕັ້ງຄ່າທີ່ນີ້ໃນເວລາທີ່ເຊື່ອມຕໍ່ຫນ້າຈໍສໍາພັດ</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>ການຕັ້ງຄ່າຂັ້ນພື້ນຖານ</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>ຈັບຄູ່</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>ຄວາມໄວຂອງຕົວຊີ້</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>ຊ້າ</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>ໄວ</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>ປິດ touchpad ໃນລະຫວ່າງການປ້ອນຂໍ້ມູນ</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>ແຕະເພື່ອກົດ</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>ເລື່ອນທໍາມະຊາດ</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>ທ່າທາງສາມນິ້ວ</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>ທ່າທາງສອງນິ້ວມື</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>ເຂົ້າຮ່ວມໂຄງການປະສົບການຂອງຜູ້ໃຊ້</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>ສໍາເນົາທີ່ຢູ່ທີ່ຢູ່</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>ການຢັ້ງຢືນຄວາມປອດໄພ</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>ການກະທໍາແມ່ນມີຄວາມອ່ອນໄຫວ, ກະລຸນາໃສ່ລະຫັດເຂົ້າລະບົບກ່ອນ</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 ຕົວອັກສອນ</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>ລືມລະຫັດຜ່ານ?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ຍົກເລີກ</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>ຢືນຢັນ</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>ຮູບວໍເປເປີ</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>ຮູບພາບຂອງຂ້ອຍ</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>ຮູບວໍເປເປີລະບົບ</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>ຮູບວໍເປເປີສີແຂງ</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>ຮູບວໍເປເປີທີ່ສາມາດປັບແຕ່ງໄດ້</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>ສະບັບເຕັມ</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>ການປ່ຽນແປງພາບອັດຕະໂນມັດ</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>ບໍ່ເຄີຍ</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 ວິນາທີ</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 ນາທີ</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>ຫ້ານາທີ</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>ປະມານ 10 ນາທີ</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 ນາທີ</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 ນາທີ</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>ເຂົ້າສູ່ລະບົບ</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>ຕື່ນ</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>ພາບວໍເປເປີທີ່ມີຊີວິດ</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 ຊົ່ວໂມງ</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>ເປີດ</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>ຕັ້ງຫນ້າຈໍລັອກ</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>ຕັ້ງຄ່າເດັສທອບ</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>ສ່ວນຕິດຕໍ່ແລະເອຟເຟັກ</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>ການຕັ້ງຄ່າຫນ້າຕ່າງ</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>ມູມມົນຂອງຫນ້າຕ່າງ</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>ບໍ່ມີ</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>ຂະຫນາດນ້ອຍ</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>ໃຫຍ່</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>ເປີດໃຊ້ຜົນກະທົບໂປ່ງໃສເມື່ອຍ້າຍປ່ອງຢ້ຽມ</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>ເອຟເຟັກການຫຍໍ້ຫນ້າຕ່າງ</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>ປັບຂະໜາດ</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>ໂຄມໄຟວິເສດ</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>ຄວາມໂປ່ງໃສ</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>ຕ່ໍາ</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>ສູງ</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>ແຖບເລື່ອນ</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>ສະແດງເມື່ອເລື່ອນ</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>ສະແດງຕະຫຼອດ</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>ການສະແດງແບບກະທັດຮັດ</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>ຖ້າເປີດໃຊ້ງານ, ເນື້ອຫາຫຼາຍຂື້ນຈະຖືກສະແດງຢູ່ໃນປ່ອງຢ້ຽມ.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>ລວງສູງຂອງແຖບ</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>ພຽງແຕ່ເຫມາະສໍາລັບແຖບຫົວຂໍ້ທີ່ໃຊ້ໃນການນໍາໃຊ້ໂດຍຜູ້ຈັດການວິນໂດ.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>ຂະຫນາດນ້ອຍ</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>ກາງ</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>ກາງ</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>ຈີນພື້ນເມືອງ (ພາສາຈີນຮົງກົງ)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>ພາສາຈີນແບບດັ້ງເດີມ (ໄຕ້ຫວັນຈີນ)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>ໄຕ້ຫວັນຈີນ</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>ຊື່ຜູ້ໃຊ້ຕ້ອງຢູ່ລະຫວ່າງ 3 ຫາ 32 ຕົວອັກສອນ</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>ລັກສະນະທໍາອິດຕ້ອງເປັນຕົວອັກສອນຫລືເລກ</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>ຊື່ຜູ້ໃຊ້ຂອງທ່ານບໍ່ພຽງແຕ່ມີພຽງແຕ່ຕົວເລກເທົ່ານັ້ນ</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>ຊື່ຜູ້ໃຊ້ໄດ້ຖືກນໍາໃຊ້ໂດຍບັນຊີຜູ້ໃຊ້ອື່ນໆ</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>ຊື່ເຕັມແມ່ນຍາວເກີນໄປ</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>ຊື່ເຕັມໄດ້ຖືກນໍາໃຊ້ໂດຍບັນຊີຜູ້ໃຊ້ອື່ນໆ</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>ລະຫັດຜ່ານຜິດ</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>ຜູ້ໃຊ້ມາດຕະຖານ</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>ຜູ້ຢິງບໍລິຫານ</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>ປັບແຕ່ງ</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>ເຈົ້າພາບຂອງທ່ານໄດ້ຖືກຍ້າຍອອກຈາກ Domain Server ປະສົບຜົນສໍາເລັດ</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>ເຈົ້າພາບຂອງທ່ານເຂົ້າຮ່ວມບໍລິສັດໂດເມນສໍາເລັດແລ້ວ</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>ເຈົ້າພາບຂອງເຈົ້າລົ້ມເຫລວທີ່ຈະອອກຈາກເຊີບເວີໂດເມນ</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>ເຈົ້າພາບຂອງເຈົ້າລົ້ມເຫລວທີ່ຈະເຂົ້າຮ່ວມກັບໂດເມນຂອງໂດເມນ</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>ການຕັ້ງຄ່າໂດເມນຂອງໂຄສະນາ</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>ລະຫັດຜ່ານບໍ່ກົງກັນ</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>ມິຣະ</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>ແປ</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>ຂໍ້ຂັດແຍ່ງທາງລັດນີ້ກັບ [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>ລະຫັດຜ່ານບໍ່ສາມາດວ່າງເປົ່າ</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>ລະຫັດຜ່ານຕ້ອງມີຢ່າງຫນ້ອຍ %1 ຕົວອັກສອນ</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>ລະຫັດຜ່ານຕ້ອງບໍ່ເກີນ 1 ໂຕອັກສອນ 1 ໂຕອັກສອນ</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>ລະຫັດຜ່ານສາມາດມີພຽງແຕ່ຕົວອັກສອນພາສາອັງກິດ (ຕົວພິມໃຫຍ່-ຕົວພິມນ້ອຍແຕກຕ່າງກັນ), ຕົວເລກ ຫຼື ສັນຍາລັກພິເສດ (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>ບໍ່ເກີນ%% 1 ຕົວອັກສອນ palindrome 1 ກະລຸນາ</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>ບໍ່ເກີນ %1 ຕົວອັກສອນ monotonic</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>ກະລຸນາບໍ່ເກີນ %1 ຕົວອັກສອນ</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>ລະຫັດຜ່ານຕ້ອງມີຕົວພິມໃຫຍ່, ຕົວພິມນ້ອຍ, ຕົວເລກ ແລະ ສັນຍາລັກ (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>ລະຫັດຜ່ານຕ້ອງບໍ່ມີຕົວອັກສອນຫຼາຍກ່ວາ 4 palindrome</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>ຢ່າໃຊ້ຄໍາສັບທີ່ຄ້າຍຄືກັນແລະການປະສົມປະສານກັນເປັນລະຫັດຜ່ານ</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>ສ້າງລະຫັດລັບທີ່ເຂັ້ມແຂງກະລຸນາ</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>ມັນບໍ່ໄດ້ຕາມລະຫັດລະຫັດຜ່ານ</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>ລະບົບ</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>ປ່ອງຢ້ຽມ</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>ບ່ອນເຮັດວຽກ</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>ເຄື່ອງມືຊ່ວຍເຫຼືອ</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>ກຳນົດເອງ</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>ບໍ່ມີ</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_lt.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"lt\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Atlikta</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Įrašyti</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Siųsti failus</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Pervadinti</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Šalinti įrenginį</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Pasirinkti failą</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>apipavidalinimas</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Naujas slaptažodis:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Slaptažodis negali būti tuščias</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Slaptažodžiai nesutampa</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Piktogramų nustatymai</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Piktogramų apipavidalinimas</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Žymeklio apipavidalinimas</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Ar tikrai norite ištrinti šią paskyrą?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Ištrinti paskyros katalogą</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Ištrinti</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Eiti į nustatymus</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>Nėra tinklo ryšio</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Paskyros tipas</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Sukurti paskyrą</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Norint nustatyti sistemos laiko juostą, reikalingas tapatybės nustatymas</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Įrašyti</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Ekranas</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalizacija</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Slaptažodis negali būti tuščias</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Įrašyti</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Ekrano užsklanda</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Sistemos ekrano užsklanda</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Garsas</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Atsijungti</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Atjungti</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Ekrano užsklanda</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Įrašyti</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Įrašyti</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atsisakyti</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Tradicinė kinų kalba (Kinijos Honkongas)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Tradicinė kinų kalba (Kinijos Taivanas)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taivano Kinija</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Šis trumpinys konfliktuoja su [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistema</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Langas</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Darbo sritis</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Pagalbiniai įrankiai</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Pritaikytas</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Nėra</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_lv.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"lv\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Saglabāt</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Atcelt</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Saglabāt</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\">Paziņojums</translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\">Izslēgt</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Saglabāt</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Saglabāt</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Saglabāt</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Ieslēgt</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Izslēgt</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Izrakstīties</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Pamodināt</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Skaļums +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Paziņojums</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Zems baterijas līmenis</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Nosūtīt Palaidēja ikonu uz Darbvirsmu</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Iztukšot miskasti</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Pievienot</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Atvienot</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Noņemamā ierīce savienota</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Noņemamā ierīce atvienota</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Kļūda</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Saglabāt</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">Saglabāt</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Atcelt</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_ml.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ml\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>ബന്ധിച്ചിരിക്കുന്നു</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>റദ്ദാക്കുക</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>പ്രദർശനം</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>കസ്റ്റം</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>നിർത്തുക</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>രീതി</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>ഇടതു്</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>വലതു്</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>തിരിച്ചു പോകുക</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>സൂക്ഷിക്കുക</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>പരമ്പരാഗത ചൈനീസ് (ഹോങ്കോങ് ചൈനീസ്)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>പരമ്പരാഗത ചൈനീസ് (തായ്‌വാൻ ചൈനീസ്)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>തായ്‌വാൻ ചൈന</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>ഈ കുറുക്കുവഴി [%1] ൽ പൊരുത്തക്കേടുണ്ട്</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>സിസ്റ്റം</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>വിൻഡോ</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>വർക്ക്സ്പേസ്</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>സഹായ ഉപകരണങ്ങൾ</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>ഇഷ്ടാനുസൃതം</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>ഒന്നുമില്ല</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_mn.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"mn\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Холбогдсон</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Холбогдоогүй</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Цуцлах</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Дэлгэц</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Оролтын дууны хүч</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Тусгайлсан</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Нууц үг %1 тэмдэгтээс илүүгүй байх ёстой</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Удирдлагын хэсэг</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Дууны эффект</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Ачаална</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Унтраах</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Гарах</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Сэрээх</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Дуу +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Мэдэгдэл</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Бага цэнэгтэй</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Дүрсийг ажлын тавцанруу илгээх</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Хоосон хогийн сав</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Залгах</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Салгах</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Зөөвөрийн төхөөрөмж холбогдлоо</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Зөөвөрийн төхөөрөмж салгагдлаа</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Алдаа</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Горим</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Гаралтын дууны хүч</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Зүүн</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Баруун</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Буцаах</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Хадгалах</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Уламжлалт хятад хэл (Хонг Конг хятад)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Уламжлалт хятад хэл (Тайвань хятад)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Тайвань Хятад</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Энэ товчлол [%1]-тэй зөрчилдөж байна</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Систем</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Цонх</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Ажлын орон зай</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Туслах хэрэгслүүд</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Тохируулсан</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Байхгүй</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_mr.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"mr\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\">सानुकूल</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">काहीही नाही</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\">सिस्टम</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">काहीही नाही</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>पारंपारिक चीनी (चीनी हॉंगकॉंग)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>पारंपारिक चीनी (चीनी तैवान)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>तैवान चीन</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>हा शॉर्टकट [%1] शी संघर्ष करतो</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>सिस्टम</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>विंडो</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>वर्कस्पेस</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>सहायक साधने</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>सानुकूल</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>काहीही नाही</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_ms.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ms\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Bersambung</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Tidak bersambung</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Capjari1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Capjari2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Capjari3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Capjari4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Capjari5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Capjari6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Capjari7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Capjari8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Capjari9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Capjari10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Imbas gagal</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Cap jari sudah wujud</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Sila imbas jari yang lain</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Ralat tidak diketahui</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Imbas ditangguh</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Tidak dapat kenal pasti</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Gerak terlalu pantas</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Jari digerak terlalu pantas. Jangan angkat sehingga diberitahu</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Cap jari tidak jelas</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Bersih dahulu jari anda atau laras kedudukan jari, dan cuba sekali lagi</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Sudah diimbas</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Laras kedudukan jari supaya dapat mengimbas cap jari sepenuhnya</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Jari digerak terlalu pantas. Jangan angkat sehingga diberitahu</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Angkat jari anda dan letak ia di atas penderia sekali lagi</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Batal</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Pengesahihan diperlukan untuk mengubah pelayan NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Pengesahihan diperlukan untuk menetap zon waktu sistem</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Paparan</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Penindasan HIngar Automatik</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Volum Input</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Aras Input</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Peranti Input</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Penampilan</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Suai</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Kata laluan tidak boleh kosong</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Kata laluan mesti sekurang-kurangnya %1 aksara</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Kata laluan mestilah tidak lebih daripada %1 aksara</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Kata laluan hanya boleh mengandungi abjad Inggeris (sensitif-kata), angka atau simbol khas (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Kata laluan mesti mengandungi abjad huruf besar, abjad huruf kecil, angka dan simbol  (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Kata laluan mesti tidak mengandungi lebih daripada 4 aksara palindrome</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Jangan guna perkataan dan gabungan umum sebagai kata laluan</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Sila cipta satu kata laluan yang kuat</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Ia tidak menepati peraturan kata laluan</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Pusat Kawalan</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Diaktifkan</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Lihat</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Untuk diaktifkan</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Aktifkan</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Luput</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Dalam tempoh percubaan</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Percubaan telah luput</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Tetapan Skrin Sentuh</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Tetapan skrin sentuh berubah</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Bunyi</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Kesan Bunyi</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Butkan</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Matikan</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Daftar keluar</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Bangun</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volum +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Pemberitahuan</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Bateri rendah</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Hantar ikon dalam Pelancar ke Desktop</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Kosongkan Tong Sampah</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Palam masuk</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Palam keluar</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Peranti boleh tanggal bersambung</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Peranti boleh tanggal dikeluarkan</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Ralat</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Mod</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Volum Output</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Galak Volum</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Kiri</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Kanan</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Peranti output</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Kembali</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Simpan</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Cina Tradisional (Cina Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Cina Tradisional (Cina Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan Cina</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Pintasan ini bercanggah dengan [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistem</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Tetingkap</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Ruang kerja</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Alat bantuan</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Tersuai</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Tiada</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_nb.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"nb\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Tilkoblet</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Frakoblet</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Avbryt</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Skjerm</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Inngangs Volum</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Mus og Styreplate</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalisering</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Egendefinert</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Kontrollsenter</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Vis</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Lyd</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Lydeffekter</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Start opp</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Slå av</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Logg ut</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Våkne</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volum +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notifikasjon</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Lav batteri</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Send ikon i Launcher til Skrivebord</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Tøm Papirkurv</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Plugg inn</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Plugg ut</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Fjernbar enhet tilkoblet</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Fjernbar enhet fjernet</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Feil</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Modus</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Utgangs Volum</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Venstre</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Høyre</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Tilbakestille</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Lagre</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Tradisjonell kinesisk (Kinesisk Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Tradisjonell kinesisk (Kinesisk Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan Kina</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Denne snarveien er i konflikt med [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>System</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Vindu</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Arbeidsområde</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Hjelpeverktøy</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Tilpasset</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Ingen</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_nb_NO.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_ne.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ne\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>सम्पादन</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>नयाँ उपयोगकर्ता जोड्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>कुल नाम सेट गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>लॉगइन सेटिङहरू</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>पासवर्ड छैनको प्रकारमा लॉगइन गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>वर्तमान खाता मात्र छुट्ट्याउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>समूह सेटिङहरू</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>खाता समूहहरू</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>समाप्त</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>समूहको नाम</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>समूह जोड्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>प्रतिबिम्बित लॉगइन</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>खाता जानकारी</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>खाताको नाम, कुल नाम, खाताको प्रकार</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>खाताको नाम</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>खाताको कुल नाम</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>खाताको प्रकार</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>हास्य समावेश गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>म जानाउँछु र विचारहरूलाई सहमत छु</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>कथनको विचारहरू</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>अगाध</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>हास्य समावेश गरिएको</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>कार्टून रूपांतरण</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>विमात्मक रूपांतरण</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>प्लैट रूपांतरण</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>संरक्षण गर्नुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>स्क्रीन र संपन्न</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>स्क्रीन बाट विंदौँको बाद बाँड गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>स्क्रीन बाट विंदौँको बाद लॉक गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>कम्प्युटर संपन्न बाट विंदौँको बाद</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>कपाल बाँडिन्छ जस्तै</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>पावर बटन देखि दबाइन्छ जस्तै</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>कम बैटरी</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>कम बैटरी जानाउँदा प्रतिक्रिया</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>अटोमेटिक संपन्न</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>अटोमेटिक हाइपरबीन</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>कम बैटरी अवकाश</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>बैटरी संचालन</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>इस्तेमाल र चार्ज विमेस्ती दर्शन गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>मैक्सिमम कैपासिटी</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>कम बैटरी स्तर</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>काम बाट घुमाउनुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>ब्लूटूथ बाँड गरिएको र नाव &quot;%1&quot; रूपमा दर्शन गरिन्छ</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>ब्लूटूथ बाँड गरिएको र नाव &quot;%1&quot; रूपमा दर्शन गरिन्छ</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>विस्तार गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>संधारण गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>फाइलहरू भेट्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>परिचायन बदल्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>उपकरण छुट्टाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>फाइल छान्नुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>सम्पादन</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>यस उपकरणलाई अन्य Bluetooth उपकरणहरूले पाठ्य गर्न सक्ने राख्नुहोस्</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Bluetooth फंक्शन उपयोग गर्न सक्न छ तर अन्तर्गत शून्यालय राजस्थान बिनौँ राख्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>शून्यालय राजस्थान</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>संपर्क गरिएका</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>संपर्क गरिनेको छैन</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>शुरुवातीको सेटिङहरू</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>मुख्य शुरुवातीको विषयहरू बदल्न सक्न छ तर छान छैन्न रेखाग्रहरूले लुकाउँदा वैकल्पिक पृष्ठभूमि छान्नुहोस्</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>grub शुरू हुने दिनाङ्क देरी</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>विवरण</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>विवरण खोल्दा छन् छ जब रास्त्रपति खोल्ने तब विवरणको पृष्ठभूमि देख्न सक्छ</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>शुरुवातीको मेनु परीक्षण</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>क्याकि खोलिने बाद मेनु संपादन गर्न लागि लघुपास्सवर्ड लाग्दछ</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>लघुपास्सवर्ड बदल्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>शुरुवातीको मेनु परीक्षण लघुपास्सवर्ड बदल्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>शुरुवातीको मेनु परीक्षण लघुपास्सवर्ड सेट गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>उपयोगकर्ताको नाम : </translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>नयाँ लघुपास्सवर्ड : </translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>अनिवार्य</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>पासवर्ड अव्यवहार्य हो सकेको छैन</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>पासवर्डहरू मिलान्याथ्यो छन्</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>पुनरावृत्ति गर्नुपर्ने पासवर्ड:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द कर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>हामी निश्चित छु</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>आनिमेशन शुरू गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>सिस्टम शुरू गर्ने टाइपमा लोगो आनिमेशनको आकार सम्पादन गर्नुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>नीचे लिस्टमा लगातार अप्पहरू तपाईको कैमरालाई डाइरेक्ट गर्न सक्न्छन्:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>प्रेक्षण1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>प्रेक्षण2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>प्रेक्षण3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>प्रेक्षण4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>प्रेक्षण5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>प्रेक्षण6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>प्रेक्षण7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>प्रेक्षण8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>प्रेक्षण9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>प्रेक्षण10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>स्कान गर्न मिलान्याथ्यो छ</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>प्रेक्षण राउन्दै छ</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>कृपया अन्य पाँचिहरूलाई स्कान गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>ज्ञात छैन त्रुटि</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>स्कान रद्द गरियो छ</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>पहुँच गर्न मिलान्याथ्यो छ</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>जुन तेज गतिबाट ठूलो गति गरिएको छ</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>नेपाली बहुत तेज गति से गुजरेको छ, कृपया आग्रह दिन्छौं भने उठाउन मग उठाउन मा राख्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>अन्दै नजिको चिह्न</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>तपाईंलाई फुलाको परिमाण बाँध्नुहोस् वा चिह्न रक्खने को स्थान रेख्नुहोस् र फिर देख्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>भन्दा अर्को चिह्न गरिन्छ</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>फुल चिह्न गर्न लागि फुलको स्थान रेख्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>नेपाली बहुत तेज गति से गुजरेको छ, कृपया आग्रह दिन्छौं भने उठाउन मग उठाउन मा राख्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>फुलको उठाउनु र सेंसरको उपर राख्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>तपाईंको चाकु बॉक्सको भित्र मा रेख्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>चाकु धारण गरिएको छ</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>कृपया एउटा मानव चाकु रेख्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>कैमरालाई दूर राख्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>कैमरालाई लगभग राख्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>बॉक्सको भित्रमा बीचबीच चाकु रेख्नुपर्छैन</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>कैमरालाई निश्चित गर्नुहोस् भने लेन्स सफाई गरिएको छ</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>जानाउन मुश्किल, चमत्कारिक वा पीछावातील विस्तृतता मा न धारण गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>तपाईंको चाकु खोलिएको छ</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>स्कान देरमा बाहिर राखिएको छ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>सामान्य रंग</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>इकोन सेट्टिङस्</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>इकोन थीम</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>वेबसाइटको थीम चिनाउँको रचनाव्यावस्थापन गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>कर्सर थीम</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>वेबसाइटको थीम चर्चाको रचनाव्यावस्थापन गर्नुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>यो खाताको छुट्ट्याउन थप्न निश्चित छौं?\n</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>खाताको फोल्डर छुट्ट्याउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>छुट्ट्याउनुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>सेटिङहरूलाई जानुहोस्</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द गर्नुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>साधारण</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>नकारात्मक दौरान क्षमता</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>कुरुको</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>लंबो</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>नकारात्मक दर</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>स्वीकार्य गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>हामी गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>संख्यालेखाशीर्षक</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>याहामा परीक्षण गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>कैप्स लोक दर्शाउन थप्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>दुवै क्लिक गतिविधि</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>दुवै क्लिक परीक्षण</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>तामिरको रूप</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>बडो आकार</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>कुरुको आकार</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>योजनालाई सहमत र जुन्न गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>दिन र समय सेटिंग</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>दिनाङ्क</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>वर्ष</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>महिना</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>दिन</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>समय</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>निश्चित</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>कल</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>कामदिन</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>आज</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 गणितै स्थानीयसँग पहिलाउँछ</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 गणितै स्थानीयसँग देखि बाहिर छ</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>स्थान</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>सप्ताह</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>सप्ताहको पहिलो दिन</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>कार्यक्रमित दिनाङ्क</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>लंबो दिनाङ्क</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>कार्यक्रमित समय</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>लम्बो समय</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>मुद्राको संकेत</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>सकारात्मक मुद्रा</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>विषाक्त मुद्रा</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>दशमलवको संकेत</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>संख्याको समूहको संकेत</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>संख्याको समूहकरण</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>पेजको आकार</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>NTP सर्वर बदल्न लागि परमाणु परीक्षण लागिन्छ</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>संरक्षण गर्नुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>कंट्रोल केन्द्र सिस्टम सेटिङहरूको विकल्पहरू प्रदान गर्छ।</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>वेचाट सब्ब लगाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>वेचाट सब्ब लगाउने तपाईँले %1 आईडी र लागि लेखालेखी खाताहरूको निराकार र तेजस्वी लॉग इन गर्न सक्छन्।</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>लगाउँने छैनको</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>लगाउने छैन्दैन</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>लगाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>तपाईंले वेचाटलाई छैन्दैन चाहनुभयो भने?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>वेचाटलाई छैन्दैन भने तपाईँले वेचाटलाई %1 आईडी वा लागि लेखालेखी खातालाई जानाउँछैन जुन निराकार र QR कोड देखाउँदै लॉग इन गर्नुपर्छ।</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>मन छान उन्मत्त गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>लागि लेखालेखी खाताको लगाउँदै</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>लागि लेखालेखी खातालाई लगाउने तपाईँले अन्तर्गत यी विकल्पहरू उपयोग गर्न सक्छन्:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>वेचाट दर्पण कोड लॉग इन सिस्टम</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>तपाईँलाई लगाउँदा वेचाट जुन तपाईँको %1 आईडी छैन उपयोग गर्दै दर्पण कोड देखाउँदै लॉग इन गर्नुहोस् लागि लेखालेखी खातालाई।</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>%1 आईडी भने खालील पासवर्ड वापस गर्नुहोस्:</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>यदि आप अपना स्थानीय पासवर्ड भूल जाते हैं, तो %1 आईडी का उपयोग करके इसे फिर से सेट कर सकते हैं।</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>उपरोक्त विशेषताओं का उपयोग करने के लिए, कॉन्ट्रोल केंटर - एकाउंट्स जाते हुए दिए गए संबंधित विकल्पों को इंटरनिशनल करें।</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>डीपिन</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>यूओएस</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>क्लाउड सिंक</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>अपने %1 आईडी को प्रबंधित करें और अपने व्यक्तिगत डेटा को उपकरणों में संश्लेषित करें।\n\n%1 आईडी में लौहा करके ब्राउजर, एप स्टोर और और अधिक के लिए व्यक्तिगत विशिष्ट विशेषताएं और सेवाएं प्राप्त करें।</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>%1 आईडी में लौहा</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>ऑटो सिंक</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>सिस्टम सेटिंग्स और व्यक्तिगत डेटा को क्लाउड में निरापद रूप से संरक्षित करें और उन्हें उपकरणों में संश्लेषित रखें</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>सिस्टम सेटिंग्स</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>हालिया सिंक समय: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>क्लाउड में डेटा को निष्कासित करें</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>क्या आप निश्चित हैं कि आप उपकरणों में संरक्षित रहे विस्तृत सिस्टम सेटिंग्स और व्यक्तिगत डेटा को निष्कासित करना चाहते हैं?\n</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>एक बार डेटा को निष्कासित कर दिया जाए, तो इसे पुनरावृत्ति नहीं किया जा सकता!\n</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द करें</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>निष्कासित करें</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>सिंकराइज़ेशन सेवा</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>खाता और सुरक्षा</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>लौहा निकालें</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>वेब सेटिंग्स को जाएं</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>पासवर्ड को एंक्रिप्ट करना विफल हो गया</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>अधूरा पासवर्ड, आपके पास %1 अवसर शेष हैं</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>आज की लॉगिन त्रुटि अधिकतम अवसर तक पहुंच गई है। आप पासवर्ड को फिर से सेट करके फिर से प्रयास कर सकते हैं।</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>oprेशन सफल</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>मेनलैंड चीन</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>अन्य क्षेत्रहरू</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>वर्तमान मा यो विशिष्टता उपलब्ध छैन, प्रयोग गर्नुपर्ने नेत्र सक्रिय गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>आपको अपाई देशीय कानूनहरू र कार्यक्रममा तयार भएको यो विशिष्टता आपको क्षेत्रमा उपलब्ध छैन।</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>कृपया &apos;%1&apos; खोल्न्छैन दिने अनुप्रयोग बाट चुन्नुहोस्,</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>जोड्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Desktop फाइल खोल्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Apps (*.desktop),</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>सारी फाइलहरू (*),</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Root एक्सेस</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Root एक्सेस अनुरोध गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>डेवलपर मोड भएको बादले आपलाई root अनुमति अनुभाग गर्न सकिन्छ, तर यसको वजनात्मक प्रभाव सिस्टम विश्वसनीयतालाई नुकसान पहुँचाउन सकिन्छ, त्यसलाई कृपया धेरै सावधानी धारण गर्नुहोस्।</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>निष्पक्ष</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>वास्तविक स्थानमा चल्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>सार्वजनिक</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Login UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>अनैतिक</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Certificate भेट्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>फाइल चयन गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>आपको UOS ID लॉग इन भएको छ, डेवलपर मोड भेट्नुहोस् कुक्कीको द्वाराले</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>कृपया आपको UOS ID भए पहिले लॉग इन गर्नुहोस् र जारी रह्नुहोस्</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1.Export PC Info</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Export</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.Import Certificate</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>프로그래밍 र डिबगिंग विकल्पहरू</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>सिस्टम लैग्री तह</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>विकल्पहरू बदल्ने दृष्टिकोण विस्तृत लैग्री गर्ने परिणाम दिने सिस्टम प्रदर्शन घटाउने र/व यात्रा स्थान ले लाग्दै उचित हुन सक्छ.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>फाइल</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>डिबग</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>विकल्प बदल्ने एक मिनिट तयार गर्न मुख्य र योग्य व्यवस्थापन लुकाउन बाद अनुकूल रूपमा काम गर्न लाग्दै र यसले प्रभाव पाउँद्छ। उपकरणलाई पुनरारंभ गर्नुपर्छ।</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>नीचे देखिन्छ आवासीय अप्पहरूले यो फाइलहरू र महावासीले लागि योग्यता दिनुहुन्छ:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>पेपर</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>देस्कटोप</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>चित्रहरू</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>वीडियोहरू</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>गानहरू</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>डाउनलोडहरू</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>महावासी</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>आकार</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>रूपान्तरित फोन्ट</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>समान आकार फोन्ट</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>पावर प्लानहरू</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>पावर सेवानिवृत्ति सेटिंगहरू</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>लुकाउ बैटरीमा अटोमेटिक पावर सेवानिवृत्ति</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>लुकाउ बैटरी गраницा</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>बैटरीमा अटोमेटिक पावर सेवानिवृत्ति</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>आकुप विकल्पहरू</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>कंप्युटरलाई जागाउन लागि सामान्य वाक्य लागिन्छ</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>मैनिटरलाई जागाउन लागि सामान्य वाक्य लागिन्छ</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>निर्मिति सेटिङहरू</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>विनिर्धारित निर्मिति</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>समय</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>पुनरुक्तित्व</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>एक बार</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>प्रत्येक दिन</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>कार्यक्रम दिनहरू</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>स्वामित्व दिन</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>शक्यता बचावको बाट तपाईंको दिल्लाई निर्वात गर्नुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>&apos;,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>[optimal performance]</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>विश्वस्त</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>विश्वस्त प्रदर्शन</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>भाषा</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>पूरा</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>संपादन</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>अन्य भाषाएँ</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>जोड़ें</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>क्षेत्र</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>क्षेत्र</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>ऑपरेटिंग सिस्टम और अपलोड आपको अपने देश और क्षेत्र के आधार पर स्थानीय सामग्री प्रदान कर सकते हैं.</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>ऑपरेटिंग सिस्टम और अपलोड क्षेत्रीय फॉर्मेटों के आधार पर तारीख और समय के फॉर्मेट निर्धारित कर सकते हैं.</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>भाषा जोड़ें</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>नामांकन</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>जोड्नुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>प्रवेश विधि</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>साइन एन्टर, वेचाट, विशिष्ट विश्वासपात्रता परीक्षण, उपायनित्र सुरक्षा कुंजी</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>पासवर्ड</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>पासवर्ड बदल्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>कार्यकालित दिनहरू</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>सदैव</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>कॉपीराइट© 2011-%1 Deepin समुदाय</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>कॉपीराइट© 2019-%1 UnionTech सॉफ्टवेअर तकनीकी संस्थान, एसएलडी</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>वातावरण शोर नियन्त्रण</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>वाच्यो ध्यानको सिंचना</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>वाच्यो स्तर</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>वाच्यो</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>सुन्न वाच्योको इनपुट यंत्र छैन देखिने</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>मा व्यस्त उपकरणहरू</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>कंप्युटरको नाम</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>हामी टिकिले या अन्तिम बार टिक्का छैन</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>OS को नाम</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>वर्जन</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>संस्करण</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>रूप</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>बिट</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>स्वीकृति</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>सिस्टम इनस्टॉल भइदा</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>करनेल</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>ग्राफिक्स प्लॅटफॉर्म</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>प्रोसेसर</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>प्रयोग यादान्वान</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>अन्य उपकरणहरू</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>नाम छैनको ब्लूटूथ उपकरणहरू देखाउनुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>वर्तमान पासवर्ड</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>निर्दिष्ट छैन्द</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>लुप्त</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>मध्यम</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>ज्यादातर निर्णायक</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>पासवर्ड नकारात्मक पुनरावृत्ति</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>पासवर्ड का उपदेश</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>वैकल्पिक</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>पासवर्ड अव्यवस्थित छन्द छैन्द</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>पासवर्डहरू मिलाउन मिलाउँदैनन</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>उपदेश सभी उपयोगकर्ताहरूले देख्न सक्छ। यस यादीमा पासवर्ड छैन्द</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>नया पासवर्ड वर्तमान पासवर्ड विशिष्ट छैन्द</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>पासवर्ड परिवर्तन गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>पासवर्ड पुनर्व्यवस्थापन गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>पासवर्डको विश्लेषण समावेश गर्नुपर्छ 8 वर्णहरूमा र यसमा निम्नलिखितमा तीन वटा समावेश गर्नुपर्छ: वर्गीय वर्ण, निर्वर्गीय वर्ण, संख्या र प्रतीक। यस प्रकारको पासवर्ड अधिक निर्णायक छ।</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>पासवर्डको पुनर्व्यवस्थापन दाखिला राखिएका डाटाको लगान छुट्याउने वैधता छ।</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द गर्नुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>लाम्बो</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>कार्यक्रमीय रूपमा</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>मोंको</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>सम्स्तता</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>प्लगइन क्षेत्र</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>डोकमा दिखाउने चिन्हहरूको चयन गर्नुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>बंद कर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>कार्यक्रमीय स्वेच्छा रूपमा रूपान्तरण गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>स्वास्थ्यकरण घटना चलाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>प्रतीक्षा व्यापारिको बाट बाहिर छुनुहोस्</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>निर्माण विषयको बाहिर छुनुहोस् व्यवस्थापन दर्शन गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>कुनै छुनुका छैन</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>लुप्त र स्वास्थ्यकरण घटना चलाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>प्रतीक्षा व्यापारिको बाट बाहिर छुनुका बाद</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>लुक्काउनुका बाद लुप्त र स्वास्थ्यकरण घटना चलाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>कंप्युटर स्वास्थ्यकरण घटना चलाउनुका बाद</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>कब तर लिड बाहिर छुनुको बाद</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>कब तर शक्ति टाइप दबाइन्छ</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>उच्च प्रदर्शन</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>सम्युग्ल प्रदर्शन</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>CPU भार अवस्थामा CPU चलन आवृत्ति लगातार रैकाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>सम्युग्ल</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>शक्ति बचावकर</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>प्रदर्शन लागि पहिलो राख्नुहोस्, जसका शक्ति खपन र गर्मी उत्पादनले बढी गर्नेछ</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>प्रदर्शन र बैटरी जीवनकाललाई बराबरीमा राख्नुहोस्, प्रयोगको अनुसार अत्यन्त बारेमा रैकाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>बैटरी जीवनकाललाई पहिलो राख्नुहोस्, जसका प्रणाली केही प्रदर्शन छुन्नेको लागि शक्ति खपन घटाउनेछ</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>मिनिटहरू</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>घण्टा</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>कभी भनिन्छ छैन</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>गैरी सुरक्षा नीति</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>लास्पास छान छैन राख्न सकिन्छ</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>लास्पासमा कम्पulsary राख्न सकिन्छ %1 वा त्यो भन्दा बढी अक्षरहरू</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>लास्पासमा कम्पulsary राख्न सकिन्छ %1 वा त्यो भन्दा कम अक्षरहरू</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>पासवर्ड मा अंग्रेजी वर्ण (विशेष रूप से विचारले), अंकहरू वा विशेष सिम्बोलहरू (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/) शामिल र सकिन्हो।</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>%1 तयार वापरको पलिनड्रोम वर्णहरू अनुरोध</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>%1 तयार वापरको एकाधिकारिक वर्णहरू अनुरोध</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>%1 तयार वापरको वापरित वर्णहरू अनुरोध</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>पासवर्डमा उचित अक्षरहरू, निषुल्क अक्षरहरू, अंकहरू र विशेष सिम्बोलहरू (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/) शामिल र सकिन्हो।</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>पासवर्डमा 4 तयार वापरको पलिनड्रोम वर्णहरू भन्दा अधिक वापर गर्न सकिन्हो।</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>सामान्य शब्दहरू वा योजनाहरू उपयोग गर्ने पासवर्ड राख्न सकिन्हो।</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>कृपया शक्तिशाली पासवर्ड बनाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>यो पासवर्ड नियमहरू सम्म न छ</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>कैंट्रल केंद्र</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>कार्यवाही गरिनेको</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>देखाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>कार्यवाही गर्न थपिनेको</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>कार्यवाही गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>मान्यता अवेक्षणको अवधि अवधि अवेक्षित गरिनेको</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>त्रायावधीमा</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>त्राय अवधि अवेक्षित गरिनेको</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>स्पर्श रेखाले स्थिरको सेटिङहरू</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>स्पर्श रेखालाई स्थिरको सेटिङहरू बदलिने</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>यो सिस्टम वॉलपेपर लॉक गरिनेको छ। कृपया आपको प्रबंधकसँग संपर्क गर्नुहोस्।</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>खोज्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>स्थानीय रूपांतरणहरू</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>सप्ताहको पहिलो दिन</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>कार्यक्रम देखाउने तारिख</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>कार्यक्रम देखाउने बारिशको तारिख</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>कार्यक्रम देखाउने समय</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>कार्यक्रम देखाउने बारिशको समय</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>पनि चिन्ह</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>अंक</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>पेपर साइज</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>संग्रहालाई पालन गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>जनाउनुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>पासवर्ड सेट गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 वर्णहरू</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>पासवर्ड पनि देखाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>निश्चित गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>पासवर्डहरू मिलाउन सकिन्छन्</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>स्क्रीन सेवर</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>भावना</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>ल्यापनिज़ेरिझेड स्क्रीन सेवर</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>सेटिङ्ग</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>क्षुद्र समय</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 मिनिट</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 मिनिट</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 मिनिट</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 मिनिट</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 मिनिट</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 घण्टा</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>कभी भी नहीं</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>पुनर्निर्माण लाई पासवर्ड लाई आवश्यक</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>यात्रा चित्र शॉवेर्सेवर</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>सिस्टम शॉवेर्सेवर</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>परिचालन</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>समाचारको व्यापार लगाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>नाम:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>निष्पक्ष</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>कमाण्ड:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>स्क्रॅच्चर</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>कोई भनेर नहीं</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>लगाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>स्क्रॅच्चरहरू</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>सिस्टम स्क्रॅच्चर, लागि नियमित स्क्रॅच्चर</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>परिचालना स्क्रॅच्चरहरू</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>पनि भयो</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>सम्पादन</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>लगाउँदै</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>या</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>परिवर्तन गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>मूल्यावली वापर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>समग्र छान्ति वाहन लगाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>आउटपुट उपकरणहरू</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>उपकरणहरूको व्यवस्थापन गर्न अनुमति दिन अनुक्रम गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>इनपुट उपकरणहरू</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>संगीत प्रभावहरू</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>प्रणाली सुरु गर्दै</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>प्रणाली बन्द गर्दै</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>व्यक्तिगत वैश्यवास बाहेर छुट्छु</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>जागाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>स्पर्दा +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>जानकारी</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>कम बैटरी</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>लैंचरमा भेट्री डेस्कटॉपमा भेट्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>वित्तित गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>योड्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>योड्न छुट्छु</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>बदल्ने उपकरण संयोजित छ</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>बदल्ने उपकरण छुट्छ</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>अशुद्धि</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>रूपरेखा</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>आउटपुट स्पर्दा</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>आयनको वॉक्यूम वृद्धि</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>अगर आयनको वॉक्यूम 100% भन्दा बढी छ, त्यसको वायु प्रसारन उपकरनहरूमा विक्षेपित र खतरनाक छ</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>बाउँच</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>दाउँच</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>प्रसारन</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>कुनै भन्दा शोरलाई प्रसारन गर्ने उपकरन छैन</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>बाउँच दाउँच विनिमय</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>बाउँच र दाउँच चैनलहरू को एउटा चैनलमा मिलाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>कि वर्तमान आयनको उपकरन अक्षम गर्दा आयनको पौस्त्या अटोमेटिक रूपमा रुपाउन छ</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>शोर</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>बल्कोशीरा</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>माउस</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>अपडेट</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>स्क्रीन सेवर</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>अधिक वॉलपेपरहरू</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>अटो सामन्यकाल संकरिता</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>NTP सर्वर</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>सिस्टम काल र तिथि</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>स्वामित्व दिनुहोस्</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>सेटिङ्स</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>सर्वर पत्र</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>आवश्यक</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>NTP सर्वर ठेका अवश्यम्बार छैन शक्छ</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>24 घण्टावटा वर्गीकृत गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>सिस्टम समय खेड़ा</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>समय खेड़ा सूची</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>भेटि</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>बाँकी</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>दर्शन सेटिङहरू बचाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>%1 समयमा सेटिङहरू पुनरावृत्ति गरिफुन्छ.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>पुनरावृत्ति</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>बचाउनुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>समय खेड़ा वास्तविक गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>वर्तमान स्थान विश्लेषण गरेर समय खेड़ा निर्धारित गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>समय खेड़ा:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>नेपालिको शहर:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>रद्द गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>बचाउनुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>स्पर्श स्क्रीन</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>स्पर्श स्क्रीन जोड्ने जस्तै यो पानी पर सेट गर्नुहोस्</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>मूल विन्यास</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>स्पर्शपट्ट</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>चिह्नको गतिवैधिता</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>चालु गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>चालु गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>इनपुट गर्दा स्पर्शपट्ट अकार्य गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>क्लिक गर्ने लागि टप गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>प्राकृतिक चलन</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>तिरुनारायण फ़ींगर गेस्टर्स</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>चार फ़ींगर गेस्टर्स</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>समवायामी रंगकारी वेटरपेपर</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>सम्पादन गर्न सक्ने वेटरपेपरहरू</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>भरणको शैली</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>वेटरपेपरको शैक्षिक परिवर्तन</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>नर्वे</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 सेकेंड</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 मिनिट</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 मिनिट</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 मिनिट</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 मिनिट</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 मिनिट</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>लॉग इन</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>बेगुनी</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>जीवित वेटरपेपर</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 घण्टा</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>प्रस्तावना गर्न</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>लॉक स्क्रीन निर्धारित गर्न</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>डेस्कटॉप निर्धारित गर्न</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>निर्माण र प्रभावहरू</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>विंडो व्यवस्थाहरू</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>विंडोको बाँकी छोडको छेदको पार्दा</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>कुनै भनिता छैन</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>कम</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>बडा</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>विंडो गतिबद्ध गर्दा पारगरी फल्का प्रभाव सकारात्मक गर्नुहोस्</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>विंडो कम्प्रेस फल्का प्रभाव</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>मापन</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>मागिक लाम्प</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>पारगरी</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>निच्यो</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>उच्च</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>स्क्रिल बारहरू</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>स्क्रिल गर्दा दिखाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>दिखाइएको बनाउनुहोस्</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>कम्पेक्ट दर्शन</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>यदि सकारात्मक गरिनुहुन्छ, विंडोमा अधिक काउंटेन दिखाउँछ।</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>शीर्ष लाइनको उंचाई</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>केवल विंडो मैनेजर द्वारा खेल्ने वालो विंडोको शीर्ष लाइनका लागि उपयुक्त छ।</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>कामपन्न बहिरून कम</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>परम्परागत चिनियाँ (चिनियाँ हङकङ)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>परम्परागत चिनियाँ (चिनियाँ ताइवान)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>ताइवान चीन</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>станर्ड उज़र</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>अडिमिनिस्ट्रेटर</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>स्वाप्नित गरिएको</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>आपको होस्ट डोमेन सर्वर से सफलतापूर्वक हटाइएको छ</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>आपको होस्ट डोमेन सर्वरमा सफलतापूर्वक जुटेको छ</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>आपको होस्ट डोमेन सर्वर से निकाल्ने में फाल्ट भएको छ</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>आपको होस्ट डोमेन सर्वरमा जुट्ने में फाल्ट भएको छ</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>AD डोमेन सेटिंगहरू</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>पासवर्ड सामान भनिन्छ</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>विमानित</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>स्तूपी</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>यो चार्टरक्रेट विवादित छ [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>प्रणाली</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>विन्डो</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>कार्यक्षेत्र</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>सहायक उपकरणहरू</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>अनुकूलन</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>कुनै पनि छैन</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_nl.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"nl\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>Bewerken</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Gebruiker toevoegen</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Voer de volledige naam in</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Aanmeldinstellingen</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Aanmelden zonder wachtwoord</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Account verwijderen</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Groepsinstellingen</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Accountgroepen</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Klaar</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Groepsnaam</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Nieuwe groep</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Automatisch aanmelden</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Accountinformatie</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Accountnaam, volledige naam, soort account</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Accountnaam</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Volledige naam</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Soort account</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Gezichtsherkenning</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Ik geef hierbij aan dat ik kennisgenomen heb van en akkoord ga met</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Verklaring</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Volgende</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Je gezicht is herkend</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>Je gezicht is niet herkend</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Klaar</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuleren</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Opnieuw proberen</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuleren</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Klaar</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Vingerafdrukherkenning</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Plaats de gewenste vinger op de sensor en veeg van boven naar beneden. Haal je vinger vervolgens van de sensor.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Ik geef hierbij aan dat ik kennisgenomen heb van en akkoord ga met</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Verklaring</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Volgende</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Opnieuw proberen</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>‘Biometrische authenticatie’ is een functie die de gebruiker authenticeert. Deze functie wordt aangeboden door UnionTech Software Technology Co., Ltd. De biometrische gegevens worden vergeleken met de lokale gegevens op het apparaat, waarna er al dan niet verificatie plaatsvindt.\nLet op: UnionTech Software verzamelt geen biometrische gegevens en heeft er ook geen toegang tot, aangezien alles lokaal wordt opgeslagen op je apparaat. Schakel biometrische authenticatie alléén in op je persoonlijke apparaat en gebruik het alleen voor authenticatiedoeleinden. Schakel de functie uit en/of verwijder de biometrische gegevens van anderen. \n\nUnionTech Software doet onderzoek naar de verbetering en beveiliging van de functie, alsmede de juistheid en stabiliteit. Er is echter geen garantie dat de functie niet tijdelijk te omzeilen is. Zorg er dan ook voor dat je de functie naast andere inlogmethoden gebruikt op UnionTech OS. Heb je vragen of suggesties hieromtrent? Geef dan feedback via ‘Dienstverlening en ondersteuning’ op UnionTech OS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>Automatisch aanmelden kan slechts op één account worden ingeschakeld. Schakel deze functie uit bij het account ‘%1’.</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>Oké</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>Afbeeldingen</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>Mens</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Dier</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Landschap</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>Tekening</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>Emoji</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>Aangepast</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Stripstijl</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>3D-stijl</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Platte stijl</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuleren</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Opslaan</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Beeldscherm en pauzestand</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Beeldscherm uitschakelen na</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Scherm vergrendelen na</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Computer onderbreken na</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Actie na sluiten van deksel</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Actie na indrukken van aan-/uitknop</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Laag accuniveau</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Melding tonen als accuniveau laag is</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Automatisch pauzeren</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Automatisch slapen</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Laag accuniveau</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Accubeheer</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Resterend gebruik en resterende oplaadtijd tonen</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Maximale capaciteit</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Laag accuniveau</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Uitschakelen</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth is uitgeschakeld en de getoonde naam is ‘%1’</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth is ingeschakeld en de getoonde naam is ‘%1’</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Verbinding verbreken</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Verbinden</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Bestanden versturen</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Naam wijzigen</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Apparaat verwijderen</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Kies een bestand</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Bewerken</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Andere bluetoothapparaten toestaan dit apparaat te vinden</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Schakel uit om de bluetoothfunctie te kunnen gebruiken</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Vliegtuigstand</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Verbonden</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Niet verbonden</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Opstartinstellingen</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Klik op het menu om items aan te passen of versleep een afbeelding naar het venster om de achtergrond te wijzigen.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>Grub-opstartvertraging</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>Thema</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Vingerafdruk 1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Vingerafdruk 2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Vingerafdruk 3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Vingerafdruk 4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Vingerafdruk 5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Vingerafdruk 6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Vingerafdruk 7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Vingerafdruk 8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Vingerafdruk 9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Vingerafdruk 10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Scannen mislukt</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Deze vingerafdruk is al toegevoegd</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Scan andere vingers</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Onbekende fout</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Scannen onderbroken</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Niet herkend</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Te snel bewogen</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>De vinger is te snel bewogen - til niet op totdat dit wordt aangegeven</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Onduidelijke vingerafdruk</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Maak je vinger schoon of pas je vingerpositie aan en probeer het opnieuw</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Reeds gescand</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Pas je vingerpositie aan om je gehele vinger te scannen</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>De vinger is te snel bewogen - til niet op totdat dit wordt aangegeven</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Til je vinger op en plaats hem nogmaals op de lezer</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Houd je gezicht binnen het kader</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Je gezicht is herkend</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Alleen menselijke gezichten zijn toegestaan</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Ga iets naar achteren</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Ga iets naar voren</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Zorg dat alleen jóuw gezicht te zien is</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Zorg dat de cameralens schoon is</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Voer de herkenning niet uit in te donkere of overbelichte omgevingen</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Zorg dat je gezicht onbedekt is</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Het scannen is verlopen</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Annuleren</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Voer je wachtwoord in om de ntp-server te wijzigen</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Voer je wachtwoord in om de systeemtijdzone in te stellen</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Beeldscherm</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Deepin-gemeenschap</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Automatische ruisonderdrukking</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Invoervolume</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Invoerniveau</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Invoerapparaat</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Muis en touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalisatie</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Aangepast</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Systeemvak</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Geef aan welke pictogrammen op het dock moeten worden getoond</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Voer een wachtwoord in</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Het wachtwoord moet minimaal %1 tekens bevatten</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Het wachtwoord mag niet langer zijn dan %1 tekens</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Het wachtwoord mag alleen Nederlandstalige letters (hoofdlettergevoelig), cijfers of speciale tekens (~!@#$%^&amp;*()[]{}\\|/?,.&lt;&gt;) bevatten</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Maximaal %1 palindroomtekens</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Maximaal %1 monotone tekens</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Maximaal %1 dezelfde tekens</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Het wachtwoord moet hoofdletters, kleine letters, getallen en speciale tekens bevatten (~!@#$%^&amp;*()[]{}\\|/?,.&lt;&gt;)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Het wachtwoord mag niet meer dan 4 palindroomtekens bevatten</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Het wachtwoord mag geen algemene woorden of samenstellingen bevatten</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Stel een sterk wachtwoord samen</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Het wachtwoord voldoet niet aan de vereisten</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Instellingencentrum</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Geactiveerd</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Bekijk</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Activatie benodigd</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Activeren</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Verlopen</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Proefperiode</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Proefperiode verlopen</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Touchscreeninstellingen</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>De touchscreeninstellingen zijn aangepast</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Geluid</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Geluidseffecten</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Opstarten</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Afsluiten</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Afmelden</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Ontwaken</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volume +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Meldingen</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Laag accuniveau</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Bureaubladsnelkoppeling maken</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Prullenbak legen</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Aankoppelen</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Loskoppelen</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Verwijderbaar apparaat aangekoppeld</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Verwijderbaar apparaat losgekoppeld</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Foutmelding</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Modus</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Uitvoervolume</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Volumeverhoging</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Als het volume hoger dan 100% wordt ingesteld, is er kans op vervormd geluid en luidsprekerschade</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Links</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Rechts</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Uitvoerapparaat</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Wil je de beeldscherminstellingen opslaan?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>De instellingen worden over %1 sec. teruggezet.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Herstellen</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Opslaan</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Traditioneel Chinees (Chinees Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Traditioneel Chinees (Chinees Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan China</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Deze snelkoppeling conflicteert met [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Systeem</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Venster</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Werkruimte</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Hulpmiddelen</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Aangepast</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Geen</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_pa.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"pa\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\">ਮੁਕੰਮਲ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>ਮੁਕੰਮਲ</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\">ਮੁਕੰਮਲ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">ਸੰਭਾਲੋ</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\">ਪਾਸਵਰਡ ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">ਸੰਭਾਲੋ</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\">ਨੋਟੀਫਿਕੇਸ਼ਨ</translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\">ਪਾਸਵਰਡ ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\">ਬੰਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>ਪਾਸਵਰਡ ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>ਕੰਟਰੋਲ ਸੈਂਟਰ</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">ਸੰਭਾਲੋ</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">ਸੰਭਾਲੋ</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">ਸੰਭਾਲੋ</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>ਬੰਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>ਲਾਗ ਆਉਟ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>ਨੋਟੀਫਿਕੇਸ਼ਨ</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>ਸੰਭਾਲੋ</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">ਸੰਭਾਲੋ</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">ਰੱਦ ਕਰੋ</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\">ਪਾਸਵਰਡ ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_pam.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"pam\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>I-cancel</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Custom</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Kamalian</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Isinup</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Traditional Chinese (Chinese Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Traditional Chinese (Chinese Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan China</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Ing shortcut a ini maki conflict ya king [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>System</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Window</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Workspace</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>AssistiveTools</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Custom</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Ala</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_pl.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"pl\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>Edytuj</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Dodaj nowego użytkownika</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Ustaw imię i nazwisko</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Ustawienia logowania</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Logowanie bez hasła</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Usuń wybrane konto</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Ustawienia grupy</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Grupy konta</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Gotowe</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Nazwa grupy</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Dodaj grupę</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Automatyczne logowanie</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Informacje o koncie</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Nazwa konta, imię i nazwisko, typ konta</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Nazwa konta</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Imię i nazwisko</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Typ konta</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Imię i nazwisko jest za długie</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>Nazwa grupy nie powinna przekraczać 32 znaków</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>Nazwy grup nie mogą składać się wyłącznie z cyfr</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>Wyłącznie litery, cyfry, podkreślenia i myślniki. Musi zaczynać się od litery.</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>Nazwa grupy już istnieje</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>Szybkie logowanie, automatyczne logowanie, logowanie bez hasła</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>Cofnij</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>Ponów</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>Wytnij</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>Kopiuj</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>Wklej</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>Zaznacz wszystko</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>Szybkie logowanie</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation>Konto</translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation>Menedżer kont</translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation>Inne konta</translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Zapisz twarz</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Przeczytałem i akceptuję</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Ostrzeżenie</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Dalej</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Twarz zapisana</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>Nie udało się zapisać twarzy</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Gotowe</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Spróbuj ponownie zapisać</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation>Rozpoznawanie twarzy nie posiada funkcji wykrywania kontaktu z żywą osobą, przez co niesie ze sobą pewne zagrożenia.\nAby pomyślnie odblokować urządzenie:\n1. Twarz powinna być wyraźnie widoczna i nie należy jej zakrywać (czapkami, okularami, maskami itp.).\n2. Należy zapewnić odpowiednie oświetlenie i unikać bezpośredniego światła słonecznego.</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>„Uwierzytelnienie biometryczne” to funkcja uwierzytelnienia tożsamości użytkownika stworzona przez UnionTech Software Technology Co., Ltd. Dzięki „uwierzytelnieniu biometrycznemu” zebrane dane biometryczne będą porównywane z danymi przechowywanymi na urządzeniu, a tożsamość użytkownika zostanie zweryfikowana na podstawie wyniku porównania.\n\nNależy pamiętać, że UnionTech Software Technology Co., Ltd. nie będzie gromadzić, ani uzyskiwać dostępu do żadnych danych biometrycznych użytkownika, które będą przechowywane lokalnie na urządzeniu. Aktywuj uwierzytelnienie biometryczne wyłącznie na swoim urządzeniu osobistym i posługuj się wyłącznie swoimi informacjami biometrycznymi. Pamiętaj również, aby usunąć dane innych użytkowników, by uniknąć potencjalnych problemów w przyszłości.\n\nFirma UnionTech Software Technology Co., Ltd. jest zaangażowana w badania i poprawę jakości bezpieczeństwa, dokładności i stabilności uwierzytelniania biometrycznego. Jednak ze względu na czynniki środowiskowe, sprzętowe, techniczne i tym podobne oraz kontrole ryzyka związanego z tą technologią, nie możemy zagwarantować, że to rozwiązanie będzie działać za każdym razem. Dlatego nie należy traktować uwierzytelniania biometrycznego jako jedyny sposób logowania do systemu UOS. Jeśli masz jakiekolwiek pytania lub sugestie dotyczące uwierzytelniania biometrycznego, możesz przekazać opinię poprzez „Serwis i wsparcie” w systemie UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Gotowe</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Dodaj odcisk palca</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Połóż palec na czytniku i przesuwaj z góry na dół. Podnieś swój palec po zakończeniu.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Przeczytałem i akceptuję</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Ostrzeżenie</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Dalej</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Spróbuj ponownie</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>„Uwierzytelnienie biometryczne” to funkcja uwierzytelnienia tożsamości użytkownika stworzona przez UnionTech Software Technology Co., Ltd. Dzięki „uwierzytelnieniu biometrycznemu” zebrane dane biometryczne będą porównywane z danymi przechowywanymi na urządzeniu, a tożsamość użytkownika zostanie zweryfikowana na podstawie wyniku porównania.\n\nNależy pamiętać, że UnionTech Software Technology Co., Ltd. nie będzie gromadzić, ani uzyskiwać dostępu do żadnych danych biometrycznych użytkownika, które będą przechowywane lokalnie na urządzeniu. Aktywuj uwierzytelnienie biometryczne wyłącznie na swoim urządzeniu osobistym i posługuj się wyłącznie swoimi informacjami biometrycznymi. Pamiętaj również, aby usunąć dane innych użytkowników, by uniknąć potencjalnych problemów w przyszłości.\n\nFirma UnionTech Software Technology Co., Ltd. jest zaangażowana w badania i poprawę jakości bezpieczeństwa, dokładności i stabilności uwierzytelniania biometrycznego. Jednak ze względu na czynniki środowiskowe, sprzętowe, techniczne i tym podobne oraz kontrole ryzyka związanego z tą technologią, nie możemy zagwarantować, że to rozwiązanie będzie działać za każdym razem. Dlatego nie należy traktować uwierzytelniania biometrycznego jako jedyny sposób logowania do systemu UOS. Jeśli masz jakiekolwiek pytania lub sugestie dotyczące uwierzytelniania biometrycznego, możesz przekazać opinię poprzez „Serwis i wsparcie” w systemie UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>Zapisz tęczówkę</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Przeczytałem i akceptuję</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Ostrzeżenie</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Dalej</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Gotowe</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Spróbuj ponownie</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>Tęczówka zapisana</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>Nie udało się zapisać tęczówki</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>„Uwierzytelnienie biometryczne” to funkcja uwierzytelnienia tożsamości użytkownika stworzona przez UnionTech Software Technology Co., Ltd. Dzięki „uwierzytelnieniu biometrycznemu” zebrane dane biometryczne będą porównywane z danymi przechowywanymi na urządzeniu, a tożsamość użytkownika zostanie zweryfikowana na podstawie wyniku porównania.\n\nNależy pamiętać, że UnionTech Software Technology Co., Ltd. nie będzie gromadzić, ani uzyskiwać dostępu do żadnych danych biometrycznych użytkownika, które będą przechowywane lokalnie na urządzeniu. Aktywuj uwierzytelnienie biometryczne wyłącznie na swoim urządzeniu osobistym i posługuj się wyłącznie swoimi informacjami biometrycznymi. Pamiętaj również, aby usunąć dane innych użytkowników, by uniknąć potencjalnych problemów w przyszłości.\n\nFirma UnionTech Software Technology Co., Ltd. jest zaangażowana w badania i poprawę jakości bezpieczeństwa, dokładności i stabilności uwierzytelniania biometrycznego. Jednak ze względu na czynniki środowiskowe, sprzętowe, techniczne i tym podobne oraz kontrole ryzyka związanego z tą technologią, nie możemy zagwarantować, że to rozwiązanie będzie działać za każdym razem. Dlatego nie należy traktować uwierzytelniania biometrycznego jako jedyny sposób logowania do systemu UOS. Jeśli masz jakiekolwiek pytania lub sugestie dotyczące uwierzytelniania biometrycznego, możesz przekazać opinię poprzez „Serwis i wsparcie” w systemie UOS.</translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation>Skup wzrok na urządzeniu i upewnij się, że oczy znajdują się w obszarze skanowania.</translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Uwierzytelnienie biometryczne</translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Uwierzytelnienie biometryczne</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Twarz</translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation>Można dodać maksymalnie 5 twarzy</translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Odcisk palca</translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation>Rozpoznawanie tożsamości użytkownika skanując odcisk palca</translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation>Tęczówka</translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation>Rozpoznawanie tożsamości użytkownika skanując tęczówkę</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation>Używaj tylko liter, cyfr i znaków podkreślenia, nie więcej niż 15 znaków</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation>Używaj tylko liter, cyfr i podkreśleń</translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation>Nie więcej niż 15 znaków</translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation>Taka nazwa już istnieje</translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation>Dodaj nowe %1 ...</translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation>Nazwa użytkownika nie może być pusta</translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>&quot;Automatyczne logowanie&quot; może być włączone tylko dla jednego użytkownika, najpierw wyłącz tę opcję dla &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>Ok</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>Obrazy</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>Ludzie</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Zwierzęta</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Krajobraz</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>Ilustracja</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>Emoji</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>Własne</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Styl kreskówkowy</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Styl wymiarowy</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Styl płaski</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Zapisz</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Ekran i wstrzymanie</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Wyłącz monitor po</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Zablokuj ekran po</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Wstrzymaj komputer po</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Kiedy pokrywa jest zamknięta</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Po naciśnięciu przycisku zasilania</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Niski poziom baterii</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Powiadomienie o niskim poziomie baterii</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Automatycznie wstrzymaj</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Automatycznie hibernuj</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Próg niskiego naładowania</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Zarządzanie baterią</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Wyświetl pojemność i pozostały czas ładowania</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Maksymalna pojemność</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Niski poziom baterii</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Wyłącz</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation>Ustawienia Bluetooth, urządzenia</translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth jest wyłączony pod nazwą &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth jest włączony pod nazwą &quot;%1&quot;</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Rozłącz</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Połącz</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Wyślij pliki</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Zmień nazwę</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Usuń urządzenie</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Wybierz plik</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Edytuj</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Zezwól innym urządzeniom Bluetooth znaleźć to urządzenie</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Aby korzystać z funkcji Bluetooth, najpierw wyłącz</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Tryb samolotowy</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>Nazwa Bluetooth nie może przekraczać 64 znaków</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Połączono</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Nie połączono</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Ustawienia startu systemu</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Kliknij na wpis w menu, aby zmienić domyślną opcję uruchamiania lub przeciągnij obraz, aby zmienić tło.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>Opóźnienie startu Grub</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>Motyw</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Po zmianie motywu, możesz zobaczyć nowe tło w trakcie uruchamiania komputera</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Uwierzytelnienie menu rozruchu</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Po otwarciu, edytowanie menu wymaga wprowadzenia hasła.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Zmień hasło</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Zmień hasło uwierzytelnienia menu rozruchu</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Ustaw hasło uwierzytelnienia menu rozruchu</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Nazwa użytkownika:</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Nowe hasło:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Wymagane</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Hasło nie może być puste</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Hasła nie pasują do siebie</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Powtórz hasło:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Pewnie</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Animacja uruchamiania</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Dostosuj rozmiar animacji loga podczas startu systemu</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Zezwól aplikacjom poniżej na dostęp do kamery:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Odcisk palca 1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Odcisk palca 2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Odcisk palca 3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Odcisk palca 4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Odcisk palca 5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Odcisk palca 6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Odcisk palca 7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Odcisk palca 8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Odcisk palca 9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Odcisk palca 10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Skanowanie nie powiodło się</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Odcisk palca już istnieje</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Proszę zeskanować inne palce</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Nieznany błąd</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Skanowanie zatrzymane</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Nie można rozpoznać</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Przesunięto zbyt szybko</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Palec został przesunięty zbyt szybko, nie podnoś go bez otrzymania komunikatu</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Nieczytelny odcisk palca</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Oczyść palec lub dostosuj pozycję palca i spróbuj ponownie</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Już zeskanowane</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Dostosuj pozycję palca, aby w pełni zeskanować odcisk palca</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Palec został przesunięty zbyt szybko, proszę nie podnoś go bez otrzymania komunikatu</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Podnieś palec i ponownie umieść go na czujniku</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Ustaw swoją twarz wewnątrz ramki</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Twarz zapisana</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Proszę o ustawienie ludzkiej twarzy</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Oddal się od kamery</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Zbliż się do kamery</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Nie wprowadzaj więcej niż jednej twarzy wewnątrz ramki</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Upewnij się, że soczewka kamery jest czysta</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Nie skanuj w ciemnych, jaskrawych lub podświetlonych miejscach </translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Utrzymuj swoją twarz odkrytą</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Upłynął czas oczekiwania skanowania</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>Kamera zajęta!</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Kolor akcentu</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Ustawienia ikon</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Motyw ikon</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Dostosuj motyw ikon</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Motyw kursora</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Dostosuj motyw kursora</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Czy na pewno chcesz usunąć to konto?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Usuń katalog konta</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Usuń</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Przejdź do ustawień</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Ogólne</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Opóźnienie powtórzenia</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Krótka</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Długa</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Tempo powtórzenia</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Wolne</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Szybkie</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Klawiatura numeryczna</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>Przetestuj tutaj</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Komunikat Caps Lock</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Szybkość dwukrotnego kliknięcia</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Test dwukrotnego kliknięcia</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Tryb dla leworęcznych</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>Włącz klawiaturę</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>Ogólne</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>Szybkość przewijania</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation>Menu rozruchu</translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation>Zarządzaj menu rozruchu</translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation>Zarządzanie uprawnieniami konta root</translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation>Opcje programisty</translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation>Opcje debugowania dewelopera</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Duży rozmiar</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Mały rozmiar</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>Nie udało się uzyskać dostępu do konta root</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Najpierw zaloguj się na swoje konto Union ID</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>Nie można odczytać informacji o komputerze</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>Brak połączenia z siecią</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>Błąd wczytywania certyfikatu, nie można uzyskać dostępu do konta root</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>Weryfikacja sygnatury nie powiodła się, nie można uzyskać dostępu do konta root</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Zaakceptuj i dołącz do programu doświadczeń użytkownika</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>Ostrzeżenie o trybie programisty</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>Zaakceptuj i poproś o dostęp do konta root</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Ustawianie nowej animacji uruchamiania, proszę czekać</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>Ustawiono pomyślnie nową animacje uruchamiania</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>Ustawienia zostaną zastosowane po ponownym uruchomieniu</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation>Uruchom ponownie teraz</translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation>Pomiń</translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation>Uruchom ponownie urządzenie, aby włączyć ochronę systemu tylko-do-odczytu</translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>Hasło musi się składać z cyfr i liter</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>Hasło musi zawierać od 8 do 64 znaków</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Utwórz nowe konto</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Typ konta</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Nazwa użytkownika</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Wymagane</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Imię i nazwisko</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Opcjonalne</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Utwórz konto</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>Nazwa użytkownika nie może przekraczać 32 znaków</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>Nazwa użytkownika musi zawierać tylko litery, liczby, - i _</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>Imię i nazwisko nie może przekraczać 32 znaków</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>Imię i nazwisko nie może zawierać dwukropka</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation>mały</translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation>duży</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>Awatar nie został jeszcze ustawiony. Kliknij lub przeciągnij, aby załadować zdjęcie.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>Przesłany plik jest nieprawidłowy, wyślij go ponownie</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>dostępne</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Zaakceptuj i dołącz do programu doświadczeń użytkownika</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation>&lt;p&gt;Jesteśmy świadomi jak ważne Twoje dane osobiste są dla Ciebie. Mając to na uwadze, stworzyliśmy Politykę Prywatności, która tłumaczy jak zbieramy, używamy, udostępniamy, przenosimy, ujawniamy publicznie i przechowujemy Twoje informacje.&lt;/p&gt;&lt;p&gt;Możesz &lt;a href=&quot;%1&quot;&gt;kliknąć tutaj&lt;/a&gt;, aby zobaczyć naszą najnowszą politykę prywatności i/lub zobaczyć ją online poprzez odwiedziny &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;. Prosimy abyś uważnie przeczytał i przyswoił nasze działania w stosunku do prywatności konsumentów. Jeśli masz jakieś pytania, skontaktuj się z nami pod adresem: %2.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Przystąpienie do Programu doświadczeń użytkowników oznacza, że udzielasz nam zgody i upoważniasz nas do gromadzenia i wykorzystywania informacji o Twoim urządzeniu, systemie i aplikacjach. Jeśli nie zgadzasz się na przetwarzanie wyżej wymienionych danych, nie dołączaj do programu. Aby uzyskać szczegółowe informacje, zapoznaj się z Polityką prywatności Deepin (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Przystąpienie do Programu doświadczeń użytkowników oznacza, że udzielasz nam zgody i upoważniasz nas do gromadzenia i wykorzystywania informacji o Twoim urządzeniu, systemie i aplikacjach. Jeśli nie zgadzasz się na przetwarzanie wyżej wymienionych danych, nie dołączaj do programu. Aby uzyskać szczegółowe informacje, zapoznaj się z Polityką prywatności Deepin &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Ustawienia daty i godziny</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Data</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Rok</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Miesiąc</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Dzień</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Godzina</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Potwierdź</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation>Czas i data</translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation>Czas i data, ustawienia strefy czasowej</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation>Język i region</translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation>Język systemu, format regionu</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Jutro</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Wczoraj</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Dzisiaj</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 godziny wcześniej niż lokalnie</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 godziny później niż lokalnie</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Spacja</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Tydzień</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Pierwszy dzień tygodnia</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Krótka data</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Długa data</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Krótka godzina</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Długa godzina</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Symbol waluty</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Liczby dodatnie waluty</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Liczby ujemne waluty</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Symbol ułamka</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Symbol grupowania cyfr</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Grupowanie cyfr</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Rozmiar strony</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>Przykład</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Wymagane jest uwierzytelnienie do zmiany serwera NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Wymagane jest uwierzytelnienie, aby ustawić strefę czasową systemu</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Zapisz</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Centrum kontroli umożliwia zmianę ustawień systemowych.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>Powiąż WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>Powiązanie konta WeChat, pozwala na bezpieczne i szybkie logowanie na swoje konto %1 ID, jak i konta lokalne.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Niepowiązane</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Rozłączanie</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Powiąż</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Czy na pewno chcesz odłączyć konto WeChat?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Po odłączeniu konta WeChat, nie będziesz mógł skanować kodów QR, aby zalogować się do %1 ID lub konta lokalnego poprzez WeChat.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Jeszcze to przemyślę</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Łączenie kont lokalnych</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Po powiązaniu konta lokalnego, będziesz mógł korzystać z następujących funkcji:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>System logowania kodem WeChat</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Korzystaj z WeChat, które jest powiązane z Twoim %1 ID, aby logować się do swojego konta lokalnego.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Zresetuj hasło poprzez %1 ID</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Zresetuj swoje hasło lokalne poprzez %1 ID, jeśli je zapomnisz.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Aby skorzystać z powyższych funkcji, przejdź do Centrum kontroli - Konta włączając odpowiednie opcje.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Synchronizacja z chmurą</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>Zarządzaj swoim %1 ID i synchronizuj dane użytkownika pomiędzy urządzeniami.\nZaloguj się do %1 ID, aby uzyskać usługi i funkcje Przeglądarki, sklepu App Store i wiele więcej dostosowane do Twoich potrzeb.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Zaloguj się do %1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Automatyczna synchronizacja</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Przechowuj bezpiecznie w chmurze ustawienia systemowe i dane osobowe, synchronizując je między urządzeniami</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Ustawienia systemowe</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Ostatnia synchronizacja: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Wyczyść dane w chmurze</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>Czy na pewno wyczyścić ustawienia systemowe i dane użytkownika zapisane w chmurze?</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>Po usunięciu danych nie będzie można ich odzyskać!</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Wyczyść</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Usługa synchronizacji</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Konto i bezpieczeństwo</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Wyloguj</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Przejdź do ustawień sieciowych</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>Pseudonim musi zawierać od 1 do 32 znaków</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>Wystąpił błąd szyfrowania hasła</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Błędne hasło, pozostały %1 próby</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>Osiągnięto maksymalny limit dzienny zalogowań. Spróbuj zresetować hasło i spróbuj ponownie później.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Operacja zakończona pomyślnie</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>Pseudonim można zmienić tylko raz dziennie</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation>deepin ID</translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation>UOS ID</translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation>Usługi w chmurze</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>Chiny kontynentalne</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Inne regiony</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>Aby uzyskać dostęp do tej funkcji, najpierw aktywuj system</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Ze względu na lokalne prawa i regulacje w Twoim regionie, ta obecnie funkcja nie jest dostępna.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation>Aplikacje domyślne</translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation>Ustaw aplikację domyślną do otwierania różnych typów plików</translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation>Witryna</translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation>Poczta</translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation>Tekst</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Muzyka</translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation>Wideo</translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation>Zdjęcie</translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation>Terminal</translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Wybierz program domyślny do otworzenia &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>Dodaj</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Otwórz plik Desktop</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Aplikacje (*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Wszystkie pliki (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Dostęp do konta root</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Poproś o dostęp do konta root</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Wejście do trybu programisty umożliwia dostęp do konta root, co potencjalnie może naruszyć integralność systemu. Prosimy zachować ostrożność.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Dozwolone</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Wprowadź</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>Online</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Zaloguj się do UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Offline</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Importuj certyfikat</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Wybierz plik</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>Zalogowano pomyślnie na konto UOS ID, kliknij aby przejść do trybu programisty</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Najpierw zaloguj się na swoje konto UOS ID, aby kontynuować </translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1. Wyeksportuj informacje o komputerze</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Eksportuj</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3. Zaimportuj certyfikat</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Opcje debugowania dewelopera</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Poziom zbierania logów systemu</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Zwiększenie ilości zbieranych danych może wpłynąć na wydajność systemu i zwiększyć zużycie miejsca na dysku.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Wyłączone</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Debug</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>Zmiana tej opcji może zając parę minut, gdy zmiany zostaną wprowadzone pomyślnie, uruchom ponownie urządzenie.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>Aby zainstalować i uruchomić niepodpisane aplikacje, przejdź do &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt;Centrum bezpieczeństwa&lt;/a&gt; i dostosuj ustawienia. </translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation>Aby instalować niepodpisane aplikacje, przejdź do Centrum bezpieczeństwa, aby zmienić ustawienia.</translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation>Dołączono do trybu programisty</translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>OK</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation>2. Przejdź do %1 i pobierz certyfikat offline.</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation>Aby uzyskać dostęp do tej funkcji, najpierw aktywuj system</translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation>Ochrona systemu tylko-do-odczytu</translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation>Wyłączenie tej opcji zezwala na edycję katalogów systemowych, co zwiększa ryzyko uszkodzenia systemu.</translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation>Włącz ochronę, aby zablokować katalogi systemowe zwiększając stabilność systemu.</translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation>Bluetooth i inne urządzenia</translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Ostrzeżenie</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>Akceptuj</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Ekran</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation>Jasność, rozdzielczość, skalowanie itp.</translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation>100%</translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation>125%</translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation>150%</translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation>175%</translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation>200%</translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation>225%</translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation>250%</translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation>275%</translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation>300%</translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation>Duplikuj</translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation>Rozszerz</translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation>Domyślne</translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation>Dopasuj</translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation>Rozciągnij</translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation>Wyśrodkuj</translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation>Tylko na %1</translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation>Opcje wielu ekranów</translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation>Identyfikuj</translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation>Zmiana ułożenia ekranu nastąpi za %1s, po zatwierdzeniu ustawień</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>Tryb</translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation>Ekran główny</translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation>Ekran i układ ekranów</translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation>Jasność</translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation>Rozdzielczość</translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation>Zmień rozmiar pulpitu</translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation>Częstotliwość odświeżania</translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation>Obrót</translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation>Standardowy</translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation>90°</translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation>180°</translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation>270°</translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation>Monitor obsługuje tylko 100% skalowanie ekranu</translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation>Komfort oczu</translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation>Włącz komfort oczu</translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation>Dostosuj wyświetlacz do cieplejszych kolorów, redukując przy tym światło niebieskie</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Czas</translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation>Cały dzień</translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation>Od wschodu do zachodu</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Własny czas</translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation>od</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>do</translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation>Temperatura koloru</translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation>%1x%2 (Zalecane)</translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation>%1x%2</translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation>%1Hz (Zalecane)</translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation>%1Hz</translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation>Skalowanie</translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation>Pulpit i pasek zadań</translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation>Organizacja pulpitu, tryb paska zadań, ustawienia obszaru wtyczek</translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation>Dok</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>Tryb</translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation>Tryb klasyczny</translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation>Tryb wyśrodkowany</translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation>Rozmiar doku</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Mały</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Duży</translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation>Pozycja na ekranie</translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation>Góra</translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation>Dół</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Lewo</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Prawo</translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation>Status</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Zawsze wyświetlaj</translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation>Zawsze ukrywaj</translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation>Inteligentne ukrywanie</translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation>Wiele ekranów</translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation>Ustaw położenie paska zadań na ekranie</translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation>Tylko na głównym</translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation>Na ekranie, tam gdzie jest kursor</translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Strefa wtyczek</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Wybierz ikony, które pojawią się w doku</translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation>Zablokuj dok</translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation>Połącz ikony aplikacji</translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Zezwól aplikacjom poniżej na dostęp do plików i folderów:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Dokumenty</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Pulpit</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Zdjęcia</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Filmy</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Muzyka</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Pobrane</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>Folder</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Rozmiar</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Czcionka zwykła</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Czcionka o stałej szerokości</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Plany zasilania</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Ustawienia oszczędzania energii</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Automatyczne oszczędzanie energii przy niskim poziomie naładowania</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Próg niskiego naładowania</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Automatyczne oszczędzanie energii na baterii</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Ustawienia wybudzania</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Wymagaj hasło po wybudzeniu komputera</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Wymagaj hasło po wybudzeniu monitora</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Ustawienia wyłączania</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Zaplanowane wyłączenie</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Godzina</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Powtórzenie</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Raz</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Codziennie</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Dni robocze</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Własna data</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Zmniejsz jasność ekranu w trybie oszczędzania energii</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation>Trzy palce w górę</translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation>Trzy palce w dół</translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation>Trzy palce w lewo</translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation>Trzy palce w prawo</translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation>Stuknięcie trzema palcami</translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation>Cztery palce w górę</translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation>Cztery palce w dół</translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation>Cztery palce w lewo</translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation>Cztery palce w prawo</translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation>Stuknięcie czterema palcami</translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Optymalna wydajność</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Zrównoważony</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>Najlepsze efekty wizualne</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>Wyłącz wszystkie efekty interfejsu i okien dla wydajnego działania systemu.</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>Ogranicz niektóre animacje okien, aby zachować optymalną wydajność systemu.</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>Włącz wszystkie efekty interfejsu i okien dla najlepszych doświadczeń wizualnych.</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation>Klawiatura</translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation>Ustawienia ogólne, metody wprowadzania, skróty</translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Ogólne</translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Język</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Gotowe</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>Edytuj</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Inne języki</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>Dodaj</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Region</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>Rejon</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>System operacyjny i aplikacje mogą dostosowywać zawartość do kraju i regionu, w którym się znajdujesz</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>System operacyjny i aplikacje mogą dostosować format daty i godziny do kraju i regionu, w którym się znajdujesz</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Format regionu</translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Dodaj język</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Szukaj</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Dodaj</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Sposób logowania</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Hasło, WeChat, uwierzytelnienie biometryczne, klucz bezpieczeństwa</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Hasło</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Zmień hasło</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Dni ważności</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Zawsze</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Zresetuj hasło</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Deepin Community</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Automatyczne tłumienie hałasu</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Głośność wejściowa</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Poziom wejściowy</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Wejście</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Nie znaleziono urządzenia wejściowego audio</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Urządzenie wejściowe</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Mysz i panel dotykowy</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation>Ogólne, mysz, panel dotykowy</translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Ogólne</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Mysz</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Panel dotykowy</translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation>Mysz</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Szybkość wskaźnika</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Powolna</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Szybka</translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation>Rozmiar wskaźnika</translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation>Akceleracja myszy</translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation>Wyłącz panel dotykowy po podłączeniu myszy</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Naturalne przewijanie</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Mały</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Średni</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Duży</translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation>Ogromny</translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation>Niektóre aplikacje wymagają wylogowania lub ponownego uruchomienia systemu, aby zastosować zmiany.</translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Moje urządzenia</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Nazwa komputera</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Bez myślnika na początku lub końcu</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Nazwa systemu</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Wersja</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Wydanie</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Typ</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bity</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Autoryzacja</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Data instalacji systemu</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Kernel</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Platforma graficzna</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Procesor</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Pamięć</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>1-63 znaków</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation>Tryb Nie przeszkadzać, powiadomienia aplikacji</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Powiadomienia</translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation>Ustawienia Nie przeszkadzać</translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation>Powiadomienia aplikacji nie będą wyświetlane, dźwięki zostaną wyciszone, a wszystkie wiadomości będzie można przeczytać w centrum powiadomień.</translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation>Włącz tryb Nie przeszkadzać</translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation>Gdy ekran jest zablokowany</translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation>Liczba powiadomień widocznych na pulpicie</translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation>Powiadomienia aplikacji</translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation>Zezwól na powiadomienia</translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation>Wyświetl powiadomienia na pulpicie lub pokaż nieprzeczytane wiadomości w Centrum powiadomień</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Pulpit</translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation>Ekran blokady</translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation>Centrum powiadomień</translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation>Pokaż podgląd wiadomości</translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation>Odtwórz dźwięk</translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Inne urządzenia</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Pokaż urządzenia Bluetooth bez nazwy</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Aktualne hasło</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Wymagane</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Słabe</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Średnie</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Silne</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Powtórz hasło</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Wskazówka do hasła</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Opcjonalne</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Hasło nie może być puste</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Hasła nie pasują do siebie</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>Wskazówka jest widoczna dla wszystkich użytkowników. Nie podawaj tutaj swojego hasła.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>Nowe hasło</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>Nowe hasło powinno różnić się od bieżącego</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation>Hasło musi różnić się od nazwy użytkownika</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Zmień hasło</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Zresetuj hasło</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>Hasło musi zawierać co najmniej 8 znaków i kombinację co najmniej 3 typów: małe litery, duże litery, liczby i symbole.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Zresetowanie hasła spowoduje usunięcie danych zapisanych w keyringu.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalizacja</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Jasny</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Automatycznie</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Ciemny</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation>Usługa suplikanta nie jest dostępna</translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation>Błędny format koloru: %1</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation>Motyw</translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation>Wygląd</translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation>Efekty okien</translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation>Ustaw swoją tapetę i wygaszacz ekranu</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Wygaszacz ekranu</translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation>Kolory i ikony</translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation>Dostosuj kolor akcentu i motyw ikon</translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation>Czcionka i rozmiar czcionki</translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation>Zmień czcionkę systemu i jej rozmiar</translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation>Tapeta</translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation>Wybierz motyw jasny, ciemny lub automatycznie</translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation>Interfejs, efekty i zaokrąglony róg</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Własne</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Strefa wtyczek</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Wybierz, które wtyczki pojawią się w doku</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation>Ustawienia planu zasilania, ekran i wstrzymywanie</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Zasilanie</translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation>Ogólne</translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation>Plany zasilania, ustawienia oszczędzania energii, wybudzenie i wyłączanie</translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation>Podłączony</translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation>Ekran i wstrzymywanie</translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation>Na baterii</translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation>Ekran, wstrzymywanie i zarządzanie baterią</translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Wyłącz</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Wstrzymaj</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Hibernacja</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Wyłącz monitor</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Pokaż interfejs wyłączania</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Nic nie rób</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Ekran i wstrzymanie</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Wyłącz monitor po</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Zablokuj ekran po</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Wstrzymaj komputer po</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Kiedy pokrywa jest zamknięta</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Po naciśnięciu przycisku zasilania</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Wysoka wydajność</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Wydajność zbalansowana</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>Agresywnie dostosuj częstotliwość procesora zależnie od jego obciążenia</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Zrównoważony</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Oszczędzanie energii</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Wysoki priorytet wydajności, znacznie zwiększy pobór energii i generowanie ciepła</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Zbalansowana wydajność i zużycie baterii, automatycznie dostosuje się do zapotrzebowania</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Wysoki priorytet oszczędzania baterii, zmniejszy poboru energii kosztem wydajności</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Minutach</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Godzinie</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Nigdy</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation>Prywatność i bezpieczeństwo</translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation>Kamera, uprawnienia folderów</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation>Kamera</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation>Wybierz aplikacje z dostępem do kamery</translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation>Pliki i foldery</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation>Wybierz aplikacje z dostępem do plików i folderów</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Polityka prywatności</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Kopiuj adres linka</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Hasło nie może być puste</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Hasło musi zawierać co najmniej %1 znaków</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Hasło nie może przekraczać %1 znaków</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Hasło musi zawierać tylko litery angielskie (z rozróżnieniem wielkich i małych), cyfry lub symbole specjalne (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Nie więcej niż %1 znaki palindromowe</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Nie więcej niż %1 znaki monotoniczne</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Nie więcej niż %1 powtarzające się znaki</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Hasło musi zawierać wielkie litery, małe litery, cyfry i symbole (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Hasło nie może zawierać więcej niż 4 znaki palindromowe</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Nie używaj popularnych słów i ich kombinacji jako hasła</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Utwórz silne hasło</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Nie spełnia zasad dotyczących haseł</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Centrum kontroli</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Aktywowany</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Wyświetl</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Do aktywacji</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Aktywuj</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Wygasł</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>W okresie próbnym</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Okres próbny wygasł</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Ustawienia ekranu dotykowego</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Zmieniono ustawienia ekranu dotykowego</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Tapeta systemu jest zablokowana. Skontaktuj się ze swoim administratorem.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Szukaj</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Formaty domyślne</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Pierwszy dzień tygodnia</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Krótka data</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Długa data</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Krótka godzina</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Długa godzina</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Symbol waluty</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Cyfra</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Rozmiar strony</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Zapisz</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Format regionu</translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Szukaj</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Ustaw hasło</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 znaków</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Powtórz hasło</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Potwierdź</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Hasła nie pasują do siebie</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>Własny czas powtarzania</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Zapisz</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Wygaszacz ekranu</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>Podgląd</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Własny wygaszacz ekranu</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>Ustaw</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>Czas bezczynności</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minuta</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minut</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minut</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minut</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minut</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 godzina</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>nigdy</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Wymagaj hasło po wybudzeniu</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Pokaz slajdów jako wygaszacz ekranu</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Systemowe wygaszacze ekranu</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Szukaj</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>Brak wyników wyszukiwania</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Dodaj własny skrót</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Nazwa:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Wymagane</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Komenda:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Skrót</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Brak</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Dodaj</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation>Nazwa skrótu jest już w użyciu. Wybierz inną nazwę.</translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation>Zmień własny skrót</translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation>wprowadź skrót</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Zapisz</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation>kliknij Zapisz, aby zastosować skrót</translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation>kliknij Dodaj, aby zastosować skrót</translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Skróty</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Skrót systemowy, własny skrót</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Szukaj skrótów</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Gotowe</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>Edytuj</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Kliknij</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>lub</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Zamień</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Przywróć domyślne</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Dodaj własny skrót</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation>wprowadź skrót</translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Dźwięk</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation>Wyjście, wejście, efekty dźwiękowe, urządzenia</translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Urządzenia wyjściowe</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Wybierz urządzenia do włączenia</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Urządzenia wejściowe</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Dźwięki systemu</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation>Ustawienia</translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Dźwięki systemu</translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation>Włącz/wyłącz dźwięki systemu</translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation>Włącz/wyłącz urządzenia audio</translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation>Zarządzanie urządzeniami</translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Uruchomienie</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Wyłączenie</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Wylogowanie</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Wybudzenie</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Głośność +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Powiadomienie</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Niski poziom baterii</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Wysłanie ikony programu wywołującego na pulpit</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Opróżnienie kosza</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Podłączenie do zasilania</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Odłączenie od zasilania</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Urządzenie wymienne zostało podłączone</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Urządzenie wymienne zostało usunięte</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Błąd</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Tryb</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Głośność wyjściowa</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Zwiększenie głośności</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Jeśli głośność przekracza 100%, może to zniekształcić dźwięk i być szkodliwe dla głośnika</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Lewo</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Prawo</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Wyjście</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Nie znaleziono urządzenia wyjściowego audio</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Balans lewo-prawo</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Połącz lewy i prawy kanał w jeden</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Dźwięk zostanie automatycznie zatrzymany, gdy używane urządzenie audio zostanie odłączone</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation>Dźwięk mono</translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation>Automatyczna pauza</translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Urządzenie wyjściowe</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Dźwięk</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Zasilanie</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Mysz</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Aktualizacja</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Wygaszacz ekranu</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation>Ustawienia ogólne</translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation>System</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation>Informacje dodatkowe</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation>O tym komputerze</translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation>Wersja systemu, informacje o urządzeniu</translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation>Wyświetl notatkę oprogramowania open-source</translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation>Program doświadczeń użytkownika</translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation>Dołącz do programu doświadczeń użytkownika i pomóż nam ulepszać nasze produkty</translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation>Umowa licencyjna EULA</translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation>Wyświetl umowę licencyjną EULA</translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Polityka prywatności</translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation>Wyświetl informacje o polityce prywatności</translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation>Informacja oprogramowania open-source</translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Więcej tapet</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Automatyczna synchronizacja czasu</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Serwer NTP</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Data i czas systemu</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Dostosuj</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Ustawienia</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Adres serwera</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Wymagane</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>Adres serwera NTP nie może być pusty</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>Użyj formatu 24-godzinnego</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>Strefa czasowa systemu</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Lista stref czasowych</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Dodaj</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>od</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>do</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Zapisać ustawienia wyświetlania?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Ustawienia zostaną przywrócone za %1s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Przywróć</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Zapisz</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Dodaj strefę czasową</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Określ strefę czasową na podstawie aktualnej lokalizacji</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Strefa czasowa:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Najbliższe miasto:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Zapisz</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Ekran dotykowy</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Skonfiguruj po podłączeniu ekranu dotykowego</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Ustawienia podstawowe</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Panel dotykowy</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Szybkość wskaźnika</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Wolna</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Szybka</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Wyłącz panel dotykowy podczas pisania</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Klikanie stuknięciem</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Naturalne przewijanie</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Gesty trzech palców</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Gesty czterech palców</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation>Gesty</translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation>Ekran dotykowy</translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation>Konfiguracja ekranu dotykowego</translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Ogólne</translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Dołącz do programu doświadczeń użytkownika</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Kopiuj adres linka</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Weryfikacja bezpieczeństwa</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>Wybrane działanie wymaga potwierdzenia loginu i hasła</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 znaków</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Zapomniałeś hasła?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuluj</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Potwierdź</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation>Wacom</translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation>Konfiguracja Wacom</translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation>Wacom</translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation>Tryb pióra</translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation>Tryb myszy</translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation>Czułość nacisku</translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation>Lekka</translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation>Ciężka</translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation>Model</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>Tapeta</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Moje zdjęcia</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Tapeta systemowa</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Tapeta jednolitego koloru</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Własne tapety</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>Typ wypełnienia</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Automatycznie zmieniaj tapetę</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>nigdy</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 sekund</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minuta</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minut</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minut</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minut</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minut</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>Logowanie</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>Wybudzenie</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Animowana tapeta</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 godzina</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation>Tapety systemowe</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>rozwiń</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Ustaw blokadę ekranu</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Ustaw pulpit</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation>pokaż wszystkie - %1 przedmiotów</translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation>Dodaj zdjęcie</translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Efekty i interfejs</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Ustawienia okien</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Zaokrąglone rogi okna</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Brak</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Małe</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Duże</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Włącz efekty przezroczystości podczas ruszania oknem</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Efekt minimalizacji okna</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Skalowanie</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Magiczna lampa</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Nieprzezroczystość</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Niska</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Wysoka</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Pasek przewijania</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Tylko podczas przewijania</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Zawsze widoczny</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Wyświetlanie kompaktowe</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Po włączeniu, więcej zawartości jest widoczne na ekranie</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Wysokość paska tytułu</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Tylko dla aplikacji, których pasek tytułu jest rysowany przez menedżera okien.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Bardzo mała</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>Średnie</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>Średnia</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Chiński tradycyjny (Chiński Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Chiński tradycyjny (Chiński Tajwański)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation>Chiński Min Nan</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Tajwan Chiny</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>Nazwa użytkownika musi zawierać od 3 do 32 znaków</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>Pierwszy znak musi być literą lub cyfrą</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>Twoja nazwa użytkownika nie powinna zawierać tylko cyfr</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>Inne konta korzystają już z tej nazwy użytkownika</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Imię i nazwisko jest za długie</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>Imię i nazwisko jest już używane przez innych użytkowników</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Błędne hasło</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Użytkownik standardowy</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Administrator</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Dostosuj</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Twój host został pomyślnie usunięty z serwera domeny</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>Twój host pomyślnie dołączył do serwera domeny</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>Twój host nie mógł opuścić serwera domeny</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>Twój host nie mógł połączyć się z serwerem domeny</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>Ustawienia domeny AD</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>Hasła nie pasują do siebie</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Wymiarowe</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Płaskie</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation>Odbitka twarzy</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Twarz</translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation>Odblokuj urządzenie za pomocą swojej twarzy i skonfiguruj urządzenie później</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Odcisk palca</translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation>Umieść palec</translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation>Pewnie przyłóż palec do czujnika, aż zostaniesz poproszony o jego podniesienie</translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation>Podnieś palec</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Podnieś palec i ponownie umieść go na czujniku</translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation>Podnieś palec i zrób to jeszcze raz</translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation>Skanowanie zatrzymane</translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation>Zeskanuj krawędzie odcisku palca</translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation>Umieść krawędzie odcisku palca na czujniku</translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation>Dostosuj pozycję, aby zeskanować krawędzie odcisku palca</translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation>Dodano odcisk palca</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation>Tęczówka</translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation>Odblokuj urządzenie za pomocą swojej tęczówki i skonfiguruj urządzenie później</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Ten skrót jest w konflikcie z [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Hasło nie może być puste</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Hasło musi zawierać co najmniej %1 znaków</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Hasło nie może przekraczać %1 znaków</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Hasło musi zawierać tylko litery angielskie (z rozróżnieniem wielkich i małych), cyfry lub symbole specjalne (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Nie więcej niż %1 znaki palindromowe</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Nie więcej niż %1 znaki monotoniczne</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Nie więcej niż %1 powtarzające się znaki</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Hasło musi zawierać wielkie litery, małe litery, cyfry i symbole (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Hasło nie może zawierać więcej niż 4 znaki palindromowe</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Nie używaj popularnych słów i ich kombinacji jako hasła</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Utwórz silne hasło</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Nie spełnia zasad dotyczących haseł</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation>Hasło musi zawierać łącznie co najmniej %1 małych liter, wielkich liter, cyfr i symboli, jak i różnić się od nazwy użytkownika.</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>System</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Okno</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Obszar roboczy</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Narzędzia pomocnicze</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Własne</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Brak</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_ps.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"ps\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">ساتل</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">ساتل</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>دوديز</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">ساتل</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">ساتل</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">ساتل</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>ساتل</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\">ساتل</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\">دوديز</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_pt.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"pt\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Concluído</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Ligado</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Desligado</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Impressão digital1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Impressão digital2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Impressão digital3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Impressão digital4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Impressão digital5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Impressão digital6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Impressão digital7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Impressão digital8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Impressão digital9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Impressão digital10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Falha ao verificar</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>A impressão digital já existe</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Verificar outros dedos</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Erro desconhecido</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Verificação suspensa</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Não é possível reconhecer</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Movido demasiado depressa</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>O dedo moveu-se demasiado depressa. Não levantar o dedo até ser solicitado</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Impressão digital pouco clara</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Limpar ou ajustar a posição do dedo e tentar novamente</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Já verificado</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Ajustar a posição do dedo para verificar completamente a sua impressão digital</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>O dedo moveu-se demasiado depressa. Não levantar o dedo até ser solicitado</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Levante o dedo e coloque-o novamente sobre o sensor</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Posicione a sua face na moldura</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Rosto registado</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Use uma face humana por favor</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Afaste-se da câmara</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Aproxime-se da câmara</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Não posicione várias faces dentro da moldura</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Certifique-se que a lente da câmara está limpa</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Não usar em ambientes de iluminação reduzida ou excessiva</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Manter o rosto descoberto</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Tempo de verificação esgotado</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>É necessária autenticação para alterar o servidor NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>É necessária a autenticação para definir o fuso horário do sistema</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Ecrã</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Deepin Community</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Supressão automática de ruído</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Volume de entrada</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Nível de entrada</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Dispositivo de entrada</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Rato e Teclado</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalização</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Personalizado</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Área de plugins</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Seleccione quais ícones são visiveis na Dock</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>A palavra-passe não pode estar em branco</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>A palavra-passe deve ter pelo menos %1 caracteres</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>A palavra-passe não deve ter mais do que %1 caracteres</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>A palavra-passe apenas pode conter letras em Inglês (maiúsculas e minúsculas), números ou símbolos especiais (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Não mais de %1 caracteres palíndroma por favor</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Não mais de %1 caracteres mono tónicos por favor</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Não mais de %1 caracteres repetidos por favor</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>A palavra-passe deve conter letras maiúsculas, letras minúsculas, números e símbolos (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>A palavra-passe não deve conter mais de 4 caracteres palíndromo</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Não utilizar palavras e combinações comuns como palavra-passe</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Crie uma palavra-passe forte</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Não cumpre as regras de palavra-passe</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Centro de Controlo</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Ativado</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Ver</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>A ser ativado</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Ativar</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Expirado</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Em período experimental</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>O período experimental expirou</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Definições do ecrã tátil</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>As definições do ecrã tátil foram alteradas</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Som</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Efeitos sonoros</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Arrancar</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Encerrar</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Terminar sessão</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Retomar</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volume +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notificação</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Bateria fraca</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Enviar ícone no lançador para o ambiente de trabalho</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Esvaziar o lixo</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Ligar</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Desligar</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Dispositivo removível ligado</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Dispositivo removível retirado</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Erro</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Modo</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Volume de saída</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Aumento do volume</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Esquerda</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Direita</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Dispositivo de saída</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Reverter</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Guardar</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Chinês Tradicional (Chinês Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Chinês Tradicional (Chinês Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan China</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Este atalho entra em conflito com [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistema</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Janela</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Área de trabalho</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Ferramentas de Assistência</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Personalizado</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Nenhum</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_pt_BR.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"pt_BR\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>Editar</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Adicionar novo usuário</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Definir nome completo</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Configurações de login</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Entrar sem senha</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Excluir conta</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Configuração de grupo</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Grupos de contas</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Feito</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Nome do grupo</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Adicionar grupo</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Login automático</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Informações da conta</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Nome da conta, nome completo da conta, tipo de conta</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Nome da conta</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Nome completo da conta</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Tipo de conta</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>O nome completo é muito longo</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>Os nomes dos grupos não devem ter mais de 32 caracteres</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>Os nomes dos grupos não podem ter apenas números</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>Use apenas letras, números, sublinhados e travessões e deve começar com uma letra</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>O nome do grupo já está em uso</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>login rápido, login automático, login sem senha</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>Desfazer</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>Refazer</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>Recortar</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>Copiar</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>Colar</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>Selecionar tudo</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>Login rápido</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation>Contas</translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation>Gerenciador de contas</translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation>Outras contas</translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Cadastrar rosto</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Li e concordo com os termos</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Isenção de responsabilidade</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Próximo</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Rosto cadastrado</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>Falha ao cadastrar seu rosto</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Feito</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Tentar cadastrar seu rosto novamente</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation>O reconhecimento facial não possui detecção de vivacidade, e o método de verificação pode apresentar riscos.\nPara garantir o acesso:\n1. Mantenha o rosto visível e não o cubra (chapéus, óculos escuros, máscaras e etc.).\n2. Garanta boa iluminação e evite luz solar direta.</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>A autenticação biométrica é uma função de verificação de identidade do usuário fornecida pela UnionTech Software Technology Ltda. Por meio da autenticação biométrica, os dados biométricos coletados serão comparados com os armazenados no dispositivo, e a identidade do usuário será verificada com base no resultado da comparação.\n\nObserve que a UnionTech Software Technology Ltda. não coletará nem acessará suas informações biométricas, que serão armazenadas no seu dispositivo local. Ative a autenticação biométrica apenas em seu dispositivo pessoal e utilize apenas seus próprios dados biométricos para as operações relacionadas. Remova prontamente as informações biométricas de outras pessoas do dispositivo; caso contrário, você assumirá os riscos decorrentes disso.\n\nA UnionTech Software Technology Ltda. está comprometida em pesquisar e melhorar a segurança, a precisão e a estabilidade da autenticação biométrica. No entanto, devido a fatores ambientais, de hardware, técnicos e de controle de risco, não há garantia de que você será aprovado na autenticação biométrica em todas as tentativas. Portanto, não utilize a autenticação biométrica como a única forma de login no UOS. Se você tiver dúvidas ou sugestões ao utilizar a autenticação biométrica, poderá enviar feedback por meio de “Serviço e Suporte” no UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Concluído</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Cadastrar biometria</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Coloque o dedo que será usado no sensor de impressão digital e mova-o de baixo para cima. Após concluir a ação, levante o dedo.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Li e concordo com os termos</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Isenção de responsabilidade</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Próximo</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Tentar cadastrar biometria novamente</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>&quot;A autenticação biométrica&quot; ​​é uma função para autenticação de identidade do usuário fornecida pela UnionTech Software Technology Co., Ltd. Por meio da &quot;autenticação biométrica&quot;, os dados biométricos coletados serão comparados com os armazenados no dispositivo, e a identidade do usuário será verificada com base no resultado da comparação.Observe que a UnionTech Software Technology Co., Ltd. não coletará ou acessará suas informações biométricas, que serão armazenadas em seu dispositivo local. Habilite apenas a autenticação biométrica em seu dispositivo pessoal e use suas próprias informações biométricas para operações relacionadas, e desabilite ou exclua imediatamente as informações biométricas de outras pessoas naquele dispositivo, caso contrário, você arcará com o risco decorrente disso.A UnionTech Software Technology Co., Ltd. está comprometida em pesquisar e melhorar a segurança, precisão e estabilidade da autenticação biométrica. No entanto, devido a fatores ambientais, de equipamento, técnicos e outros e controle de risco, não há garantia de que você passará pela autenticação biométrica temporariamente. Portanto, não tome a autenticação biométrica como a única maneira de fazer login no UOS.  Caso tenha alguma dúvida ou sugestão ao usar a autenticação biométrica, você pode nos dar um feedback através de &quot;Serviço e Suporte&quot; no UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>Cadastrar íris</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Li e concordo com os</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Aviso</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Avançar</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Concluído</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Tentar cadastrar novamente</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>Íris cadastrada</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>Falha ao cadastrar a íris</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>A autenticação biométrica é uma função de verificação de identidade do usuário fornecida pela UnionTech Software Technology Ltda. Por meio da autenticação biométrica, os dados biométricos coletados serão comparados com os armazenados no dispositivo, e a identidade do usuário será verificada com base no resultado da comparação.\n\nObserve que a UnionTech Software Technology Ltda. não coletará nem acessará suas informações biométricas, que serão armazenadas no seu dispositivo local. Ative a autenticação biométrica apenas em seu dispositivo pessoal e utilize apenas seus próprios dados biométricos para as operações relacionadas. Remova prontamente as informações biométricas de outras pessoas do dispositivo; caso contrário, você assumirá os riscos decorrentes disso.\n\nA UnionTech Software Technology Ltda. está comprometida em pesquisar e melhorar a segurança, a precisão e a estabilidade da autenticação biométrica. No entanto, devido a fatores ambientais, de hardware, técnicos e de controle de risco, não há garantia de que você será aprovado na autenticação biométrica em todas as tentativas. Portanto, não utilize a autenticação biométrica como a única forma de login no UOS. Se você tiver dúvidas ou sugestões ao utilizar a autenticação biométrica, poderá enviar feedback por meio de “Serviço e Suporte” no UOS.</translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation>Mantenha os olhos voltados para o dispositivo e certifique-se de que ambos estejam dentro da área de captura</translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Autenticação biométrica</translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Autenticação biométrica</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Rosto</translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation>É possível cadastrar até 5 dados faciais</translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Impressão digital</translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation>Identificando o usuário por meio da leitura de impressões digitais</translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation>Íris</translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation>Reconhecimento de identidade por meio da leitura de íris</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation>Use apenas letras, números e sublinhados, com no máximo 15 caracteres</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation>Use apenas letras, números e sublinhados</translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation>No máximo 15 caracteres</translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation>Este nome já existe</translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation>Adicionar um novo %1 ...</translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation>O nome não pode estar vazio</translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>&quot;Auto Logon&quot; só pode ser habilitado apenas para uma conta, desabilite-o primeiro para a conta &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>Ok</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>Imagens</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>Humano</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Animal</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Cenário</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>Ilustração</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>Emoji</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>personalizada</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Estilo desenho animado</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Estilo dimensional</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Estilo plano</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Salvar</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Tela e suspensão</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>A tela será desligada após</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>A tela será bloqueada após</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>O computador será suspenso após</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Quando a tampa estiver fechada</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Quando o botão de energia é pressionado</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Bateria fraca</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Notificação de bateria fraca</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Suspensão automática</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Hibernação automática</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Limitador de bateria fraca</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Gerenciamento de bateria</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Exibir tempo restante de uso e carregamento</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Capacidade máxima</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Nível de bateria fraca</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Desativar</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation>Configurações de Bluetooth, dispositivos</translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>O Bluetooth está desligado e o nome é exibido como &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>O Bluetooth está ligado e o nome é exibido como &quot;%1&quot;</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Desconectar</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Conectar</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Enviar arquivos</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Renomear</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Renomear dispositivo</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Selecionar arquivo</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Editar</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Permitir que outros dispositivos Bluetooth encontrem este dispositivo</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Para usar a função Bluetooth, desligue</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Modo avião</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>O nome do Bluetooth não pode exceder 64 caracteres</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Conectado</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Desconectado</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Configurações de inicialização</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Você pode clicar no menu para alterar os itens de inicialização padrão ou arrastar a imagem para a janela para alterar a imagem de fundo.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>Atrasar inicialização</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>Tema</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Depois de ativar o tema, você pode ver o plano de fundo do tema ao ligar o computador</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Verificação do menu de inicialização</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Após a abertura, é necessário digitar uma senha para entrar no menu de edição.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Alterar a senha</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Alterar senha de verificação do menu de inicialização</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Defina a senha de autenticação do menu de inicialização</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Nome de usuário</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Nova senha:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Obrigatória</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>A senha não pode estar vazia</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>As senhas não correspondem</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Repita a senha:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Certeza</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Animação de inicialização</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Ajuste o tamanho do logotipo na interface de inicialização do sistema</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Permita que os aplicativos abaixo acessem sua câmera:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Impressão digital 1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Impressão digital 2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Impressão digital 3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Impressão digital 4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Impressão digital 5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Impressão digital 6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Impressão digital 7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Impressão digital 8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Impressão digital 9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Impressão digital 10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>A leitura falhou</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>A impressão digital já existe</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Digitalize os outros dedos</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Erro desconhecido</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Leitura suspensa</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Não reconhecida</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Moveu-se muito rápido</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>O dedo se moveu muito rápido; não levante até que seja solicitado</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Impressão digital pouco nítida</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Limpe o dedo ou ajuste a posição do mesmo, e tente novamente</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Já digitalizado</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Ajuste a posição do dedo para digitalizar totalmente a impressão digital</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>O dedo se moveu muito rápido; não levante até que seja solicitado</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Levante o dedo e posicione-o sobre o sensor</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Posicione seu rosto dentro da moldura</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Rosto cadastrado</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Posicione um rosto humano</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Afaste-se da câmera</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Aproxime-se da câmera</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Não posicione vários rostos dentro da moldura</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Certifique-se que a lente da câmera está limpa</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Não cadastre-se em ambientes escuros, claros ou com luz de fundo</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Mantenha seu rosto descoberto</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>O tempo limite da varredura expirou</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>Câmera ocupada!</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Cor de destaque</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Configurações dos ícones</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Tema dos ícones</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Personalizar o tema do ícone</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Tema do cursor</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Personalizar o tema do cursor </translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Excluir esta conta?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Excluir diretório da conta</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Excluir</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Ir para as configurações </translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Padrão</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Atraso de repetição</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Baixa</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Alta</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Taxa de repetição</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Lento</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Rápido</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Indicador visual do teclado numérico: ativado/desligado</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>teste aqui</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Indicador visual do Caps Lock: ativado/desligado</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Velocidade do clique duplo</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Teste do clique duplo</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Modo para canhotos</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>Habilitar teclado</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>Geral</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>Velocidade de rolagem</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation>Menu de inicialização</translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation>Gerenciar menu de inicialização</translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation>Gerenciamento de permissões de root para desenvolvedores</translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation>Opções do desenvolvedor</translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation>Opções de depuração do desenvolvedor</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Grande</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Pequeno</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>Falha ao obter acesso root</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Por favor, primeiro faça login no seu Union ID</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>Impossível ler as informações do PC</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>Nenhuma conexão de rede</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>O carregamento do certificado falhou, impossível obter acesso root</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>A verificação da assinatura falhou, impossível obter acesso root</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Concordar e aderir ao Programa de Experiência do Usuário</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>Isenção de responsabilidade do modo de desenvolvedor</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>Concordar e solicitar acesso root</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Começando a definir a nova animação de inicialização, aguarde um minuto</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>A configuração da nova animação de inicialização foi concluída</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>As configurações serão aplicadas após a reinicialização do sistema</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation>Reiniciar</translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation>Dispensar</translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation>Reinicie o dispositivo para concluir a aplicação das configurações de Proteção de Sistema Somente Leitura Solid</translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>A senha deve conter números e letras</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>A senha deve ter entre 8 e 64 caracteres</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Criar uma nova conta</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Tipo de conta</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Nome de usuário</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Obrigatório</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Nome completo</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Opcional</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Criar conta</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>O nome do usuário não pode ultrapassar 32 caracteres</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>O nome do usuário só pode conter letras, números, &quot;-&quot; e &quot;_&quot;</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>O nome completo não pode ultrapassar 32 caracteres</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>O nome completo não pode conter &quot;:&quot;</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation>Pequeno</translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation>Grande</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>Você ainda não carregou um avatar. Clique ou arraste e solte para carregar uma imagem</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>O tipo do arquivo enviado está incorreto, envie novamente</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>Disponível</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Concordar e aderir ao Programa de Experiência do Usuário</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation>&lt;p&gt;Estamos plenamente cientes da importância das suas informações pessoais para você. Por isso, temos uma Política de Privacidade que abrange como coletamos, usamos, compartilhamos, transferimos, divulgamos publicamente e armazenamos suas informações.&lt;/p&gt;&lt;p&gt;Você pode &lt;a href=&quot;%1&quot;&gt;clicar aqui&lt;/a&gt; para visualizar nossa política de privacidade mais recente e/ou consultá-la online acessando&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Leia atentamente e compreenda totalmente nossas práticas de privacidade do cliente. Se tiver dúvidas, entre em contato conosco em: %2.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Ao participar do Programa de Experiência do Usuário, você concede e autoriza a coleta e o uso de informações do seu dispositivo, sistema e aplicativos. Caso não concorde com a coleta e o uso dessas informações, não participe do Programa de Experiência do Usuário. Para mais detalhes, consulte a Política de Privacidade do deepin (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Ao participar do Programa de Experiência do Usuário, você concede e autoriza a coleta e o uso de informações do seu dispositivo, sistema e aplicativos. Caso não concorde com a coleta e o uso dessas informações, não participe. Para mais detalhes sobre o Programa de Experiência do Usuário, visite &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Configuração de data e hora</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Data</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Ano</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Mês</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Dia</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Hora</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirmar</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation>Data e hora</translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation>Data e hora, configurações de fuso horário</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation>Idioma e região</translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation>Idioma do sistema, formatos regionais</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Amanhã</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Ontem</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Hoje</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 horas antes do horário local</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 horas depois do horário local</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Espaço</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Semana</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Primeiro dia da semana</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Data abreviada</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Data completa</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Hora abreviada</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Hora completa</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Símbolo de moeda</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Formato de moeda positivo</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Formato de moeda negativo</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Símbolo decimal</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Símbolo de agrupamento de dígitos</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Agrupamento de dígitos</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Tamanho de página</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>Exemplo</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>A autenticação é necessária para alterar o servidor NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>A autenticação é necessária para alterar o fuso horário</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Salvar</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>As Configurações fornece todas as opções para a configuração do sistema.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>Vincular WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>Ao vincular o WeChat, você pode efetuar login com segurança e rapidez em sua ID %1 e contas locais.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Desvinculado</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Desvinculando</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Vincular</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Desvincular o WeChat?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Após desvincular o WeChat, você não poderá usá-lo para escanear o código QR para fazer login no ID %1 ou na conta local.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Deixe-me pensar sobre isso</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Vinculação de conta local</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Depois de vincular sua conta local, você pode usar as seguintes funções:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>Sistema de login no WeChat por escaneamento de código</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Use o WeChat, que está vinculado ao seu ID %1, para escanear o código e fazer login na sua conta local.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Redefinir senha via %1 ID</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Redefina sua senha local via %1 ID caso você a esqueça.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Para usar os recursos acima, acesse o Configurações - Contas e ative as opções correspondentes</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Cloud</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>Gerencie seu %1 ID e sincronize seus dados pessoais em todos os dispositivos.Faça login no %1 ID para obter recursos e serviços personalizados do navegador, App Store e muito mais.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Entrar com %1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Sincronização automática</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Armazene com segurança as configurações do sistema e os dados pessoais na nuvem e mantenha-os sincronizados em todos os dispositivos</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Configurações do sistema</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Última vez sincronizado: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Limpar dados da nuvem</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>Limpar as configurações do sistema e os dados pessoais salvos na nuvem?</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>Depois que os dados forem apagados, eles não poderão ser recuperados!</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Limpar</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Serviço de Sincronização</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Conta e Segurança</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Sair</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Ir para as configurações da web</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>O apelido deve ter entre 1 e 32 caracteres</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>Falha na criptografia da senha</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Senha errada, %1 chances restantes</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>O erro de login atingiu o limite hoje. Você pode redefinir a senha e tentar novamente.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Operação bem-sucedida</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>O apelido só pode ser modificado uma vez por dia</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation>deepin ID</translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation>UOS ID</translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation>Serviços em nuvem</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>China continental</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Outras regiões</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>O recurso não está disponível no momento, ative seu sistema primeiro</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Sujeito às leis e regulamentações locais, ele não está disponível em sua região no momento.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation>Aplicativo padrão</translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation>Definir o aplicativo padrão para abrir diferentes tipos de arquivos</translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation>Navegador</translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation>E-mail</translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation>Texto</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Música</translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation>Vídeo</translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation>Visualizador de imagem</translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation>Terminal</translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Por favor, escolha o programa padrão para abrir &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>Adicionar</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Abrir arquivo na área de trabalho</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Aplicativos (*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Todos os arquivos (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Acesso root</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Solicitar acesso root</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Após entrar no modo de desenvolvedor, você pode obter permissões de root, mas isso também pode danificar a integridade do sistema, portanto, use-o com cautela.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Permitido</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Entrar</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>Online</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Entrar com UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Offline</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Importar Certificado </translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Selecionar arquivo</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>Seu ID UOS foi conectado, clique para entrar no modo de desenvolvedor</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Entre com seu UOS ID para continuar</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1.Exportar informações do PC</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Exportar</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.Importar certificado</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Opções do desenvolvedor e depuração</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Nível de registro do sistema</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Alterar as opções resulta em registros mais detalhados que podem degradar o desempenho do sistema e/ou ocupar mais espaço de armazenamento.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Desativado</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Depurar</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>A alteração da opção pode levar até um minuto para ser processada. Após receber um prompt de configuração bem-sucedida, reinicie o dispositivo para que a configuração tenha efeito.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>Para instalar e executar aplicativos não assinados, acesse a &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Central de Segurança &lt;/a&gt; para alterar as configurações.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation>Para instalar e executar aplicativos não assinados, acesse a Central de Segurança e altere as configurações.</translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation>Você entrou no modo desenvolvedor</translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>Ok</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation>2 . Acesse %1 para baixar o certificado offline.</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation>O recurso não está disponível no momento. Ative o sistema primeiro.</translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation>Proteção de Sistema Somente Leitura Solid</translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation>Desativar a proteção desbloqueia os diretórios do sistema. Esta ação apresenta alto risco de danos ao sistema.</translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation>Ativar a proteção bloqueia os diretórios do sistema e garante maior estabilidade.</translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation>Bluetooth e dispositivos</translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Aviso legal</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>Concordo</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Tela</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation>Brilho, resolução e escala</translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation>100%</translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation>125%</translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation>150%</translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation>175%</translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation>200%</translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation>225%</translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation>250%</translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation>275%</translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation>300%</translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation>Duplicar</translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation>Estender</translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation>Padrão</translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation>Preencher</translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation>Esticar</translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation>Centralizar</translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation>Apenas em %1</translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation>Configurações de vários monitores</translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation>Identificar</translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation>O rearranjo das telas será aplicado em %1s após as alterações</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>Modo</translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation>Tela principal</translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation>Exibição e layout</translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation>Brilho</translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation>Resolução</translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation>Redimensionar a área de trabalho</translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation>Taxa de atualização</translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation>Rotação</translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation>Padrão</translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation>90°</translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation>180°</translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation>270°</translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation>O monitor suporta apenas escala de exibição de 100%</translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation>Conforto ocular</translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation>Ativar conforto ocular</translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation>Ajusta a exibição da tela para cores mais quentes, reduzindo a luz azul</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Formato de hora</translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation>Dia inteiro</translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation>Pôr do sol ao nascer do sol</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Horário personalizado</translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation>de</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>até</translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation>Temperatura de cor</translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation>%1x%2 (Recomendado)</translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation>%1x%2</translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation>%1Hz (Recomendado)</translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation>%1Hz</translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation>Escala</translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation>Área de trabalho e barra de tarefas</translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation>Organização da área de trabalho, modo da barra de tarefas, configurações da área de plugins</translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation>Fixar no dock</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>Modo</translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation>Clássico</translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation>Moderno</translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation>Tamanho do dock</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Pequeno</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Grande</translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation>Posição na tela</translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation>Superior</translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation>Inferior</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Esquerdo</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Direito</translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation>Visibilidade</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Sempre exibir</translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation>Sempre ocultar</translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation>Ocultar automaticamente</translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation>Várias telas</translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation>Definir a posição da barra de tarefas na tela</translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation>Apenas na principal</translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation>Na tela onde está o cursor</translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Área de plugins</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Selecione quais ícones aparecem no dock</translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation>Bloquear dock</translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation>Agrupar ícones de aplicativos</translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Permitir que os aplicativos abaixo acessem esses arquivos e pastas:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Documentos</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Área de trabalho</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Fotos</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Vídeos</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Música</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Downloads</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>Pasta</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Tamanho</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Fonte padrão</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Fonte monoespaçada</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Planos de energia</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Configurações de economia de energia</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Economia automática de energia em caso de bateria fraca</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Limitador de bateria fraca </translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Economia automática de energia na bateria</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Configurações ao despertar</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Solicitar senha ao acordar o computador</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Solicitar senha ao acordar o monitor</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Configurações de desligamento</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Desligamento programado</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Hora</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Repetir</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Uma vez</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Diariamente</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Dias úteis</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Hora personalizada</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Reduzir o brilho da tela no modo de economia de energia em</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation>Deslizar três dedos para cima</translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation>Deslizar três dedos para baixo</translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation>Deslizar três dedos para a esquerda</translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation>Deslizar três dedos para a direita</translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation>Toque com três dedos</translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation>Deslizar quatro dedos para cima</translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation>Deslizar quatro dedos para baixo</translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation>Deslizar quatro dedos para a esquerda</translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation>Deslizar quatro dedos para a direita</translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation>Toque com quatro dedos</translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Alto desempenho</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Equilibrado</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>Visual aprimorado</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>Desabilite todos os efeitos de interface e janela para um desempenho eficiente do sistema.</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>Limite alguns efeitos de janela para obter visuais excelentes, mantendo o bom desempenho do sistema.</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>Habilite todos os efeitos de interface e janela para obter uma melhor experiência visual.</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation>Teclado</translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation>Configurações gerais, método de entrada, atalhos</translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Comum</translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Idioma</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Feito</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>Editar</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Outras idiomas</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>Adicionar</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Região</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>País ou região</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>O sistema operacional e os aplicativos podem fornecer conteúdo local com base em seu país e região</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>O sistema operacional e os aplicativos podem definir formatos de data e hora com base em formatos regionais</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Formato regional</translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Adicionar idioma</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Pesquisar</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Adicionar</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Método de login</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Senha, wechat, autenticação biométrica, senha de segurança</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Senha</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Modificar senha</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Dias de validade</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Sempre</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Redefinir senha</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 deepin Community</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Ltda.</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Cancelamento Automático de Ruído</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Volume de entrada</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Nível de entrada</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Entrada</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Nenhum dispositivo de entrada de som encontrado</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Dispositivo de entrada</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Mouse e Touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation>Comum, Mouse, Touchpad</translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Comum</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Mouse</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Touchpad</translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation>Mouse</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Velocidade do ponteiro</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Lento</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Rápido</translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation>Tamanho do ponteiro</translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation>Aceleração do mouse</translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation>Desativar o touchpad quando um mouse estiver conectado</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Rolagem natural</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Pequeno</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Médio</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Grande</translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation>Extra grande</translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation>Alguns aplicativos exigem sair da sessão ou reiniciar o sistema para que as alterações tenham efeito</translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Dispositivos pareados</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Nome do computador</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Não pode começar ou terminar com traços</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Sistema operacional</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Versão</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Edição</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Arquitetura</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Autorização</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Data de instalação do sistema</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Kernel</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Servidor de exibição</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Processador</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Memória RAM</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>1 a 63 caracteres, por favor</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation>Modo não perturbe, notificações de aplicativos</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notificações</translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation>Configurações do Não Perturbe</translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation>As notificações de aplicativos não serão exibidas na área de trabalho e os sons serão silenciados mas você pode ver todas as mensagens na central de notificações.</translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation>Ativar Não Perturbe</translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation>Quando a tela estiver bloqueada</translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation>Número de notificações exibidas na área de trabalho</translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation>Notificações de aplicativos</translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation>Permitir notificações</translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation>Exibir notificações na área de trabalho ou mostrar mensagens não lidas na central de notificações</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Área de Trabalho</translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation>Tela de bloqueio</translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation>Central de Notificações</translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation>Exibir prévia da mensagem</translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation>Reproduzir som</translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Outros dispositivos</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Mostrar dispositivos Bluetooth sem nomes</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Senha atual</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Obrigatória</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Fraca</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Média</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Forte</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Repita a sua senha</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Dica de senha</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Opcional</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>A senha não pode estar vazia</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>As senhas não coincidem</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>A dica é visível para todos os usuários. Não inclua a senha aqui</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>Nova senha</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>A nova senha deve ser diferente da atual</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation>A senha não pode ser igual ao nome de usuário</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Alterar senha</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Redefinir senha</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>O comprimento da senha deve ter pelo menos 8 caracteres, e a senha deve conter uma combinação de pelo menos 3 dos seguintes: letras maiúsculas, letras minúsculas, números e símbolos. Este tipo de senha é mais seguro.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Redefinir a senha apagará os dados armazenados no chaveiro.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalização</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Tema claro</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Automático</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Tema escuro</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation>O serviço de seleção não está disponível</translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation>Formato de cor inválido %1</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation>Tema</translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation>Aparência</translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation>Efeitos visuais</translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation>Personalize seu papel de parede e protetor de tela</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Protetor de tela</translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation>Cores e ícones</translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation>Ajustar a cor de destaque e os ícones do tema</translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation>Fonte e tamanho da fonte</translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation>Alterar a fonte e o tamanho do sistema</translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation>Papel de parede</translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation>Selecionar o tema claro, escuro ou automático</translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation>Interface e efeitos, cantos arredondados</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Personalizar</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Área de complementos</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Selecione quais ícones devem aparecer no dock</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation>Configurações de economia de energia, tela e suspensão</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Energia</translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation>Geral</translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation>Planos de energia, configurações de economia de energia, configurações de despertar, configurações de desligamento</translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation>Na tomada</translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation>Tela e suspensão</translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation>Na bateria</translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation>Tela e suspensão, bateria fraca e gerenciamento de bateria</translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Desligar</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Suspender</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Hibernar</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Desligar a tela</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Exibir menu de energia</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Não fazer nada</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Tela e suspensão</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>A tela será desligada após</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>A tela será bloqueada após</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>O computador será suspenso após</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Quando a tampa estiver fechada</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Quando o botão de energia é pressionado</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Alto desempenho</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Equilibrado</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>Ajustar agressivamente a frequência operacional da CPU com base na condição de carga da CPU</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Equilibrado</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Economia de energia</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Prioriza o desempenho, o que aumentará significativamente o consumo de energia e a geração de calor</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Equilíbrio entre desempenho e duração da bateria, ajustado automaticamente de acordo com o uso</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Priorizar a duração da bateria, significa que o sistema sacrificará parte do desempenho para reduzir o consumo de energia</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>minutos</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Hora</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Nunca</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation>Privacidade e segurança</translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation>Câmera, permissões de pasta</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation>Câmera</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation>Escolha se o aplicativo tem acesso à câmera</translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation>Arquivos e pastas</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation>Escolha se o aplicativo tem acesso a arquivos e pastas</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Política de privacidade</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Copiar endereço do link</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>A senha não pode ficar vazia</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>A senha deve ter pelo menos %1 caracteres</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>A senha não deve ter mais do que %1 caracteres</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>A senha pode conter apenas letras em Inglês (sensível a maiúsculas e minúsculas), números ou símbolos especiais (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Não mais do que %1 caracteres palíndromos, por favor</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Não mais que %1 caracteres monotônicos, por favor</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Não mais do que %1 caracteres repetidos, por favor</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>A senha deve conter letras maiúsculas, letras minúsculas, números e símbolos (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>A senha não deve conter mais do que 4 caracteres palíndromos</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Não utilize palavras comuns e combinações como senha</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Crie uma senha forte</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Não atende às regras de senha</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Configurações</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Ativado</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Exibir</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Para ser ativado</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Ativar</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Expirado</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Em período de avaliação</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>A avaliação expirou</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Configurações do Touch Screen</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>As configurações do touch screen foram alteradas</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Este papel de parede do sistema está bloqueado. Entre em contato com seu administrador.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Pesquisar</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Formatos padrão</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Primeiro dia da semana</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Data abreviada</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Data completa</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Hora abreviada</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Hora completa</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Símbolo de moeda</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Dígito</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Tamanho de página</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Salvar</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Formato regional</translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Pesquisar</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Definir uma senha</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 caracteres</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Repita a senha</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirmar</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>As senhas não coincidem</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>Personalize o tempo de repetição</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Salvar</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Protetor de tela</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>pré-visualização</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Protetor de tela personalizado</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>Configuração</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>Tempo ocioso</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minuto</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minutos</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minutos</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minutos</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minutos</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 hora</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>Nunca</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Senha necessária para recuperação</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Protetor de tela e apresentação de slides de imagens</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Protetor de tela do sistema</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Pesquisar</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>Nenhum resultado de pesquisa</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Adicionar atalho personalizado</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Nome:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Obrigatório</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Comando:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Atalho</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Nenhum</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Adicionar</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation>O nome do atalho já está em uso. Escolha um nome diferente.</translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation>Alterar atalho personalizado</translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation>Insira uma tecla de atalho</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Salvar</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation>Clique em Salvar para ativar esta tecla de atalho</translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation>Clique em Adicionar para ativar esta tecla de atalho</translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Atalhos</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Atalho do sistema, atalho personalizado</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Pesquisar atalhos</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Feito</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>Editar</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Clique</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>ou</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Substituir</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Restaurar padrão</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Adicionar atalho personalizado</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation>Insira um novo atalho de teclado</translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Som</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation>Saída, entrada, efeitos sonoros, dispositivos</translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Dispositivo de saída</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Selecione se deseja habilitar os dispositivos</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Dispositivo de entrada</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Efeitos sonoros</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation>Configurações</translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Efeitos sonoros</translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation>Ativar/desativar efeitos sonoros</translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation>Ativar/desativar dispositivos de áudio</translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation>Gerenciamento de dispositivos</translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Inicialização</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Desligar</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Sair</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Ligar</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volume +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notificações</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Bateria fraca</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Enviar ícone do Lançador para a Área de Trabalho</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Esvaziar Lixeira</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Plugar</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Desplugar</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Dispositivo removível conectado</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Dispositivo removível desconectado</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Erro</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Modo</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Volume de saída</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Amplificar volume</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Se o volume for superior a 100%, haverá distorção do áudio e o alto-falante poderá ser danificado</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Esquerdo</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Direito</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Saída</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Nenhum dispositivo de saída de som encontrado</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Balanço de áudio</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Mesclar canais esquerdo e direito em um único canal</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>O áudio será pausado automaticamente quando o dispositivo de áudio atual for desconectado</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation>Áudio mono</translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation>Pausar automaticamente</translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Dispositivo de Saída</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Som</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Energia</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Mouse</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Atualização</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Protetor de tela</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation>Configurações comuns</translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation>Sistema</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation>Informações auxiliares</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation>Sobre este computador</translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation>Versão do sistema, informações do dispositivo</translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation>Exibir aviso de software de código aberto</translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation>Programa de experiência do usuário</translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation>Participar do programa de experiência do usuário para ajudar a melhorar o produto</translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation>Contrato de licença de usuário final</translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation>Exibir contrato de licença de usuário final</translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Política de privacidade</translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation>Exibir informações sobre a política de privacidade</translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation>Aviso de software de código aberto</translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Mais papéis de parede</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Sincronização automática de horário</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Servidor NTP</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Sistema data e hora</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Personalizar</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Configurações</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Endereço do servidor</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Obrigatório</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>O endereço do servidor NTP não pode estar vazio</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>Usar formato 24 horas</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>Fuso horário do sistema</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Lista de fusos horários</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Adicionar</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>A partir</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>Até</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Salvar configurações de exibição?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>As configurações serão revertidas em %1s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Reverter</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Salvar</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Adicionar fuso horário</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Determinar o fuso horário com base na localização atual</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Fuso horário:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Cidade mais próxima:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Salvar</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Tela sensível ao toque</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Configure aqui ao conectar a tela sensível ao toque</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Configurações básicas</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Touchpad</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Velocidade do ponteiro</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Lento</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Rápido</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Desativar touchpad durante a digitação</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Toque para clicar</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Rolagem natural</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Gestos de três dedos</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Gestos de quatro dedos</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation>Gestos</translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation>Touchscreen</translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation>Configurando touchscreen</translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Comum</translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Participar do Programa de Experiência do Usuário</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Copiar endereço do link</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Verificação de segurança</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>A ação é sensível, digite primeiro a senha de login</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 caracteres</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Esqueceu sua senha?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Cancelar</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Confirmar</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation>Wacom</translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation>Configurando Wacom</translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation>Wacom</translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation>Modo de caneta</translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation>Modo de mouse</translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation>Sensibilidade à pressão</translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation>Claro</translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation>Forte</translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation>Modelo</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>Papel de parede</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Minhas fotos</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Papel de parede do sistema</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Papel de parede de cor sólida</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Papéis de parede personalizáveis</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>estilo de preenchimento</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Alterar automaticamente o papel de parede</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>Nunca</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 segundos</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minuto</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minutos</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minutos</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minutos</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minutos</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>Login</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>Ligar</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Papel de parede animado</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 hora</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation>Papéis de parede do sistema</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>Exibir parcialmente</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Definir tela de bloqueio</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Definir área de trabalho</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation>Exibir tudo - %1 itens</translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation>Adicionar imagem</translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Interface e efeitos</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Configurações da janela</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Cantos arredondados das janelas</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Nenhum</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Pequeno</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Grande</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Efeitos de transparência ao mover janelas</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Efeito ao minimizar janelas</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Escala</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Lâmpada mágica</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Opacidade</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Baixa</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Alta</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Barras de rolagem</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Exibir ao rolar</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Sempre exibir</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Exibição compacta</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Se ativado, mais conteúdo será exibido na janela.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Altura da barra de título</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Adequado somente para barras de título de janelas de aplicativos desenhadas pelo gerenciador de janelas.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Mínima</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>Médio</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>Médio</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Chinês Tradicional (Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Chinês Tradicional (Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation>Min Nan Chinês</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>O nome de usuário deve ter entre 3 e 32 caracteres</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>O primeiro caractere deve ser uma letra ou número</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>Seu nome de usuário não deve ter apenas números</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>O nome de usuário foi usado por outra conta de usuário</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>O nome completo é muito longo</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>O nome completo foi usado por outra conta de usuário</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Senha incorreta</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Usuário padrão</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Administrador</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Personalizado</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Seu host foi removido do servidor de domínio com sucesso</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>Seu host se conectou ao servidor de domínio com sucesso</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>Seu host não conseguiu se desconectar do servidor de domínio</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>Seu host falhou ao ingressar no servidor de domínio</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>Configurações de domínio do AD</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>As senhas não coincidem</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Dimensional</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Plano</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation>Biometria facial</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Rosto</translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation>Use seu rosto para desbloquear o dispositivo e configurar depois</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Impressão digital</translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation>Posicione seu dedo</translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation>Posicione o dedo firmemente no sensor até ser solicitado a levantá-lo</translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation>Levante o dedo</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Levante o dedo e posicione-o novamente no sensor</translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation>Levante o dedo e repita o processo</translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation>Escaneamento suspenso</translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation>Escaneie as bordas da sua impressão digital</translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation>Posicione as bordas da sua impressão digital no sensor</translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation>Ajuste a posição para escanear as bordas da sua impressão digital</translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation>Impressão digital adicionada</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation>Íris</translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation>Use sua íris para desbloquear o dispositivo e configurar depois</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Este atalho entra em conflito com [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>A senha não pode ficar vazia</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>A senha deve ter pelo menos %1 caracteres</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>A senha não deve ter mais que %1 caracteres</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>A senha pode conter apenas letras (maiúsculas e minúsculas), números ou símbolos especiais (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Não mais que %1 caracteres palíndromos, por favor</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Não mais que %1 caracteres monótonos, por favor</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Não mais que %1 caracteres repetidos, por favor</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>A senha deve conter letras maiúsculas, letras minúsculas, números e símbolos (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>A senha não deve conter mais de 4 caracteres palíndromos</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Não use palavras e combinações comuns como senha</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Crie uma senha forte, por favor</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Não atende às regras de segurança de senha</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation>Inclua pelo menos %1 tipos entre letras minúsculas, letras maiúsculas, números e símbolos e a senha não pode ser igual ao nome de usuário</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistema</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Janela</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Espaço de trabalho</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Ferramentas Assistivas</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Personalizado</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Nenhum</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_qu.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"qu\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_ro.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ro\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Conectat</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Neconectat</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Amprenta1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Amprenta2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Amprenta3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Amprenta4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Amprenta</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Amprenta6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Amprenta7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Amprenta8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Amprenta9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Amprenta10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Scanare eșuată</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Amprenta există deja</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Vă rugăm scanați alte degete</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Eroare necunoscută</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Scanare suspendată</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Nu se poate recunoaște</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Ați mișcat prea repede</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Degetul s-a mișcat prea repede, nu ridicați degetul până nu vi se solicită</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Amprentă neclară</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Curățați degetul sau reglați poziția degetului și încercați din nou</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Scanat deja</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Reglați poziția degetului pentru a vă scana complet amprenta</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Degetul se mișcă prea repede. Vă rugăm să nu ridicați până când vi se solicită</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Ridicați degetul și plasați-l din nou pe senzor</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anulează</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Autentificare necesară pentru scimbare server NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Autentificare necesară pentru setare fus orar sistem</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Afişaj</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Suprimarea automată a zgomotului</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Volum intrare</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Nivel introducere</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Dispozitiv de intrare</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Mouse şi panou tactil</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalizare</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Personalizare</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Parolă goală interzis</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Parola trebuie să aibă cel puțin %1 caractere</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Parola nu trebuie să conțină mai mult de %1 caractere</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Parola nu trebuie să conțină mai mult de 4 caractere palindrome</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Nu utilizați cuvinte și combinații obișnuite ca parolă</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Nu respectă regulile de parolă</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Centru Control</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Activat</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Aspect</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Pentru a fi activat</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Activați</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Expirat</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>In perioadă de probă</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Perioadă de probă expirată</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Setări Ecran Tactil</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Setările ecranului tactil au fost schimbate</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Sunet</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Efecte sonore</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Pornire</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Închidere</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Ieșire</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Trezire</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volum +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Notificare</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Baterie descărcată</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Trimite pictograma din Lansator pe desktop</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Golire Coşul de Gunoi</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Conecteaza</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Deconecteaza</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Dispozitiv detașabil conectat</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Dispozitiv detașabil deconectat</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Eroare</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Mod</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Volum ieşire</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Boost Volum</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Stânga</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Dreapta</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Dispozitiv de ieșire</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Înversați</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Salvare</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_ru.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ru\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>редактировать</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Добавить нового пользователя</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Напишите полное имя</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Настройки входа</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Входить в систему без ввода пароля</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Удалить текущую учетную запись</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Настройки групп</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Группы учетной записи</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>готово</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Имя группы</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Добавить группу</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Автоматический вход</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Информация об аккаунте</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Имя и полное имя аккаунта, тип аккаунта</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Имя аккаунта</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Полное имя аккаунта</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Тип аккаунта</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Полное имя слишком длинное</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>Название группы должно быть не более 32 символов</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>Название группы не может состоять только из цифр</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>Используйте только буквы, цифры, подчеркивания и тире, и оно должно начинаться с буквы</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>Название группы уже используется</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>Быстрый и автоматический вход, вход без пароля</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>Далее</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>Вырезать</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>Копировать</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>Вставить</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>Выбрать все</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>Быстрый вход</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Сканировать лицо</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Я прочитал и согласен с</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Отказ от ответственности</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Далее</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Лицо отсканировано</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>Не удалось отсканировать ваше лицо</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Готово</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Повторить сканирование</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation>Распознавание лиц не поддерживает определение живости, и метод верификации может быть рискованным.\nЧтобы гарантировать успешный вход:\n1. Держите черты лица четко видимыми и не закрывайте их (шляпы, солнцезащитные очки, маски и т. д.).\n2. Обеспечьте достаточное освещение и избегайте прямого солнечного света.</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Готово</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Зарегистрировать палец</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Поместите палец для ввода в сенсор отпечатка пальца и переместите его снизу вверх. После выполнения действия поднимите палец.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Я прочитал и согласен с</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Отказ от ответственности</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Далее</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Повторить регистрацию</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>«Биометрическая аутентификация» - это функция аутентификации личности пользователя, предоставляемая компанией UnionTech Software Technology Co., Ltd. С помощью «биометрической аутентификации» собранные биометрические данные сравниваются с данными, хранящимися в устройстве, и личность пользователя проверяется на основе результатов сравнения.\n\nОбратите внимание, что UnionTech Software Technology Co., Ltd. не будет собирать или получать доступ к вашей биометрической информации, которая будет храниться на вашем локальном устройстве. Пожалуйста, включайте биометрическую аутентификацию только на своем личном устройстве и используйте свою собственную биометрическую информацию для соответствующих операций, а также своевременно отключайте или удаляйте чужую биометрическую информацию на этом устройстве, в противном случае вы будете нести риск, вытекающий из этого.\n\nКомпания UnionTech Software Technology Co., Ltd. стремится исследовать и улучшать безопасность, точность и стабильность биометрической аутентификации. Тем не менее, из-за экологических, технических, аппаратных и других факторов и контроля рисков нет гарантии, что вы временно пройдете биометрическую аутентификацию. Поэтому, пожалуйста, не воспринимайте биометрическую аутентификацию как единственный способ входа в UOS. Если у вас возникли вопросы или предложения по использованию биометрической аутентификации, вы можете оставить отзыв через раздел «Сервис и поддержка» в UOS. </translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>Сканирование радужной оболочки глаза</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Я прочитал и согласен с</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Отказ от ответственности</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Далее</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Выполнено</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Повторить сканирование</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>Радужная оболочка глаза отсканирована</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>Не удалось отсканировать радужную оболочку глаза</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>«Биометрическая аутентификация» - это функция аутентификации личности пользователя, предоставляемая компанией UnionTech Software Technology Co., Ltd. С помощью «биометрической аутентификации» собранные биометрические данные сравниваются с данными, хранящимися в устройстве, и личность пользователя проверяется на основе результатов сравнения.\n\nОбратите внимание, что UnionTech Software Technology Co., Ltd. не будет собирать или получать доступ к вашей биометрической информации, которая будет храниться на вашем локальном устройстве. Пожалуйста, включайте биометрическую аутентификацию только на своем личном устройстве и используйте свою собственную биометрическую информацию для соответствующих операций, а также своевременно отключайте или удаляйте чужую биометрическую информацию на этом устройстве, в противном случае вы будете нести риск, вытекающий из этого.\n\nКомпания UnionTech Software Technology Co., Ltd. стремится исследовать и улучшать безопасность, точность и стабильность биометрической аутентификации. Тем не менее, из-за экологических, технических, аппаратных и других факторов и контроля рисков нет гарантии, что вы временно пройдете биометрическую аутентификацию. Поэтому, пожалуйста, не воспринимайте биометрическую аутентификацию как единственный способ входа в UOS. Если у вас возникли вопросы или предложения по использованию биометрической аутентификации, вы можете оставить отзыв через раздел «Сервис и поддержка» в UOS. </translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation>Пожалуйста, смотрите на устройство и убедитесь, что оба глаза находятся в области сканирования</translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>Автоматический вход можно включить только для одного аккаунта, пожалуйста, сначала отключите его для аккаунта &quot;%1&quot;</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>Ок</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>Изображения</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>Человек</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Животное</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Пейзаж</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>Иллюстрация</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>Эмодзи</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>персонализированное</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Мультипликационный стиль</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Космический стиль</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Плоский стиль</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Сохранить</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Экран и приостановка</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Выключить экран через</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Закрыть экран через</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Компьютер будет приостановлен через</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>При закрытии крышки</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>При нажатии кнопки питания</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Низкий заряд</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Уведомление о низком заряде</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Автоматическое приостановление</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Автогибернация</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Порог низкого заряда</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Управление батареей</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Отображение оставшегося времени использования и зарядки</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Максимальная емкость</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Уровень низкого заряда</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Отключить</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth выключен, и имя отображается как &quot;%1&quot; </translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth включен, и имя отображается как &quot;%1&quot; </translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Отключить</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Подключить</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Отправить файлы</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Переименовать</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Удалить устройство</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Выбрать файл</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Редактировать</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Разрешить другим устройствам Bluetooth найти это устройство</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Чтобы использовать функцию Bluetooth, пожалуйста, выключите</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Режим полета</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>Имя устройства не может быть более 64 символов</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Подключено</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Не подключено</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Настройки запуска</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Вы можете кликнуть на меню для изменения стандартных элементов запуска, или перетащить изображение в окно для изменения фона</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>Задержка загрузки GRUB</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>тема</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>После включения темы вы увидите фон темы при запуске компьютера</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Проверка меню загрузки</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>После открытия редактирование меню требует пароль.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Сменить пароль</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Изменить пароль проверки меню загрузки</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Установить пароль для аутентификации в меню загрузки</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Имя пользователя :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Новый пароль :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Необходимо</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Пароль не может быть пустым</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Пароли не совпадают</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Повторите пароль:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Уверен</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Старт анимации</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Измените размер анимации логотипа на интерфейсе запуска системы.</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Разрешить нижеуказанным приложениям доступ к вашей камере:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Отпечаток пальца1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Отпечаток пальца2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Отпечаток пальца3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Отпечаток пальца4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Отпечаток пальца5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Отпечаток пальца6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Отпечаток пальца7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Отпечаток пальца8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Отпечаток пальца9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Отпечаток пальца10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Сканирование не удалось</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Отпечаток пальца уже существует</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Пожалуйста, сканируйте другие пальцы</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Неизвестная ошибка</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Сканирование приостановлено</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Не получилось распознать</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Слишком быстро перемещен</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Палец двигался слишком быстро, не поднимайте его до тех пор, пока не будет дано соответствующее указание</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Неясный отпечаток пальца</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Очистите палец или перенесите его в другое положение, и попробуйте снова</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Отпечаток пальца уже сканирован</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Переместите палец для полного сканирования отпечатка пальца</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Палец двигался слишком быстро. Не поднимайте его до тех пор, пока не будет дано соответствующее указание</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Поднимите палец и снова положите его на сенсор</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Положите лицо внутри кадра</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Лицо зарегистрировано</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Пожалуйста, положите человеческое лицо</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Отойдите от камеры</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Приблизьтесь к камере</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Не располагайте несколько лиц внутри кадра</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Убедитесь, что объектив камеры чист</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Не регистрируйтесь в темных, ярких или освещенных сзади условиях</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Сохраняйте лицо непокрытым</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Время сканирования истекло</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>Камера занята!</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Цвет акцента</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Настройки иконок</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Тема иконок</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Настройте иконку темы</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Тема курсора</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Настройте курсор темы</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Вы действительно хотите удалить этот аккаунт?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Удалить папку аккаунта</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Удалить</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Перейти в настройки</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Общее</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Задержка повтора</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Короткий</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Длинный</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Частота повтора</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Медленный</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Быстрый</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Набор чисел</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>проверить здесь</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Предупреждение о Caps Lock</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Скорость двойного клика</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Тест двойного клика</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Режим левой руки</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>Включить клавиатуру</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>Общие</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>Скорость прокрутки</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Большой размер</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Маленький размер</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>Не удалось получить root-доступ</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Пожалуйста, сначала войдите в свой аккаунт Union ID</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>Не удалось прочитать информацию о вашем ПК</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>Нет подключения к сети</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>Ошибка загрузки сертификата, не удалось получить root-доступ</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>Ошибка проверки подписи, не удалось получить root-доступ</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Дать согласие и присоединиться к программе взаимодействия с пользователем</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>Уведомление о режиме разработчика</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>Дать согласие и запросить root-доступ</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Начинаем настройку новой анимации загрузки, пожалуйста, подождите минуту</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>Настройка новой анимации загрузки завершена</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>Настройки будут применены после перезагрузки системы</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>Пароль должен содержать цифры и буквы</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>Пароль должен содержать от 8 до 64 символов</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Создать новый аккаунт</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Тип аккаунта</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Имя пользователя</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Необходимо</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Полное имя</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Необязательно</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Создать аккаунт</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>Имя пользователя не должно быть более 32 символов</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>Имя пользователя может содержать только буквы, цифры, - и _</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>Полное имя не должно быть более 32 символов</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>Вы еще не загрузили аватар. Нажмите или перетащите изображение для загрузки.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>Тип загруженного файла некорректен, пожалуйста, загрузите другой файл</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>доступно</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Дать согласие и присоединиться к программе взаимодействия с пользователем</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Настройка даты и времени</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Дата</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Год</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Месяц</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>День</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Время</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Подтвердить</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Завтра</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Вчера</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Сегодня</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>На %1 ч. раньше местного</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>На %1 ч. позже местного</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Пробел</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Неделя</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Первый день недели</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Короткая дата</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Длинная дата</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Короткое время</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Длинное время</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Символ валюты</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Положительная валюта</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Отрицательная валюта</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Символ десятичной точки</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Символ группировки цифр</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Группировка цифр</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Размер страницы</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>Пример</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Для изменения сервера NTP требуется аутентификация</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Для установки часового пояса системы требуется аутентификация</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Сохранить</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Центр управления предоставляет опции для настроек системы.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>Привязать WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>Привязав WeChat, вы сможете безопасно и быстро войти в свой аккаунт %1 и локальные аккаунты.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Разъединено</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Разъединение</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Привязать</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Вы уверены, что хотите разъединить WeChat?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>После разъединения WeChat вы не сможете использовать WeChat для сканирования QR-кода входа в аккаунт %1 или локальный аккаунт.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Позвольте подумать</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Привязка локального аккаунта</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>После привязки локального аккаунта вы сможете использовать следующие функции:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>Система входа в аккаунт с помощью сканирования кода WeChat</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Используйте WeChat, привязанный к вашему аккаунту %1, для сканирования кода входа в локальный аккаунт.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Сбросить пароль с помощью аккаунта %1</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Сбросьте локальный пароль с помощью аккаунта %1, если вы его забыли.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Чтобы использовать вышеуказанные функции, пожалуйста, перейдите в Центр управления - Аккаунты и включите соответствующие опции.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Синхронизация облака</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>Управляйте своим идентификатором %1 и синхронизируйте личные данные между устройствами.\nВойдите в свой идентификатор %1, чтобы получить уникальные функции и возможности Браузера, Магазина приложений и т.д.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Войти в свой идентификатор %1</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Авто-cинхронизация</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Безопасно храните параметры системы и личные данные в облаке и синхронизируйте их между устройствами</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Настройки системы</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Последнее время синхронизации: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Очистить данные облака</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>Вы уверены, что хотите очистить параметры системы и личные данные, сохраненные в облаке?</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>После очистки данные не могут быть восстановлены!</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Очистить</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Синхронизация сервиса</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Счет и безопасность</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Выйти</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Перейти в настройки веб-сайта</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>Никнейм должен содержать от 1 до 32 символов.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>Не удалось зашифровать пароль</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Неверный пароль, осталось попыток: %1</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>Ошибки входа достигли лимита сегодня. Вы можете сбросить пароль и попробовать снова.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Операция выполнена успешно</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>Никнейм можно изменить только один раз в сутки</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>Китайский континент</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Другие регионы</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>Функция недоступна в настоящее время, пожалуйста, сначала активируйте систему</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Согласно местному законодательству и регламенту, эта функция недоступна в вашем регионе.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Пожалуйста, выберите программу по умолчанию для открытия &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>Добавить</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Открыть файл рабочего стола</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Программы (*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Все файлы (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Доступ с root правами</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Запросить root-доступ</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>После входа в режим разработчика вы сможете получить права root, но это может также повредить целостность системы, поэтому используйте это с осторожностью.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Разрешено</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Войти</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>Онлайн</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Войти в UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Офлайн</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Импортировать сертификат</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Выбрать файл</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>Вы вошли в UOS ID, нажмите, чтобы перейти в режим разработчика</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Пожалуйста, сначала войдите в свой UOS ID, чтобы продолжить</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1. Экспорт информации о ПК</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Экспорт</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3. Импортировать сертификат</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Опции разработки и отладки</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Уровень логирования системы</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Изменение параметров приводит к более подробному логированию, что может ухудшить производительность системы и/или увеличить использование места на диске.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Выключено</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Отладка</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>Изменение опции может занять до минуты. После получения уведомления о успешной настройке перезагрузите устройство для применения изменений.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>Для установки и запуска неподписанных приложений перейдите в &lt;a href=&quot;Security Center&quot;&gt;Центр безопасности&lt;/a&gt; для изменения настроек.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation>Чтобы установить и запустить неподписанные приложения, перейдите в Центр безопасности и измените настройки.</translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation>Вы вошли в режим разработчика</translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>OK</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation>2. Пожалуйста, перейдите на %1, чтобы скачать оффлайн сертификат.</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation>В настоящее время функция недоступна, пожалуйста, сначала активируйте вашу систему</translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Отказ от ответственности</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>Согласен</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Дисплей</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Разрешить ниже перечисленным приложениям доступ к этим файлам и папкам:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Документы</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Рабочий стол</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Фотографии</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Видео</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Музыка</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Загрузки</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>папка</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Размер</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Шрифт стандартного размера</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Шрифт фиксированной ширины</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Программы питания</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Настройки энергосбережения</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Автоматическое включение режима энергосбережения при низком заряде батареи</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Порог низкого заряда батареи</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Автоматическое включение режима энергосбережения при работе от батареи</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Настройки пробуждения</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Требовать пароль после пробуждения компьютера</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Требовать пароль после включения экрана</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Настройки выключения</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Запланированное выключение</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Время</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Повторять</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Однократно</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Каждый день</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Рабочие дни</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Во время, которое вы выберете</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Уменьшить яркость экрана в энергосберегающем режиме</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation>Тремя пальцами вверх</translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation>Тремя пальцами вниз</translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation>Тремя пальцами влево</translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation>Тремя пальцами вправо</translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation>Нажатие тремя пальцами</translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation>Четырьмя пальцами вверх</translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation>Четырьмя пальцами вниз</translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation>Четырьмя пальцами влево</translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation>Четырьмя пальцами вправо</translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation>Нажатие четырьмя пальцами</translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Оптимальная производительность</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Баланс</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>Лучшие визуальные эффекты</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>Отключите все эффекты интерфейса и окон для повышения производительности системы.</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>Ограничение некоторых оконных эффектов, чтобы добиться отличного качества изображения и при этом сохранить плавность работы системы.</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>Включите все эффекты интерфейса и окон для лучшего визуального опыта.</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Язык</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Готово</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>Редактировать</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Другие языки</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>Добавить</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Регион</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>Регион</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>Система и приложения могут предоставить вам локальный контент на основе вашего страны и региона</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>Система и приложения могут устанавливать форматы дат и времени на основе региональных форматов</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Формат региона</translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Добавить язык</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Поиск</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Добавить</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Метод входа</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Пароль, WeChat, биометрическая аутентификация, ключ безопасности</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Пароль</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Изменить пароль</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Срок действия дней</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Всегда</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Сбросить пароль</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Сообщество Deepin</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Автоматическое шумоподавление</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Уровень входного звука</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Уровень входа</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Вход</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Не найдено устройств для звука</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Устройство ввода</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Мышь и тачпад</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Мои устройства</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Имя компьютера</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Нельзя начинать или заканчивать имя компьютера тире</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Название ОС</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Версия</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Редакция</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Тип</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>бит</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Авторизация</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Время установки системы</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Ядро</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Платформа графики</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Процессор</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Оперативная память</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>Должно быть от 1 до 63 символов</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Другие устройства</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Показывать Bluetooth-устройства без названий</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Текущий пароль</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Необходимо</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Слабый</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Средний</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Сильный</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Повторите пароль</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Подсказка к паролю</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Необязательно</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Пароль не может быть пустым</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Пароли не совпадают</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>Подсказка видна всем пользователям. Не включайте тут пароль.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>Новый пароль</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>Новый пароль должен отличаться от текущего</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Изменить пароль</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Сбросить пароль</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>Длина пароля должна быть не менее 8 символов, а пароль должен содержать комбинацию из минимум 3 из следующего: заглавные буквы, строчные буквы, цифры и символы. Такой пароль более безопасен.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Сброс пароля очистит данные, сохраненные в ключевом ящике.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Персональные настройки</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Светлая</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Авто</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Темная</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Пользовательская</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Область плагинов</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Выберите иконки, которые будут отображаться в доке</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Выключить</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Приостановить</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Спящий режим</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Выключить монитор</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Показать интерфейс выключения</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Не делать ничего</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Экран и приостановка</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Выключить экран через</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Заблокировать экран через</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Компьютер будет приостановлен через</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Когда закрыта крышка</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Когда нажата кнопка питания</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Высокая производительность</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Баланс производительности</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>Агрессивно регулировать частоту работы процессора в зависимости от нагрузки</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Баланс</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Экономия энергии</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Приоритет производительности, что значительно увеличит потребление энергии и генерацию тепла</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Баланс производительности и заряда батареи, автоматически регулируемый в зависимости от использования</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Приоритет заряда батареи, при котором система компрометирует некоторые параметры производительности для снижения энергопотребления</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Минуты</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Час</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Никогда</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Политика конфиденциальности</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Скопировать ссылку</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Пароль не может быть пустым</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Пароль должен содержать не менее %1 символов</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Пароль не должен превышать %1 символов</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Пароль может содержать только английские буквы (включая регистр), цифры или специальные символы (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Пожалуйста, не более %1 полиндромных символов</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Пожалуйста, не более %1 монотонных символов</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Пожалуйста, не более %1 повторяющихся символов</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Пароль должен содержать заглавные буквы, строчные буквы, цифры и символы (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Пароль не должен содержать более 4 палиндромных символов</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Не используйте общие слова и комбинации в пароле</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Создайте сильный пароль, пожалуйста</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Пароль не соответствует правилам</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Центр управления</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Активировано</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Просмотр</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Для активации</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Активировать</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Истекло</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>На пробном периоде</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Пробный период истек</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Настройки тачскрина</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Настройки тачскрина изменены</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Эти системные обои заблокированы. Пожалуйста, свяжитесь с администратором.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Поиск</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>По умолчанию форматы</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Первый день недели</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Короткий формат даты</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Длинный формат даты</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Короткий формат времени</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Длинный формат времени</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Символ валюты</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Число</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Сохранить</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Поиск</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Установить пароль</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 символа</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Повторите пароль</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Подтвердить</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Пароли не совпадают</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Сохранить</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>предпросмотр</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>настройка</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>Время ожидания</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 минута</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 минут</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 минут</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 минут</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 минут</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 час</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>никогда</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Для восстановления необходим пароль</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Поиск</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>Ничего не найдено</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Добавить пользовательскую комбинацию клавиш</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Имя:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Необходимо</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Команда:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Комбинация клавиш</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Нет</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Добавить</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation>Название комбинации уже используется. Выберете другое.</translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Сохранить</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Комбинации клавиш</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Системная горячая клавиша, пользовательская горячая клавиша</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Поиск комбинаций клавиш</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Готово</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>редактировать</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Нажмите</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>или</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Заменить</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Восстановить по умолчанию</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Добавить пользовательскую комбинацию клавиш</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Звук</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Выходные устройства</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Выберите, включать ли устройства</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Входные устройства</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Звуковые эффекты</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Загрузка</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Выключение</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Выйти</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Подключение</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Громкость +/−</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Уведомление</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Низкий уровень заряда</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Отправить значок в пусковом механизме на рабочий стол</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Очистить корзину</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Вставить</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Извлечь</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Съемное устройство подключено</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Съемное устройство отключено</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Ошибка</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Режим</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Громкость выхода</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Увеличение громкости</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Если громкость превышает 100%, это может искажать звук и навредить выходным устройствам</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Левый</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Правый</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Выход</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Не найдено устройство вывода звука</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Баланс левого и правого каналов</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Соединить левый и правый каналы в один канал</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Автоматически приостановить аудио, когда текущее устройство аудио будет отключено</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation>Моноаудио</translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation>Автопауза</translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Выходное устройство</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Звук</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Сила</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Мышь</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Обновление</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Экранная сохранность</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Больше обоев</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Автоматический синхронизаци времени</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Ntp-сервер</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Дата и время системы</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Настроить</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Настройки</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Адрес сервера</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Необходимо</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>Адрес ntp-сервера не может быть пустым</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>Использовать формат 24-часового времени</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>Часовой пояс системы</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Список часовых поясов</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Добавить</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>от</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>до</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Сохранить настройки экрана?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Настройки будут восстановлены через %1с.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Восстановить</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Сохранить</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Добавить временной пояс</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Определить временной пояс на основе текущего местоположения</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Временной пояс:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Ближайший город:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Сохранить</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Тачскрин</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Настройте здесь при подключении тачскрина</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Основные настройки</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Тачпад</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Скорость курсора</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Медленно</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Быстро</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Отключить тачпад во время ввода</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Нажатие для клика</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Естественная прокрутка</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Двухпальцевые жесты</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Трехпальцевые жесты</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation>Жесты</translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Присоединиться к программе взаимодействия с пользователем</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Скопировать ссылку</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Проверка безопасности</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>Действие чувствительно, пожалуйста, сначала введите пароль для входа</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 символа</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Забыли пароль?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Отмена</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Подтвердить</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>обои</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Мои фотографии</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Системные обои</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Обои с однотонным цветом</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Настраиваемые обои</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>стиль заполнения</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Автоматический смена обоев</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>никогда</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 секунд</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 минута</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 минут</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 минут</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 минут</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 минут</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>вход</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>проснуться</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Живая обои</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 час</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>развернуть</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Установить экран блокировки</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Установить рабочий стол</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Интерфейс и эффекты</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Настройки окна</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Округлые углы окна</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Нет</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Маленький</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Большой</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Включить прозрачные эффекты при перемещении окон</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Эффект сворачивания окна</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Масштабирование</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Магическая лампа</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Прозрачность</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Низкий</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Высокий</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Полосы прокрутки</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Показывать при прокрутке</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Сохранить отображение</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Компактный экран</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Если включено, больше контента отображается в окне.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Высота заголовка окна</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Только для заголовков окон приложений, рисуемых менеджером окон.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Очень маленький</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>Средний</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>Средний</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Традиционная китайская (Китайская Гонконг)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Традиционная китайская (Китайская Тайвань)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Тайвань Китай</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>Имя пользователя должно содержать от 3 до 32 символов</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>Первый символ должен быть буквой или цифрой</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>Имя пользователя не должно состоять только из цифр</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>Имя пользователя уже используется другими учетными записями</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Полное имя слишком длинное</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>Полное имя уже используется другой учетной записью</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Неправильный пароль</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Стандартный пользователь</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Администратор</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Настроенный</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Ваш хост успешно удален с доменного сервера</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>Ваш хост успешно присоединился к доменному серверу</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>Ваш хост не смог покинуть доменный сервер</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>Ваш хост не смог присоединиться к доменному серверу</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>Настройки домена AD</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>Пароли не совпадают</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Двумерный</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Плоский</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Отпечаток пальца</translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation>Разместите свой палец</translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation>Поднимите палец</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation>Сканирование приостановлено</translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation>Отпечаток добавлен</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation>Iris</translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation>Используйте Iris для разблокировки устройства и последующих настроек</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Эта комбинация клавиш конфликтует с [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Пароль не может быть пустым</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Пароль должен содержать не менее %1 символов</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Пароль не должен содержать более %1 символов</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Пароль может содержать только английские буквы (в учитывается регистр), цифры или специальные символы (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Пожалуйста, не более %1 палиндромных символов</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Пожалуйста, не более %1 монотонных символов</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Пожалуйста, не более %1 повторяющихся символов</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Пароль должен содержать заглавные и строчные буквы, цифры и символы (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Пароль не должен содержать более 4 палиндромных символов</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Не используйте распространенные слова и комбинации в качестве пароля</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Пожалуйста, создайте сильный пароль</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Пароль не соответствует правилам</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Система</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Окно</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Рабочее пространство</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Средства доступа</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Пользовательский</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Нет</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_ru_UA.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"ru_UA\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_sc.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"sc\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_si.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"si\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>සම්බන්ධයි</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>සම්බන්ධතා නොමැත</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>පරිලෝකනය අසාර්ථක විය</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>ඇඟිලි සලකුණ දැනටමත් පවතී</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>කරුණාකර වෙනත් ඇඟිලි පරිලෝකනය කරන්න</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>ඉතා වේගයෙන් චලනය විය</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>ඇඟිල්ල වේගයෙන් චලනය විය, කරුණාකර විමසන තුරු ඔසවන්න එපා</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>අපැහැදිලි ඇඟිලි සලකුණකි</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>ඔබේ ඇඟිල්ල පිරිසිදු කර හෝ ඇඟිල්ලේ පිහිටීම සකසා නැවත උත්සාහ කරන්න</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>දැනටමත් පරිලෝකනය කර ඇත</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>ඔබේ ඇඟිලි සලකුණ සම්පූර්ණයෙන් පරිලෝකනය කිරීමට ඇඟිලි ස්ථානය සකසන්න</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>ඇඟිල්ල වේගයෙන් චලනය විය, කරුණාකර විමසන තුරු ඔසවන්න එපා</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>ඔබේ ඇඟිල්ල ඔසවා නැවත සංවේදකය මත තබන්න</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>අවලංගු කරන්න</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>NTP සේවාදායකය/server වෙනස් කිරීම සඳහා සත්‍යාපනය අවශ්‍ය වේ</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>පද්ධතියේ වේලා කලාපය සකස් කිරීම සඳහා සත්‍යාපනය අවශ්‍ය වේ</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>ආදාන ශබ්ද පරිමාව</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>ආදාන මට්ටම</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>මුරපදය හිස් විය නොහැක</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>මුරපදය අක්ෂර %1 ට නොඅඩු විය යුතුය</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>පාලන මධ්‍යස්ථානය</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>සක්‍රීයයි</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>දැක්ම</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>සක්‍රීය කළ යුතුව ඇත</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>සක්‍රිය කරන්න</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>කල් ඉකුත් වී ඇත</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>අත්හදා බැලීමේ කාල පරිච්ඡේදයේ පවතී</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>අත්හදා බැලීමේ කාල පරිච්ඡේදය අවසන් වී ඇත</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>ස්පර්ශ තිර සැකසුම්</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>ශබ්ද ප්‍රයෝග</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>ආරම්භ කරන්න</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>වසා දමන්න </translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>ඉවත් වන්න</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>අවදි කරන්න</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>ශබ්ද පරිමාව +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>දැනුම්දීම්</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>අඩු බැටරි ධාරිතාවයකි</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>රඳවනයේ හි ඇති අයිනක ඩෙස්ක්ටොප් එක වෙත යවන්න</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>අප ද්‍රව්‍ය හිස් කරන්න</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>සම්බන්ධ කරන්න</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>සම්බන්ධතාව ඉවත් කරන්න</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>ඉවත් කළ හැකි උපාංගය සම්බන්ධයි</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>ඉවත් කළ හැකි උපාංගය ඉවත් කරන ලදි</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>දෝෂයකි</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>ප්‍රකාරය</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>ප්‍රතිදාන ශබ්ද පරිමාව</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>පරිමාව වැඩි කිරීම</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>වම</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>දකුණ</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>සුරකින්න</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>සම්ප්‍රදායික චීන (චීන හොංකොං)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>සම්ප්‍රදායික චීන (චීන තායිවානය)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>තායිවානය චීනය</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>මෙම කෙටිමග [%1] සමඟ ගැටේ</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>පද්ධතිය</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>කවුළුව</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>වැඩකරන ස්ථානය</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>සහායක මෙවලම්</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>අභිරුචි</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>කිසිවක් නැත</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_sk.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"sk\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Zrušiť</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Hotovo</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Pripojené</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Nepripojené</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Prst sa hýbal príliš rýchlo, nedvíhajte ho prosím, kým sa zobrazí výzva</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Zrušiť</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Na zmenu NTP servera je potrebné overenie</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Na nastavenie časového pásma systému je potrebné overenie</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Zobraziť</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Vstupná hlasitosť</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Myš a Touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalizácia</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Vlastný</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Heslo nemôže byť prázdne.</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Heslo musí mať aspoň %1 znakov</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Heslo nesmie obsahovať viac ako %1 znakov</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Ovládacie centrum</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Aktivované</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Pohľad</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Zvuk</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Zvukové efekty</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Spustiť</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Vypnúť</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Odhlásiť</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Prebudiť</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Hlasitosť +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Oznámenie</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Slabá batéria</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Odoslať ikonu z Launchra na pracovnú plochu</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Vysypať kôš</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Pripojiť</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Odpojiť</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Odpojiteľné zariadenie je pripojené</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Odpojiteľné zariadenie bolo odstránené</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Chyba</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Režim</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Výstupná hlasitosť</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Vľavo</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Vpravo</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Vrátiť</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Uložiť</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Tradičná čínština (čínsky Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Tradičná čínština (čínsky Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan Čína</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Táto skratka je v konflikte s [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Systém</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Okno</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Pracovná plocha</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Asistenčné nástroje</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Vlastné</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Žiadne</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_sl.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"sl\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>uredi</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Dodaj novo uporabniško ime</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Nastavi celotno ime</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Nastavitve prijave</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Prijavi se brez gesla</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Izbriši trenutno račun</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Nastavitve skupine</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Nastavitve skupin računov</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Gotovo</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Ime skupine</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Dodaj skupino</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Samodejni prijavo</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Podatki o računu</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Ime računa, celotno ime računa, vrsta računa</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Ime računa</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Celotno ime računa</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Vrsta računa</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Udeleži se očetka</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Sem prebral/a in se strinjam z</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Oznanitvama</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Naprej</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Očetek udeležen</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Kartunska štil</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Dimenzionalni stil</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Površinski stil</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Shrani</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Začrtaj in preklici</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Iskalniški zaslon izklopi po</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Začrtaj zaslon po</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Računalnik prekliče po</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Ko je zatvorišče zaprt</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Ko je pritisnjen gumb naštevila</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Nizka nivoj</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Opozorilo nizkega nivoja</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Samodejno preklici</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Samodejno hibernacija</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Prenizka nivoj omejitev</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Upravljanje baterijo</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Pokaži preostal včas in čas naložbe</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Maksimalna kapaciteta</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Nizki nivoj</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Onemogoči</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth je izključen, in ime je prikazano kot &quot;%1&quot; </translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth je vključen, in ime je prikazano kot &quot;%1&quot; </translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Odspajanje</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Povezava</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Posla datoteke</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Ponovi ime</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Odstrani urejevalniško napravo</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Izberi datoteko</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Uredi</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Dozvoli, da se drugi Bluetooth urejevalne naprave najdijo tega urejevalnega naprava</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Za uporabo funkcije Bluetooth, prosimo začnite s izključevanjem</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Režim letalnice</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Povezan</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Ne povezan</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Nastavitve pričetka</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation> lahko kliknete na meni, da sprememnete predtečne predmete za pričetek, ali pa povlečete sliko v okno, da jo sprememnete za pozadino.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>Zagotovite časovno posplošitev za pričetek grub</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>tema</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Po priključitvi teme lahko vidite temo pozadine, ko začnete računalnik</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Overjanje niza za pričetek</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Po odpiranju je odpiranje urejanja menija za pričetek zahtevano z geslom.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Spremeni geslo</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Spremeni geslo za overjanje niza za pričetek</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Nastavi geslo za overjanje niza za pričetek</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Uporabniško ime :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Novo geslo :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Potrebno</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Geslo ne more biti prazno</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Gesli se ne ujemata</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Ponovno vnesite geslo:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Naravno</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Začni animacijo</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Spremeni velikost animacije logotipa na začetni zaslavi sistema</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Dovoli spodnjim programom dostop do vaše kamere:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Odstop1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Odstop2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Odstop3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Odstop4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Odstop5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Odstop6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Odstop7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Odstop8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Odstop9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Odstop10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Skeniranje je spodletelo</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Odstop že obstaja</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Poskuste skenirati druge otroke</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Neprepoznana napaka</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Skeniranje je premaknjenega</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Ne morem razpoznati</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Premajha premaknili</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Palce je premikal prehitro, prosimo, da ne odvzete, dokler ga ne odprete</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Nedoločen palcevni črnil</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Počistite svoj palce ali prilagodite položaj palačke in poskusite znova</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Se nahajal že obiskan</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Prilagodite položaj palačke, da bi se naredil celotni obisk palcev</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Palcev je premikal prehitro. Prosimo, da ne odvzete, dokler ga ne odprete</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Odvzrite svoj palce in ga ponovno postavite na senzor</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Postavite svoje obličje v okvir</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Obličje je vključeno</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Prosimo, postavite obličje človeka</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Presočite se od kamera</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Približite se kamera</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Ne postavljajte več obličj v okvir</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Ustrezno izmenjajte zračilnico kamere</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Ne vključujte v temne, svetle ali ozlijalne okoliščine</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Nebrezirate svoje obličje</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Obisk je presegel čas</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Naravni barva</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Nastavitve ikone</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Tematika ikone</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Spremeni ikono tema</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Tema kazalečka</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Spremeni kazaleček tema</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Ali ste сигурни, da želite izbrisati ta nalog?\n</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Izbriši direktorij nalog</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Izbriši</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Priduži nastavitve</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Splošno</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Zaporedje z opazovanjem</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Kratko</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Dolgo</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Frekvenca ponovitve</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Zapretno</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Hitro</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Numerična tipka</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>test sem</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Pomoc pri velikem začrtanju</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Hitrost dvojnih klikov</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Test dvojnih klikov</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Način za levo ruku</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Velika velikost</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Mala velikost</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>Neuspešen pristup na root</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Prijava na vaš UnijaID najprej</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>Ne morem prebrati informacij o vašem računalniku</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>Ni povezave s omrežjem</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>Napaka pri nalaganju certifikata, neuspešen pristop na root</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>Napaka pri preverjanju potovanja, neuspešen pristop na root</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Sodobni in se pripišite Programu za izkušnje uporabnikov</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>Opozorilo za način razvijalcev</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>Sodobni in zahtevajte pristop na root</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Začnite nastavljati novo zagonovo animacijo, počakajte eno minuto</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>Nastavitev nove zagonove animacije je končana</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>Nastavitve bodo prispevek po ponovnem zagonu sistema</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>Geslo mora vsebovati števil in znamk</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>Geslo mora biti med 8 in 64 znakom</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Ustvarite nov račun</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Tip računa</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Uporabniško ime</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Nujno</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Ime in priimek</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Možno</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Ustvari račun</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation> še niste naložili avatara. Kliknite ali ga povlecite in spustite, da ga naložite.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>na voljo</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/zaštitni-politika-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/izkušnje-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Sodobni in se pridruži Programu za izkušnje</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Nastava datuma in ur</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Datum</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Leto</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Mesec</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Dan</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Ura</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Potrdi</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Zdaj + 1 dan</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Zdaj - 1 dan</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Danes</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 ur prej od lokalnega časa</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 ur zdišje od lokalnega časa</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Prostor</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Teden</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Prvi dan tega tedenja</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Kratak datum</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Dolg datum</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Kratak čas</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Dolgotno časovno</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Simbol enote</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Pozitivna enota</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Negativna enota</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Decimalni znak</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Znak za skupanje cifr</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Skupanje cifr</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Velikost strani</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Za spremembo strežnika NTP je potrebna overjanja</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Za določanje časovnega pasu je potrebna overitev</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Shrani</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Središnji upravljalnik ponuja možnosti za postavitve sistema.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>Povezaj WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>Za povezavo WeChata lahko varno in hitro prijavitev se na vaš %1 ID in lokalne račune.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Odstopljeno</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Odpiranje povezave</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Povezava</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Ali ste prepričani, da želite odpirati povezavo WeChata?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Po odpiranju povezave WeChata ne boste mogli uporabiti WeChata za prejemanje QR-kode za prijavo na %1 ID ali lokalno račun.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Pomislih nad tem</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Povezava lokalnega računa</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Po povezavi vašega lokalnega računa lahko uporabljate naslednje funkcije:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>Sistem za prijavo skeniranjem QR-kode WeChat</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Uporabite WeChat, ki je povezan z vašim %1 ID, za skeniranje kode za prijavo na vaš lokalni račun.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Ponastavite geslo skozi %1 ID</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>V pomoči %1 ID posodobi vaš lokalni geslo, če ga zanemarite.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Za uporabo zgoraj navedenih funkcij, poskusite Prehodnik - Računi in zaprite odgovarjalne možnosti.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Zaznamovanje v oblaku</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>Upravljajte svojo %1 ID in zaznamujte vaše osebne podatke na vseh napravah.\nPrijava na %1 ID vam omogoči osebne funkcije in storitve, kot so prehodnik in Trg aplikacij, in več.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Prijava na %1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Samodejno zaznamovanje</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Varno shranjujte nastavitve sistema in osebne podatke v oblaku in jih ohranjajte zaznamovane na vseh napravah.</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Nastavitve sistema</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Združenje z poslednje vremeni: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Počistite podatke v oblaku</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>Ste prepričani, da želite počistiti nastavitve sistema in osebne podatke shranjene v oblaku?\n</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>Po počistitvi se podatki ne morete vrniti!\n</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Počisti</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Usluga zaznamovanja</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Račun in varnost</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Odjava</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Pojdi na nastavitve spleta</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>šifriranje gesla je spodletelo</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Napačno geslo, preostalo %1 próba</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>Napaka pri prijavi danes dosegle omejeno število. Lahko posodobite geslo in poskusite znova.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Operacija je uspešna</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>Zemlja v glavnem delu Kina</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Države ali območja, ki še niso na voljo</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>Ta funkcija trenutno ni na voljo, prosimo, začnete s aktivacijo sistema</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Zahtevek za vaše lokalne zakone in pravila, trenutno ni na voljo v vašem regiji.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Izberite privzeto program, ki ga želite odpreti &apos;%1&apos;, </translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>Dodaj</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Odpri datoteko za stol</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Programi (*.desktop</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Vse datoteke (*</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Dostop za root</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Zahtevajte dostop za root</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Po vstopu v razvijalski način lahko pridite v dostop za root, vendar pa je tudi možno, da to izgrmi sistem, zato uporabite z opremljenostjo.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Dovoljen</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Vnesite</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>Online</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Prijava UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Sečasno</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Uvoziti certifikat</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Izberite datoteko</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>Vaš UOS ID je prijavljen, kliknite za vstop v razvijalski način</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Prosim, prijavite se na vaš UOS ID in nadaljujte</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1.Izvoz informacij o računalniku</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Izvoz</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.Uvoziti certifikat</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Možnosti razvoja in odprtega shraničevanja</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Počasnost zapisovanja sistema</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Spremena možnosti povzroči podrobnejši zapis, ki je mogoče, da prenese zmagovalno zmoto sistema in/ali več prostora na shrambo.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Iskalnik</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Odprte shraničevanje</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>Sprememba možnosti lahko traja do enega minuta, po uspešnem zahtevu za nastavitev, prosimo, ponovno zagnite uređaj, da bi začela vplivati.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Prikazovalnik</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Dozvoli spodnjim programom dostop do tih datotek in map:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Dokumenti</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Oberstavek</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Slik</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Video</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Pesmi</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Prenosi</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>mapa</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Velikost</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Standardna vplavec</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Vplavec z enako širino znakov</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Naravne programski razporeditve</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Nastavitve spremembe narave</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Spremenljiv spremembe narave na niskem vratnem pritoku</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Naprej vratnega pritoka</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Spremenljiv spremembe narave na vratnem pritoku</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Nastavitve vzhoda</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Za vzhod je zahtevan geslo</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Za vzhod je zahtevan geslo</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Nastavitve za izgradnjo</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Urejeno izgradnje</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Čas</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Ponovitev</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Enkrat</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Vsak dan</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Rabni dnevi</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Vlastiti čas</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Zmanjšaj osvetlitev zaslona v načinu ščitnice</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>&apos;</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Optimalna zmogljivost</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Začetek</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>Najboljše vizualne</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Jezik</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>položeno</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>uredi</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Drugi jeziki</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>dodaj</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Oblast</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>Območje</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>Operacijski sistem in aplikacije vam morda ponudijo lokalno vsebino glede na vašo državo in območje</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>Operacijski sistem in aplikacije morda postavijo format datuma in ur glede na regionalne formate</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Dodaj jezik</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Iskanje</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Dodaj</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Metoda prijave</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Geslo, WeChat, biometričnaščina, varnostna ključ</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Geslo</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Uredi geslo</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Dnevi veličenja</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Zavedno</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Deepin Community</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Samodejno preprečevanje zvočnih sporočil</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Vločnost vstava</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Stopnja vstava</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Vstava</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Naprej ni najden vhodni začetek za zvok</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Vhodna naprava</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Miška in Touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Moje naprave</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Ime računalnika</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Nemogač začeti ali končati z znaku</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Ime operacijskega sistema</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Številka različice</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Izdanje</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Tip</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Ponudba</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Čas instalacije sistema</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Jezik</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Platforma za grafične vmesnice</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Procesor</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Pomnilnik</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Druge naprave</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Pokaži Bluetooth naprave brez imena</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Trenutno geslo</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Zahtevek</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Slab</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Srednji</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Močan</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Ponovno vnesi geslo</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Pomocna opomba gesla</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Možno</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Geslo ni mogoče pustiti praznega</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Gesli se ne ujemata</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>Opomba je vidna za vse uporabnike. Tu ne vključujte gesla.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>Novo geslo naj se razlikuje od trenutnega</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Uredi geslo</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Ponastavi geslo</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>Dolžina gesla naj bo vsaj 8 znakov, in geslo naj vsebuje kombinacijo vsaj 3 izmed naslednjih: velikih črter, maleh črter, števil in znakov. Ta vrsta gesla je varnejša.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Ponastavitev gesla pusti vse shranjeno podatke v ključnici.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Prilagoditev</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Svetlo</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Automatično</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Temo</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Napravljeno po meri</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Območje vstavkov</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Izberi, katere ikone se pojavijo v Docku</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Iskalci</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Spreminjanje stanja</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Hibernacija</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Isključi zaslon</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Prikaži okno za izgradnjo</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Naredi nič</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Zaslon in zaustavitev</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Isključi zaslon po</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Zakleni zaslon po</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Računalna zaustavitev po</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Ko je zatvoro zatvorenega</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Ko je pritisnjen gumb za energijo</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Visoka vstopna moč</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Zaščitena vstopna moč</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>Zahtevno nadzorično povezavo frekvenco CPU glede na CPU napor</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Zaščitena</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Ohranilnik energije</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Pridruži se vstopni moči, ki poveča značilno potrošnjo energije in teploto</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Zaščitena vstopna moč in življenje baterije, samodejno prilagajanje glede na uporabo</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Zaščitite življenje baterije, ki bo sistem priporočil nekaj moči za zmanjšanje potrošnje energije</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Minut</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Ura</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation> nikoli</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Zasebnostna politika</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Geslo ni mogoče pustiti praznega</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Geslo mora imeti vsaj %1 znakov</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Geslo ne sme biti več kot %1 znakov</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation> geslo lahko vsebuje le angleške črke (dolgo/kratko različico), številke ali posebne znake (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Prosim, ne več od %1 palindromskih znakov</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Prosim, ne več od %1 monotonnih znakov</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Prosim, ne več od %1 ponavljajočih se znakov</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>geslo mora vsebovati velikih črkar, maleh črkar, števil in znakov (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>geslo ne sme vsebovati več od 4 palindromskih znakov</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Ne uporabljajte običajnih besed in kombinacij kot gesla</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Prosim, ustvarite močno geslo</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Nedostaja za uporabo gesla</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Kontrolni center</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Dezaktivirano</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Pogled</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Dezaktivirano</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Dezaktiviraj</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Iztrajalo se je</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>V probnem obdobju</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Probno obdobje je iztrajalo se</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Nastavitve dotične zaslonske plošče</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Nastavitve dotične zaslonske plošče so spremenile</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Ta zaslonska obilica sistema je zaklenjena. Prosimo, se obračunajte s administratorjem.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Išči</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Privzeti formate</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Prvi dan v tedenu</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Kratica datum</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Dolgova nizka datum</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Kratica čas</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Dolgova nizka čas</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Simbol enote</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Črka</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Velikost papirja</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Shrani</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Išči</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Nastavi geslo</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 znakov</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Ponovni geslo</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Potrdi</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Gesli se ne ujemata</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Zapreši zaslone</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>nogled</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Zapreši zaslone z osebnimi nalogami</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>nastavitev</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>čas neaktivnosti</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minuta</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minut</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minut</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minut</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minut</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 ura</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation> nikoli</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Za obnovitev je potrebnega gesla</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Zaščitnik z obravnavijo slik v glidu</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Zaščitnik sistema</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Iskanje</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Dodaj prilagojen krik</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Ime:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Zahtevano</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Naredba:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Krik</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Nič</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Dodaj</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Krik</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Sistemski krik, prilagojen krik</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Iskalni kriki</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>zaključeno</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>Uredi</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Kliknite</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>ali</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Zamenjaj</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Ponastavi na privzeto</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Dodaj prilagojeni preklic</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Zvok</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Izhodne naprave</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Izberi, ali naj so naprave omogočene</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Vhodne naprave</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Zvukovske effekti</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Zagotovi zagon</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Ustavi</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Odjavite se</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Bodi</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Glasilnik +/−</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Oznanica</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Nizka nivoj baterije</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Pošlji ikono v Launcherju na stol</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Počisti koš</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Vstavi</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Izvstavi</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Odstranljiva naprava povezana</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Odstranljiva naprava odstranjena</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Napaka</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Način</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Izhodni glasilnik</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Povezni zvok</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Če je zvok za 100% večji, lahko vpliva na zvok in je možno nevaren za izhodne ure</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Levo</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Desno</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Izhod</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Ne najden ure za zvok</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Poročilo o zavihek</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Poveži levo in desno kanal v en kanal</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Ali bo zvok samodejno spremnjen, ko je trenutna ure za zvok odspojena</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Izhodna naprava</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Zvok</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Naprej</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Miš</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Ažuriranje</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Zapretniški zvok</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Več zaščitnikov zaslonskega ekrana</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Samodejno usklajevanje časa</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>NTP strežnik</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Sistemski datum in čas</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Pristroj</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Nastavitve</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Naslov strežnika</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Nujno</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>Naslov strežnika ntp ne sme biti prazen</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>Uporabi 24-urni format</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>sistemski časovni razdelitev</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Seznam časovnih razdelitev</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>od</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>do</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Shrani nastavitve prikaza</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Nastavitve bodo povrnitev v %1s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Povrnevanje</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Shrani</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Dodaj časovni razdelitev</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Odredi časovni razdelitev na podlagi trenutne lokacije</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Časovni razdelitev:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Najblizja grad:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Shrani</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>NaprtiPovršina</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Nastavite tu pri povezavi z naprtim površino</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Osnovne nastavitve</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>NaprtiPovršina</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Hitrost kazalečka</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Slow</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Hitro</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Onemogoči naprtiPovršino pri vnosu</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Klik z natiskom</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Priravnjeno naključje</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Tri-pongi potez</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Štiri-pongi potez</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Pridruži se programu za izkušnje uporabnikov</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Varnostna potrditev</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>Dejanje je senzibilno, vnesite najprej geslo za prijavo.</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 znakov</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Zapomnili ste geslo?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Prekliči</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Potrdi</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>zadetek za zaslonsko ploščo</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Moje slike</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Zadetek za zaslonsko ploščo sistema</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Združen barvna oblačilnica</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Prilagodljive zaslonske oblačilnice</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>način začetka</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Samodejno sprememba zaslonske oblačilnice</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation> nikoli</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 sekund</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minuta</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minut</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minut</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minut</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minut</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>prijava</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>priklopi</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Življenjske zaslonske obliki</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 ura</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>razvij</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Nastavi zaskrbljeni zaslonski rez</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Nastavi stol</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Vmesnik in učinki</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Nastavitve okna</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Okvirna zakrivljeni krogi</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Nič</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Malo</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Veliko</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Omogoči prehode transparentnih efektov ob premikanju okna</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Efekt minimalizacije okna</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Skaliranje</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Magična lampica</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Nepremika</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Nizka</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Visoka</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Potezne vrstice</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Pokaži pri potezni vrstici</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Obstaja prikazan</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Zakrsleno prikazovanje</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Če je omogočeno, bo prikazano več vsebine v oknu.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Višina naslovnega vrščika</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Učinkovito le za naslovnike okvirev aplikacij, ki jih nariše upravljač okvirov.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Preprosto malo</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Tradicionalna kitajščina (kitajski Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Tradicionalna kitajščina (kitajski Tajvan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Tajvan Kitajska</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>Uporabniško ime mora biti med 3 in 32 znake</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>Prvi znak mora biti črka ali številka</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>Vaše uporabniško ime ne sme imeti le števil</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>Uporabniško ime je že uporabljal drug uporabniški račun</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Ime je preprosto dolgo</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>Ime je že uporabljal drug uporabniški račun</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Napačno geslo</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Uporabniški račun</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Administrator</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Prilagajljiv</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Vaš gostitelj je uspešno odstranjen iz domenskega strežnika</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>Vaš gostitelj je uspešno pripovezal domenski strežnik</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>Vaš gostitelj ni uspešno odstranil domenskega strežnika</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>Vaš gostitelj ni uspešno pripovezal domenskega strežnika</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>Nastavitve domene AD</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>Gesli se ne ujemata</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Dimenzionalni</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Ravni</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Ta kombinacija tipkov je konfliktna z [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Geslo ni mogoče pustiti brez vnosnega polja</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Geslo mora imeti vsaj %1 znakov</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Geslo mora biti dolgo največ %1 znakov</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Geslo lahko vsebuje samo angleške črte (senzitivno glede velikosti črter), števke ali posebne znake (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Prosim, da bo geslo vsebovalo največ %1 palindromskih znakov</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Prosim, da bo geslo vsebovalo največ %1 monotonskih znakov</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Prosim, da bo geslo vsebovalo največ %1 ponavljajúcih znakov</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Geslo mora vsebovati velikih črter, male črter, števk in znakov (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Geslo ne sme vsebovati več kot 4 palindromskih znakov</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Ne uporabljajte običajnih besed ali kombinacij kot gesla</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Prosim, ustvarite močno geslo</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Geslo se ne ustreza pravilom</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistem</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Okno</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Delovno prostor</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Pomočna oprema</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Prilagojen</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Nič</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_sq.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"sq\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>përpunoni</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Shtoni përdorues të ri</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Caktoni emër të plotë</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Rregullime hyrjeje</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Hyni pa fjalëkalim</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Fshije llogarinë e tanishme</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Rregullim grupi</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Grupe llogarish</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>u bë</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Emër grupi</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Shto grup</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Hyrje e automatizuar</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Hollësi Llogarie</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Emër llogarie, emër i plotë llogarie, lloj llogarie</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Emër llogarie</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Emër i plotë për llogarinë</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Lloj llogarie</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Emri i plotë është shumë i gjatë</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>Emrat e grupeve s’duhet të jenë më tepër se 32 shenja</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>Emrat e grupit s’mund të kenë vetëm numra</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>Përdorni vetëm shkronja, numra, nënvija dhe vija ndarëse në mes, si dhe duhet të fillojë me një shkronjë</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>Emri i grupit është përdorur</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>hyrje e shpejtë, Hyrje vetvetiu, hyrje pa fjalëkalim</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>Zhbëje</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>Ribëje</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>Prije</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>Kopjoje</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>Ngjite</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>Përzgjidhi Krejt</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>Hyrje e shpejtë</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation>Llogari</translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation>Përgjegjës llogarish</translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation>Llogari të tjera</translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Jepni Fytyrë</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>I kam lexuar dhe pajtohem me</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Klauzolë</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Pasuesi</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Fytyra u dha</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>S’u arrit të merrej fytyra juaj</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>U bë</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Riprovoni Dhënie</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation>Njohja e fytyrave s’mbulon pikasje të të qenit gjallë dhe metoda e verifikimit mund të bartë rreziqe.\nQë të garantohet dhënie e suksesshme:\n1. Mbajini pjesët e fytyrës qartësisht të dukshme dhe mos i mbuloni (kapele, syze dielli, maska, etj.).\n2. Garantoni ndriçim të mjaftueshëm dhe shmangni dritë të drejtpërdrejtë diellore.</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>“Mirëfilltësimi biometrik” është një funksion mirëfilltësimi identiteti përdoruesi, që jepet nga UnionTech Software Technology Co., Ltd. Përmes “mirëfilltësimit biometrik”, të dhënat biometrike të grumbulluara do të krahasohen me ato të depozituara në pajisje dhe identiteti i përdoruesit do të verifikohet bazuar në përfundimin e krahasimit.\n\nJu lutemi, kini parasysh se UnionTech Software Technology Co., Ltd. s’do të grumbullojë apo përdorë informacion biometrik tuajin,, i cili do të depozitohet në pajisjen tuaj vendore. Ju lutemi, aktivizojeni mirëfilltësimin biometrik në pajisjen tuaj personale dhe përdorni të dhëna tuajat biometrike vetëm për veprimet përkatëse dhe çaktivizojeni pa humbur kohë, ose fshini në atë pajisje të dhëna biometrike personash të tjerë, ndryshme do të jeni përballë rrezikut të rrjedhur prej tyre.\n\nUnionTech Software Technology Co., Ltd. është e përkushtuar të studiojë dhe përmirësojë sigurinë, përpikërinë dhe qëndrueshmërinë e mirëfilltësimit biometrik. Sidoqoftë, për shkak faktorësh mjedisorë, pajisjeje, teknikë dhe të tjerë, si dhe kontrolli rreziku, s’ka garanci se do të kaloni mirëfilltësimin biometrik përkohësisht. Ndaj, ju lutemi, mos e merrni mirëfilltësimin biometrik si të vetmen rrugë për të bërë hyrjen në UOS. Nëse keni pyetje apo sugjerime, kur përdorni mirëfilltësimin biometrik, mund të jepni idetë tuaja përmes “Shërbim dhe Asistencë” te UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>U bë</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Jepni Gisht</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Vendosni te ndijuesi i shenjave të gishtave gishtin që duhet dhënë dhe lëvizeni nga poshtë lart. Pas plotësimit të veprimit, ju lutemi, hiqeni gishtin.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>I kam lexuar dhe pajtohem me</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Klauzolën</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Pasuesi</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Riprovoni Dhënien</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>“Mirëfilltësimi biometrik” është një funksion mirëfilltësimi identiteti përdoruesi, që jepet nga UnionTech Software Technology Co., Ltd. Përmes “mirëfilltësimit biometrik”, të dhënat biometrike të grumbulluara do të krahasohen me ato të depozituara në pajisje dhe identiteti i përdoruesit do të verifikohet bazuar në përfundimin e krahasimit.\n\nJu lutemi, kini parasysh se UnionTech Software Technology Co., Ltd. s’do të grumbullojë apo përdorë informacion biometrik tuajin,, i cili do të depozitohet në pajisjen tuaj vendore. Ju lutemi, aktivizojeni mirëfilltësimin biometrik në pajisjen tuaj personale dhe përdorni të dhëna tuajat biometrike vetëm për veprimet përkatëse dhe çaktivizojeni pa humbur kohë, ose fshini në atë pajisje të dhëna biometrike personash të tjerë, ndryshme do të jeni përballë rrezikut të rrjedhur prej tyre.\n\nUnionTech Software Technology Co., Ltd. është e përkushtuar të studiojë dhe përmirësojë sigurinë, përpikërinë dhe qëndrueshmërinë e mirëfilltësimit biometrik. Sidoqoftë, për shkak faktorësh mjedisorë, pajisjeje, teknikë dhe të tjerë, si dhe kontrolli rreziku, s’ka garanci se do të kaloni mirëfilltësimin biometrik përkohësisht. Ndaj, ju lutemi, mos e merrni mirëfilltësimin biometrik si të vetmen rrugë për të bërë hyrjen në UOS. Nëse keni pyetje apo sugjerime, kur përdorni mirëfilltësimin biometrik, mund të jepni idetë tuaja përmes “Shërbim dhe Asistencë” te UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>Jepni Bebe Syri</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>E kam lexuar dhe pajtohem me</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Klauzolë</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Pasuesi</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>U bë</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Riprovoni Dhënien</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>U dha bebe syri</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>S’u arrit të merrej bebe syri</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>“Mirëfilltësimi biometrik” është një funksion mirëfilltësimi identiteti përdoruesi, që jepet nga UnionTech Software Technology Co., Ltd. Përmes “mirëfilltësimit biometrik”, të dhënat biometrike të grumbulluara do të krahasohen me ato të depozituara në pajisje dhe identiteti i përdoruesit do të verifikohet bazuar në përfundimin e krahasimit.\n\nJu lutemi, kini parasysh se UnionTech Software Technology Co., Ltd. s’do të grumbullojë apo përdorë informacion biometrik tuajin,, i cili do të depozitohet në pajisjen tuaj vendore. Ju lutemi, aktivizojeni mirëfilltësimin biometrik në pajisjen tuaj personale dhe përdorni të dhëna tuajat biometrike vetëm për veprimet përkatëse dhe çaktivizojeni pa humbur kohë, ose fshini në atë pajisje të dhëna biometrike personash të tjerë, ndryshme do të jeni përballë rrezikut të rrjedhur prej tyre.\n\nUnionTech Software Technology Co., Ltd. është e përkushtuar të studiojë dhe përmirësojë sigurinë, përpikërinë dhe qëndrueshmërinë e mirëfilltësimit biometrik. Sidoqoftë, për shkak faktorësh mjedisorë, pajisjeje, teknikë dhe të tjerë, si dhe kontrolli rreziku, s’ka garanci se do të kaloni mirëfilltësimin biometrik përkohësisht. Ndaj, ju lutemi, mos e merrni mirëfilltësimin biometrik si të vetmen rrugë për të bërë hyrjen në UOS. Nëse keni pyetje apo sugjerime, kur përdorni mirëfilltësimin biometrik, mund të jepni idetë tuaja përmes “Shërbim dhe Asistencë” te UOS.</translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation>Ju lutemi, kini mendjen te pajisja dhe siguroni se të dy sytë gjenden brenda zonës së marrjes</translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Mirëfilltësim Biometrik</translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Mirëfilltësim Biometrik</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Fytyrë</translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation>Mund të jepen deri në 5 të dhëna fytyrash</translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Shenja gishtash</translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation>Identifikim identiteti përdoruesi përmes skanimi shenjash gishtash</translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation>Iris</translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation>Njohje identiteti përmes skanimi bebeje syri</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation>Përdorni vetë shkronja, numra dhe nënvija dhe jo më shumë se 15 shenja</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation>Përdorni vetë shkronja, numra dhe nënvija</translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation>Jo më shumë se 15 shenja</translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation>Ky emër ekziston tashmë</translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation>Shtoni një %1 të re …</translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation>Emri s’mund të jetë i zbrazët</translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>“Hyre e Automatizuar” mund të aktivizohet vetëm për një llogari, ju lutemi, së pari çaktivizojeni për llogarinë “%1”</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>Ok</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>Figura</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>Njeri</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Kafshë</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Peizazh</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>Ilustrim</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>Emoxhi</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>vetjake</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Në stil “film vizatimor”</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Në stil përmasor</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Në stil të sheshtë</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Ruaje</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Ekran dhe Pezullim</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Fike ekranin pas</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Kyçe ekranin pas</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Kompjuteri pezullohet pas</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Kur mbyllet kapaku</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Kur shtypet butoni i energjisë</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Bateri e Pakët</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Njoftim për bateri të pakët</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Vetëpezulloje</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Vetëplogështoje</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Prag për bateri të ulët</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Administrim Baterie</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Shfaq kohën e mbetur për përdorimin dhe atë për ngarkimin</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Kapacitet maksimum</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Nivel i ulët baterie</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Çaktivizoje</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation>Rregullime Bluetooth, pajisje</translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth-i është i çaktivizuar dhe emri është shfaqur si “%1”</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth-i është i aktivizuar dhe emri është shfaqur si “%1”</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Shkëpute</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Lidhe</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Dërgoni Kartela</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Riemërtojeni</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Hiqe Pajisjen</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Përzgjidhni kartelë</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Përpunoni</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Lejoji pajisjet e tjera Bluetooth të gjejnë këtë pajisje</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Që të përdorni funksionin Bluetooth, ju lutemi, çaktivizojeni</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Mënyra Aeroplan</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>Emri Bluetooth s’duhet të tejkalojë 64 shenja</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>I lidhur</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Jo i lidhur</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Rregullime Nisjeje</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Mund të klikoni menunë, që të ndryshoni objekte parazgjedhje nisjeje, ose të tërhiqni figurën te dritarja për të ndryshuar figurën sfond.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>vonesë nisjeje grub-i</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>temë</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Pas aktivizimit të temës, mund të shihni sfondin e temës, kur ndizni kompjuterin</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Verifikim menuje nisjesh</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Pas hapjes, hyrja në përpunim menuje lyp fjalëkalim.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Ndryshoni Fjalëkalimin</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Ndryshoni fjalëkalim verifikimi menuje nisjeje</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Caktoni fjalëkalimin e verifikimit të menusë së nisjes</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Emër Përdoruesi:</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>rrënjë</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Fjalëkalim i Ri:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>E domosdoshme</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Fjalëkalimi s’mund të jetë i zbrazët</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Fjalëkalimet s’përputhen</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Rijepeni fjalëkalimin:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Patjetër</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Fillo animacionin</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Përimtoni madhësinë e animacionit të stemës te ndërfaqja e nisjes së sistemit</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Lejoji aplikacionet më poshtë të përdorin kamerën tuaj:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Shenjëgishti1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Shenjëgishti2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Shenjëgishti3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Shenjëgishti4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Shenjëgishti5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Shenjëgishti6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Shenjëgishti7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Shenjëgishti8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Shenjëgishti9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Shenjëgishti10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Skanimi dështoi</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Shenja e gishtit ekziston tashmë</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Ju lutemi, skanoni gishta të tjerë</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Gabim i panjohur</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Skanimi u pezullua</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>S’bëhet dot njohja</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>U lëviz shumë shpejt</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Gishti u lëviz shumë shpejt, ju lutemi, mos e ngrini para se t’ju kërkohet</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Shenjë gishti e paqartë</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Pastroni gishtin, ose rregulloni pozicion gishti dhe riprovoni</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Skanuar tashmë</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Rregullojeni pozicionin e gishtit që të skanohet plotësisht shenja e gishtit</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Gishti u lëviz shumë shpejt. Ju lutemi, mos e ngrini, pa jua kërkuar</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Ngrijeni gishtin dhe rivendoseni te ndijuesi</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Vendoseni fytyrën tuaj brenda kuadrit</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Fytyra u dha</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Ju lutemi, vendosni një fytyrë njeriu</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Mbajeni kamerën larg vetes</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Afrojuni kamerës</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Mos vendosni brenda kuadrit disa fytyra</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Sigurohuni se thjerrat e kamerës janë të pastra</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Mos bëni dhënie fytyre në mjedise të errët, të ndritshëm, apo të ndriçuar nga pas</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Mbajeni zbuluar fytyrën tuaj</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Skanimit i mbaroi koha</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>Kamera e zënë!</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Ngjyrë Theksimi</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Rregullime Ikonash</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Temë Ikonash</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Përshtatni ikonën e temës tuaj</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Temë Kursori</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Përshtatni kursorin e temës tuaj</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Jeni i sigurt se doni të fshihet kjo llogari?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Fshi drejtori llogarie</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Fshije</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Kaloni te rregullimet</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Hollësi të Rëndomta</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Vonesë përsëritjeje</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>E shkurtër</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>E gjatë</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Shpejtësi përsëritjeje</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>E ngadaltë</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>E shpejtë</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Pjesa Numerike</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>provojeni këtu</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Menu nisjesh</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Shpejtësi Dyklikimi</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Provë Dyklikimi</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Mënyra “Mëngjarash”</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>Aktivizo Tastierë</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>Të përgjithshme</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>Shpejtësi Rrëshqitjeje</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation>Menu Nisjesh</translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation>Administroni menunë tuaj të nisjeve</translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation>Administrim lejesh rrënje për zhvilluesit</translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation>Mundësi Zhvilluesish</translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation>Mundësi diagnostikimi për zhvillues</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Madhësi e madhe</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Madhësi e vogël</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>S’u arrit të përfitohet hyrje si rrënjë</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Ju lutemi, së pari, bëni hyrjen te Union ID juaj</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>S’lexohen dot hollësi të PC-së tuaj</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>S’ka lidhje rrjeti</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>Ngarkimi i dëshmisë dështoi, s’arrihet të merret hyrje si rrënjë</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>Verifikimi i nënshkrimit dështoi, s’arrihet të merret hyrje si rrënjë</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Pajtohuni dhe Merrni Pjesë te “User Experience Program”</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>Klauzola Mënyre Zhvillues</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>Pajtohuni dhe Kërkoni Hyrje Si Rrënjë</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Fillojani duke ujdisur animacion të ri nisjeje, ju lutemi, prisni një minutë</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>Përfundoi ujdisja e animacionit të ri të nisjes</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>Rregullimet do të aplikohen pas rinisjes së sistemit</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation>Rinise tani</translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation>Hidhe tej</translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation>Rinisni pajisjen që të përfundojë aplikimi i rregullimeve për Mbrojtje Vetë-Lexim Sistemi Solid</translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>Fjalëkalimi duhet të përmbajë numra dhe shkronja</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>Fjalëkalimi duhet të jetë mes 8 dhe 6e pakta 8 shenja</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Krijoni llogari të re</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Lloj llogarie</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Emër përdoruesi</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>I domosdoshëm</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Emër i plotë</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Opsional</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Krijo llogari</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>Emri i përdoruesit s’mund të jetë më i gjatë se 32 shenja</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>Emri i përdoruesit mund të përmbajnë vetëm shkronja, numra, - dhe _</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>Emri i plotë s’mund të jetë më i gjatë se 32 shenja</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>Emri i plotë s’mund të përmbajë pikëpresje</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation>e vogël</translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation>e madhe</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>S’keni ngarkuar ende ndonjë avatar. Që të ngarkoni një figurë, klikoni ose tërhiqni një të tillë.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>Lloji i kartelës së ngarkuar është i pasaktë, ju lutemi, ringarkojeni</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Pajtohuni dhe Merrni Pjesë te “User Experience Program”</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation>&lt;p&gt;Jemi thellësisht të ndërgjegjshëm mbi rëndësinë që ka për ju informacioni juaj personal. Ndaj kemi Rregullat e Privatësisë që mbulojnë si i grumbullojmë, përdorim, ndajmë me të tjerët, shpërngulim, zbulojmë publikisht dhe depozitojmë informacion tuajin.&lt;/p&gt;&lt;p&gt;Që të shihni rregulat tona më të reja të privatësisë, mund të &lt;a href=&quot;%1&quot;&gt;klikoni këtu&lt;/a&gt; dhe/ose t’i shihni në internet duk vizituar &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Ju lutemi, lexojini me kujdes dhe kuptojini plotësisht praktikat tona rreth privatësisë së klientëve. Nëse keni ndonjë pyetje, ju lutemi, lidhuni me ne përmes: %2.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Pjesëmarrja te “User Experience Program” do të thotë se na akordoni leje dhe autorizoni të grumbullojmë dhe përdorim informacion të pajisjes, sistemit dhe aplikacioneve tuaja. Nëse s’pranoni grumbullimin dhe përdorim prej nesh të informacioneve të përmendura më sipër, mos merrni pjesë te “User Experience Program”. Për hollësi, ju lutemi, referojuni Rregullave të Privatësisë së Deepin-it (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Pjesëmarrja te “User Experience Program” do të thotë se na akordoni leje dhe autorizoni të grumbullojmë dhe përdorim informacion të pajisjes, sistemit dhe aplikacioneve tuaja. Nëse s’pranoni grumbullimin dhe përdorim prej nesh të informacioneve të përmendura më sipër, mos merrni pjesë në të. Për hollësi rreth “User Experience Program”, ju lutemi, vizitoni &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Rregullim date dhe kohe</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Datë</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Vit</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Muaj</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Ditë</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Kohë</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Ripohojeni</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation>Datë dhe kohë</translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation>Datë dhe kohë, rregullime zone kohore</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation>Gjuhë dhe rajon</translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation>Gjuhë sistemi, formate rajonalë</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Nesër</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Dje</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Sot</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 orë më herët se vendorja</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 orë më vonë se vendorja</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Hapësirë</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Javë</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Dita e parë e javës</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Datë e shkurtër</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Datë e gjatë</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Kohë e shkurtër</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Kohë e gjatë</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Simbol monedhe</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Monedhë pozitive</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Monedhë negative</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Simbol dhjetor</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Simbol grupimi shifrash</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Grupim shifrash</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Madhësi faqeje</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>Shembull</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Që të ndryshoni shërbyes NTP, lypset mirëfilltësim</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Që të ujdisni zonën kohore të sistemit, lypset mirëfilltësim</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Ruaje</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Qendra e Kontrollit furnizon mundësitë për rregullime sistemi.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>Lidhe WeChat-in</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>Duke përshoqëruar WeChat-in, mundeni të hyni në mënyrë të parrezik dhe shpejt e shpejt në llogaritë tuaja %1 ID dhe vendore.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>E palidhur</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Po hiqet lidhja</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Lidhje</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Jeni i sigurt se doni të hiqet përshoqërimi me WeChat-in?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Pas heqjes së lidhjes me WeChat-in, s’do të jeni në gjendje të përdorni WeChat-in për të skanuar kodin QR që të bëni hyrjen në llogari %1 ID apo vendore.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Lermëni ta mendoj</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Lidhje Llogarie Vendore</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Pas lidhjes së llogarisë tuaj vendore, mund të përdorni funksionet vijuese:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>Sistem Hyrjesh Me Skanim Kodi WeChat</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Përdorim WeChat-i, i cili është i lidhur me ID-në tuaj %1 ID, që të skanoni kod për hyrje te llogaria juaj vendore.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Ricaktojeni fjalëkalimin përmes ID-je %1</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Ricaktoni fjalëkalimin tuaj vendor përmes ID-së %1, në rast se e harroni.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Që të përdorni veçoritë më sipër, ju lutemi, kaloni te Qendra e Kontrollit - Llogari dhe aktivizoni mundësitë përkatëse.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Njëkohësim Me Renë</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>Administroni %1 ID tuaj dhe njëkohësoni të dhëna tuajat personale nëpër pajisje.\nBëni hyrjen te %1 ID, që të merrni veçori dhe shërbime të personalizuara Shfletuesi, Shitoreje Aplikacionesh, etj.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Bëni hyrjen te %1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Vetë-njëkohësohu</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Depozitoni në re në mënyrë të parrezik rregullime sistemi dhe të dhëna personale dhe mbajini të njëkohësuara nëpër pajisje</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Rregullime Sistemi</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Kohë njëkohësimi të fundit: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Spastro të dhëna reje</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>Jeni i sigurt se doni të spastrohen rregullimet e sistemit tuaj dhe të dhëna personale të ruajtura në re?</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>Pasi të spastrohen të dhënat, s’mund të rikthehen!</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Spastroji</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Shërbim Njëkohësimi</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Llogari dhe Siguri</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Dilni</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Kaloni te rregullime web</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>Nofka duhet të jetë 1~32 shenja e gjatë</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>fshehtëzimi i fjalëkalimit dështoi</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Fjalëkalim i gabuar, edhe %1 prova</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>U mbërrit në kufi gabimesh hyrjeje për sot. Mund të ricaktoni fjalëkalimin dhe të riprovoni.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Veprim i Suksesshëm</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>Nofka mund të ndryshohet vetëm një herë në ditë</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation>ID deepin</translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation>ID UOS</translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation>Shërbime në re</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>Kina Kontinentale</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Rajone të tjera</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>Veçoria s’mund të kihet tani për tani, ju lutemi, aktivizoni së pari sistemin tuaj</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Subjekt i ligjeve dhe rregulloreve tuaja vendore, aktualisht i papërdorshëm në rajonin tuaj.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation>Aplikacion Parazgjedhje</translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation>Caktoni aplikacionin parazgjedhje për hapje llojesh të ndryshëm kartelash</translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation>Faqe web</translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation>Postë</translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation>Tekst</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Muzikë</translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation>Video</translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation>Foto</translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation>Terminal</translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Ju lutemi, zgjidhni programin parazgjedhje për hapjen e &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>shtoje</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Hapni kartelë Desktop</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Aplikacione (*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Krejt kartelat (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Hyrje si Rrënjë</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Kërkoni Hyrje Si Rrënjë</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Pas kalimit nën mënyrën zhvillues, mund të përfitoni leje rrënje, por prej kësaj mundet edhe të cenohet integriteti i sistemit, ndaj, ju lutemi, përdoreni me kujdes.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>E lejuar</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Tasti Enter</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>Në linjë</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Bëni hyrjen te ID UOS</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Jo në linjë</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Importo Dëshmi</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Përzgjidhni kartelë</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>Është bërë hyrja në ID-në tuaj UOS, klikoni që të kalohet nën mënyrën zhvillues</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Ju lutemi, së pari, bëni hyrjen te Union ID juaj dhe vazhdoni</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1. Eksportoni Hollësi PC-je</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Eksportoje</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3. Importoni Dëshmi</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Mundësi zhvillimi dhe diagnostikimi</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Shkallë regjistrimi sistemi</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Ndryshimi i mundësive shpie në regjistrim më të hollësishëm, që mund të ulë funksionimin e sistemit dhe/ose të zërë më tepër hapësirë depozitimi.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Off</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Diagnostiko</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>Ndryshimi i mundësisë mund të dojë deri në një minutë që të kryhet, pas marrjes së pohimit për rregullim të suksesshëm, ju lutemi, rinisni pajisjen, që të hyjë në fuqi.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>Që të instaloni dhe xhironi aplikacione të panënshkruar, ju lutemi, kaloni te &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Qendër Sigurie &lt;/a&gt; që të ndryshoni rregullimet.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation>Që të instaloni dhe xhironi aplikacione të panënshkruar, ju lutemi, kaloni te Qendër Sigurie, që të ndryshoni rregullimet.</translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation>Keni kaluar në mënyrën zhvillim</translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>OK</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation>2. ju lutemi, kaloni te %1 që të Shkarkoni dëshmi jashtë linje.</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation>Kjo veçori s’është e passhme tani, ju lutemi, së pari aktivizoni sistemin tuaj.</translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation>Mbrojtje Vetë-Lexim Sistemi Solid</translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation>Çaktivizimi i mbrojtjes shkyç drejtori sistemi, ky veprim bart rrezik të madh dëmtimi sistemi.</translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation>Aktivizoni mbrojtjen, që të kyçe drejtori sistemi dhe të garantohet qëndrueshmëri optimale.</translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation>Bluetooth dhe Pajisje</translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Klauzolë</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>Pajtohuni</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Ekran</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation>Ndriçim, qartësi, ripërmasim</translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation>100%</translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation>125%</translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation>150%</translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation>175%</translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation>200%</translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation>225%</translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation>250%</translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation>275%</translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation>300%</translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation>Përsëdyte</translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation>Zgjeroje</translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation>Parazgjedhje</translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation>Sa ta nxërë</translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation>Shformoje</translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation>Qendër</translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation>Vetëm në %1</translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation>Rregullime për Shumë Ekrane</translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation>Identifikoje</translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation>Risistemimi i ekraneve do të hyjë në fuqi te %1s pas ndryshimeve</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>Mënyrë</translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation>Ekrani kryesor</translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation>Ekran dhe Skemë</translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation>Ndriçim</translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation>Qartësi</translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation>Ripërmasoni Desktopin</translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation>Shpejtësi Rifreskimi</translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation>Rrotullim</translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation>Standard</translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation>90°</translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation>180°</translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation>270°</translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation>Monitoni mbulon vetëm ripërmasim 100% ekrani</translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation>Rehati Sysh</translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation>Aktivizo rehati sysh</translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation>Përimtoni shfaqjen e ekrani me ngjyra më të ngrohta, duke reduktuar ndriçimin e kaltër</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Kohë</translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation>Tërë ditën</translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation>Nga Lindja deri në Perëndim të Diellit</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Kohë Vetjake</translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation>nga</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>deri më</translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation>Temperaturë Ngjyrash</translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation>%1x%2 (E rekomanduar)</translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation>%1x%2</translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation>%1Hz (E rekomanduar)</translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation>%1Hz</translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation>Ripërmasim</translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation>Desktop dhe shtyllë punësh</translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation>Sistemim desktopi, mënyrë shtylle punësh, rregullime zone shtojcash</translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation>Panel</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>Mënyrë</translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation>Mënyra Klasike</translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation>Mënyra e Qendërzuar</translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation>Madhësi paneli</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>I vogël</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>I madh</translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation>Pozicion në ekran</translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation>Në krye</translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation>Në fund</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Mjatas</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Djathtas</translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation>Gjendje</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Mbaje të shfaqur</translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation>Mbaje të fshehur</translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation>Fshehje e mençur</translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation>Disa Ekrane</translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation>Caktoni pozicionin në ekran të shtyllës së punëve</translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation>Vetëm te kryesori</translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation>Te ekrani ku gjendet kursori</translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Zonë Shtojcash</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Përzgjidhni cilat ikona të shfaqen te Paneli</translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation>Kyçe Panelin</translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation>Ndërthur ikona aplikacionesh</translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Lejoji aplikacionet më poshtë të përdorin këto kartela dhe dosje:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Dokumente</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Desktop</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Foto</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Video</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Muzikë</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Shkarkime</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>dosje</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Madhësi</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Shkronja Standarde</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Shkronja Monospace</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Plane Energjie</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Rregullime Kursimi Energjie</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Kursim i automatizuar energjie, kur bateria është e pakët</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Prag për bateri të ulët</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Kursim i automatizuar energjie, kur është nën bateri</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Rregullime Zgjimi</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Që të zgjohet kompjuteri, është i domosdoshëm fjalëkalim</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Që të zgjohet monitori, është i domosdoshëm fjalëkalim</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Rregullime Fikjeje</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Fikje e Planifikuar</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Kohë</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Përsëritje</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Një herë</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Çdo ditë</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Ditë pune</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Kohë Vetjake</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Ule ndriçimin e ekranit nën kursyes energjie</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation>Sipër me tre gishta</translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation>Poshtë me tre gishta</translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation>Majtas me tre gishta</translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation>Djathtas me tre gishtash</translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation>Prekje me tre gishta</translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation>Sipër me katër gishta</translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation>Poshtë me katër gishta</translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation>Majtas me katër gishta</translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation>Djathas me katër gishta</translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation>Prekje me katër gishta</translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>…</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Funksionim Optimal</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Baraspeshim</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>Anë Pamore Më të Mirat</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>Çaktivizo krejt efektet e ndërfaqes dhe dritareve, për funksionim efikas të sistemit.</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>Kufizo disa efekte dritaresh, për anë pamore të shkëlqyera, teksa mirëmbahet funksionim i rrjedhshëm i sistemit.</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>Aktivizo krejt efektet e ndërfaqes dhe dritareve, për më të mirat e anëve pamore.</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation>Tastierë</translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation>Rregullime të Përgjithshme, metodë dhëniesh, shkurtore</translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation>E rëndomtë</translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Gjuhë</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>u bë</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>përpunoni</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Gjuhë të tjera</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>shtoje</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Rajon</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>Zonë</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>Sistemi operativ dhe aplikacionet mund t’ju japin lëndë vendore bazuar në formate rajonalë</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>Sistemi operativ dhe aplikacionet mund të caktojnë formate datash dhe kohe bazuar në formate rajonalë</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Format rajonal</translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Shtoni gjuhë</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Kërko</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Shtoje</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Metodë hyrjeje</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Fjalëkalim, wechat, mirëfilltësim biometrik, kyç sigurie</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Fjalëkalim</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Ndryshoni fjalëkalim</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Ditë vlefshmërie</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Përherë</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Ricaktoni fjalëkalimin</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Të drejta kopjimi© 2011-%1 Bashkësia Deepin</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Të drejta kopjimi© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Mbytje e Automatizuar Zhurmash</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Volum Në Hyrje</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Nivel Në Hyrje</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>S’u gjet pajisje në hyrje për zërin</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Pajisje Në Hyrje</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Mi dhe Touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation>I rëndomtë</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Mi</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Touchpad</translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation>Mi</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Shpejtësi Treguesi</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>E ngadaltë</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>E shpejtë</translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation>Madhësi Treguesi</translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation>Përshpejtim Miu</translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation>Çaktivizo touchpad-in, kur lidhet një mi</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Rrëshqitje e Natyrshme</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>I vogël</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Mesatar</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>I madh</translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation>X-I madh</translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation>Disa aplikacione lypin dalje nga llogaria, ose rinisje sistemi, që të hyjnë në fuqi ndryshimet</translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Pajisjet e Mia</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Emër kompjuteri</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>S’mund të fillojë, ose përfundojë me vija ndarëse në mes</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Emër OS-i</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Version</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Edicion</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Lloj</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Autorizim</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Kohë instalimi sistemi</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Kernel</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Platformë Grafike</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Procesor</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Kujtesë</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>Ju lutemi, 1~63 shenja</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation>Mënyrë MMSh, njoftime aplikacionesh</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Njoftim</translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation>Rregullime për “Mos më Shqetësoni”</translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation>Njoftimet e plaikacioneve s’do të shfaqen në desktop dhe tingujt do të heshtohen, por mundeni të shihni krejt mesazhet te qendra e njoftimeve.</translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation>Aktivizo “Mos më Shqetësoni”</translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation>Kur ekrani është i kyçur</translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation>Numër njoftimesh për t’u shfaqur te dekstopi</translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation>Njoftime Aplikacionesh</translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation>Lejo Njoftime</translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation>Shfaq njoftim në dekstop, ose shfaq te qendra e njoftimeve mesazhe të palexuar</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Desktop</translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation>Kyçe Ekranin</translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation>Qendër Njoftimesh</translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation>Shfaq paraparje mesazhi</translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation>Luaj një tingull</translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Pajisje të Tjera</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Shfaq pajisje Bluetooth pa emra</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Fjalëkalimi i tanishëm</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>I domosdoshme</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>I dobët</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Çka</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>I fortë</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Rijepeni Fjalëkalimin</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Ndihmëz fjalëkalimi</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Opsionale</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Fjalëkalimi s’mund të jetë i zbrazët</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Fjalëkalimet s’përputhen</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>Ndihmëza është e dukshme për krejt përdoruesit. Këtu mos përfshini fjalëkalimin.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>Fjalëkalim i ri</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>Fjalëkalimi i ri duhet të jetë i ndryshëm nga i tanishmi</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation>Fjalëkalimi s’mund të jetë i njëjti me emrin e përdoruesit.</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Ndryshoni fjalëkalim</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Ricaktoni fjalëkalimin</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>Gjatësia e fjalëkalimeve duhet të jetë e pakta 8 shenja dhe fjalëkalimi duhet të përmbajë një ndërthurje e të paktën 3 nga shkronjat e mëdha, shkronjat e vogla, numrat dhe simbolet vijuese. Ky lloj fjalëkalimesh është më i siguruar.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Ricaktimi i fjalëkalimit do të spastrojë të dhënat e depozituara te vargu i kyçeve.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Personalizim</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>E çelët</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Auto</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>E errët</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation>Format i pavlefshëm ngjyrash: %1</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation>Temë</translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation>Dukje</translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation>Efekt dritaresh</translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation>Personalizoni sfondin dhe ekrankursyesin tuaj</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Ekrankursyes</translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation>Ngjyra dhe ikona</translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation>Përimtoni njgyrë theksimesh dhe ikona temash</translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation>Shkronja dhe madhësi shkronjash</translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation>Ndryshoni shkronja sistemi dhe madhësi të tyre</translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation>Sfond</translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation>Përzgjidhni temë të çelët, të errët ose të automatizuar</translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation>Ndërfaqe dhe efekte, cepa të rrumbullakosur</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Vetjake</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Zonë Shtojcash</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Përzgjidhni cilat ikona shfaqen te Paneli</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation>Rregullime kursimi energjie, ekran dhe pezullim</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Energji</translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation>Të përgjithshme</translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation>Regjime energjie, rregullime kursimi energjie, rregullime zgjimi, rregullime fikjeje</translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation>Në Prizë</translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation>Ekran dhe pezullim</translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation>Me bateri</translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation>ekran dhe pezullim, bateri e pakët, administrim baterie</translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Fike</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Pezulloje</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Plogështoje</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Fike monitorin</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Shfaq Ndërfaqen e fikjes</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Mos bëj gjë</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Ekran dhe Pezullim</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Fike ekranin pas</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Kyçe ekranin pas</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Kompjuteri pezullohet pas</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Kur mbyllet kapaku</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Kur shtypet butoni i energjisë</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Baraspesho Funksionimin</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>Rregullo në mënyrë agresive frekuencën e punës së CPU-së bazuar në kushte ngarkese të CPU-së</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>E baraspeshuar</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Kursyes Energjie</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Jepi përparësi funksionimit, çka do të rrisë në mënyrë të dukshme konsumin e energjisë dhe prodhimin e nxehtësisë</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Baraspeshim funksionimi dhe jetëgjatësie baterie, e përshtatur automatikisht sipas përdorimit</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Jepi përparësi jetëgjatësisë së baterisë, prej kësaj sistemi do të sakrifikojë në shkallë funksionimi, për të reduktuar harxhimin e energjisë</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Minuta</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Orë</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Kurrë</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation>Privatësi dhe Siguri</translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation>Kamerë, leje mbi dosje</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation>Kamerë</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation>Zgjidhni nëse aplikacioni mund të përdorë kamerën apo jo</translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation>Kartela dhe Dosje</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation>Zgjidhni nëse aplikacioni mund të përdorë kartela dhe dosje</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Rregulla Privatësie</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Kopjo Adresë Lidhjeje</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Fjalëkalimi s’mund të jetë i zbrazët</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Fjalëkalimi duhet të ketë të paktën %1 shenja</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Fjalëkalimi s’duhet të jetë më i madh se %1 shenja</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Fjalëkalimi mund të përmbajë vetëm shkronja anglisht (bëhet dallimi mes shkrimit me të mëdha dhe të vogla), numra ose simbole speciale (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Ju lutemi, jo më shumë se %1 shenja palindromike</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Ju lutemi, jo më shumë se %1 shenja monotonike</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Ju lutemi, jo më shumë se %1 shenja që përsëriten</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Fjalëkalimi duhet të përmbajë vetëm shkronja të mëdha, shkronja të vogla, numra dhe simbole (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Fjalëkalimi s’duhet të përmbajë më shumë se 4 shenja palindromike</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Mos përdorni si fjalëkalim fjalë dhe kombinime të zakonshme</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Ju lutemi, krijoni një fjalëkalim të fortë</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>S’plotëson rregullat për fjalëkalime</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Qendër Kontrolli</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>E aktivizuar</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Shiheni</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Për t’u aktivizuar</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Aktivizoje</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Ka skaduar</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Në periudhë prove</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Prova skadoi</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Rregullime Ekrani Me Prekje</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Rregullimet për ekranin me prekje u ndryshuan</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Ky sfond sistemi është i kyçur. Ju lutemi, lidhuni me përgjegjësin tuaj.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Kërko</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Formate parazgjedhje</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Dita e parë e javës</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Datë e shkurtër</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Datë e gjatë</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Kohë e shkurtër</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Kohë e gjatë</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Simbol monedhe</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Shifër</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Madhësi letre</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Ruaje</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Format rajonal</translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Kërko</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Caktoni një Fjalëkalim</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 shenja</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Rijepni fjalëkalimin</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Ripohojeni</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Fjalëkalimet s’përputhen</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>Përshtatni kohë përsëritjesh</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Ruaje</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Ekrankursyes</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>paraparje</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Ekrankursyes i personalizuar</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>rregullim</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>kohë plogështie</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minutë</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minuta</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minuta</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minuta</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minuta</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 orë</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>kurrë</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Për rimarrje lypset fjalëkalim</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Ekrankursyes “shfaqje diapozitivash”</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Ekrankursyes sistemi</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Kërko</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>S’ka përfundime kërkimi</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Shtoni shkurtore vetjake</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Emër:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>E domosdoshme</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Urdhër:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Shkurtore</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Asnjë</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Shto</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation>Emri i shkurtores është tashmë në përdorim. Zgjidhni një emër tjetër</translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation>Ndryshoni shkurtore vetjake</translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation>ju lutemi, jepni një tast shkurtoreje</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Ruaje</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation>që ta bëni këtë shkurtore të hyjë në fuqi, klikoni mbi Ruaje</translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation>që ta bëni këtë shkurtore të hyjë në fuqi, klikoni mbi Shtoje</translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Shkurtore</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Shkurtore sistemi, shkurtore vetjake</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Shkurtore kërkimesh</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>u bë</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>përpunojeni</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Klikim</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>ose</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Zëvendësoje</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Rikthe parazgjedhjen</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Shtoni shkurtore vetjake</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation>ju lutemi, jepni për shkurtoren një tast të ri</translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Tingull</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation>Tinguj në dalje, në hyrje, efekte zanore, pajisje</translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Pajisje Në Dalje</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Përzgjidhni të aktivizohen ajo pajisjet</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Pajisje Në Hyrje</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Efekte Zanore</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation>Rregullime</translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Efekte Zanore</translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation>Aktivizoni/çaktivizoni efekte zanore</translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation>Aktivizoni/çaktivizoni pajisje audio</translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation>Administrim Pajisjesh</translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Nisu</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Fike</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Dalje</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Zgjohu</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volum +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Njoftim</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Bateri e pakët</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Dërgoje ikonën te Nisës në Desktop</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Zbraz Hedhurinat</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Fute</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Nxirre</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>U lidh pajisje e heqshme</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>U hoq pajisje e heqshme</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Gabim</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Mënyrë</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Volum Në Dalje</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Përforcim Volumi</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Nëse volumi është më i fortë se 100%, mund të shformohen tingujt dhe të jetë e dëmshme për altoparlantët tuaj</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Majtas</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Djathtas</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Në Dalje</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>S’u gjet pajisje output-i për zërin</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Balancë Majtas-Djathtas</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Përzje në një kanal të vetëm kanalet majtas dhe djathtas</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Të ndalet a jo automatikisht audioja, kur hiqet pajisja audio e çastit</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation>Audio Mono</translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation>Pauzë e Automatizuar</translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Pajisje Në Dalje</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Tingull</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Energji</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Mi</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Përditësoje</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Ekrankursyes</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation>Rregullime të rëndomëta</translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation>Sistem</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation>Informacion Ndihmës</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation>Mbi Këtë PC</translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation>Version sistemi, informacion pajisjesh</translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation>Shihni shënimin rreth software-i me burim të hapët</translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation>Merrni pjesë te “User Experience Program” që të ndihmoni të përmirësohet produkti</translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation>Marrëveshje Licence Përdoruesi të Thjeshtë</translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation>Shihni marrëveshjen e licencës së përdoruesit të thjeshtë</translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Rregulla Privatësie</translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation>Shihni informacion rreth rregullash privatësie</translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation>Shënim Software-i Me Burim të Hapët</translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Më Tepër Sfonde</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Vetënjëkohësohë kohën</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Shërbyes NTP</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Datë dhe kohë e sistemit</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Përshtateni</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Rregullime</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Adresë shërbyesi</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>E domosdoshme</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>Adresa e shërbyesit ntp s’mund të jetë e zbrazët</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>Përdorin formatin 24-orësh</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>zonë kohore sistemi</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Listë zonash kohore</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Shtoje</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>nga</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>në</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Të ruhen rregullimet për ekranin?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Rregullimet do të kthehen te %1s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Riktheji</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Ruaje</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Shtoni zonë kohore</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Përcaktoje zonën kohore bazuar në vendndodhjen aktuale</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Zonë kohore:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Qyteti Më i Afërt:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Ruaje</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Ekran me prekje</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Rregullime Elementare</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Touchpad</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Shpejtësi Treguesi</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>E ngadaltë</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>E shpejtë</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Prekeni që të Klikohet</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Rrëshqitje e Natyrshme</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Gjeste me tre gishta</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Gjeste me katër gishta</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation>Gjeste</translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation>Ekran me prekje</translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation>Formësim Ekrani Me Prekje</translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Merrni Pjesë te “User Experience Program”</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Kopjo Adresë Lidhjeje</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Verifikim Sigurie</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>Veprimi është me spec, ju lutemi, së pari jepni fjalëkalimin për hyrje</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 shenja</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Harruat Fjalëkalimin?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Anuloje</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Ripohojeni</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation>Formësim wacom-i</translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation>Mënyra Penë</translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation>Mënyra Mi</translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation>Ndjeshmëri Trysnie</translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation>E vogël</translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation>E madhe</translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation>Model</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>sfond</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Fotot e mia</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Sfond Sistemi</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Sfond ngjyrë e plotë</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Sfonde që mund të përshtaten</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>stil mbushjeje</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Ndryshim i automatizuar sfondi</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>kurrë</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 sekonda</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minutë</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minuta</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minuta</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minuta</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minuta</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>hyrje</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>zgjohu</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Sfond Live</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 orë</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation>Sfonde Sistemi</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>shmbështille</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Ujdisni kyçje ekrani</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Caktoni desktop</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation>shfaqi krejt - %1 objektet</translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation>Shtoni Foto</translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Ndërfaqe dhe Efekte</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Rregullime Dritareje</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Cepa të rrumbullakët dritaresh</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Asnjë</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>E vogël</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>E madhe</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Aktivizo efekte tejdukshmërie, kur lëvizet një dritare</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Efekt Minimizimi Dritaresh</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Ripërmasojeni</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Llambë Magjike</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Patejdukshmëri</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>E ulët</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>E lartë</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Shtylla Rrëshqitjeje</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Shfaqe gjatë rrëshqitjesh</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Mbaje të shfaqur</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Shfaqje Kompakte</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Në u aktivizoftë, te dritarja shfaqet më tepër lëndë.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Lartësi Shtylle Titulli</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>E përshtatshme vetëm për shtylla titujsh dritaresh aplikacionesh të vizatuara nga përgjegjësi i dritareve.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Tejet e vockël</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>Mesatare</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>Mesatare</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Kineze Tradicionale (Kineze Hong-Kongu)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Kineze Tradicionale (Kineze Tajvani)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation>Kineze Min Nan</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Kina Tajvan</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>Emri i përdoruesit duhet të jetë nga 3 deri në 32 shenja</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>Shenja e parë duhet të jetë shkronjë ose numër</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>Emri juaj i përdoruesit s’duhet të përmbajë vetëm numra</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>Emri i përdoruesit është përdorur nga të tjera llogari përdoruesish</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Emri i plotë është shumë i gjatë</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>Emri i plotë është përdorur nga të tjera llogari përdoruesish</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Fjalëkalim i gabuar</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Përdorues Standard</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Përgjegjës</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>E përshtatur</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Streha juaj u hoq me sukses nga shërbyesi i përkatësive</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>Streha juaj u bë me sukses pjesë e shërbyesit të përkatësive</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>S’u arrit të braktisej shërbyesi i përkatësive nga streha juaj</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>S’u arrit që streha juaj të bëhej pjesë e shërbyesit të përkatësive</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>Rregullime përkatësie AD</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>Fjalëkalimi s’përputhet</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Përmasor</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>I sheshtë</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Fytyrë</translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation>Përdorni fytyrën tuaj që të shkyçni pajisjen dhe për të bërë ujdisjen më vonë</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Shenja gishtash</translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation>Vendosni gishtin tuaj</translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation>Vendoseni gishtin tuaj te ndijuesi pa e lëvizur, deri sa t’ju kërkohet ta hiqni</translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation>Hiqeni gishtin</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Ngrijeni gishtin dhe rivendoseni te ndijuesi</translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation>Ngrijeni gishtin dhe ribëjeni</translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation>Skanimi u Pezullua</translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation>Skanoni skajet e shenjës tuaj të gishtit</translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation>Vendosni te ndijuesi skajet e mollëzës së gishtit tuaj</translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation>Rregullojeni pozicionin që të skanohen skajet e shenjës së gishtit tuaj</translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation>U shtuan shenja gishtash</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation>Bebe syri</translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation>Përdorni fytyrën tuaj që të shkyçni pajisjen dhe për të bërë ujdisjen më vonë</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Kjo shkurtore përplaset me [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Fjalëkalimi s’mund të jetë i zbrazët</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Fjalëkalimi duhet të ketë e pakta %1 shenja</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Fjalëkalimi s’duhet të jetë më tepër se %1 shenja</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Fjalëkalimi mund të përmbajë vetëm shkronja anglisht (bëhet dallimi mes shkrimit me të mëdha dhe të vogla), numra ose simbole speciale (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Ju lutemi, jo më shumë se %1 shenja palindromike</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Ju lutemi, jo më shumë se %1 shenja monotonike</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Ju lutemi, jo më shumë se %1 shenja të përsëritura</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Fjalëkalimi duhet të përmbajë shkronja të mëdha, shkronja të vogla, numra dhe simbole (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Fjalëkalimi s’duhet të përmbajë më shumë se 4 shenja palindromike</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Mos përdorni si fjalëkalim fjalë dhe kombinime të zakonshme</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Ju lutemi, krijoni një fjalëkalim të fortë</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>S’plotëson rregullat për fjalëkalime</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation>Përfshini të paktën %1 lloje nga shkronja me të vogla, me të mëdha, numra dhe simbole dhe fjalëkalimi s’mund të jetë i njëjtë me emrin e përdoruesit.</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistem</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Dritare</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Hapësirë pune</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Mjete Ndihmuese</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Vetjake</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Asnjë</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_sr.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"sr\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Повезани сте</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Нисте повезани</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Отисак прста 1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Отисак прста 2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Отисак прста 3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Отисак прста 4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Отисак прста 5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Отисак прста 6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Отисак прста 7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Отисак прста 8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Отисак прста 9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Отисак прста 10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Неуспешно очитавање</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Отисак прста већ постоји</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Молимо очитајте друге прсте</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Непозната грешка</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Очитавање је обустављено</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Непрепознатљиво</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Пребрзо склоњен</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Прст је пребрзо склоњен, молимо не подижите до обавештења</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Нејасан отисак прста</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Очистите прст или прилагодите позицију прста и покушајте поново</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Већ очитано</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Прилагодите положај прста да очитате цео отисак</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Прст је пребрзо склоњен. Молимо не подижите до обавештења</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Склоните прст и поново га прислоните на читач </translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Откажи</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Идентификација је неопходна за промену НТП сервера</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Идентификација је неопходна за поставку временске зоне</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Приказ</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Аутоматско сузбијање буке</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Улазна јачина</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Улазни ниво</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Улазни уређај</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Личне промене</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Прилагођен</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Лозинка не може бити празна</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Лозинка мора садржати најмање %1 карактера</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Лозинка не може бити дужа од %1 карактера</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Лозинка може садржати само енглеска слова (осетљива на величину), бројеве и специјалне карактере (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Лозинка може садржати само велика и мала слова, бројеве и специјалне карактере (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Лозинка не сме садржати више од 4 палиндромна карактера</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Немојте користити уобичајене речи и комбинације као лозинку</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Молимо направите јаку лозинку</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Не задовољава правила за лозинке</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Контролни Центар</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Активиран</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Прегледај</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Потребно активирати</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Активирај</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Истекло</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Пробни период</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Пробни период је истекао</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Подешавање екрана на додир</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Подешавања екрана на додир су промењена</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Звук</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Звучни ефекти</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Покретање</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Искључи</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Одјави се</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Буђење</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Гласноћа +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Обавештења</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Батерија при крају</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Слање иконице из Покретача Програма на Радну површину</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Пражњење смећа</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Прикључење</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Ископчавање</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Уклоњиви уређај прикључен</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Уклоњиви уређај уклоњен</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Грешка</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Режим</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Излазна jачина</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Увећање јачине</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Лево</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Десно</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Излазни уређај</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Врати Претходно</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Сачувај</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Традиционални кинески (кинески Хонг Конг)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Традиционални кинески (кинески Тајван)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Тајван Кина</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Ова пречица се конфликтује са [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Систем</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Прозор</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Радни простор</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Помоћни алати</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Прилагођено</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Ништа</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_sv.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"sv\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>redigera</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Lägg till ny användare</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Ställ in fullt namn</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Inloggningstillaggnings</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Inloggning utan lösenord</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Ta bort aktuellt konto</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Gruppinställningar</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Kontogrupper</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>färdig</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Gruppnamn</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Lägg till grupp</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Automatisk inloggning</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Kontoinformation</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Kontonamn, fullt namn, kontotyp</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Kontonamn</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Fullt namn</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Kontotyp</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Registrera ansikte</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Jag har läst och godkänt</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Varningsbeteende</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Ansikte registrerat</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>Misslyckades med att registrera ditt ansikte</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Försök igen</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Registrera fingret</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Placera det finger du vill registrera i fingerprint-sensorn och rör det från nedan till övre. När du har slutfört åtgärden, vänligen hejka dit din finger.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Jag har läst och godkänt</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Varning</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Försök igen</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>Biometrisk autentisering är en funktion för användaridentitetsautentisering som tillhandahålls av UnionTech Software Technology Co., Ltd. Genom biometrisk autentisering kommer de biometriska data som samlat in att jämföras med de som lagras på enheten, och användaridentiteten kommer att verifieras baserat på jämförelseresultatet.\n\nVänligen notera att UnionTech Software Technology Co., Ltd. kommer inte att samla in eller åtkomst till dina biometriska data, vilka kommer att lagras på din lokala enhet. Vänligen aktivera endast biometrisk autentisering i ditt personliga enhet och använd dina egna biometriska data för relaterade operationer, och ta bort eller ta bort andra personers biometriska data på enheten på ett snabbt och effektivt sätt, annars kommer du att ta på risken som uppstår därifrån.\n\nUnionTech Software Technology Co., Ltd. är engagerat att forskar och förbättra säkerheten, noggrannheten och stabiliteten för biometrisk autentisering. Eftersom det finns faktorer och riskkontroll som miljö, utrustning, teknik och andra faktorer, kan det inte garanteras att du kommer att lyckas med biometrisk autentisering i viss mån. Därför vänligen inte ta biometrisk autentisering som den enda sättet att logga in på UOS. Om du har några frågor eller förslag när du använder biometrisk autentisering, kan du ge feedback genom </translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>Automatisk inloggning kan aktiveras för endast en konto, vänligen inaktivera den för konto &quot;%1&quot; först</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>OK</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>Människa</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Djur</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Sättning</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>Illustration</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>Emoji</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>anpassad</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Manga stil</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Dimensionell stil</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Platt stil</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Slå av skärmen och häng paus</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Slå av skärmen efter</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Lås skärmen efter</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Datorn pauserar efter</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>När skärmfönstret stängs</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>När trycks på maktknappen</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Låg batteri</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Meddelande om låg batteri</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Automatisk suspendering</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Automatisk hibernation</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Nedåt batterilivslöftesvärde</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Batterihantering</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Visa kvarvarande användning och laddningstid</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Maksimal kapacitet</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Nedåt batterilivslängd</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Avaktivera</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth är av, och namnet visas som &quot;%1&quot; </translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth är på, och namnet visas som &quot;%1&quot; </translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Skicka filer</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Byt namn</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Ta bort enhet</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Välj fil</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Tillåt andra Bluetooth-enheter att hitta denna enhet</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>För att använda Bluetooth-funktionen, vänligen avaktivera</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Flytturkonditioner</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Ansluten</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Inte ansluten</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Startinställningar</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Du kan klicka på menyn för att ändra standardstartelement, eller dra bilden till fönstret för att ändra bakgrundsbild.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>grub startfördröjning</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>tema</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Efter att aktiverat tema kan du se teman bakgrund när du startar datorn</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>StartmenyalVerifiering</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Efter att öppnat krävs ett lösenord för att gå in och redigera menyn.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Ändra Lösenord</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Ändra startmenyalverifieringslösenord</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Ställ in autentiseringslösenordet för startmenyn</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Användarnamn :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Nytt Lösenord :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Lösenordet kan inte vara tomt</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Lösenorden matchar inte</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Repetera lösenord:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Värdet</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Starta animation</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Justera storleken på logotypanimationen på systemstartskärmen</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Tillåt nedanstående program att komma åt din kamera:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Fingerprint1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Fingerprint2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Fingerprint3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Fingerprint4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Fingerprint5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Fingerprint6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Fingerprint7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Fingerprint8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Spåra 9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Spåra 10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Skanning misslyckades</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Fingeravtrycket finns redan</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Skanna andra fingrar</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Okänt fel</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Skanning pausad</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Kan inte identifiera</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Flyttade för snabbt</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Fingret flyttades för snabbt, vänligen släp pa tillbaka förrän du får ett meddelande</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Osäkert fingeravtryck</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Rensa din finger eller justera fingerens position och försök igen</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Redan skannat</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Justera fingerens position för att skanna hela fingeravtrycket</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Fingret flyttades för snabbt. Vänligen släp pa tillbaka förrän du får ett meddelande</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Släp upp fingret och placera det på sensorn igen</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Placera din ansiktsbild inuti ramen</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Ansikte registrerat</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Placera ett ansikte, vänligen</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Bli bortom kameran</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Kom närmare kameran</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Placera inte flera ansikten inuti ramen</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Säkerställ att kameran lens är ren</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>registrera inte i mörka, ljusa eller baklysade miljöer</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Bli ansiktsutrymme</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Scannen tidsutgått</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Avbryt</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Accent färg</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Ikoninställningar</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Anpassa ditt tema ikon</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Anpassa ditt tema muspekare</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Är du säker på att du vill ta bort denna konto</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Gå till inställningar</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Vanliga</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Upprepningsfördröjning</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Uppprepningstakt</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Talrutin</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>testa här</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Caps lock meddelande</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Dubbelklickhastighet</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Dubbelklicktest</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Vänsterhandläge</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Stor storlek</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Liten storlek</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>Kunde inte få root åtkomst</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Var vänlig att logga in på din Union ID först</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>Kan inte läsa din datorinformation</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>Ingen nätverksanslutning</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>Kortladdningen misslyckades, kan inte få root åtkomst</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>Verifiering av signatur misslyckades, kan inte få root tillgång</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Godkänn och gå med i Användarupplevelsesprogrammet</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>Varning om utvecklarläge</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>Godkänn och begär root tillgång</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Starta att ställa in den nya boot-animeringen, vänta en minut</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>Ny boot-animering ställt in</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>Inställningarna kommer att tillämpas efter att systemet har startats om</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>Lösenordet måste innehålla siffror och bokstäver</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>Lösenordet måste vara mellan 8 och 64 tecken</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Skapa ett nytt konto</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Kontotyp</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Användarnamn</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Fullt namn</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Skapa konto</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>Du har fortfarande inte uppladdat ett avatar-bild. Klicka eller dra och släpp för att uppladda en bild.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>tillgänglig</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Godkänn och gå med i Användarupplevelsesprogrammet</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Datum- och tidsinställning</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Datum</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Tid</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 timmar senare än lokalt</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Mellanrum</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Vecka</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Första dagen i veckan</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Kort datum</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Lång datum</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Kort tid</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Lång tid</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Valutabelik</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Positiv valuta</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Negativ valuta</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Desimaltecken</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Grupperings-tecken för siffror</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Gruppering av siffror</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Sidan storlek</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Autentisering krävs för att ändra NTP-server</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Autentisering krävs för att ställa in tidszon</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Styrcentrum ger alternativ för systeminställningar.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>Anslut WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>Genom att ansluta WeChat kan du logga in på din %1 ID och lokala konton säkert och snabbt.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Avkopplad</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Avkoppling</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Anslut</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Är du säker på att du vill avkoppla WeChat?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Efter att du har avkopplat WeChat kommer du inte att kunna använda WeChat för att scanna QR-koden för att logga in på %1 ID eller lokala konton.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Låt mig tänka på det</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Lokalt konto bindning</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Efter att binda ditt lokala konto kan du använda följande funktioner:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>WeChat Skanera koden inloggningssystem</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Använd WeChat, som är bindat till din %1 ID, för att skanna koden för att inloggning till ditt lokala konto.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Återställ lösenord via %1 ID</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Återställ ditt lokala lösenord via %1 ID om du glömmer det.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>För att använda ovanstående funktioner, gå till Kontrollcentrum - Konton och aktivera motsvarande alternativ.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Moln-synkronisering</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>Hantera din %1 ID och synkronisera dina personliga data mellan enheter.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Logga in på %1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Säkert lagra systeminställningar och personliga data i molnet och synkronisera dem mellan enheter</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Systeminställningar</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Senaste synkroniseringstid: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Rensa moln-data</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>Är du säker på att du vill rensa dina systeminställningar och personliga data som sparats i molnet?</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>När data är rensat kan det inte återhållas!</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Rensa</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Synkroniserings-tjänst</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Konto och säkerhet</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Logga ut</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Gå till webbinställningar</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>kryptering av lösenord misslyckades</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Felaktig lösenord, %1 chans kvar</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>Inloggningsfel nått gränsen idag. Du kan återställa ditt lösenord och försöka igen.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Åtgärd lyckades</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>Kina</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Övriga regioner</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>Funktionen är för närvarande inte tillgänglig, aktivera systemet först</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Förutsatt av lokala lagar och regleringar är det för närvarande olagligt i din region.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Vänligen välj standardprogram för att öppna &apos;%1&apos;, </translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>Lägg till</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Apps (*.desktop), </translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Alla filer (*), </translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Root åtkomst</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Använda Root åtkomst</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>När du har gått in i utvecklarläge kan du få root åtkomst, men det kan också skada systemets integritet, så vänligen använd det med försiktighet.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Tillåten</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Gå in</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>Online</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Logga in på UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Offline</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Importera certifikat</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Välj fil</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>Din UOS ID har loggats in, klicka för att gå in i utvecklarläge</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Vänligen logga in på din UOS ID först och fortsätt</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1.Exportera datorinformation</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Exportera</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.Importera certifikat</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Utvecklings- och felhanteringstester</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Nivå för systemloggning</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Ändring av inställningarna resulterar i mer detaljerad loggning som kan påverka systemprestandan och/eller kräva fler lagringsplatser.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Av</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Felhantering</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>Ändring av inställningen kan ta upp till en minut att bearbeta. Efter att ha mottagit ett lyckat inställningsmeddelande, starta om enheten för att åtgärden ska börja gälla.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Bildskärm</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Tillåt nedan angivna program att åtkomst till dessa filer och mappar:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Dokument</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Desktop</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Bilder</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Videor</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Hämtningar</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>mapp</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Monospaced Font</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Maktenheter</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Sparande på energiinställningar</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Automatisk energisparring vid lågt batteriläge</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Låg batterilägesgräns</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Automatisk energisparring vid batteri</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Uppväckningsinställningar</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Ett lösenord krävs för att väcka datorn</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Ett lösenord krävs för att väcka skärmen</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Avslutningsinställningar</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Planerat avslut</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Tid</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Förflytta</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>En gång</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Varje dag</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Arbetsdagar</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Anpassad tid</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Minska skärmhjulns ljusstyrka i energisparsning</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>(),&apos; </translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Optimerad prestanda</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Balans</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>Bästa visuella</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Språk</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>färdig</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>redigera</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Övriga språk</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>lägg till</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Region</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>Område</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>Operativsystem och program kan ge dig lokal innehåll baserat på ditt land och region</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>Operativsystem och program kan ställa in datum- och tidsformat baserat på regionella format</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Lägg till språk</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Loggningsmetod</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Lösenord, WeChat, biometrisk autentisering, säkerhetsnyckel</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Ändra lösenord</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Giltighetsdagar</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Deepin Community</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Automatisk störsuppression</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Ingångsvolym</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Inmatningsnivå</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Inga indataenheter för ljud hittades</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Mus och Touchpad</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Mina enheter</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Datorns namn</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Det kan inte börja eller sluta med bindestreck</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Operativsystemets namn</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Utgåva</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Autentisering</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Tid för systeminstallation</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Kernel</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Gráfikplattform</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Processorn</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Minnesutrymme</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Andra enheter</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Visa Bluetooth-enheter utan namn</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Nuvarande lösenord</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Stark</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Tips för lösenord</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Lösenordet kan inte vara tomt</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Lösenorden matchar inte</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>Tipsen är synlig för alla användare. Ange inte lösenordet här.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Ändra lösenord</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Återställ lösenord</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>Lösenordet bör vara minst 8 tecken långt och innehålla en kombination av minst 3 av följande: stora bokstäver, små bokstäver, siffror och symboler. Detta lösenord är säkrare.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Återställandet av lösenordet kommer att radera data lagrade i lösenordsspelet.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Anpassning</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Mörkt</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Anpassat</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Plugin område</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Välj vilka ikoner som visas i docken</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Avsluta monitor</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Visa avslutningsgränssnittet</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Gör inget</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Skärm och avsluta</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Avsluta monitor efter</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Lås skärm efter</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Dator avslutas efter</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>När luksen stängs</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>När tryckknappen trycks</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Hög prestanda</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Balansera prestanda</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>Anpassa CPU-frekvens aggressivt beroende på CPU-bolagskondition</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Sparsamhet</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Prioritiera prestanda, vilket kommer att öka betydligt energiförbrukning och varmeutbildning</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Balansera prestanda och batteriliv genom automatisk justering efter användning</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Prioritera batteriliv, vilket systemet kommer att ge upp någon prestanda för att minska energiförbrukning</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Minuter</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Timme</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Integritetspolicy</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Lösenord kan inte vara tomt</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Lösenordet måste ha minst %1 tecken</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Lösenordet får inte ha mer än %1 tecken</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Lösenordet kan endast innehålla engelska bokstäver (källskiftkänsligt), siffror eller speciella symboler (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Ge inte mer än %1 palindromtecken, tack</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Ge inte mer än %1 monoton tecken, tack</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Ge inte mer än %1 upprepade tecken, tack</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Lösenordet måste innehålla gemena bokstäver, små bokstäver, siffror och symboler (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Lösenordet får inte innehålla fler än 4 palindromtecken</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Använd inte vanliga ord och kombinationer som lösenord</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Skapa ett starkt lösenord, tack</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Det uppfyller inte lösenordets regler</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Kontrollcenter</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Aktiverad</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Visa</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Att aktivera</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Aktivera</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Utgått</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>I probetid</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Försök upphört</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Inställningar för dottkort</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Inställningarna för dottkortet har ändrats</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Detta systembakgrund är låst. Vänligen kontakta din administratör.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Standardformateringar</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Första dagen i veckan</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Kort datum</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Längre datum</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Kort tid</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Längre tid</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Valutakürv</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Siffra</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Pappersstorlek</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Ställ in ett lösenord</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 tecken</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Repetera lösenord</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Lösenord matchar inte</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Skärmskydd</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>förhandsgranska</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Anpassat skärmskydd</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>inställning</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>tillåten inaktivitetstid</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minut</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minuter</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Ljud</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Indataenheter</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Ljudeffekter</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Uppstart</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Stäng av</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Logga ut</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Väcka</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Volym +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Avisering</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Låg batterinivå</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Skicka ikon från Launchern till Skrivbordet</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Töm papperskorgen</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Koppla in</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Koppla ur</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Flyttbar enhet är ansluten</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Flyttbar enhet togs bort</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Fel</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Läge</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Utgångsvolym</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Volymboost</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Om ljudet är högre än 100% kan det förstöra ljudet och vara skadligt för utdataenheter</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Vänster</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Höger</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Inga utdataenheter för ljud hittades</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Vänster-höger balans</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Slå ihop vänster och höger kanaler till en enda kanal</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Om ljudet kommer att pausas automatiskt när den aktuella ljudenheten avslutats</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Uppdatera</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Schemalägg skärmskyttningsprogram</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Mer tapeter</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Synkronisera tid automatiskt</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>NTP-server</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Systemdatum och tid</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Anpassa</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Inställningar</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Serveradress</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>NTP-serveradressen kan inte vara tom</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>Använd 24-timmarsformat</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>systemtidszoner</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Tidszonlista</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>från</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>till</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Spara skärminställningarna？</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Inställningarna återställs om %1 sekunder.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Återställ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Spara</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Lägg till tidzoner</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Bestäm tidzonen baserat på nuvarande plats</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Tidzoner:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Nästlågstad stad:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Dotternyta</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Konfigurera här när du ansluter dotternyta</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Basic Inställningar</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Avaktivera dotternyta under inmatning</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Tre-finger-bewegningar</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Fyra-finger-bewegningar</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Dra med dig i Användarupplevelsesprogrammet</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Säkerhetsverifiering</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>Åtgärden är sensibel, ange inloggningslösenord först</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 tecken</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Glömt lösenord？</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>bakgrundsbild</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Mina bilder</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Systembakgrundsbild</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Enkla färbbakgrundsbild</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Anpassningsbara bakgrundsbilder</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>fyll stil</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Automatisk väggpappersbyxt</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>aldrig</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 sekunder</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 minut</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 minuter</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 minuter</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 minuter</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 minuter</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>inloggning</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>uppsak</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Livsväggpappr</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 timme</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>utbilda</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Sätt låstskärm</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Sätt skrivbord</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Gränssnitt och effekter</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Fönsterr settningar</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Avrundade fönsterrör</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Aktivera transparenta effekter när fönster flyttas</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Fönsterminimeringseffekt</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Skala</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Magiska lamp</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Transparens</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Låg</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Hög</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Rullbarr</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Visa vid rullning</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Håll visad</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Komprimerad visning</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Om aktiverat visas mer innehåll i fönstret.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Rubriksbårhöjd</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Endast lämpligt för programfönsterrubrikar som ritas av fönsterverwaltung.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Överallt små</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Traditionell kinesiska (kinesiska Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Traditionell kinesiska (kinesiska Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan Kina</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>Användarnamnet måste vara mellan 3 och 32 tecken långt</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>Första tecknet måste vara en bokstav eller ett siffertal</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>Ditt användarnamn bör inte bestå endast av siffror</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>Användarnamnet används redan av andra användarkonton</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Komplettera namnet är för långt</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>Komplettera namnet används redan av andra användarkonton</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Standardanvändare</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Anpassat</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Dimensionell</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Plan</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Denna snabbtangent konflikt med [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Lösenord kan inte vara tomt</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Lösenordet måste innehålla minst %1 tecken</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Lösenordet får inte innehålla mer än %1 tecken</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Lösenordet kan endast innehålla engelska bokstäver (kasesensitive), siffror eller speciella tecken (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>För varje palindromtecken, var vänlig att inte använda mer än %1</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>För varje monoton tecken, var vänlig att inte använda mer än %1</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>För varje upprepade tecken, var vänlig att inte använda mer än %1</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Lösenordet måste innehålla gemensamma bokstäver, små bokstäver, siffror och symboler (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Lösenordet får inte innehålla mer än 4 palindromtecken</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Använd inte vanliga ord och kombinationer som lösenord</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Skapa ett starkt lösenord, var vänlig</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Det uppfyller inte lösenordets regler</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>System</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Fönster</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Arbetsyta</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Assistivverktyg</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Anpassat</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Ingen</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_sv_SE.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"sv_SE\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_sw.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"sw\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Imemuunganwa</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Haimuunganwa</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Katisha</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Thibitisha inahitaji kuchagua pahali pa saa ya mfumo</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Kituo cha ulinzi</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Anza</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Zima</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Aga</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Amka</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Sauti +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Taarifa</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Betri ndogo</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Tuma ikon kutoka kizinduzi kwa eneo la kazi </translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Toa taka</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Ziba</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Zibua</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Kifaa inaweza kutoa imeunganishwa</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Kifaa inaweza kutoa imetenganisha</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Kosa</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Hali</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Kushoto</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Kulia</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Hifadhi</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Kichina cha Jadi (Kichina Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Kichina cha Jadi (Kichina Taiwan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Taiwan China</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Njia hii ya haraka inakinzana na [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Mfumo</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Dirisha</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Nafasi ya Kazi</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Zana za Kusaidia</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Maalum</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Hakuna</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_ta.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ta\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>இணைக்கப்பட்டுள்ளது</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>நிறுத்து</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>திரை</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>உள்ளீடு தொகுதி</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>சுட்டி மற்றும் டச்பேட்</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>தனிப்பயனாக்கம்</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>விருப்பம்</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>கட்டுப்பாட்டு மையம்</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>ஒலி</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>நிறுத்து</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>வெளியேறு</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>முறை</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>வெளியீடு ஒலியளவு</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>இடது</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>வலது</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>திருப்பு / மாற்றியமை</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>சேமி</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>பாரம்பரிய சீனம் (சீன ஹாங்காங்)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>பாரம்பரிய சீனம் (சீன தைவான்)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>தைவான் சீனா</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>இந்த குறுக்குவழி [%1] உடன் முரண்படுகிறது</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>அமைப்பு</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>சாளரம்</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>பணியிடம்</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>உதவி கருவிகள்</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>தனிப்பயன்</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>ஏதுமில்லை</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_te.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"te\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_th.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"th\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>แก้ไข</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>เพิ่มผู้ใช้ใหม่</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>กำหนดชื่อจริง</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>การตั้งค่าการเข้าสู่ระบบ</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>เข้าสู่ระบบโดยไม่ต้องใช้รหัสผ่าน</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>ลบบัญชีปัจจุบัน</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>การตั้งค่ากลุ่ม</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>กลุ่มบัญชี</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>เสร็จสิ้น</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>ชื่อกลุ่ม</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>เพิ่มกลุ่ม</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>เข้าสู่ระบบอัตโนมัติ</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>ข้อมูลบัญชี</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>ชื่อบัญชี, ชื่อจริงของบัญชี, ประเภทบัญชี</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>ชื่อบัญชี</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>ชื่อจริงของบัญชี</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>ประเภทบัญชี</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>ลงทะเบียนใบหน้า</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>ฉันได้อ่านและยอมรับ</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>คำเตือน</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>ถัดไป</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>ใบหน้าได้ลงทะเบียนแล้ว</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>สไตล์การ์ตูน</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>สไตล์มิติ</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>สไตล์แบน</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>บันทึก</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>หน้าจอและสั่งพัก</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>ปิดหน้าจอหลังจาก</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>ล็อกหน้าจอหลังจาก</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>คอมพิวเตอร์สั่งพักหลังจาก</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>เมื่อปิดฝาแล็ปท็อป</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>เมื่อป�ธ์เปิดคอมพิวเตอร์ถูกกด</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>แบตเตอรี่ต่ำ</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>การแจ้งเตือนแบตเตอรี่ต่ำ</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>สั่งพักอัตโนมัติ</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Hibernate อัตโนมัติ</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>閾值</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>การจัดการแบตเตอรี่</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>แสดงเวลาการใช้งานและชาร์จที่เหลือ</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>ความจุสูงสุด</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>ระดับแบตเตอรี่ต่ำ</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>ปิดใช้งาน</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth ปิด และชื่อแสดงว่า &quot;%1&quot; </translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth เปิด และชื่อแสดงว่า &quot;%1&quot; </translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>ยกเลิกการเชื่อมต่อ</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>เชื่อมต่อ</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>ส่งไฟล์</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>เปลี่ยนชื่อ</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>ลบอุปกรณ์</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>เลือกไฟล์</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>แก้ไข</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>อนุญาตให้อุปกรณ์ Bluetooth อื่นๆ ค้นหาอุปกรณ์นี้</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>เพื่อใช้ฟังก์ชัน Bluetooth โปรดปิด</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>โหมดเครื่องบิน</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>เชื่อมต่อ</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>ไม่เชื่อมต่อ</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>การตั้งค่าการเริ่มต้น</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>คุณสามารถคลิกเมนูเพื่อเปลี่ยนรายการเริ่มต้นที่ตั้งค่าไว้หรือลากภาพเข้าไปในหน้าต่างเพื่อเปลี่ยนภาพพื้นหลัง</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>การล่าช้าในการเริ่มต้น grub</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>ธีม</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>หลังจากเปิดใช้ธีม คุณจะเห็นภาพพื้นหลังของธีมเมื่อเปิดคอมพิวเตอร์</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>การยืนยันรายการเมนูการเริ่มต้น</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>หลังจากเปิดใช้ ต้องใช้รหัสผ่านในการแก้ไขรายการเมนู</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>เปลี่ยนรหัสผ่าน</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>เปลี่ยนรหัสผ่านการยืนยันรายการเมนูการเริ่มต้น</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>ตั้งรหัสผ่านการยืนยันรายการเมนูการเริ่มต้น</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>ชื่อผู้ใช้ :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>รหัสผ่านใหม่ :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>จำเป็น</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>ไม่สามารถทิ้งรหัสผ่านว่างได้</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>รหัสผ่านไม่ตรงกัน</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>ยืนยันรหัสผ่าน:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>แน่นอน</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>เริ่มต้นการเคลื่อนไหว</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>ปรับขนาดการเคลื่อนไหวของโลโก้บนหน้าต้อนรับของระบบ</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>อนุญาตให้แอพด้านล่างเข้าถึงกล้องของคุณ:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>นิ้วนิ้ว 1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>นิ้วนิ้ว 2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>นิ้วนิ้ว 3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>นิ้วนิ้ว 4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>นิ้วนิ้ว 5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>นิ้วนิ้ว 6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>นิ้วนิ้ว 7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>นิ้วนิ้ว 8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>นิ้วนิ้ว 9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>นิ้วนิ้ว 10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>การสแกนล้มเหลว</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>นิ้วนิ้วนี้มีอยู่แล้ว</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>กรุณาสแกนนิ้วอื่น</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>ข้อผิดพลาดไม่ทราบ</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>การสแกนถูกระงับ</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>ไม่สามารถรับรู้ได้</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>เคลื่อนที่เร็วเกินไป</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>ข้อมือเคลื่อนที่เร็วเกินไป กรุณานำข้อมือออกเมื่อถูกเรียกให้ทำ</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>ลายนิ้วมือไม่ชัดเจน</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>ล้างมือหรือปรับตำแหน่งมือให้ถูกต้องแล้วลองใหม่</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>ได้สแกนแล้ว</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>ปรับตำแหน่งมือให้ถูกต้องเพื่อสแกนลายนิ้วมือให้สมบูรณ์</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>ข้อมือเคลื่อนที่เร็วเกินไป กรุณานำข้อมือออกเมื่อถูกเรียกให้ทำ</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>นำข้อมือออกแล้ววางข้อมือบนเซ็นเซอร์ใหม่</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>จับภาพให้ใบหน้าอยู่ภายในกรอบ</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>ใบหน้าได้ถูกลงทะเบียนแล้ว</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>กรุณาจับภาพใบหน้าของมนุษย์</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>อย่าอยู่ใกล้กล้อง</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>เข้าใกล้กล้องมากขึ้น</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>อย่าจับภาพใบหน้าหลายใบอยู่ภายในกรอบเดียวกัน</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>ตรวจสอบให้แน่ใจว่าเลนส์กล้องสะอาด</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>อย่าลงทะเบียนในบริเวณที่มืด, สว่างหรือมีแสงสะท้อน</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>อย่าปิดหน้าไว้</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>การสแกนหมดเวลาแล้ว</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>สีรองพื้น</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>การตั้งค่าไอคอน</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>ธีมไอคอน</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>ปรับแต่งไอคอนธีมของคุณ</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>ธีมขัดข้อง</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>ปรับแต่ง cusor ของธีม</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>คุณแน่ใจว่าต้องการลบบัญชีนี้หรือไม่?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>ลบโฟลเดอร์บัญชี</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>ลบ</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>ไปที่การตั้งค่า</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>ทั่วไป</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>ความล่าช้าในการซ้ำ</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>สั้น</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>ยาว</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>อัตราการซ้ำ</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>ช้า</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>เร็ว</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>แป้นพิมพ์เลข</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>ทดสอบที่นี่</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>แจ้งเตือนการเปิดใช้งาน Caps Lock</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>ความเร็วการคลิกทวินามิ</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>ทดสอบการคลิกทวินามิ</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>โหมดมือซ้าย</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>ขนาดใหญ่</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>ขนาดเล็ก</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>ไม่สามารถได้รับสิทธิ์ root ได้</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>กรุณาเข้าสู่ระบบด้วย Union ID ก่อน</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>ไม่สามารถอ่านข้อมูลของคอมพิวเตอร์ของคุณได้</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>ไม่มีการเชื่อมต่ออินเทอร์เน็ต</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>การโหลดсертификатล้มเหลว ไม่สามารถได้รับสิทธิ์ root ได้</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>การยืนยันลายเซ็นล้มเหลว ไม่สามารถได้รับสิทธิ์ root ได้</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>ยอมรับและเข้าร่วมโปรแกรมประสบการณ์ผู้ใช้งาน</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>การแจ้งเตือนของโหมดพัฒนา</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>ยอมรับและขอสิทธิ์ root</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>เริ่มตั้งค่าการเปิดระบบใหม่ กรุณารอหนึ่งนาที</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>การตั้งค่าการเปิดระบบใหม่เสร็จสิ้นแล้ว</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>การตั้งค่าจะถูกนำไปใช้หลังจากเริ่มระบบใหม่</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>รหัสผ่านต้องมีตัวเลขและตัวอักษร</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>รหัสผ่านต้องมีอยู่ระหว่าง 8 ถึง 64 ตัวอักษร</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>สร้างบัญชีใหม่</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>ประเภทบัญชี</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>ชื่อผู้ใช้</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>ต้องการ</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>ชื่อจริง</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>ตัวเลือก</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>สร้างบัญชี</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>คุณยังไม่ได้ทำการอัปโหลดภาพโปรไฟล์ คลิกหรือลากและวางเพื่อทำการอัปโหลดภาพ</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>พร้อมใช้งาน</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/隱私-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/ประสบการณ์-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>ยอมรับและเข้าร่วมโปรแกรม User Experience Program</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>การตั้งค่าวันเวลา</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>วันที่</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>ปี</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>เดือน</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>วัน</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>เวลา</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>ยืนยัน</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>พรุ่งนี้</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>เมื่อวาน</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>วันนี้</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 ชั่วโมงก่อนเวลาท้องถิ่น</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 ชั่วโมงหลังเวลาท้องถิ่น</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>ช่องว่าง</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>สัปดาห์</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>วันแรกของสัปดาห์</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>วันที่สั้น</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>วันที่ยาว</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>เวลาสั้น</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>เวลาที่ยาวนาน</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>สัญลักษณ์เงิน</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>เงินบวก</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>เงินลบ</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>จุดทศนิยม</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>เครื่องหมายจัดกลุ่มเลข</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>การจัดกลุ่มเลข</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>ขนาดหน้า</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>ต้องการยืนยันตัวตนเพื่อเปลี่ยนเซิร์ฟเวอร์ NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>บันทึก</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>ศูนย์ควบคุมมีตัวเลือกสำหรับการตั้งค่าระบบ</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>ผูก WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>เมื่อผูก WeChat คุณสามารถเข้าสู่ระบบ %1 ID และบัญชีท้องถิ่นของคุณได้อย่างปลอดภัยและรวดเร็ว</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>ไม่ผูก</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>ยกเลิกการผูก</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>ผูก</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>คุณแน่ใจว่าต้องการยกเลิกการผูก WeChat หรือไม่?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>หลังจากยกเลิกการผูก WeChat คุณจะไม่สามารถใช้ WeChat ในการสแกนรหัส QR เพื่อเข้าสู่ระบบ %1 ID หรือบัญชีท้องถิ่นของคุณได้</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>ให้ฉันคิดสักครู่</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>การผูกบัญชีท้องถิ่น</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>หลังจากผูกบัญชีท้องถิ่นของคุณ คุณสามารถใช้ฟังก์ชันดังนี้:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>ระบบการเข้าสู่ระบบผ่านการสแกนรหัส QR ของ WeChat</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>ใช้ WeChat ที่ผูกกับ %1 ID ของคุณในการสแกนรหัสเพื่อเข้าสู่ระบบบัญชีท้องถิ่นของคุณ</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>รีเซ็ตรหัสผ่านผ่าน %1 ID</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>รีเซ็ตรหัสผ่านท้องถิ่นผ่าน %1 ID ในกรณีที่คุณลืม</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>เพื่อใช้ฟีเจอร์ดังกล่าว โปรดไปที่ Center การควบคุม - บัญชี และเปิดใช้งานตัวเลือกที่เกี่ยวข้อง</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>การสังเคราะห์云端</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>จัดการบัญชี %1 ID ของคุณและสังเคราะห์ข้อมูลส่วนตัวไปยังอุปกรณ์ต่างๆ\nเข้าสู่ระบบด้วยบัญชี %1 ID เพื่อรับฟีเจอร์และบริการที่ปรับแต่งเฉพาะของเบราว์เซอร์, ร้านแอป และอื่นๆ</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>เข้าสู่ระบบด้วย %1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>การสังเคราะห์อัตโนมัติ</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>เก็บตั้งค่าระบบและข้อมูลส่วนตัวอย่างปลอดภัยในคลาวด์ และทำให้同步到其他设备</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>ตั้งค่าระบบ</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>เวลาสุดท้ายที่สังเคราะห์: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>ลบข้อมูลในคลาวด์</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>คุณแน่ใจหรือไม่ว่าต้องการลบตั้งค่าระบบและข้อมูลส่วนตัวที่เก็บไว้ในคลาวด์?\n</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>หากข้อมูลถูกลบออกแล้ว จะไม่สามารถฟื้นคืนได้!\n</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>ลบ</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>บริการสังเคราะห์</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>บัญชีและความปลอดภัย</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>ออกจากระบบ</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>ไปที่การตั้งค่าเว็บไซต์</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>การเข้ารหัสรหัสผ่านล้มเหลว</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>รหัสผ่านไม่ถูกต้อง, เหลือ %1 ครั้ง</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>ข้อผิดพลาดในการเข้าสู่ระบบถึงขีดจำกัดในวันนี้ คุณสามารถรีเซ็ตรหัสผ่านและลองใหม่อีกครั้ง</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>ดำเนินการสำเร็จ</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>จีนแผ่นดินใหญ่</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>ภูมิภาคอื่นๆ</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>ฟีเจอร์นี้ไม่พร้อมใช้งานในขณะนี้ กรุณาเปิดใช้งานระบบของคุณก่อน</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>ตามกฎหมายและข้อบังคับท้องถิ่นของคุณ ฟีเจอร์นี้ยังไม่พร้อมใช้งานในภูมิภาคของคุณ</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>กรุณาเลือกโปรแกรมที่ใช้เป็นค่าเริ่มต้นในการเปิด &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>เพิ่ม</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>เปิดไฟล์เดสก์ท็อป</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>แอพพลิเคชัน (*.desktop), </translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>ไฟล์ทั้งหมด (*), </translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>การเข้าถึง root</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>ขอเข้าถึง root</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>หลังจากเข้าสู่โหมดพัฒนา คุณจะสามารถได้รับสิทธิ์ root แต่มันอาจทำให้ความintegrityของระบบเสียหาย กรุณาใช้งานอย่างระมัดระวัง</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>อนุญาต</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>เข้าสู่</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>ออนไลน์</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>เข้าสู่ระบบ UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>ออฟไลน์</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>นำเข้า сертификат</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>เลือกไฟล์</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>UOS ID ของคุณได้ทำการเข้าสู่ระบบแล้ว คลิกเพื่อเข้าสู่โหมดพัฒนา</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>กรุณาเข้าสู่ระบบ UOS ID ก่อนแล้วจึงดำเนินการต่อ</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1. Export ข้อมูล PC</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>ส่งออก</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.นำเข้า сертификат</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>ตัวเลือกการพัฒนาและการจัดการข้อผิดพลาด</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>ระดับการบันทึกข้อมูลระบบ</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>การเปลี่ยนตัวเลือกจะทำให้มีการบันทึกข้อมูลที่ละเอียดขึ้นซึ่งอาจทำให้ประสิทธิภาพของระบบลดลงและ/หรือใช้พื้นที่จัดเก็บข้อมูลเพิ่มขึ้น</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>ปิด</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>จัดการข้อผิดพลาด</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>การเปลี่ยนตัวเลือกอาจใช้เวลาถึง 1 นาทีในการประมวลผล หลังจากได้รับคำแนะนำการตั้งค่าที่สำเร็จ กรุณาทำการรีสตาร์ทอุปกรณ์เพื่อให้ผลการตั้งค่ามีผล</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>อนุญาตให้แอพด้านล่างเข้าถึงไฟล์และโฟลเดอร์เหล่านี้:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>เอกสาร</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>โต๊ะทำงาน</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>ภาพถ่าย</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>วิดีโอ</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>เพลง</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>การ descargar</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>โฟลเดอร์</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>ขนาด</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>ตัวอักษรมาตรฐาน</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>ตัวอักษรแบบเท่ากัน</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>แผนการใช้พลังงาน</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>การตั้งค่าการประหยัดพลังงาน</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>การประหยัดพลังงานอัตโนมัติเมื่อแบตเตอรี่ต่ำ</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>ระดับแบตเตอรี่ต่ำ</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>การประหยัดพลังงานอัตโนมัติเมื่อใช้แบตเตอรี่</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>การตั้งค่าการตื่นรouse</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>ต้องใช้รหัสผ่านเพื่อตื่นรouseคอมพิวเตอร์</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>ต้องใช้รหัสผ่านเพื่อตื่นรouseหน้าจอแสดงผล</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>การตั้งค่าการปิดเครื่อง</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>การปิดเครื่องตามเวลาที่กำหนด</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>เวลา</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>ซ้ำ</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>ครั้งเดียว</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>ทุกวัน</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>วันทำการ</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>กำหนดเวลาเอง</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>ลดความสว่างของหน้าจอเมื่อใช้งานอยู่ในโหมดประหยัดพลังงาน</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>&apos;</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>ประสิทธิภาพสูงสุด</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>สมดุล</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>ภาพลักษณ์ที่ดีที่สุด</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>ภาษา</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>เสร็จสิ้น</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>แก้ไข</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>ภาษาอื่นๆ</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>เพิ่ม</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>ภูมิภาค</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>พื้นที่</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>ระบบปฏิบัติการและแอปพลิเคชันอาจให้เนื้อหาท้องถิ่นตามประเทศและภูมิภาคของคุณ</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>ระบบปฏิบัติการและแอปพลิเคชันอาจกำหนดรูปแบบวันเวลาตามรูปแบบภูมิภาค</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>เพิ่มภาษา</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>ค้นหา</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>เพิ่ม</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>วิธีการเข้าสู่ระบบ</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>รหัสผ่าน, WeChat, การตรวจสอบทางชีวภาพ, คีย์ความปลอดภัย</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>รหัสผ่าน</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>แก้ไขรหัสผ่าน</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>วันที่มีผลบังคับใช้</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>ตลอดเวลา</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>ลิขสิทธิ์© 2011-%1 ชุมชน Deepin</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>ลิขสิทธิ์© 2019-%1 บริษัทเทคโนโลยี UnionTech</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>การลดเสียงรบกวนอัตโนมัติ</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>ระดับเสียงนำเข้า</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>ระดับนำเข้า</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>นำเข้า</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>ไม่พบอุปกรณ์นำเข้าเสียง</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>อุปกรณ์ของฉัน</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>ชื่อคอมพิวเตอร์</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>ไม่สามารถเริ่มหรือสิ้นสุดด้วยเครื่องหมายลบ</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>ชื่อระบบปฏิบัติการ</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>เวอร์ชัน</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>การพิมพ์</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>ประเภท</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>บิต</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>การอนุญาต</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>เวลาติดตั้งระบบ</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>แกนระบบ</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>แพลตฟอร์มกราฟิก</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>โปรเซสเซอร์</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>ความจำ</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>อุปกรณ์อื่น ๆ</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>แสดงอุปกรณ์บลูทู ธ ที่ไม่มีชื่อ</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>รหัสผ่านปัจจุบัน</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>ต้องการ</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation> week</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>กลาง</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>แข็งแกร่ง</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>กรอกรหัสผ่านอีกครั้ง</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>คำใบ้รหัสผ่าน</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>ตัวเลือก</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>ไม่สามารถทิ้งช่องว่างได้</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>รหัสผ่านไม่ตรงกัน</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>คำใบ้จะปรากฏให้ผู้ใช้ทุกคนเห็น กรุณาอย่าใส่รหัสผ่านในที่นี้</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>รหัสผ่านใหม่ต้องไม่ตรงกับรหัสผ่านปัจจุบัน</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>แก้ไขรหัสผ่าน</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>รีเซ็ตรหัสผ่าน</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>ความยาวของรหัสผ่านต้องมีอย่างน้อย 8 ตัวอักษร และรหัสผ่านต้องประกอบด้วยตัวอักษรตัวใหญ่, ตัวเล็ก, ตัวเลข และสัญลักษณ์อย่างน้อย 3 ชนิด รหัสผ่านประเภทนี้มีความปลอดภัยมากขึ้น</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>การรีเซ็ตรหัสผ่านจะทำให้ข้อมูลที่เก็บไว้ใน keyring หายไป</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>สว่าง</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>อัตโนมัติ</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>มืด</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>กำหนดเอง</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>พื้นที่ติดตั้ง Plug-in</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>เลือกไอคอนที่จะแสดงใน Dock</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>ปิดเครื่อง</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>ยืดหยุ่น</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Hibernate</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>ปิดหน้าจอ</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>แสดงหน้าปิดเครื่อง</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>ทำอะไรไม่ได้</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>หน้าจอและหยุดทำงาน</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>ปิดหน้าจอหลังจาก</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>ล็อกหน้าจอหลังจาก</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>คอมพิวเตอร์หยุดทำงานหลังจาก</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>เมื่อปิดฝาพับ</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>เมื่อ��กดปุ่ม电源</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>สูงสุด</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>สมดุล</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>ปรับความถี่การทำงานของ CPU ตามความหนักของงานอย่างรุนแรง</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>สมดุล</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>ประหยัดพลังงาน</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>ให้ความสำคัญกับประสิทธิภาพ ซึ่งจะเพิ่มการใช้พลังงานและความร้อนอย่างมาก</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>สมดุลระหว่างประสิทธิภาพและอายุการใช้งานแบตเตอรี่ ซึ่งจะปรับอัตโนมัติตามการใช้งาน</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>ให้ความสำคัญกับอายุการใช้งานแบตเตอรี่ ซึ่งระบบจะยอมลดประสิทธิภาพเพื่อลดการใช้พลังงาน</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>นาที</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>ชั่วโมง</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>ไม่เคย</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>นโยบายความเป็นส่วนตัว</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>ไม่สามารถใส่รหัสผ่านว่างได้</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>รหัสผ่านต้องมีอย่างน้อย %1 ตัวอักษร</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>รหัสผ่านต้องไม่เกิน %1 ตัวอักษร</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>รหัสผ่านสามารถประกอบได้เฉพาะตัวอักษรภาษาอังกฤษ (ต้องมีการระบุพิมพ์ใหญ่/พิมพ์เล็ก), ตัวเลข หรือ ตัวอักษรพิเศษ (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>ไม่ควรใช้ตัวอักษรกลับกลอกมากกว่า %1 ตัว</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>ไม่ควรใช้ตัวอักษรซ้ำๆ มากกว่า %1 ตัว</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>ไม่ควรใช้ตัวอักษรซ้ำๆ มากกว่า %1 ตัว</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>รหัสผ่านต้องมีตัวอักษรพิมพ์ใหญ่, พิมพ์เล็ก, ตัวเลข และ ตัวอักษรพิเศษ (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>รหัสผ่านไม่ควรมีตัวอักษรกลับกลอกมากกว่า 4 ตัว</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>ไม่ควรใช้คำหรือคำผสมที่พบบ่อยเป็นรหัสผ่าน</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>สร้างรหัสผ่านที่แข็งแกร่งสักตัว</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>ไม่ได้รับการกำหนดข้อกำหนดของรหัสผ่าน</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>ศูนย์ควบคุม</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>ได้รับการเปิดใช้งาน</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>ดู</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>กำลังจะได้รับการเปิดใช้งาน</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>เปิดใช้งาน</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>หมดอายุ</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>อยู่ในช่วงทดลองใช้งาน</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>ช่วงทดลองใช้งานหมดอายุ</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>การตั้งค่าหน้าจอสัมผัส</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>การตั้งค่าหน้าจอสัมผัสได้ถูกเปลี่ยนแปลง</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>ภาพพื้นหลังของระบบถูกล็อก. กรุณาติดต่อผู้ดูแลระบบ</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>ค้นหา</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>รูปแบบที่กำหนดค่าเริ่มต้น</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>วันแรกของสัปดาห์</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>วันที่สั้น</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>วันที่ยาว</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>เวลาสั้น</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>เวลายาว</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>สัญลักษณ์เงิน</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>ตัวเลข</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>ขนาดกระดาษ</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>บันทึก</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>ค้นหา</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>ตั้งรหัสผ่าน</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 ตัวอักษร</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>กรอกรหัสผ่านอีกครั้ง</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>ยืนยัน</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>รหัสผ่านไม่ตรงกัน</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>หน้าจอสลับภาพ</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>การจำลอง</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>หน้าจอสลับภาพแบบกำหนดเอง</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>การตั้งค่า</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>เวลาที่ไม่ใช้งาน</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 นาที</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 นาที</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 นาที</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 นาที</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 นาที</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 ชั่วโมง</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>ไม่เคย</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>ต้องการรหัสผ่านสำหรับการฟื้นฟู</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>หน้าจอที่แสดงภาพลื่นที่มีรูปภาพ</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>หน้าจอที่แสดงภาพของระบบ</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>ค้นหา</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>เพิ่มสั้นที่กำหนดเอง</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>ชื่อ:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>จำเป็น</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>คำสั่ง:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>สั้น</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>ไม่มี</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>เพิ่ม</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>สั้น</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>สั้นของระบบ, สั้นที่กำหนดเอง</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>ค้นหาสั้น</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>เสร็จสิ้น</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>แก้ไข</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>คลิก</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>หรือ</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>แทนที่</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>คืนค่าเริ่มต้น</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>เพิ่มสั้นลัพธ์ส่วนตัว</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>อุปกรณ์การส่งออกเสียง</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>เลือกว่าจะเปิดใช้งานอุปกรณ์หรือไม่</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>อุปกรณ์การรับเข้าเสียง</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>เสียงพิเศษ</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>เริ่มต้น</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>ปิดเครื่อง</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>ออกจากระบบ</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>เรียกตื่น</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>ระดับเสียง +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>การแจ้งเตือน</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>แบตเตอรี่ต่ำ</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>ส่งไอคอนใน Launcherto โต๊ะทำงาน</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>清空垃圾桶</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>เชื่อมต่อ</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation> unplug</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>อุปกรณ์เชื่อมต่อได้เชื่อมต่อ</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>อุปกรณ์เชื่อมต่อได้ถูกถอดออก</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>ข้อผิดพลาด</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>โหมด</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>ระดับเสียงการส่งออก</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>เพิ่มระดับเสียง</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>หากระดับเสียงสูงกว่า 100% อาจทำให้เสียงเสียรูปและเป็นอันตรายต่ออุปกรณ์การส่งออก</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>ซ้าย</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>ขวา</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>การส่งออก</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>ไม่พบอุปกรณ์การส่งออกเสียง</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>การสมดุลซ้ายขวา</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>รวมช่องซ้ายและขวาเป็นช่องเดียว</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>เมื่ออุปกรณ์เสียงปัจจุบันถูกถอดออก ร้องเพลงจะถูกระงับอัตโนมัติหรือไม่</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>เสียง</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>พลังงาน</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>เมาส์</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>อัปเดต</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>โปรแกรมคุ้มครองจอ</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>ภาพพื้นหลังเพิ่มเติม</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>การสังเคราะห์เวลาอัตโนมัติ</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>เซิร์ฟเวอร์ NTP</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>วันที่และเวลาของระบบ</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>ปรับแต่ง</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>การตั้งค่า</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>ที่อยู่เซิร์ฟเวอร์</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>จำเป็น</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>ที่อยู่เซิร์ฟเวอร์ ntp ไม่สามารถว่างได้</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>ใช้รูปแบบ 24 ชั่วโมง</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>เขตเวลาของระบบ</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>รายการเขตเวลา</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>จาก</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>ถึง</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>บันทึกการตั้งค่าการแสดงผล</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>การตั้งค่าจะถูกกลับไปเป็นค่าเดิมใน %1 วินาที.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>กลับคืน</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>บันทึก</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>เพิ่มเขตเวลา</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>กำหนดเขตเวลาตามสถานที่ปัจจุบัน</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>เขตเวลา:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>เมืองใกล้ที่สุด:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>บันทึก</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>สัมผัสหน้าจอ</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>ตั้งค่าที่นี่เมื่อเชื่อมต่อสัมผัสหน้าจอ</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>การตั้งค่าพื้นฐาน</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>พื้นที่สัมผัส</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>ความเร็วของตัวชี้</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>ช้า</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>เร็ว</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>ปิดพื้นที่สัมผัสระหว่างการพิมพ์</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>แตะเพื่อคลิก</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>การลากแบบธรรมชาติ</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>การสัมผัสด้วยสามนิ้ว</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>การสัมผัสด้วยสี่นิ้ว</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>ร่วมโปรแกรมประสบการณ์ผู้ใช้</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>การตรวจสอบความปลอดภัย</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>การกระทำนี้เป็นการกระทำที่ไว้วางใจ กรุณากรอกรหัสผ่านเข้าสู่ระบบก่อน</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 ตัวอักษร</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>ลืมรหัสผ่าน？</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>ยกเลิก</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>ยืนยัน</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>ภาพพื้นหลัง</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>ภาพถ่ายของฉัน</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>ภาพพื้นหลังของระบบ</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>พื้นหลังสีเดียว</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>พื้นหลังที่ปรับแต่งได้</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>วิธีการเติม</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>การเปลี่ยนพื้นหลังอัตโนมัติ</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>ไม่เคย</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 วินาที</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 นาที</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 นาที</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 นาที</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 นาที</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 นาที</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>เข้าสู่ระบบ</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>ตื่นนอน</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>พื้นหลังที่สดใส</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 ชั่วโมง</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>เปิดออก</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>ตั้งพื้นหลังหน้าจอปิด</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>ตั้งพื้นหลังโต๊ะทำงาน</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>อินเทอร์เฟซและผลลัพธ์</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>การตั้งค่าหน้าต่าง</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>มุมกลมของหน้าต่าง</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>ไม่มี</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>เล็ก</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>ใหญ่</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>เปิดใช้งานผลลัพธ์半透明效果当移动窗口时</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>ผลลัพธ์การลดขนาดหน้าต่าง</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>ขนาด</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>โคมไฟมนต์</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>ความแสงสว่าง</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>ต่ำ</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>สูง</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>ปุ่มลากขึ้น-ลง</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>แสดงเมื่อลากขึ้น-ลง</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>แสดงต่อไป</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>การแสดงผลแบบกะทัดรัด</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>ถ้าเปิดใช้งาน หน้าต่างจะแสดงเนื้อหาเพิ่มเติม</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>ความสูงของชื่อหน้าต่าง</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>เฉพาะสำหรับชื่อหน้าต่างของแอปพลิเคชันที่หน้าต่างจัดการวาด</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>เล็กมาก</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>จีนดั้งเดิม (จีนฮ่องกง)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>จีนดั้งเดิม (จีนไต้หวัน)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>ไต้หวันจีน</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>ชื่อผู้ใช้ต้องมีอยู่ระหว่าง 3 ถึง 32 ตัวอักษร</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>ตัวอักษรตัวแรกต้องเป็นตัวอักษรหรือตัวเลข</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>ชื่อผู้ใช้ของคุณไม่ควรเป็นเพียงตัวเลข</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>ชื่อผู้ใช้นี้ถูกใช้แล้วโดยบัญชีผู้ใช้อื่น</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>ชื่อจริงยาวเกินไป</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>ชื่อจริงนี้ถูกใช้แล้วโดยบัญชีผู้ใช้อื่น</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>รหัสผ่านไม่ถูกต้อง</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>ผู้ใช้มาตรฐาน</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>ผู้ดูแลระบบ</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>กำหนดเอง</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>เซิร์ฟเวอร์โดเมนของเครื่องคอมพิวเตอร์ของคุณถูกลบออกอย่างสำเร็จ</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>เครื่องคอมพิวเตอร์ของคุณเข้าสู่เซิร์ฟเวอร์โดเมนอย่างสำเร็จ</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>การออกจากเซิร์ฟเวอร์โดเมนของเครื่องคอมพิวเตอร์ของคุณล้มเหลว</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>การเข้าสู่เซิร์ฟเวอร์โดเมนของเครื่องคอมพิวเตอร์ของคุณล้มเหลว</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>การตั้งค่าโดเมน AD</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>รหัสผ่านไม่ตรงกัน</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>มิติ</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>ราบ</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>คำสั้นที่นี้ขัดแย้งกับ [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>รหัสผ่านไม่สามารถว่างเปล่าได้</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>รหัสผ่านต้องมีความยาวไม่น้อยกว่า %1 ตัว</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>รหัสผ่านต้องมีความยาวไม่เกิน %1 ตัว</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>รหัสผ่านสามารถประกอบด้วยตัวอักษรภาษาอังกฤษ (区分大小写), ตัวเลข หรือ 符号 (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>ไม่ควรใช้ตัวอักษรสะกดกลับมากกว่า %1 ตัว</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>ไม่ควรใช้ตัวอักษรซ้ำติดกันมากกว่า %1 ตัว</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>ไม่ควรใช้ตัวอักษรซ้ำมากกว่า %1 ตัว</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>รหัสผ่านต้องมีตัวอักษรใหญ่, ตัวอักษรเล็ก, ตัวเลข และ ตัวอักษรพิเศษ (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>รหัสผ่านไม่ควรมีตัวอักษรสะกดกลับมากกว่า 4 ตัว</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>ไม่ควรใช้คำว่าทั่วไปหรือการผสมผสานเป็นรหัสผ่าน</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>โปรดสร้างรหัสผ่านที่แข็งแกร่ง</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>ไม่เป็นไปตามข้อกำหนดของรหัสผ่าน</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>ระบบ</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>หน้าต่าง</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>พื้นที่ทำงาน</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>เครื่องมือช่วยเหลือ</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>กำหนดเอง</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>ไม่มี</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_tr.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"tr\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>düzenle</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Yeni kullanıcı ekle</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Tam adı ayarla</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Giriş ayarları</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Oturum Parola Kullanmadan Açılsın</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Geçerli hesabı sil</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Grup ayarları</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Hesap grupları</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>tamamla</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Grup adı</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Grup ekle</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Otomatik giriş</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Hesap Bilgileri</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Hesap adı, hesabın tam adı, hesap türü</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Hesap adı</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Hesap tam adı</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Hesap Türü</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Tam ad çok uzun</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>Grup adı 32 karakterden fazla olmamalıdır</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>Grup adları sadece numara olamaz</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>Yalnızca harf, sayı, alt çizgi ve tire kullanın ve bir harfle başlamalısınız</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>Bu grup adı kullanıldı</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>hızlı giriş, otomatik giriş, şifresiz giriş</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>Geri Al</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>Yinele</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>Kes</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>Kopyala</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>Yapıştır</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>Tümünü Seç</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>Hızlı giriş</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Kayıt Yüzü</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Okudum ve onaylıyorum</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Feragat</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Sonraki</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Yüz kayıtlı</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>Yüzünüz kaydedilemedi</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Tamamla</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Tekrar Kaydolmayı Dene</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation>Yüz tanıma canlılık tespitini desteklemez ve doğrulama yöntemi risk taşıyabilir.\nBaşarılı bir giriş sağlamak için:\n1. Yüz hatlarınızı açıkça görünür tutun ve bunları kapatmayın (şapka, güneş gözlüğü, maske vb.).\n2. Yeterli aydınlatma sağlayın ve doğrudan güneş ışığına maruz kalmaktan kaçının.</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>&quot;&quot;Biyometrik kimlik doğrulama&quot;, UnionTech Software Technology Co., Ltd. tarafından sağlanan kullanıcı kimliği doğrulama işlevidir. &quot;Biyometrik kimlik doğrulama&quot; yoluyla, toplanan biyometrik veriler cihazda saklanan verilerle karşılaştırılacak ve karşılaştırma sonucuna göre kullanıcı kimliği doğrulanacaktır.\n\nUnionTech Software Technology Co., Ltd.&apos;nin yerel cihazınızda saklanacak olan biyometrik bilgilerinizi toplamayacağını veya bunlara erişmeyeceğini lütfen unutmayın. Lütfen yalnızca kişisel cihazınızda biyometrik kimlik doğrulamayı etkinleştirin ve ilgili işlemler için kendi biyometrik bilgilerinizi kullanın. Ayrıca, söz konusu cihazdaki diğer kişilerin biyometrik bilgilerini derhal devre dışı bırakın veya silin; aksi takdirde bundan kaynaklanacak risk size ait olacaktır.\n\nUnionTech Software Technology Co., Ltd., biyometrik kimlik doğrulamanın güvenliğini, doğruluğunu ve kararlılığını araştırmaya ve geliştirmeye kendini adamıştır. Ancak, çevresel, ekipman, teknik ve diğer faktörler ile risk kontrolü nedeniyle, biyometrik kimlik doğrulamayı geçici olarak geçeceğinizin garantisi yoktur. Bu nedenle, lütfen biyometrik kimlik doğrulamayı UOS&apos;ye giriş yapmanın tek yolu olarak görmeyin. Biyometrik kimlik doğrulamayı kullanırken herhangi bir sorunuz veya öneriniz varsa, UOS&apos;deki &quot;Hizmet ve Destek&quot; bölümünden geri bildirimde bulunabilirsiniz.</translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Tamamlandı</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Parmak izi Kaydı</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Parmak izi sensörüne girilecek parmağı yerleştirin ve aşağıdan yukarıya doğru hareket ettirin. İşlemi tamamladıktan sonra lütfen parmağınızı kaldırın.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Okudum ve onaylıyorum</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Feragat</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Sonraki</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Tekrar Kaydolmayı Dene</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>&quot;Biyometrik kimlik doğrulama&quot;, UnionTech Software Technology Co., Ltd. tarafından sağlanan kullanıcı kimliği kimlik doğrulaması için bir işlevdir. &quot;Biyometrik kimlik doğrulama&quot; yoluyla, toplanan biyometrik veriler cihazda depolanan verilerle karşılaştırılacak ve kullanıcı kimliği, karşılaştırma sonucu. \nUnionTech Software Technology Co., Ltd &apos;in yerel cihazınızda saklanacak olan biyometrik bilgilerinizi toplamayacağını veya bunlara erişmeyeceğini lütfen unutmayın. Lütfen yalnızca kişisel cihazınızda biyometrik doğrulamayı etkinleştirin ve ilgili işlemler için kendi biyometrik bilgilerinizi kullanın ve diğer kişilerin o cihazdaki biyometrik bilgilerini derhal devre dışı bırakın veya silin, aksi takdirde bundan kaynaklanan risk size aittir.  \nUnionTech Software Technology Co., Ltd, biyometrik kimlik doğrulamanın güvenliğini, doğruluğunu ve kararlılığını araştırmaya ve geliştirmeye kendini adamıştır. Ancak çevresel, ekipman, teknik ve diğer faktörler ve risk kontrolü nedeniyle biyometrik doğrulamayı geçici olarak geçeceğinizin garantisi yoktur. Bu nedenle, lütfen UnionTech UOS&apos;de oturum açmanın tek yolu olarak biyometrik doğrulamayı kabul etmeyin. Biyometrik kimlik doğrulamayı kullanırken herhangi bir sorunuz veya öneriniz varsa, UnionTech UOS&apos;deki &quot;Servis ve Destek&quot; aracılığıyla geri bildirimde bulunabilirsiniz.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>İris kaydet</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Okudum ve onaylıyorum</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Feragat</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Sonraki</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Tamamlandı</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Vazgeç</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Tekrar Kaydolmayı Dene</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>İris kaydoldu</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>İris kaydedilemedi</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>&quot;&quot;Biyometrik kimlik doğrulama&quot;, UnionTech Software Technology Co., Ltd. tarafından sağlanan kullanıcı kimliği doğrulama işlevidir. &quot;Biyometrik kimlik doğrulama&quot; yoluyla, toplanan biyometrik veriler cihazda saklanan verilerle karşılaştırılacak ve karşılaştırma sonucuna göre kullanıcı kimliği doğrulanacaktır.\n\nUnionTech Software Technology Co., Ltd.&apos;nin yerel cihazınızda saklanacak olan biyometrik bilgilerinizi toplamayacağını veya bunlara erişmeyeceğini lütfen unutmayın. Lütfen yalnızca kişisel cihazınızda biyometrik kimlik doğrulamayı etkinleştirin ve ilgili işlemler için kendi biyometrik bilgilerinizi kullanın. Ayrıca, söz konusu cihazdaki diğer kişilerin biyometrik bilgilerini derhal devre dışı bırakın veya silin; aksi takdirde bundan kaynaklanacak risk size ait olacaktır.\n\nUnionTech Software Technology Co., Ltd., biyometrik kimlik doğrulamanın güvenliğini, doğruluğunu ve kararlılığını araştırmaya ve geliştirmeye kendini adamıştır. Ancak, çevresel, ekipman, teknik ve diğer faktörler ile risk kontrolü nedeniyle, biyometrik kimlik doğrulamayı geçici olarak geçeceğinizin garantisi yoktur. Bu nedenle, lütfen biyometrik kimlik doğrulamayı UOS&apos;ye giriş yapmanın tek yolu olarak görmeyin. Biyometrik kimlik doğrulamayı kullanırken herhangi bir sorunuz veya öneriniz varsa, UOS&apos;deki &quot;Hizmet ve Destek&quot; bölümünden geri bildirimde bulunabilirsiniz.</translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation>Lütfen cihaza bakın ve her iki gözünüzün de kayıt alanı içerisinde olduğundan emin olun</translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>&quot;Otomatik Giriş&quot; yalnızca tek hesap için etkinleştirilebilir, lütfen önce &quot;%1&quot; hesabı için devre dışı bırakın</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>Tamam</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>Görseller</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>İnsan</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Hayvan</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Manzara</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>İllüstrasyon</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>İmoji</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>özel</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Karikatür tarzı</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Boyutsal stil</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Düz stil</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Kaydet</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Ekran ve Askıya Alma</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Monitörü kapattıktan sonra</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Sonrasında ekranı kilitle</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Bilgisayar askıya alındıktan sonra</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Kapak kapatıldığında</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Güç düğmesine basıldığında</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Düşük Batarya</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Düşük pil bildirimi</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Otomatik askıya al </translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Otomatik Uyut</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Düşük pil eşiği</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Batarya Yönetimi</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Kalan kullanım ve şarj süresini göster</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Azami kapasite</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Düşük pil seviyesi</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Devre Dışı </translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth kapalı ve ad &quot;%1&quot; olarak görüntüleniyor</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth açık ve ad &quot;%1&quot; olarak görüntüleniyor</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Bağlantıyı kes</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Bağlan</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Dosyaları Gönder</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Yeniden adlandır</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Cihazı Kaldır</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Dosya Seçin</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Düzenle</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Diğer Bluetooth cihazlarının bu cihazı bulmasına izin ver</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Bluetooth işlevini kullanmak için lütfen kapatın</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Uçak Kipi</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>Bluetooth adı 64 karakteri aşamaz</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Bağlandı</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Bağlı değil</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Başlangıç ​​Ayarları</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Varsayılan başlangıç ​​öğelerini değiştirmek için menüye tıklayabilir veya arka plan resmini değiştirmek için resmi pencereye sürükleyebilirsiniz.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>grub başlatma gecikmesi</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>tema</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Temayı açtıktan sonra bilgisayarı açtığınızda tema arka planını görebilirsiniz</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Önyükleme menüsü doğrulaması</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Açıldıktan sonra menü düzenleme kısmına girmek için şifre gerekmektedir.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Parolayı Değiştir</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Önyükleme menüsü doğrulama parolasını değiştir</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Önyükleme menüsü kimlik doğrulama parolasını ayarlayın</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Kullanıcı Adı :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Yeni Parola:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Gerekli</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Parola boş olamaz</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Parolalar eşleşmiyor</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Parolayı tekrarla:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Elbette</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Başlangıç animasyonu</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Sistem başlatma arayüzündeki logo animasyonunun boyutunu ayarlayın</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Aşağıdaki uygulamaların kameranıza erişmesine izin verin:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Parmakizi1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Parmakizi2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Parmakizi3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Parmakizi4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Parmakizi5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Parmakizi6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Parmakizi7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Parmakizi8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Parmakizi9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Parmakizi10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Tarama başarısız</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Parmak izi zaten var</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Lütfen diğer parmaklarınızı tarayın</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Bilinmeyen hata</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Tarama askıya alındı</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Tanınamıyor</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Çok hızlı taşındı</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Parmak çok hızlı hareket etti, lütfen istenene kadar kaldırmayın</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Net olmayan parmak izi</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Parmağınızı temizleyin veya parmak konumunu ayarlayın ve tekrar deneyin</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Zaten tarandı</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Parmak izinizi tamamen taramak için parmak konumunu ayarlayın</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Parmak çok hızlı hareket etti. Lütfen istenene kadar kaldırmayın</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Parmağınızı kaldırın ve yeniden algılayıcıya koyun</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Yüzünüzü çerçevenin içine yerleştirin</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Yüz kayıtlı</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Bir insan yüzünü konumlandırın lütfen</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Kameradan uzak tutun</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Kameraya daha yakın ol</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Çerçevenin içine birden fazla yüz yerleştirmeyin</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Kamera merceğinin temiz olduğundan emin olun</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Karanlık, aydınlık veya arkadan aydınlatmalı ortamlara kaydolmayın</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Yüzünü açık tut</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Tarama zaman aşımına uğradı</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>Kamera meşgul!</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Vurgu Rengi</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Simge Ayarları</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Simge Teması</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Tema simgenizi özelleştirin</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>İmleç Teması</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Tema imlecinizi özelleştirin</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Bu hesabı silmek istediğinize emin misiniz?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Hesap dizinini sil</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Sil</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Ayarlara git</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Ortak</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Yineleme gecikmesi</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Kısa</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Uzun</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Yineleme hızı</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Yavaş</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Hızlı</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Sayısal Klavye</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>burada dene</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Caps lock istemi</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Çift Tıklama Hızı</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Çift Tıklama Denemesi</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Solak Kip</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>Klavyeyi Etkinleştir</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>Genel</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>Kaydırma Hızı</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Büyük boy</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Küçük boy</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>Kök erişimi alınamadı</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Lütfen önce Union ID&apos;nizde oturum açın</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>PC bilgileriniz okunamıyor</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>Ağ bağlantısı yok</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>Sertifika yüklenemedi, kök erişimine erişilemedi</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>İmza doğrulaması başarısız oldu, kök erişimine erişilemedi</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Kabul Et ve Kullanıcı Deneyimi Programına Katıl</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>Geliştirici Kipi Sorumluluk Reddi</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>Kök Erişimi Kabul Et ve İste</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Yeni önyükleme animasyonunu ayarlamaya başlayın, lütfen bir dakika bekleyin</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>Yeni önyükleme animasyonu ayarlama işlemi tamamlandı</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>Sistemi yeniden başlattıktan sonra ayarlar uygulanacak</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation>Şimdi yeniden başlat</translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation>Yok say</translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation>Katı Sistem Salt Okunur Koruması ayarlarının uygulanmasını tamamlamak için cihazı yeniden başlatın</translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>Parola rakamlar ve harfler içermelidir</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>Parola 8 ile 64 karakter arasında olmalıdır</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Yeni hesap Oluştur</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Hesap Türü</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Kullanıcı Adı</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Gerekli</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Tam Ad</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>İsteğe bağlı</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Hesap oluştur</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>Kullanıcı adı 32 karakteri aşamaz</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>Kullanıcı adı yalnızca harf, rakam, - ve _ içerebilir</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>Tam adınız 32 karakteri geçemez</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>Tam adınız iki nokta üst üste içeremez</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation>küçük</translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation>büyük</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>Henüz bir avatar yüklemediniz.Bir resim yüklemek için tıklayın veya sürükleyin ve bırakın.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>Yüklenen dosya türü yanlış, lütfen tekrar yükleyin</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>kullanılabilir</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Kabul Et ve Kullanıcı Deneyimi Programına Katıl</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation>&lt;p&gt;Kişisel bilgilerinizin sizin için ne kadar önemli olduğunun bilincindeyiz. Bu nedenle, bilgilerinizi nasıl topladığımızı, kullandığımızı, paylaştığımızı, aktardığımızı, kamuya açıkladığımızı ve sakladığımızı kapsayan bir Gizlilik Politikası hazırladık.\n&lt;/p&gt;&lt;p&gt;En son gizlilik politikamızı görüntülemek için &lt;a href=&quot;%1&quot;&gt;buraya tıklayabilir&lt;/a&gt; ve/veya &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt; adresini ziyaret ederek çevrimiçi olarak görüntüleyebilirsiniz.. Lütfen müşteri gizliliğine ilişkin uygulamalarımızı dikkatlice okuyun ve tam olarak anlayın. Herhangi bir sorunuz varsa lütfen bizimle şu adresten iletişime geçin: %2.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Tarih ve saat ayarı</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Tarih</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Yıl</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Ay</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Gün</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Zaman</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Onayla</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Yarın</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Dün</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Bugün</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>Yerelden %1 saat önce</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>Yerelden %1 saat sonra</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Boşluk</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Hafta</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Haftanın ilk günü</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Kısa tarih</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Uzun tarih</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Kısa zaman</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Uzun zaman</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Para birimi sembolü</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Pozitif para birimi</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Negatif para birimi</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Ondalık sembol</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Basamak gruplandırma sembolü</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Rakam gruplama</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Sayfa boyutu</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>Örnek</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>NTP sunucusunu değiştirmek için kimlik doğrulaması gerekli</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Sistem saat dilimini ayarlamak için kimlik doğrulaması gerekli</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Kaydet</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Kontrol Merkezi, sistem ayarları için seçenekler sunar.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>WeChat Bağla</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>WeChat&apos;e bağlanarak %1 ID&apos;nize ve yerel hesaplarınıza güvenli ve hızlı bir şekilde giriş yapabilirsiniz.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Bağlantı kaldırıldı</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Bağlantı kaldırma</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Bağla</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>WeChat&apos;i kaldırmak istediğinizden emin misiniz?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>WeChat&apos;i bağlantıdan çıkardıktan sonra, WeChat&apos;i kullanarak QR kodunu tarayarak %1 ID veya yerel hesabınıza giriş yapamayacaksınız.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Bir düşüneyim</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Yerel Hesap Bağla</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Yerel hesabınızı bağladıktan sonra aşağıdaki işlevleri kullanabilirsiniz:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>WeChat Tarama Kodu Giriş Sistemi</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Yerel hesabınıza giriş yapmak için %1 kimliğinize bağlı olan WeChat&apos;i kullanarak kodu tarayın.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>%1 ID ile şifreyi sıfırla</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Unutmanız durumunda yerel şifrenizi %1 ID üzerinden sıfırlayın.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Yukarıdaki özellikleri kullanmak için lütfen Kontrol Merkezi - Hesaplar bölümüne gidin ve ilgili seçenekleri açın.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>Deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Bulut Eşitleyici</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>%1 ID&apos;nizi yönetin ve kişisel verilerinizi cihazlar arasında senkronize edin.\n%1 ID&apos;de oturum açarak Tarayıcı, Uygulama Mağazası ve daha fazlasının kişiselleştirilmiş özelliklerini ve hizmetlerini edinin.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>%1 ID&apos;ye Giriş Yap</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Otomatik Eşitle</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Sistem ayarlarını ve kişisel verileri bulutta güvenli bir şekilde saklayın ve bunları cihazlar arasında senkronize halde tutun.</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Sistem Ayarları</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Son senkronizasyon zamanı: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Bulut verilerini temizle</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>Sistem ayarlarınızı ve bulutta kayıtlı kişisel verilerinizi temizlemek istediğinizden emin misiniz?</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>Veriler temizlendikten sonra kurtarılamaz!</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Temizle</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Eşitleme Servisi</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Hesap ve Güvenlik</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Oturumu kapat</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Web ayarlarına git</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>Takma adın uzunluğu 1 ila 32 karakter arasında olmalıdır</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>Şifreleme şifresi başarısız oldu</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Yanlış şifre, %1 şans kaldı</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>Giriş hatası günlük sınırına ulaştı. Parolayı sıfırlayabilir ve tekrar deneyebilirsiniz.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>İşlem Başarılı</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>Takma ad günde yalnızca bir kez değiştirilebilir</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>Çin Toprakları</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Diğer bölgeler</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>Özellik şu anda kullanılamıyor, lütfen önce sisteminizi etkinleştirin</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Yerel yasa ve yönetmeliklerinize bağlı olarak, şu anda bölgenizde kullanılamamaktadır.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Lütfen &apos;%1&apos;i açmak için varsayılan programı seçin</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>ekle</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Masaüstü Dosyası Aç</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Uygulamalar (*.masaüstü)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Tüm dosyalar  (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Kök Erişimi</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Kök Erişimi İsteği</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Geliştirici kipine girdikten sonra kök izinleri alabilirsiniz, ancak sistem bütünlüğüne de zarar verebilir, bu nedenle lütfen dikkatle kullanın.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>İzin verilmiş</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Giriş</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>Çevrimiçi</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Giriş UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Çevrimdışı</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Sertifikayı İçe Aktar</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Dosya Seçin</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>UOS kimliğiniz oturum açtı, geliştirici moduna girmek için tıklayın</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Lütfen önce UOS Kimliğinizle oturum açın ve devam edin</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1.PC Bilgisini Dışa Aktar</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Dışarı aktar</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.Sertifikayı İçe Aktar</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Geliştirme ve hata ayıklama seçenekleri</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Sistem günlük kaydı düzeyi</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Seçenekleri değiştirmek, sistem performansını düşürebilecek ve/veya daha fazla depolama alanı kaplayabilecek daha ayrıntılı günlük kaydıyla sonuçlanır.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Kapalı</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Ayıkla</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>Seçeneği değiştirme işlemi bir dakika kadar sürebilir; başarılı ayar bildirimini aldıktan sonra etkili olması için lütfen cihazı yeniden başlatın.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>İmzalanmamış uygulamaları yüklemek ve çalıştırmak için lütfen &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt;Güvenlik Merkezine&lt;/a&gt; giderek ayarları değiştirin.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation>İmzalanmamış uygulamaları yüklemek ve çalıştırmak için lütfen Güvenlik Merkezi&apos;ne giderek ayarları değiştirin.</translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation>Geliştirici moduna girdiniz</translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>Tamam</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation>2.Lütfen çevrimdışı sertifikayı indirmek için %1 adresine gidin.</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation>Özellik şu anda kullanılamıyor, lütfen önce sisteminizi etkinleştirin.</translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation>Katı Sistem Salt Okunur Koruması</translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation>Korumayı devre dışı bırakmak sistem dizinlerinin kilidini açar, bu eylem sisteme zarar verme riskini artırır.</translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation>Sistem dizinlerini kilitlemek ve optimum kararlılığı sağlamak için korumayı etkinleştirin.</translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Feragat</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal et</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>Kabul et</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Ekran</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Aşağıdaki uygulamaların bu dosyalara ve klasörlere erişmesine izin verin:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Belgeler</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Masaüstü</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Resimler</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Videolar</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Müzik</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>İndirilenler</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>Klasör</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Boyut</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Standart Yazı Tipi</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Sabit Aralıklı Yazı Tipi</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Güç Planları</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Güç Tasarrufu Ayarları</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Düşük pilde otomatik güç tasarrufu</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Düşük pil eşiği</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Pilden otomatik güç tasarrufu</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Uyandırma Ayarları</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Bilgisayarı uyandırmak için parola gerekli</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Ekranı uyandırmak için parola gerekli</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Kapatma Ayarları</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Planlanmış Kapatma</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Zaman</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Tekrar</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Bir kez</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Her gün</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>İş günleri</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Özel Zaman</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Güç Tasarrufu&apos;nda ekran parlaklığını azalt</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation>Üç parmak yukarı</translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation>Üç parmak aşağı</translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation>Üç parmak sola</translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation>Üç parmak sağa</translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation>Üç parmakla dokun</translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation>Dört parmak yukarı</translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation>Dört parmak aşağı</translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation>Dört parmak sola</translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation>Dört parmak sağa</translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation>Dört parmakla dokun</translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Optimal Performans</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Dengeli</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>En İyi Görseller</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>Verimli sistem performansı için tüm arayüz ve pencere efektlerini devre dışı bırakın.</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>Sorunsuz sistem performansını korurken mükemmel görseller için bazı pencere efektlerini sınırlayın.</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>En iyi görsel deneyim için tüm arayüz ve pencere efektlerini etkinleştirin.</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Dil</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>tamamla</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>Düzenle</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Diğer diller</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>ekle</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Bölge</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>Alan</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>İşletim sistemi ve uygulamalar, ülkenize ve bölgenize göre size yerel içerik sağlayabilir</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>İşletim sistemi ve uygulamalar, bölgesel biçimlere göre tarih ve saat biçimlerini ayarlayabilir</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Bölgesel format</translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Dil Ekle</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Ara</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Ekle</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Giriş yöntemi</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Şifre, wechat, biyometrik kimlik doğrulama, güvenlik anahtarı</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Parola</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Parolayı değiştir</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Geçerlilik günü</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Her zaman</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Parolayı sıfırla</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Deepin Topluluğu</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Otomatik Gürültü Bastırma</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Ses Girişi</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Giriş Seviyesi</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Giriş</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Ses için giriş aygıtı bulunamadı</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Giriş Cihazı</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Fare ve Dokunmatik yüzey</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Aygıtlarım</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Bilgisayar Adı</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Kısa çizgi ile başlayamaz veya bitemez</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>İS Adı</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Sürüm</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Yayın</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Tür</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>İzin</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Sistem Kurulum Tarihi</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Çekirdek</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Grafik platformu</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>İşlemci</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Bellek</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>1~63 karakterler lütfen</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Diğer Cihazlar</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Bluetooth cihazlarını isimsiz göster</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Mevcut parola</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Gerekli</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Zayıf</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Orta</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Güçlü</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Parolayı Tekrarla</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Parola İpucu</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>İsteğe bağlı</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Parola boş olamaz</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Parolalar eşleşmiyor</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>İpucu tüm kullanıcılar tarafından görülebilir. Parolayı buraya dahil etmeyin.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>Yeni parola</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>Yeni parola mevcut paroladan farklı olmalıdır</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation>Parola kullanıcı adınızla aynı olamaz.</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Parolayı değiştir</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Parolayı sıfırla</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>Şifre uzunluğu en az 8 karakter olmalı ve şifre en az aşağıdaki 3&apos;ün bir kombinasyonunu içermelidir: büyük harfler, küçük harfler, sayılar ve semboller. Bu tür şifreler daha güvenlidir.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Parolanın sıfırlanması, anahtarlıkta depolanan verileri siler.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Kişiselleştirme</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Açık</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Otomatik</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Koyu</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation>Toplayıcı hizmet mevcut değil</translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation>Geçersiz renk biçimi: %1</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Özel</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Eklenti Alanı</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Rıhtım&apos;da hangi simgelerin görüneceğini seçin</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Kapat</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Askıya al</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Uyut</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Monitörü kapat</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Kapatma arayüzünü göster</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Hiçbir şey yapma</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Ekran ve Askıya Alma</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Monitörü kapattıktan sonra</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Sonrasında ekranı kilitle</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Bilgisayar askıya alındıktan sonra</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Kapak kapatıldığında</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Güç düğmesine basıldığında</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Yüksek Performans</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Dengeli Performans</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>CPU yük durumuna göre CPU çalışma frekansını agresif bir şekilde ayarlayın</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Dengeli</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Güç Tasarrufu</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Güç tüketimini ve ısı üretimini önemli ölçüde artıracak olan performansa öncelik verin</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Performans ve pil ömrünü dengeleyerek kullanıma göre otomatik olarak ayarlanır</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Sistemin güç tüketimini azaltmak için bazı performanslardan ödün vereceği pil ömrüne öncelik verin</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Dakika</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Saat</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Asla</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Gizlilik Politikası</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Bağlantı Adresini Kopyala</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Parola boş olamaz</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Parola en az %1 karakter olmalıdır</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Parola %1 karakterden fazla olmamalıdır</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Parola yalnızca İngilizce harfler (büyük/küçük harfe duyarlı), sayılar veya özel simgeler içerebilir (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>En fazla %1 palindrom karakter lütfen</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>%1&apos;den fazla monoton karakter yok lütfen</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Lütfen %1&apos;den fazla yinelenen karakter yok</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Parola büyük harfler, küçük harfler, sayılar ve semboller içermeli (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Parola 4&apos;ten fazla tersten okunduğunda aynı olan karakter içermemelidir</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Parola olarak bilinen kelime ve kombinasyonlarını kullanmayın</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Lütfen güçlü bir parola oluşturun</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Parola kurallarına uymuyor</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Kontrol Merkezi</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Etkin</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Görünüm</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Etkinleştirilecek</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Etkinleştir</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Süresi doldu</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Deneme süresinde</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Deneme süresi doldu</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Dokunmatik Ekran Ayarları</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Dokunmatik ekranın ayarları değişti</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Bu sistem duvar kağıdı kilitli.Lütfen yöneticinizle iletişime geçin.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Ara</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Varsayılan formatlar</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Haftanın ilk günü</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Kısa tarih</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Uzun tarih</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Kısa zaman</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Uzun zaman</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Para birimi sembolü</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Rakam</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Kağıt boyutu</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Kaydet</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Bölgesel format</translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Ara</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Parolayı Ayarla</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 karakterler</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Parolayı tekrarla</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Onayla</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Parolalar eşleşmiyor</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>Yeniden Görüşme Sıklığını Özelleştir</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal et</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Kaydet</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Ekran koruyucu</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>önizleme</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Kişiselleştirilmiş ekran koruyucu</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>ayar</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>boştaki zaman</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 dakika</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 dakika</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 dakika</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 dakika</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 dakika</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 saat</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>asla</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Kurtarma için şifre gerekli</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Resim slayt gösterisi ekran koruyucu</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Sistem ekran koruyucu</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Ara</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>Hiçbir arama sonucu bulunamadı</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Özel kısayol ekle</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Ad:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Gerekli</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Komut:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Kısayol</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Hiçbiri</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Ekle</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation>Kısayol adı zaten kullanımda. Farklı bir ad seçin.</translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation>Özel kısayolu değiştir</translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation>lütfen bir kısayol tuşu girin</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Kaydet</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation>Bu kısayol tuşunu etkili hale getirmek için Kaydet&apos;e tıklayın</translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation>Bu kısayol tuşunu etkili hale getirmek için Ekle&apos;ye tıklayın</translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Kısayollar</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Sistem kısayolu, özel kısayol</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Arama kısayolları</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>tamamla</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>düzenle</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Tıkla</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>ya da</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Değiştir</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Varsayılana geri yükle</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Özel kısayol ekle</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation>lütfen yeni bir kısayol tuşu girin</translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Ses</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Çıkış Cihazları</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Cihazların etkinleştirilip etkinleştirilmeyeceğini seçin</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Giriş Cihazları</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Ses Etkileri</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Önyükleme</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Kapat</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Oturumu kapat</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Uyan</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Ses +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Bildirim</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Düşük pil</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Başlatıcı&apos;dan Masaüstüne simge gönder</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Çöpü Boşalt</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Fişe tak</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Fişten çıkar</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Çıkarılabilir aygıt bağlandı</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Çıkarılabilir aygıt kaldırıldı</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Hata</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Kip</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Ses Çıkışı</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Ses Artışı</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Ses seviyesi %100&apos;den fazlaysa, ses bozulabilir ve çıkış aygıtlarına zarar verebilir.</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Sol</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Sağ</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Çıkış</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Ses için çıkış aygıtı bulunamadı</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Sol Sağ Dengesi</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Sol ve sağ kanalları tek bir kanalda birleştirin</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Mevcut ses aygıtı çıkarıldığında sesin otomatik olarak duraklatılıp duraklatılmayacağı</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation>Mono Ses</translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation>Otomatik Duraklatma</translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Çıkış Cihazı</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Ses</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Güç</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Fare</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Güncelle</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Ekran koruyucu</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Daha Fazla Duvar Kağıdı</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Otomatik senkronizasyon zamanı</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Ntp sunucu</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Sistem tarihi ve saati</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Özelleştir</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Ayarlar</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Sunucu adresi</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Gerekli</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>ntp sunucu adresi boş olamaz</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>24 saatlik formatı kullan</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>sistem saat dilimi</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Saat dilimi listesi</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Ekle</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>buradan</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>buraya</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Görüntü ayarları kaydedilsin mi?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Ayarlar %1s içinde geri döndürülecek.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Eski haline döndür</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Kaydet</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Saat dilimi ekle</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Mevcut konuma göre saat dilimini belirleyin</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Zaman dilimi:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>En Yakın Şehir:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Kaydet</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Dokunmatik ekran</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Dokunmatik ekranı bağlarken burayı ayarlayın</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Temel Ayarlar</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Dokunmatik Yüzey</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>İşaretçi Hızı</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Yavaş</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Hızlı</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Giriş sırasında dokunmatik yüzeyi devre dışı bırak</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Tıklamak için Dokun</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Doğal Kaydırma</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Üç Parmak hareketi</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Dört Parmak hareketi</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation>Hareket</translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Kullanıcı Deneyimi Programına Katıl</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Bağlantı Adresini Kopyala</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Güvenlik Doğrulama</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>İşlem hassastır, lütfen önce oturum açma şifresini girin</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 karakterler</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Parolanızı mı unuttunuz?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>İptal</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Onayla</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>duvar Kâğıdı</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Resimlerim</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Sistem Duvar Kağıdı</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Düz renk duvar kağıdı</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Özelleştirilebilir duvar kağıtları</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>dolgu stili</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Otomatik duvar kağıdı değişimi</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>asla</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 Saniye</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 dakika</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 dakika</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 dakika</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 dakika</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 dakika</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>oturum aç</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>uyan</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Canlı Duvar Kağıdı</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 saat</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation>Sistem Duvar Kağıtları</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>açılmak</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Kilit ekranı ayarla</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Masaüstü ayarla</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation>tümünü göster - %1 öğe</translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Arayüz ve Efektler</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Pencere Ayarları</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Pencere yuvarlatılmış köşeler</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Hiçbiri</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Küçük</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Büyük</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Pencereleri taşırken şeffaflık efektlerini etkinleştirin</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Pencere Küçültme Efekti</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Ölçek</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Sihirli Işık</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Saydamlık</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Düşük</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Yüksek</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Kaydırma Çubukları</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Kaydırmayı göster</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Gösterilmeyi sürdür</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Kompakt Ekran</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Etkinse, pencerede daha fazla içerik görüntülenir.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Başlık Çubuğu Yüksekliği</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Sadece pencere yöneticisi tarafından çizilen uygulama penceresi başlık çubukları için uygundur.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Son derece küçük</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>Orta</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>Orta</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Geleneksel Çince (Çince Hong Kong)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Geleneksel Çince (Çince Tayvan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation>Min Nan Çincesi</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Tayvan Çin</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>Kullanıcı adı 3 ile 32 karakter arasında olmalıdır</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>İlk karakter bir harf veya sayı olmalıdır</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>Kullanıcı adınız sadece rakam içermemelidir</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>Kullanıcı adı diğer kullanıcı hesapları tarafından kullanılmış</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Tam isim çok uzun</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>Tam ad diğer kullanıcı hesapları tarafından kullanılmış</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Yanlış parola</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Standart Kullanıcı</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Yönetici</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Özelleştirilmiş</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Ana makineniz etki alanı sunucusundan başarıyla kaldırıldı</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>Ana makineniz etki alanı sunucusuna başarıyla katıldı</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>Ana makineniz etki alanı sunucusundan ayrılamadı</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>Ana makineniz etki alanı sunucusuna katılamadı</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>Aktif Dizin etki alanı ayarları</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>Parola eşleşmiyor</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Boyutsal</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Düz</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation>Yüz izi</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Yüz</translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation>Cihazın kilidini açmak ve ayarları daha sonra yapmak için yüzünüzü kullanın</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Parmak İzi</translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation>Parmağınızı yerleştirin</translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation>Kaldırmanız istenene kadar parmağınızı sensöre sıkıca yerleştirin</translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation>Parmağınızı kaldırın</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Parmağınızı kaldırın ve yeniden algılayıcıya koyun</translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation>Parmağınızı kaldırın ve tekrar yapın</translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation>Tarama Askıya Alındı</translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation>Parmak izinizin kenarlarını tarayın</translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation>Parmak izinizin kenarlarını sensöre yerleştirin</translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation>Parmak izinizin kenarlarını taramak için konumu ayarlayın</translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation>Parmak izi eklendi</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation>İris</translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation>Cihazın kilidini açmak ve daha sonra ayarları yapmak için irisinizi kullanın</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Bu kısayol [%1] ile çakışıyor</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Parola boş olamaz</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Parola en az %1 karakter olmalıdır</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Parola %1 karakterden fazla olmamalıdır</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Parola yalnızca İngilizce harfler (büyük/küçük harfe duyarlı), sayılar veya özel simgeler içerebilir (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>En fazla %1 palindrom karakter lütfen</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>%1&apos;den fazla monoton karakter yok lütfen</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Lütfen %1&apos;den fazla yinelenen karakter yok</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Parola büyük harfler, küçük harfler, sayılar ve semboller içermeli (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Parola 4&apos;ten fazla tersten okunduğunda aynı olan karakter içermemelidir</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Parola olarak bilinen kelime ve kombinasyonlarını kullanmayın</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Lütfen güçlü bir parola oluşturun</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Parola kurallarına uymuyor</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation>Küçük harf, büyük harf, rakam ve sembollerden en az %1 tanesini içermeli ve şifre kullanıcı adı ile aynı olmamalıdır.</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Sistem</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Pencere</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Çalışma Alanı</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>YardımcıAraçlar</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Özel</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Hiçbiri</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_tzm.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"tzm\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Before using face recognition, please note that: \n1. Your device may be unlocked by people or objects that look or appear similar to you.\n2. Face recognition is less secure than digital passwords and mixed passwords.\n3. The success rate of unlocking your device through face recognition will be reduced in a low-light, high-light, back-light, large angle scenario and other scenarios.\n4. Please do not give your device to others randomly, so as to avoid malicious use of face recognition.\n5. In addition to the above scenarios, you should pay attention to other situations that may affect the normal use of face recognition.\n\nIn order to better use of face recognition, please pay attention to the following matters when inputting the facial data:\n1. Please stay in a well-lit setting, avoid direct sunlight and other people appearing in the recorded screen.\n2. Please pay attention to the facial state when inputting data, and do not let your hats, hair, sunglasses, masks, heavy makeup and other factors to cover your facial features.\n3. Please avoid tilting or lowering your head, closing your eyes or showing only one side of your face, and make sure your front face appears clearly and completely in the prompt box.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Izdy</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Sser</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;).&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Ssexsi</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Tineɣmisin</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_ug.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ug\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>بىكار قىلىش</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>تامام</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>ئۇلاندى</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>ئۇلانمىدى</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>بارماق ئىزى1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>بارماق ئىزى2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>بارماق ئىزى3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>بارماق ئىزى4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>بارماق ئىزى5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>بارماق ئىزى6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>بارماق ئىزى7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>بارماق ئىزى8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>بارماق ئىزى9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>بارماق ئىزى10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>بارماق ئىزى تىزىملانمىدى</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>بۇ بارماق ئىزى تىزىملىنىپ بولغان</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>باشقا بارمىقىڭىزنى سىناپ بېقىڭ</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>نامەلۇم خاتالىق</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>بارماق ئىزىنى تىزىملىتىش ئۈزۈلۈپ قالدى</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>تونىيالمىدى</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>تېگىشىش ۋاقتى قىسقا</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>تېگىشىش ۋاقتى قىسقا بولۇپ قالدى، دەلىللىگەندە بارمىقىڭىزنى مىدىرلاتماڭ</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>سۈرەت سۇس</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>قولىڭىزنى تازىلاڭ ياكى تېگىشىش ئورنىنى تەڭشەڭ، ئاندىن بارمىقىڭىزنى قايتا قويۇپ سىناپ بېقىڭ</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>سۈرەت قايتىلىنىپ قالغان</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>بارمىقىڭىز تەڭگەن رايوننى تەڭشەپ تېخىمۇ كۆپ بارماق ئىزى تىزىملىتىڭ</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>بارماق ئىزى ئېلىنىۋاتقاندا بارمىقىڭىزنى ئېلىش ئەسكەرتىشى چىقمىغۇچە بارمىقىڭىزنى مىدىرلاتماڭ</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>بارمىقىڭىزنى ئېلىپ قايتا بېسىڭ</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>يۈز قىسمىڭىزنىڭ پەرقلەندۈرۈش دائىرىسى ئىچىدە بولۇشىغا كاپالەتلىك قىلىڭ </translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>چىراي تونۇش كىرگۈزۈش مۇۋەپپەقىيەتلىك بولدى</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>راست ئادەم چىرايىنى ئىشلىتىڭ</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>كامېرا  كۆزىگە توغۇرلىنىڭ،بەك يېقىن ياكى يېراق تۇرۋالماڭ</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>كامېراغا يېقىنلىشىڭ</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>كۆپ ئادەم بولسا بولمايدۇ</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>كامېرا كۆزىنىڭ پاكىزلىقىغا كاپالەتلىك قىلىڭ</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>قاراڭغۇ نۇر، كۈچلۈك نۇر، تەتۈر نۇر مۇھىتىدا مەشغۇلات قىلىشتىن ساقلىنىڭ</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>يۇزىڭىز ئۆلچەملىك چىقىمىدى</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>كىرگۈزۈش ۋاقتى ئېشىپ كەتتى </translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>بىكار قىلىش</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-uy</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-uy</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>ۋاقىت مۇلازىمېتىرىنى ئۆزگەرتىش دەلىللەشنى تەلەپ قىلىدۇ</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>سىستېما ۋاقىت رايونىنى بەلگىلەش ئۈچۈن دەلىللەش تەلەپ قىلىنىدۇ</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright © 2011-%1 Deepin مەھەللىسى</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright © 2019-%1 توڭشىن يۇمشاق دېتال تېخنىكا چەكلىك شىركىتى</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation> شاۋقۇننى ئاپتوماتىك پەسەيتىش</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>مىكروفون ئاۋاز مىقدارى</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>قايتما ئاۋاز</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>كىرگۈزۈش ئۈسكۈنىلىرى</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>بەلگىلەش</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>پارول قۇرۇق قالسا بولمايدۇ</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>پارول %1 ھەرپتىن كەم بولماسلىقى كېرەك</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>پارول %1 ھەرپتىن ئېشىپ كەتمەسلىكى كېرەك</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>پارولدا پەقەت ئىنگلىزچە ھەرپلەر (چوڭ-كىچىك) ، سان ياكى ئالاھىدە بەلگىلەر بار (~! @ # $% ^ &amp; * () [] {} \\ | /?,. &lt;&gt;)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>جاۋاب خەتنىڭ ئۇزۇنلۇقى %1 ھەرپتىن ئېشىپ كەتمىسۇن</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>قايتىلانغان بەلگە %1 تىن ئېشىپ كەتمىسۇن</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>قايتىلانغان ھەرپ %1 تىن ئېشىپ كەتمىسۇن</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>پارول چوڭ ھەرپ،كىچىك ھەرپ، سانلار ۋە بەلگىلەردىن ئىبارەت ئۈچ تۈرنى ئۆز ئىچىگە ئېلىشى كېرەك(~!@#$%^&amp;*()[]{}\\|/?,.&lt;&gt;)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>پارولدا ئۇدا 4 تىن ئارتۇق قايتىلانما ھەرپ-بەلگە بولسا بولمايدۇ</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>پارولدا دائىم ئۇچرايدىغان ئاددىي سۆز ۋە سۆز بىرىكمىلىرى بولسا بولمايدۇ</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>پارول بەك ئاددىي، مۇرەككەپرەك بېكىتىڭ</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>پارول بىخەتەرلىك تەلىپىگە ئۇيغۇن كەلمەيدۇ</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>كونترول مەركىزى </translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>ئاكتىپلاندى</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>كۆرۈش</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>ئاكتىپلانمىغان</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>ئاكتىپلاش</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>ۋاقتى ئۆتتى</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>سىناق ۋاقتى</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>سىناق ۋاقتى ئۆتتى</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>چەكمە ئېكران تەڭشىكى</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>چەكمە ئېكران تەڭشىكى ئۆزگەردى</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>سىستېما ئاۋاز ئۈنۈمى</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>ئېچىش</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>تاقاش</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>چېكىنىش</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>ئويغىتىش</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>ئاۋازنى تەڭشەش</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>ئۇقتۇرۇش</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>توك ئاز قالدى</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>سىنبەلگىنى قوزغاتقۇچتىن ئۈستەليۈزىگە يوللاش</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>ئەخلەت ساندۇقىنى تازىلاش</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>توك ئۇلاندى</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>توك ئۈزۈلدى</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>كۆچمە ئۈسكۈنە ئۇلاندى</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>كۆچمە ئۈسكۈنە ئۈزۈلدى</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>خاتالىق ئۇچۇرى</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>ھالىتى</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>ياڭراتقۇ ئاۋاز مىقدارى</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>ئاۋازنى كۈچەيتىش</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>ئاۋاز %100 دىن يۇقىرى بولغاندا ئەينەن چىقماسلىقى ھەمدە ياڭراتقۇغا زىيان يەتكۈزۈشى مۇمكىن</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>سول تەرەپ</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>ئوڭ تەرەپ</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>چىقىرىش ئۈسكۈنىلىرى</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>كۆرسىتىش تەڭشىكىنى ساقلامسىز؟</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>ھېچقانداق مەشغۇلات قىلمىسڭىز %1 سىكۇنتتىن كېيىن ئەسلىگە قايتىدۇ.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>ئەسلىگە قايتۇرۇش</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>ساقلاش</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>مۇرەككەپ خەنزۇچە (خەنزۇچە شياڭگاڭ)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>مۇرەككەپ خەنزۇچە (خەنزۇچە تەيۋەن)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>تەيۋەن جۇڭگو</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>بۇ تېزلەتمە [%1] بىلەن توقۇنۇشىدۇ</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>سىستېما</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>كۆزنەك</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>خىزمەت رايونى</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>ياردەم قورالى</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>ئىختىيارى</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>يوق</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_uk.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"uk\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>Змінити</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Додати нового користувача</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Встановити повну назву</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Параметри входу</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Вхід без пароля</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Вилучити поточний обліковий запис</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Параметри груп</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Групи облікового запису</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>виконано</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Назва групи</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Додати групу</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Автоматичний вхід</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Дані щодо облікового запису</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Назва облікового запису, повна назва облікового запису, тип облікового запису</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Назва облікового запису</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Повна назва облікового запису</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Тип облікового запису</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Ім&apos;я повністю є надто довгим</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>Кількість символів у назві групи не повинна перевищувати 32</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>Назва групи не може складатися лише з цифр</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>Можна використовувати лише літери, цифри, підкреслювання та дефіси, має починатися з літери</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>Назву групи вже використано</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>швидкий вхід, автоматичний вхід, вхід без пароля</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>Повторити</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>Вирізати</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>Скопіювати</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>Вставити</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>Позначити усе</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>Швидкий вхід</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation>Обліковий запис</translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation>Керування обліковими записами</translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation>Інші облікові записи</translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Реєстрація обличчя</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Прочитано, погоджуюся з</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Попередження</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Далі</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Обличчя зареєстровано</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>Не вдалося зареєструвати ваше обличчя</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Виконано</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Повторити реєстрацію</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation>У системі розпізнавання за обличчям не передбачено виявлення того, чи людина жива, а спосіб перевірки є ризикованим.\nДля забезпечення успішності:\n1. Зробіть так, щоб особливості вашого обличчя були чітко помітні і не прикривайте їх (капелюхи, окуляри, маски тощо).\n2. Забезпечте належну освітленість і уникайте прямого сонячного світла.</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>«Біометричне розпізнавання» — функціональна можливість розпізнавання користувачів, яка надається UnionTech Software Technology Co, Ltd. Під час «біометричного розпізнавання» зібрані біометричні дані буде порівняно із даними, які зберігаються на пристрої. Ідентичність користувача буде встановлено на основі результатів порівняння.\nБудь ласка, зауважте, що UnionTech Software не збиратиме і не оброблятиме ваших біометричних даних, які зберігатимуться лише на вашому локальному пристрої. Будь ласка, вмикайте біометричне розпізнавання лише на вашому особистому пристрої і використовуйте ваші власні біометричні дані лише для відповідних операцій. Негайно вимикайте або вилучайте біометричні дані інших осіб на відповідному пристрої. Відповідальність за наслідки недотримання цих вимог покладається на вас. \nUnionTech Software Technology Co, Ltd працює над вивченням і удосконаленням можливостей із захисту, точності і стабільності біометричного розпізнавання. Втім, через вплив факторів середовища, обладнання, технічних проблем та засобів керування ризиками немає гарантії безумовного проходження вами біометричного розпізнавання. Через це, не слід покладатися повністю на біометричне розпізнавання при вході до UOS. Якщо у вас є якісь питання та пропозиції щодо використання біометричного розпізнавання, ви можете надати ваш відгук за допомогою «Обслуговування і підтримки» у UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Виконано</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Реєстрація відбитка</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Розташуйте палець, відбиток якого слід зареєструвати на сенсорі і проведіть ним знизу вгору. Після завершення дії, підніміть палець із сенсора.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Прочитано, погоджуюся з</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Попередження</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Далі</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Повторити реєстрацію</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>«Біометричне розпізнавання» — функціональна можливість розпізнавання користувачів, яка надається UnionTech Software Technology Co, Ltd. Під час «біометричного розпізнавання» зібрані біометричні дані буде порівняно із даними, які зберігаються на пристрої. Ідентичність користувача буде встановлено на основі результатів порівняння.\nБудь ласка, зауважте, що UnionTech Software не збиратиме і не оброблятиме ваших біометричних даних, які зберігатимуться лише на вашому локальному пристрої. Будь ласка, вмикайте біометричне розпізнавання лише на вашому особистому пристрої і використовуйте ваші власні біометричні дані лише для відповідних операцій. Негайно вимикайте або вилучайте біометричні дані інших осіб на відповідному пристрої. Відповідальність за наслідки недотримання цих вимог покладається на вас. \nUnionTech Software Technology Co, Ltd працює над вивченням і удосконаленням можливостей із захисту, точності і стабільності біометричного розпізнавання. Втім, через вплив факторів середовища, обладнання, технічних проблем та засобів керування ризиками немає гарантії безумовного проходження вами біометричного розпізнавання. Через це, не слід покладатися повністю на біометричне розпізнавання при вході до UOS. Якщо у вас є якісь питання та пропозиції щодо використання біометричного розпізнавання, ви можете надати ваш відгук за допомогою «Обслуговування і підтримки» у UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>Реєстрація райдужки</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Прочитано, погоджуюся з</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Відмова від відповідальності</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Далі</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Готово</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Повторити реєстрацію</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>Райдужку зареєстровано</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>Не вдалося зареєструвати вашу райдужку</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>«Біометричне розпізнавання» — функціональна можливість розпізнавання користувачів, яка надається UnionTech Software Technology Co, Ltd. Під час «біометричного розпізнавання» зібрані біометричні дані буде порівняно із даними, які зберігаються на пристрої. Ідентичність користувача буде встановлено на основі результатів порівняння.\nБудь ласка, зауважте, що UnionTech Software не збиратиме і не оброблятиме ваших біометричних даних, які зберігатимуться лише на вашому локальному пристрої. Будь ласка, вмикайте біометричне розпізнавання лише на вашому особистому пристрої і використовуйте ваші власні біометричні дані лише для відповідних операцій. Негайно вимикайте або вилучайте біометричні дані інших осіб на відповідному пристрої. Відповідальність за наслідки недотримання цих вимог покладається на вас. \nUnionTech Software Technology Co, Ltd працює над вивченням і удосконаленням можливостей із захисту, точності і стабільності біометричного розпізнавання. Втім, через вплив факторів середовища, обладнання, технічних проблем та засобів керування ризиками немає гарантії безумовного проходження вами біометричного розпізнавання. Через це, не слід покладатися повністю на біометричне розпізнавання при вході до UOS. Якщо у вас є якісь питання та пропозиції щодо використання біометричного розпізнавання, ви можете надати ваш відгук за допомогою «Обслуговування і підтримки» у UOS.</translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation>Будь ласка, утримуйте погляд на пристрої і переконайтеся, що обидва ока перебувають у зоні видимості</translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Біометричне розпізнавання</translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>Біометричне розпізнавання</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Обличчя</translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation>Можна реєструвати до 5 записів облич</translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Відбиток пальця</translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation>Розпізнавання користувача за сканованими відбитками пальців</translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation>Райдужка</translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation>Розпізнавання користувача за скануванням райдужки</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation>Можна використовувати лише латинські літери, цифри та символи підкреслювання. Довжина назви не повинна перевищувати 15 символів.</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation>Можна використовувати лише латинські літери, цифри та символи підкреслювання</translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation>Не більше 15 символів</translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation>Запис і з такою назвою вже існує</translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation>Додати новий %1…</translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation>Назва не може бути порожньою</translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>«Автоматичний вхід» можна увімкнути лише для одного облікового запису. Будь ласка, спочатку вимкніть його для облікового запису «%1»</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>Гаразд</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>Зображення</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>Людина</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Тварини</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Пейзажі</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>Ілюстрація</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>Емодзі</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>Нетиповий</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Стиль мультфільмів</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Просторовий стиль</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Плоский стиль</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Зберегти</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Екран та призупинення</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Вимкнути монітор після</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Блокування екрану після</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Призупинити комп&apos;ютер після</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Якщо закрито кришку</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Якщо натиснуто кнопку живлення</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Низький заряд</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Сповіщення щодо низького заряду</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Автопризупинення</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Автоприсипляння</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Рівень низького заряду</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Керування акумулятором</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Показувати залишок часу користування і заряджання</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Максимальна місткість</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Низький рівень заряду</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Вимкнути</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation>Параметри Bluetooth, пристрої</translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation>Bluetooth</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth вимкнено, і показана назва — «%1»</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth увімкнено, і показана назва — «%1»</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Відʼєднатися</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>З&apos;єднатися</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Надіслати файли</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Перейменувати</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Вилучити пристрій</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Виберіть файл</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Змінити</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Дозволити іншим пристроям Bluetooth знаходити цей пристрій</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Щоб скористатися Bluetooth, будь ласка, вимкніть</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Режим польоту</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>Довжина назви Bluetooth не може перевищувати 64 символів</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Підключено</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Не підключено</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Параметри запуску</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Ви можете натиснути пункт меню для зміни типових пунктів запуску або перетягнути зображення до вікна, щоб змінити фонове зображення.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>затримка запуску GRUB</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>тема</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Після вмикання теми ви зможете побачити фонове зображення теми при вмиканні комп&apos;ютера</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Перевірка меню завантаження</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Після відкриття для входу до меню редагування доведеться ввести пароль</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Змінити пароль</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Змінити пароль перевірки меню завантаження</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Встановити пароль розпізнавання меню завантаження</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Ім&apos;я користувача:</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Новий пароль:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Обов&apos;язкове</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Пароль не може бути порожнім</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Паролі не збігаються</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Повторіть пароль:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Добре</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Почати анімацію</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>Скоригувати розмір анімації логотипа в інтерфейсі запуску системи</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Дозволити наведеним нижче програмам доступ до камери:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Відбиток1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Відбиток2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Відбиток3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Відбиток4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Відбиток5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Відбиток6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Відбиток7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Відбиток8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Відбиток9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Відбиток10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Помилка сканування</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Відбиток вже існує</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Будь ласка, виконайте сканування інших пальців</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Невідома помилка</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Сканування призупинено</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Не вдалося розпізнати</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Надто швидкий рух</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Палець прибрано надто швидко. Будь ласка, не знімайте палець, доки програма вас про це не попросить.</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Брудний палець</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Витріть палець або скоригуйте його позицію. Потім повторіть спробу.</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Вже скановано</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Скоригуйте позицію пальця, щоб програма могла засканувати відбиток повністю.</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Надто швидкий рух пальцем. Будь ласка, не прибирайте палець, доки вас про це не попросять.</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Прийміть ваш палець, а потім знову торкніться ним сенсора</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Розташуйте ваше обличчя всередині рамки</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Обличчя зареєстровано</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Людське обличчя, будь ласка</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Тримайтеся подалі від камери</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Тримайтеся ближче до камери</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Будь ласка, лише одне обличчя у рамці</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Переконайтеся, що об&apos;єктив камери не забруднено</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Не виконуйте реєстрацію у надто темних або світлих середовищах або із підсвічуванням ззаду</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Не прикривайте обличчя</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Перевищено граничний час сканування</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>Камеру зайнято!</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Колір акценту</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Параметри піктограм</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Тема піктограм</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Налаштувати вашу тему піктограм</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Тема вказівника</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Налаштувати вашу тему вказівника</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Ви справді хочете вилучити цей обліковий запис?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Вилучити каталог облікового запису</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Вилучити</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Перейти до параметрів</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Загальні</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Затримка повторення</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Коротка</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Довга</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Частота повторення</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Повільна</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Швидка</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Цифрова клавіатура</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>Тест тут</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Підказка Caps Lock</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Швидкість подвійного клацання</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Перевірка подвійного клацання</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Режим шульги</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>Увімкнути клавіатуру</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>Загальне</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>Швидкість гортання</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation>Меню завантаження</translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation>Керування меню завантаження</translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation>Керування правами доступу root для розробника</translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation>Параметри для розробників</translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation>Діагностичні параметри для розробників</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Великий розмір</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Малий розмір</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>Не вдалося отримати доступ root</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Будь ласка, спершу увійдіть до вашого ідентифікатора Union</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>Не вдалося прочитати дані щодо вашого ПК</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>Немає з&apos;єднання з мережею</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>Не вдалося завантажити сертифікат — не вдалося отримати адміністративний доступ (root)</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>Не вдалося перевірити підпис — не вдалося отримати адміністративний доступ (root)</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Погодитися та приєднатися до програми досвіду користувачів</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>Попередження щодо режиму розробника</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>Погодитися і отримати доступ root</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Починаємо встановлення нової анімації завантаження, будь ласка, зачекайте</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>Встановлення нової анімації завантаження завершено</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>Параметри буде застосовано після перезавантаження системи</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation>Перезавантажити зараз</translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation>Відкинути</translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation>Перезапустіть пристрій, щоб завершити застосування параметрів надійного захисту системи лише для читання</translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>Пароль має містити цифри і літери</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>Довжина пароля має бути від 8 до 64 символів</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Створити _рахунок</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Тип облікового запису</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Користувач</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Обов&apos;язкове</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Ім&apos;я повністю</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Необов&apos;язкове</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>створення рахунку</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>Довжина назви запису користувача не може перевищувати 32 символи</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>Ім&apos;я користувача може містити лише літери, цифри та символи - і _</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>Довжина імені повністю не може перевищувати 32 символи</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>Ім&apos;я повністю не може містити символів двокрапки</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation>малий</translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation>великий</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>Вами ще не вивантажено аватар. Для вивантаження зображення перетягніть і скиньте його сюди.</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>Тип вивантаженого файла є неправильним. Будь ласка, повторіть спробу вивантаження</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>Доступно</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-en</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-en</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Погодитися та приєднатися до програми досвіду користувачів</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation>&lt;p&gt;Ми поважаємо ваші права на конфіденційність ваших особистих даних. Тому нами розроблено правила конфіденційності, які обмежують збирання, використання, оприлюднення, передавання, розкриття для громадськості та зберігання нами відомостей щодо вас.&lt;/p&gt;&lt;p&gt;Можете натиснути &lt;a href=&quot;%1&quot;&gt;тут&lt;/a&gt;, щоб переглянути найсвіжішу версію правил конфіденційності і/або переглянути ці дані у мережі, відвідавши &lt;a href=&quot;%1&quot;&gt;%1&lt;/a&gt;. Будь ласка, уважно прочитайте та переконайтеся, що вам повністю зрозумілий наш підхід до конфіденційності даних користувачів. Якщо у вас виникнуть якісь питання, будь ласка, зв&apos;яжіться із нами за адресою %2.&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Участь у програмі відгуків користувачів означає, що ви надаєте нам доступ до збирання і використання відомостей щодо вашого пристрою, системи та використаних програм. Якщо ви не хочете, щоб ми збирали і використовували ці дані, не беріть участь у програмі відгуків. Щоб дізнатися більше, будь ласка, ознайомтеся із Правилами конфіденційності Deepin (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Участь у програмі відгуків користувачів означає, що ви надаєте нам доступ до збирання і використання відомостей щодо вашого пристрою, системи та використаних програм. Якщо ви не хочете, щоб ми збирали і використовували ці дані, не беріть участь у програмі відгуків. Щоб дізнатися більше про програму відгуків користувачів, будь ласка, відвідайте &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Параметри дати і часу</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Дата</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Рік</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Місяць</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>День</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Час</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Підтвердити</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation>Час і дата</translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation>Час і дата, параметри часового поясу</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation>Мова і регіон</translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation>Мова системи, формат регіону</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Завтра</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Вчора</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Сьогодні</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>На %1 годин відстає від місцевого</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>На %1 годин випереджає місцевий</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Пробіл</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Тиждень</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Перший день тижня:</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Скорочена дата</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Дата повністю</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Час скорочено</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Час повністю</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Знак грошової одиниці</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Додатна сума валюти</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Від&apos;ємна сума валюти</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Десятковий знак</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Символ групування цифр</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Групування цифр</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Розмір сторінки</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>Приклад</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Для зміни NTP-сервера потрібна автентифікація</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Аутентифікація потрібна для встановлення системного часового поясу.</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Зберегти</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Центр керування надає параметри для системних налаштувань.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>Пов&apos;язати з WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>Шляхом прив&apos;язування WeChat ви зможете безпечно і швидко входити до вашого ідентифікатора %1 і локальних облікових записів.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>ВІД’ЄДНАНО</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Відв&apos;язування</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Посилання</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Ви справді хочете відв&apos;язати ваш WeChat?</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Після відв&apos;язування WeChat ви не зможете скористатися WeChat для сканування QR-коду для входу до ідентифікатора %1 або локального облікового запису.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Дайте подумати</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Прив&apos;язка локального облікового запису</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Після прив&apos;язки вашого локального облікового запису ви зможете скористатися такими функціями:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>Система входу за сканованими кодами WeChat</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Скористатися WeChat, який прив&apos;язано до вашого ідентифікатора %1 ID, для сканування коду для входу до вашого локального облікового запису.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Скидання пароля за ідентифікатором %1</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Скинути ваш локальний пароль, якщо ви його забули, за допомогою ідентифікатора %1.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Щоб скористатися вказаними вище можливостями, будь ласка, перейдіть на сторінку «Центр керування -&gt; Облікові записи» і увімкніть відповідні пункти.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>Deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Синхронізація із «хмарою»</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>Керуйте вашим ідентифікатором %1 і синхронізуйте ваші особисті дані між пристроями.\nУвійдіть до облікового запису UOS, щоб отримати персоналізовані можливості та служби переглядача інтернету, крамниці програм, підтримки та інші послуги.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Увійти до облікового запису %1</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Авто-синхронізація</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Безпечно збережіть параметри системи і особисті дані у «хмарі» і підтримуйте синхронізацію цих даних між пристроями.</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Системні параметри</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Остання синхронізація: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Вилучити дані «хмари»</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>Ви справді хочете вилучити ваші системні параметри і особисті дані, які збережено у «хмарі»?</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>Щойно дані буде вилучено, їх вже не можна буде відновити!</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Очистити</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Служба синхронізації</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Обліковий запис і безпека</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Вийти</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Перейти до параметрів мережі</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>У псевдонімі має бути від 1 до 32 символів</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>не вдалося скористатися паролем шифрування</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Помилковий пароль, лишилося %1 спроб</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>На сьогодні перевищено обмеження на невдалі спроби увійти. Ви можете скинути пароль і повторити спробу.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Дію успішно виконано</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>Псевдонім можна міняти не частіше, ніж раз на день</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation>Ідентифікатор Deepin</translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation>Ідентифікатор UOS</translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation>«Хмарні» служби</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>Материковий Китай</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Інші регіони</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>Цю можливість у поточній версії ще не реалізовано. Будь ласка, спочатку активуйте вашу систему.</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Через вимоги місцевого законодавства у вашому регіоні доступу до цих даних немає.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation>Типова програма</translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation>Встановлення типових програм для відкриття файлів різних типів</translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation>Вебсторінка</translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation>Пошта</translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation>Текст</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Музика</translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation>Відео</translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation>Зображення</translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation>Термінал</translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Будь ласка, виберіть типову програму для відкриття «%1»</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>&amp;Додати</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Відкрити файл робочого столу</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>програми (*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>усі файли (*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Доступ root</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Попросити про доступ до root</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Після переходу у режим розробника ви зможете отримувати права доступу root, але це може призвести до порушення цілісності вашої системи, тому, будь ласка, будьте обережні.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>дозволено</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Увійти</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>У мережі</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Увійти до ідентифікатора UOS</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>Поза мережею</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Імпортувати сертифікат</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Виберіть файл</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>Ви увійшли до вашого ідентифікатора UOS, натисніть, щоб перейти у режим розробника</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Будь ласка, спершу увійдіть до вашого UOS ID і продовжіть роботу</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>Експортувати дані ПК</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Експортувати</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>Імпортувати сертифікат</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Параметри для розробки і діагностики</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Рівень журналювання у системі</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Зміна параметрів може призвести до докладнішого ведення журналу, що може призвести до зниження швидкодії системи або виникнення потреби у збільшення місця для зберігання даних журналу.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Вимкнено</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Діагностика</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>Зміна параметра може тривати до хвилини з моменту отримання успішного запиту на встановлення, будь ласка, перезавантажте пристрій, щоб зміни набули чинності.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>Для встановлення і запуску непідписаних програм, будь ласка, відкрийте &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt;Центр безпеки&lt;/a&gt; для внесення змін до параметрів.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation>Для встановлення і запуску непідписаних програм, будь ласка, відкрийте «Центр безпеки» для внесення змін до параметрів.</translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation>Ви увійшли до режиму розробника</translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>Гаразд</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation>2. Будь ласка, перейдіть до %1, щоб отримати автономний сертифікат.</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation>Цю можливість у поточній версії ще не реалізовано. Будь ласка, спочатку активуйте вашу систему.</translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation>Надійний захист системи лише для читання</translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation>Вимикання захисту розблоковує каталоги системи. Ця дія загрожує наступним пошкодженням системи.</translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation>Увімкнути захист для блокування каталогів системи і забезпечення оптимальної стабільності.</translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation>Bluetooth і пристрої</translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Попередження</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>Погоджуюсь</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Дисплей</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation>Яскравість,роздільність,масштабування</translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation>100%</translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation>125%</translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation>150%</translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation>175%</translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation>200%</translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation>225%</translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation>250%</translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation>275%</translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation>300%</translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation>Дублікат</translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation>Розширити</translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation>Типово</translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation>Підібрати</translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation>Розтягнути</translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation>Центрувати</translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation>Лише на %1</translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation>Параметри для декількох дисплеїв</translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation>Ідентифікувати</translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation>Перевпорядковування екранів буде виконано за %1с після внесення змін</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>Режим</translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation>Головний екран</translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation>Дисплей і компонування</translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation>Яскравість</translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation>Роздільність</translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation>Змінити розміри стільниці</translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation>Частота оновлення</translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation>Обертання</translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation>Стандартне</translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation>90°</translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation>180°</translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation>270°</translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation>Параметрами монітора передбачено лише масштабування у 100%</translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation>Комфорт для очей</translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation>Увімкнути комфорт для очей</translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation>Зробити кольори теплішими, зменшуючи вплив синього компонента світла</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Час</translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation>Увесь день</translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation>Від сутінок до світанку</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Нетиповий час</translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation>від</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>до</translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation>Температура кольорів</translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation>%1x%2 (рекомендовано)</translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation>%1x%2</translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation>%1Гц (рекомендовано)</translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation>%1Гц</translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation>Масштабування</translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation>Стільниця і панель задач</translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation>Упорядковування стільниці, режим панелі задач, параметри області додатків</translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation>Бічна панель</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>Режим</translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation>Класичний режим</translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation>Центрований режим</translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation>Розмір панелі</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Малий</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Великий</translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation>Розташування на екрані</translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation>Вгорі</translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation>Внизу</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Ліворуч</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Праворуч</translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation>Стан</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Показувати постійно</translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation>Приховувати постійно</translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation>Розумне приховування</translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation>Декілька дисплеїв</translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation>Встановити розташування панелі задач на екрані</translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation>Лише на головному</translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation>На екрані, де перебуває вказівник</translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Область додатків</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Виберіть, які піктограми буде показано на бічній панелі</translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation>Заблокувати панель</translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation>Поєднувати піктограми програм</translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Дозволити вказаним нижче програмам доступ до цих файлів і тек:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Документи</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>%1 (стільниця)</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Зображення</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Відео</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Музика</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Отримання</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>Тека</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Розмір</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Стандартний шрифт</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Моноширинний шрифт</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Плани живлення</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Параметри заощадження енергії</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Автоматичне заощадження енергії при низькому заряді</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Рівень низького заряду</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Автоматичне заощадження енергії на акумуляторі</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Параметри пробудження</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Щоб увімкнути комп&apos;ютер, необхідно ввести пароль</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Щоб увімкнути монітор, необхідно ввести пароль</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Параметри вимикання</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Заплановане вимикання</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Час</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Повторення</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Один раз</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Щодня</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Робочі дні</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Нетиповий час</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Зменшувати яскравість екран при заощадженні живлення</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation>Трьома пальцями вгору</translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation>Трьома пальцями вниз</translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation>Трьома пальцями ліворуч</translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation>Трьома пальцями праворуч</translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation>Торкання трьома пальцями</translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation>Чотирма пальцями вгору</translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation>Чотирма пальцями вниз</translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation>Чотирма пальцями ліворуч</translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation>Чотирма пальцями праворуч</translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation>Торкання чотирма пальцями</translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>,</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>...</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>Оптимальна швидкодія</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>Баланс</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>Найкращі візуальні ефекти</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>Вимкнути усі ефекти інтерфейсу і вікон для пришвидшення системи.</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>Обмежити деякі ефекти вікон для забезпечення ідеальних візуальних ефектів, але з підтримкою належної швидкодії системи.</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>Увімкнути усі ефекти інтерфейсу та вікон для удосконалення візуальної складової.</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation>Клавіатура</translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation>Загальні параметри, спосіб введення, скорочення</translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Загальні</translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>Мова</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>виконано</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>Змінити</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>Інші мови</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>Додати</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>Область</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>Площа</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>Операційна система та програми можуть надавати вам локалізовані дані на основі вказаних країни і регіону</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>Операційна система та програми можуть встановлювати формати дати і часу на основі регіональних форматів</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Регіональний формат</translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>Додати мову</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Пошук</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>&amp;Додати</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Спосіб входу</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Пароль, wechat, біометричне розпізнавання, ключ захисту</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Пароль</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Редагувати пароль</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Дні чинності</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Завжди</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Скинути пароль</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>© Спільнота Deepin, 2011-%1</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>© UnionTech Software Technology Co., LTD, 2019-%1</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Автоматичне придушення шуму</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Вхідна гучність</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Рівень введення</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Вхід</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Не знайдено пристрою введення для звуку</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>Пристрій введення</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>Миша та сенсорна панель</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation>Загальне, миша, сенсорна панель</translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Загальні</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Миша</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Сенсорна панель</translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation>Миша</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Швидкість вказівника</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Повільна</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Швидка</translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation>Розмір вказівника</translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation>Прискорення миші</translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation>Вимикати сенсорну панель, якщо з&apos;єднано мишу</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Природне гортання</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Малий</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Середній</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Великий</translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation>Надвеликий</translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation>Для деяких програм доведеться вийти з системи або перезапустити її, щоб це набуло чинності</translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Мої пристрої</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Ім&apos;я комп&apos;ютера</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Не може починатися і завершуватися дефісом</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Назва ОС</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Версія</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Видання</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Тип</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>біт</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Уповноваження</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Час встановлення системи</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Ядро</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Графічна платформа:</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>Процесор</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Пам&apos;ять</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>Будь ласка, від 1 до 63 символів</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation>Режим «Не турбувати», сповіщення програм</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Сповіщення</translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation>Параметри режиму «Не турбувати»</translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation>Сповіщення програм не буде показано на стільниці, а звуковий супровід буде вимкнено, але ви зможете бачити повідомлення у центрі сповіщень.</translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation>Увімкнути «Не турбувати»</translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation>Якщо екран заблоковано</translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation>Кількість сповіщень, які буде показано на стільниці</translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation>Сповіщення програм</translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation>Дозволити сповіщення</translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation>Показ сповіщення на стільниці або показ кількості непрочитаних повідомлень у центрі сповіщень</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Стільниця</translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation>Блокування екрана</translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation>Центр сповіщень</translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation>Показати попередній перегляд повідомлення</translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation>Відтворити звук</translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Інші пристрої</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Показати пристрої Bluetooth без назв</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Поточний пароль</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Вимагається</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Слабке</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Середній</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Сильне</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Повторіть пароль</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Підказка пароля</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Необов&apos;язково</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Пароль не може бути порожнім</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Паролі не збігаються</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>Підказку буде показано усім користувачам. Не включайте до неї пароля.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>Новий пароль</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>Новий пароль повинен відрізнятися від попереднього</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation>Пароль не повинен збігатися з іменем користувача.</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Редагувати пароль</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Скинути пароль</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>Пароль має складатися з принаймні 8 символів і поєднувати у собі принаймні три з таких елементів: літери верхнього регістру, літери нижнього регістру, цифри та символи пунктуації. Паролі такого типу є безпечнішими.</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Скидання пароля призведе до вилучення даних, які зберігаються у сховищі ключів.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Персоналізація</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Світла</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Авто</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Темна</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation>Служба піпетки недоступна</translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation>Некоректний формат кольору: %1</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation>Тема</translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation>Вигляд</translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation>Ефект вікон</translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation>Персоналізація фонового зображення і зберігача екрана</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Зберігач екрана</translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation>Кольори і піктограми</translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation>Скоригувати кольори акценту та піктограми теми</translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation>Шрифт і розмір шрифту</translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation>Змінити загальносистемний шрифт і його розмір</translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation>Зображення тла</translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation>Виберіть світлий, темний або автоматичний режим вигляду теми</translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation>Інтерфейс і ефекти, заокруглені краї</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Користувацький</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Область додатків</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Виберіть, які піктограми буде показано на бічній панелі</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation>Параметри заощадження енергії, екрана та призупинення роботи</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Живлення</translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation>Загальне</translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation>Плани живлення, параметри заощадження енергії, параметри пробудження, параметри вимикання</translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation>На живленні</translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation>Екран та призупинення</translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation>Живлення від акумулятора</translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation>екран і призупинення, низький рівень заряду акумулятора, керування акумулятором</translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Вимкнути</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Призупинити</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Приспати</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Вимкнути монітор</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Показувати інтерфейс завершення роботи</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Нічого не робити</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Екран та призупинення</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Вимкнути монітор після</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Блокування екрану після</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Призупинити комп&apos;ютер після</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Якщо закрито кришку</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Якщо натиснуто кнопку живлення</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Висока продуктивність</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Збалансована швидкодія</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>Агресивно коригувати частоту роботи процесора на основі умов навантаження на процесор</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Збалансований</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Заощадження</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Перевага швидкодії, що значно збільшить споживання енергії та вивільнення тепла</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Баланс між швидкодією та часом роботи від акумулятора, автоматичне коригування, залежно від режиму користування</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Перевага часу роботи від акумулятора, певне уповільнення системи для зниження споживання енергії</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Хвилини</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Година</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Ніколи</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation>Конфіденційність та безпека</translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation>Камера, доступ до тек</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation>Камера</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation>Виберіть, чи матиме програма доступ до камери</translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation>Файли і теки</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation>Виберіть, чи матиме програма доступ до файлів і тек</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Правила конфіденційності</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Копіювати адресу посилання</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Пароль не може бути порожнім</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Пароль має складатися із принаймні %1 символів</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Пароль має складатися з не більше, ніж %1 символів</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Пароль може складатися лише з літер латиниці (із врахуванням регістру), цифр та спеціальних символів (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Не більше %1 символів у паліндромі, будь ласка</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Не більше %1 послідовних символів, будь ласка</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Не більше %1 повторюваних символів, будь ласка</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Пароль має складатися із великих і малих латинських літер, цифр і символів (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>У паролі не повинно бути паліндромів, що складаються з понад 4 символів</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Не використовуйте поширені слова або їхні комбінації як пароль</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Будь ласка, створіть складний пароль</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Не відповідає правилам створення паролів</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Центр керування</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Активовано</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Переглянути</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Ще не активовано</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Активувати</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Вичерпано строк дії</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Тестовий період</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Тестовий період завершено</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Параметри сенсорного екрана</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Параметри сенсорного екрана змінено</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Фонове зображення у цій системі заблоковано від змін. Будь ласка, зв&apos;яжіться з адміністратором вашої системи.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Пошук</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Типові формати</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Перший день тижня:</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Скорочена дата</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Дата повністю</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Час скорочено</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Час повністю</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Знак грошової одиниці</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Цифра</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Розмір паперу</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Зберегти</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>Регіональний формат</translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Пошук</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Вказати пароль</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>Символи</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Повторіть пароль</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Підтвердити</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Паролі не збігаються</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>Нетиповий час повторення</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Зберегти</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Збереження екрана</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>Перегляд</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Персоналізований зберігач екрана</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>встановлення</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>Хвилин бездіяльності</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 хвилина</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 хвилин</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>хвилина</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>хвилина</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>хвилина</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 година</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>ніколи</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Для відновлення слід вказати пароль</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Зберігач екрана з показу слайдів</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Загальносистемний зберігач екрана</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Пошук</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>Нічого не знайдено</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Додати нетипове скорочення</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Назва:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Вимагається</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Команда:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Скорочення</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Немає</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>&amp;Додати</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation>Назву скорочення вже використано. Виберіть іншу назву.</translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation>Змінити нетипове скорочення</translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation>будь ласка, натисніть клавіші скорочення</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Зберегти</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation>натисніть «Зберегти», щоб задіяти цю комбінацію клавіш</translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation>натисніть «Додати», щоб задіяти цю комбінацію клавіш</translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Скорочення</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Загальносистемні скорочення, нетипові скорочення</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Скорочення пошуку</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>виконано</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>Змінити</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Клацання</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>або</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Замінити</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Відновити &amp;типове</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Додати нетипове скорочення</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation>будь ласка, введіть нове скорочення</translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>Звук</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation>Виведення, введення, звукові ефекти, пристрої</translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Пристрої відтворення</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Виберіть, чи слід вмикати пристрої</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Пристрої вводу</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Звукові ефекти</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation>Параметри</translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation>Звукові ефекти</translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation>Вмикає або вимикає звукові ефекти.</translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation>Увімкнути/Вимкнути звукові пристрої</translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation>Керування пристроями</translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Завантаження</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Вимкнути</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Вийти</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Пробудження</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Гучність +/-</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Сповіщення</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Низький заряд</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Надіслати піктограму у засобі запуску на стільницю</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Спорожнити смітник</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>З&apos;єднання</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Від&apos;єднання</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>З&apos;єднано портативний пристрій</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Вилучено портативний пристрій</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Помилка</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Режим</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Вихідна гучність</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Підсилення гучності</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Значення гучності, які перевищують 100%, можуть призвести до викривлення звуку та пошкодження пристроїв виведення звуку</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Ліворуч</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Праворуч</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Вивід</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Не знайдено пристрою для відтворення звуку</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Баланс ліво/право</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Об&apos;єднати лівий і правий канали в єдиний канал</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Визначає, чи буде відтворення звуку автоматично призупинено, якщо поточний звуковий пристрій від&apos;єднано від комп&apos;ютера</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation>Монозвук</translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation>Автопауза</translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>Пристрій виведення</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Звук</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Живлення</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>Миша</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Оновлення</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Зберігач екрана</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation>Загальні параметри</translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation>Система</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation>Допоміжні відомості</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation>Про цей ПК</translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation>Версія системи, відомості щодо пристроїв</translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation>Переглянути зауваження щодо вільного програмного забезпечення</translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation>Програма взаємодії з користувачем</translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation>Долучайтеся до програми вражень користувачів, щоб допомогти у поліпшення продукту</translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation>Ліцензійна угода із кінцевим користувачем</translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation>Переглянути ліцензійну угоду з кінцевим користувачем</translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Правила конфіденційності</translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation>Переглянути відомості щодо правил конфіденційності</translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation>Зауваження щодо програмного забезпечення з відкритим кодом</translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Інші зображення тла…</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Час автосинхронізації</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Сервер NTP</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Системні дата та час</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Налаштувати</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Параметри</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Адреса сервера</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Вимагається</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>Адреса сервера NTP не може бути порожньою</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>Використовувати 24-годинний формат</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>Часовий пояс системи</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Список часових поясів</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Додати</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>від</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>до</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Зберегти налаштування дисплея?</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Система повернеться до початкових налаштувань за %1 с.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Повернути</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Зберегти</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Додати часовий пояс…</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Визначити часовий пояс на основі даних про поточне місце перебування</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>Часовий пояс:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Найближче місто:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Зберегти</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>Сенсорний екран</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Налаштуйте умови з&apos;єднання з сенсорним екраном</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Основні параметри</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Сенсорна панель</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Покажчик швидкості</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Повільно</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Швидко</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Вимикати сенсорну панель при введенні</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Натиск для клацання</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Природне гортання</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Жести трьома пальцями</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Жести чотирма пальцями</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation>Жести</translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation>Сенсорний екран</translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation>Налаштовування сенсорної панелі</translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation>Загальні</translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Долучитися до програми удосконалення взаємодії</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>Копіювати адресу посилання</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Перевірка захисту</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>Дія є критичною, будь ласка, спочатку введіть пароль до облікового запису</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>Символи</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Забули пароль?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Скасувати</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Підтвердити</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation>Wacom</translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation>Налаштовування wacom</translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation>Wacom</translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation>Режим пера</translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation>Режим миші</translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation>Чутливість до натиску</translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation>Легкий</translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation>Важкий</translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation>Модель</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>шпалери</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Ваші зображення</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Загальносистемне фонове зображення</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Фонове залиття кольором</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Власні фонові зображення</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>Стиль заповнення</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Автоматична зміна фонового зображення</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>ніколи</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation> секунда</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 хвилина</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>хвилина</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>хвилина</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>хвилина</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>хвилина</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>login</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>Розбудити</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>інтерактивне фонове зображення</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 година</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation>Загальносистемні фонові зображення</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>розгорнути</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Встановити екран блокування</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Встановити стільницю</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation>показ усіх - %1 записи</translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation>Додати зображення</translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Інтерфейс і ефекти</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Параметри вікон</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Заокруглені кути вікон</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Немає</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Малий</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Великий</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Увімкнути ефекти прозорості при пересуванні вікон</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Ефект мінімізації вікон</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Масштаб</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Чарівна лампа</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Непрозорість</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Низький</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Високий</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Смужки гортання</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Показувати при гортанні</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Показувати постійно</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Компактний показ</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Якщо увімкнено, у вікні буде показано більше даних.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Висота смужки заголовка</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Стосується лише смужок заголовка вікон програм, які намальовано засобом керування вікнами.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Надзвичайно мала</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>Середній</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>Середня</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Традиційна китайська (Гонконг)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Традиційна китайська (Тайвань)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation>Китайська (мінь-нан)</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Тайвань</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>Ім&apos;я користувача має містити 3-32 символи</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>Перший символ має бути літерою або цифрою</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>Ім&apos;я користувача не може складатися лише з цифр</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>Це ім&apos;я користувача було використано в інших облікових записах користувачів</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Ім&apos;я повністю є надто довгим</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>Це ім&apos;я повністю було використано в інших облікових записах користувачів</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Неправильний пароль</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Стандартний користувач</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Адміністратор</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Змінено</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Ваш вузол успішно вилучено з сервера домену</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>Ваш вузол успішно долучено до сервера домену</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>Не вдалося залишити сервер домену</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>Не вдалося долучитися до сервера домену</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>Налаштування домену AD</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>Пароль є невідповідним</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>Просторовий</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Нейтральний</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation>Ідентифікатор обличчя</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>Обличчя</translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation>Скористайтеся вашим обличчям для розблокування пристрою і змініть параметри пізніше</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation>Відбиток пальця</translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation>Притисніть палець</translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation>Щільно притисніть палець до сканера, доки програма не попросить його прибрати</translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation>Прийміть ваш палець</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Прийміть ваш палець, а потім знову торкніться ним сенсора</translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation>Прийміть ваш палець і повторіть спробу</translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation>Сканування призупинено</translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation>Сканування країв вашого відбитка</translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation>Розташуйте палець у центрі сканера</translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation>Скоригуйте позицію для сканування країв вашого відбитка</translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation> Відбиток пальця додано</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation>Райдужка</translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation>Скористайтеся вашою райдужкою для розблокування пристрою і змініть параметри пізніше</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Це клавіатурне скорочення конфліктує із [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Пароль не може бути порожнім</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Пароль має складатися із принаймні %1 символів</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Пароль має складатися з не більше, ніж %1 символів</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Пароль може складатися лише з літер латиниці (із врахуванням регістру), цифр та спеціальних символів (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Не більше %1 символів у паліндромі, будь ласка</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Не більше %1 послідовних символів, будь ласка</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Не більше %1 повторюваних символів, будь ласка</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Пароль має складатися із великих і малих латинських літер, цифр і символів (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>У паролі не повинно бути паліндромів, що складаються з понад 4 символів</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Не використовуйте поширені слова або їхні комбінації як пароль</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Будь ласка, створіть складний пароль</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Не відповідає правилам створення паролів</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation>Має бути включено принаймні %1 типів малих літер, великі літери, цифри та символи, а сам пароль не повинен збігатися із назвою облікового запису користувача.</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Система</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Вікно</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Робочий простір</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Допоміжні інструменти</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Нетиповий</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Немає</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_ur.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"ur\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\">اپنی مرضی کا</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\">شٹڈاون</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">کوئی نہیں</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>شٹڈاون</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\">سسٹم</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\">کوئی نہیں</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>روایتی چینی (چینی ہانگ کانگ)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>روایتی چینی (چینی تائیوان)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>تائیوان چین</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>یہ شارٹ کٹ [%1] سے ٹکراتا ہے</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>سسٹم</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>ونڈو</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>ورک اسپیس</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>معاونت کے ٹولز</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>اپنی مرضی کا</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>کوئی نہیں</translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_uz.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\" language=\"uz\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\">Bajarildi</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Bajarildi</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\">Bajarildi</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people&apos;s biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\">Bekor qilish</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation type=\"unfinished\"></translation>\n    </message>\n</context>\n</TS>\n"
  },
  {
    "path": "translations/dde-control-center_vi.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"vi\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>sửa</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>Thêm người dùng mới</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>Đặt tên đầy đủ</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>Cài đặt đăng nhập</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>Đăng nhập không cần mật khẩu</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>Xóa tài khoản hiện tại</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>Cài đặt nhóm</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>Nhóm tài khoản</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>hoàn tất</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>Tên nhóm</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>Thêm nhóm</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>Đăng nhập tự động</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>Thông tin tài khoản</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>Tên tài khoản, tên đầy đủ tài khoản, loại tài khoản</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>Tên tài khoản</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>Tên đầy đủ tài khoản</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Loại tài khoản</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>Đăng ký khuôn mặt</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Tôi đã đọc và chấp nhận</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Chuẩn bảo</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Tiếp theo</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Khuôn mặt đã đăng ký</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>Không thể đăng ký khuôn mặt của bạn</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Hoàn tất</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy bỏ</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Thử lại</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy bỏ</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>Hoàn tất</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>Đăng ký ngón tay</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>Đặt ngón tay cần đăng ký vào cảm biến vân tay và di chuyển từ dưới lên trên. Sau khi hoàn thành hành động, vui lòng nâng ngón tay lên.</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>Tôi đã đọc và đồng ý với</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>Chuẩn ngữ</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>Tiếp theo</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>Thử lại</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>Biometric authentication là một chức năng xác thực danh tính người dùng cung cấp bởi UnionTech Software Technology Co., Ltd. Qua biometric authentication, dữ liệu sinh trắc học thu thập sẽ được so sánh với dữ liệu lưu trữ trong thiết bị, và danh tính người dùng sẽ được xác thực dựa trên kết quả so sánh.\n\nVui lòng chú ý rằng UnionTech Software Technology Co., Ltd. sẽ không thu thập hoặc truy cập thông tin sinh trắc học của bạn, dữ liệu này sẽ được lưu trữ trên thiết bị của bạn. Vui lòng chỉ kích hoạt biometric authentication trên thiết bị cá nhân của bạn và sử dụng thông tin sinh trắc học của riêng bạn cho các hoạt động liên quan, và nhanh chóng vô hiệu hóa hoặc xóa thông tin sinh trắc học của người khác trên thiết bị đó, nếu không bạn sẽ phải chịu rủi ro do đó.\n\nUnionTech Software Technology Co., Ltd. cam kết nghiên cứu và cải thiện an toàn, chính xác và ổn định của biometric authentication. Tuy nhiên, do các yếu tố môi trường, thiết bị, kỹ thuật và các yếu tố khác và kiểm soát rủi ro, không có đảm bảo bạn sẽ thông qua kiểm tra sinh trắc học tạm thời. Vì vậy, vui lòng không coi biometric authentication là cách duy nhất để đăng nhập vào UOS. Nếu bạn có bất kỳ câu hỏi hoặc ý kiến ​​khi sử dụng biometric authentication, bạn có thể cung cấp phản hồi thông qua &apos;Service and Support&apos; trong UOS.</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>Auto Login có thể được kích hoạt cho chỉ một tài khoản, vui lòng vô hiệu hóa nó trước cho tài khoản &apos;%1&apos;</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>Được</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>Hình ảnh</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>Người</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>Động vật</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>Phong cảnh</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>Hình vẽ</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>Biểu tượng cảm xúc</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>Tùy chỉnh</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Stylize卡通</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>Stylize三维</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>Stylize扁平</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Lưu</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Màn hình và tạm dừng</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Tắt màn hình sau khi</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Khóa màn hình sau khi</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Tạm dừng máy tính sau khi</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Khi nắp bị đóng</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Khi nút nguồn được nhấn</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>Pin thấp</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>Thông báo pin thấp</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>Tạm dừng tự động</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>Hibernate tự động</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Hạn mức pin thấp</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>Quản lý pin</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>Hiển thị thời gian sử dụng và sạc còn lại</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>Dung lượng tối đa</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>Mức pin thấp</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>Tắt</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth đã tắt, tên hiển thị là &quot;%1&quot; </translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>Bluetooth đã bật, tên hiển thị là &quot;%1&quot; </translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>Ngắt kết nối</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>Kết nối</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>Gửi tệp</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>Đặt lại tên</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>Xóa thiết bị</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Chọn tệp</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>Sửa</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>Cho phép các thiết bị Bluetooth khác tìm thấy thiết bị này</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>Để sử dụng chức năng Bluetooth, vui lòng tắt</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>Đồng Hành</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>Kết nối</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>Không kết nối</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>Cài đặt khởi động</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>Bạn có thể nhấp vào menu để thay đổi các mục khởi động mặc định, hoặc kéo hình ảnh vào cửa sổ để thay đổi hình nền</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>Lệch thời gian khởi động grub</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>phong cách</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>Sau khi bật phong cách, bạn có thể thấy nền phong cách khi khởi động máy tính</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>Xác minh menu khởi động</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>Sau khi mở, việc nhập vào menu chỉnh sửa yêu cầu mật khẩu.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>Thay đổi mật khẩu</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>Thay đổi mật khẩu xác minh menu khởi động</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>Đặt mật khẩu xác minh menu khởi động</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>Tên người dùng :</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>Mật khẩu mới :</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Bắt buộc</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Mật khẩu không được để trống</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Mật khẩu không khớp</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>Nhập lại mật khẩu:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>Đảm bảo</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>Bắt đầu hoạt ảnh</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>JUSTIFY: Điều chỉnh kích thước hoạt ảnh logo trên giao diện khởi động hệ thống</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>Cho phép các ứng dụng sau truy cập vào camera:</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>Vân tay 1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>Vân tay 2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>Vân tay 3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>Vân tay 4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>Vân tay 5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>Vân tay 6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>Vân tay 7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>Vân tay 8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>Vân tay 9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>Vân tay 10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>Quét thất bại</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>Vân tay đã tồn tại</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>Vui lòng quét các ngón tay khác</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>Lỗi không rõ</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>Quét tạm dừng</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>Không thể nhận dạng</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>Di chuyển quá nhanh</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>Đã di chuyển ngón tay quá nhanh, vui lòng không nhấc lên cho đến khi được yêu cầu</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>Đấn vân tay không rõ ràng</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>Rửa sạch ngón tay hoặc điều chỉnh vị trí ngón tay và thử lại</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>Đã quét</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>Điều chỉnh vị trí ngón tay để quét vân tay đầy đủ</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>Đã di chuyển ngón tay quá nhanh, vui lòng không nhấc lên cho đến khi được yêu cầu</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>Nhấc ngón tay lên và đặt lại lên cảm biến</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>Đặt khuôn mặt vào khung</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>Đã đăng ký khuôn mặt</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>Vui lòng đặt khuôn mặt của con người</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>Tránh xa camera</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>Đi gần hơn đến camera</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>Không đặt nhiều khuôn mặt vào khung</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>Đảm bảo ống kính camera sạch sẽ</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>Không đăng ký trong môi trường tối, sáng hoặc có ánh sáng sau</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>Giữ mặt không bị che đậy</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>Thời gian quét đã hết</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Huỷ bỏ</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>Màu sắc nhấn mạnh</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>Cài đặt biểu tượng</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>Chủ đề biểu tượng</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>Thay đổi biểu tượng chủ đề của bạn</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>Chủ đề con trỏ</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>Thay đổi con trỏ chủ đề của bạn</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>Bạn có chắc chắn muốn xóa tài khoản này không?</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>Xóa thư mục tài khoản</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy bỏ</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>Xóa</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>Đi đến cài đặt</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy bỏ</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>Chung</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>Lagi thời gian lặp lại</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>Đắn</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>Dài</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>Tần suất lặp lại</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Thấp</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Nhanh</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>Keypad số</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>test ở đây</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>Thông báo Caps Lock</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>Tốc độ nhấp đôi</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>Kiểm tra nhấp đôi</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>Chế độ tay trái</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>Kích thước lớn</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>Kích thước nhỏ</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>Không thể lấy quyền truy cập gốc</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>Vui lòng đăng nhập bằng ID Liên minh trước</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>Không thể đọc thông tin máy tính của bạn</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>Không có kết nối mạng</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>Không thể tảisertificat, không thể lấy quyền truy cập gốc</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>Kiểm tra chữ ký thất bại, không thể lấy quyền truy cập gốc</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Đồng ý và tham gia chương trìnhExperience Người dùng</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>Chuẩn bị của chế độ Phát triển</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>Đồng ý và yêu cầu quyền truy cập gốc</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>Bắt đầu thiết lập hình động khởi động mới, xin chờ một phút</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>Đã hoàn thành thiết lập hình động khởi động mới</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>Cài đặt sẽ được áp dụng sau khi khởi động lại hệ thống</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>Mật khẩu phải chứa chữ số và chữ cái</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>Mật khẩu phải từ 8 đến 64 ký tự</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>Tạo một tài khoản mới</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>Loại tài khoản</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>Tên người dùng</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Yêu cầu</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>Tên đầy đủ</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Tùy chọn</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy bỏ</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>Tạo tài khoản</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>big</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>Bạn chưa tải ảnh đại diện lên. Nhấp hoặc kéo thả để tải ảnh</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>dоступно</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/en/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-vn</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-vn</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>Đồng ý và tham gia chương trình Kinh nghiệm Người dùng</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>Cài đặt ngày và thời gian</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>Ngày</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>Năm</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>Tháng</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>Ngày</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Thời gian</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy bỏ</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Xác nhận</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>Ngày mai</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>Hôm qua</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>Hôm nay</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>%1 giờ trước giờ địa phương</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>%1 giờ sau giờ địa phương</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>Khoảng trống</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>Tuần</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Ngày đầu tuần</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Ngày ngắn</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Ngày dài</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Thời gian ngắn</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Thời gian dài</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Biểu tượng tiền tệ</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>Tiền tệ dương</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>Tiền tệ âm</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>Ký hiệu thập phân</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>Ký hiệu nhóm chữ số</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>Nhóm chữ số</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>Kích thước trang</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>Cần xác thực để thay đổi máy chủ NTP</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>Cần có xác thực để đặt múi giờ hệ thống</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>Huỷ bỏ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Lưu</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>Trung tâm Điều khiển cung cấp các tùy chọn cho cài đặt hệ thống.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>Kết nối WeChat</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>Khi kết nối WeChat, bạn có thể đăng nhập an toàn và nhanh chóng vào tài khoản %1 ID và tài khoản địa phương của mình.</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>Không liên kết</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>Hủy liên kết</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>Liên kết</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>Bạn có chắc chắn muốn hủy liên kết WeChat không？</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>Sau khi hủy liên kết WeChat, bạn sẽ không thể sử dụng WeChat để quét mã QR để đăng nhập vào tài khoản %1 ID hoặc tài khoản địa phương.</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>Hãy để tôi suy nghĩ kỹ</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>Liên kết tài khoản địa phương</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>Sau khi liên kết tài khoản địa phương của bạn, bạn có thể sử dụng các chức năng sau:</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>Hệ thống đăng nhập bằng mã QR WeChat</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>Dùng WeChat, đã liên kết với tài khoản %1 ID, để quét mã QR để đăng nhập vào tài khoản địa phương của bạn.</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>Khôi phục mật khẩu thông qua tài khoản %1 ID</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>Đặt lại mật khẩu địa phương thông qua %1 ID nếu bạn quên nó.</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>Để sử dụng các tính năng trên, xin vui lòng vào Trung tâm Điều khiển - Tài khoản và bật các tùy chọn tương ứng.</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>Sincronh hóa đám mây</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>Quản lý tài khoản %1 ID và đồng bộ hóa dữ liệu cá nhân trên các thiết bị.\nĐăng nhập bằng tài khoản %1 ID để sử dụng các tính năng và dịch vụ tùy chỉnh của trình duyệt, cửa hàng ứng dụng, và nhiều hơn nữa.</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>Đăng nhập vào tài khoản %1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>Sincronh hóa tự động</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>Lưu cài đặt hệ thống và dữ liệu cá nhân an toàn trong đám mây và đồng bộ hóa chúng trên các thiết bị</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>Cài đặt hệ thống</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>Thời gian đồng bộ hóa cuối cùng: %1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>Xóa dữ liệu đám mây</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>Bạn có chắc chắn muốn xóa cài đặt hệ thống và dữ liệu cá nhân đã lưu trong đám mây?\n</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>Sau khi xóa dữ liệu, nó không thể khôi phục!\n</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy bỏ</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>Xóa</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>Dịch vụ đồng bộ hóa</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>Tài khoản và Bảo mật</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>Đăng xuất</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>Truy cập cài đặt web</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>Lỗi mã hóa mật khẩu</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>Mật khẩu sai, còn %1 lần thử</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>Sai mật khẩu đã đạt giới hạn trong ngày hôm nay. Bạn có thể đặt lại mật khẩu và thử lại.</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>Thao tác thành công</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>Trung Quốc Mainland</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>Các khu vực khác</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>Tính năng này hiện không khả dụng, xin vui lòng kích hoạt hệ thống trước</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>Theo luật và quy định địa phương của bạn, tính năng này hiện không khả dụng tại khu vực của bạn.</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>Vui lòng chọn ứng dụng mặc định để mở &apos;%1&apos;,</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>Thêm</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>Mở file bàn làm việc</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>Ứng dụng (*.desktop</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>Tất cả các file (*</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>Truy cập gốc</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>Yêu cầu truy cập gốc</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>Sau khi vào chế độ phát triển, bạn có thể nhận được quyền truy cập gốc, nhưng điều này cũng có thể gây hại đến sự toàn vẹn của hệ thống, vì vậy xin vui lòng sử dụng cẩn thận.</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>Cho phép</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>Nhập</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>Trực tuyến</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>Đăng nhập ID UOS</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>T quizáo ngoại tuyến</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>Nhập chứng chỉ</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>Chọn file</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>ID UOS của bạn đã được đăng nhập, nhấp để vào chế độ phát triển</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>Xin vui lòng đăng nhập vào ID UOS của bạn trước và tiếp tục</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1.Xuất thông tin PC</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>Xuất</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.Nhập chứng chỉ</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>Công cụ phát triển và gỡ lỗi</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>Mức ghi log hệ thống</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>Thay đổi tùy chọn sẽ dẫn đến ghi log chi tiết hơn, có thể làm giảm hiệu suất hệ thống và/hoặc sử dụng thêm không gian lưu trữ.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>Tắt</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>Kiểm tra lỗi</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>Thay đổi tùy chọn có thể mất tới một phút để xử lý, sau khi nhận được thông báo thiết lập thành công, vui lòng khởi động lại thiết bị để có hiệu lực.</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>Hiển thị</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>from</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>to</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>Cho phép các ứng dụng dưới đây truy cập vào các tệp và thư mục này:</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>Tài liệu</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>Bàn làm việc</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>Hình ảnh</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>Phim ảnh</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>Nhạc</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>Tải về</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>thư mục</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>Kích thước</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>Phông chữ tiêu chuẩn</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>Phông chữ cố định rộng</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>Đề xuất năng lượng</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>Cài đặt tiết kiệm năng lượng</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>Tự động tiết kiệm năng lượng khi pin thấp</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>Hạn mức pin thấp</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>Tự động tiết kiệm năng lượng khi sạc pin</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>Cài đặt thức tỉnh</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>Yêu cầu mật khẩu để thức tỉnh máy tính</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>Yêu cầu mật khẩu để thức tỉnh màn hình</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>Cài đặt tắt máy</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>Tắt máy theo lịch trình</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>Thời gian</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>Lặp lại</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>Một lần</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>Hằng ngày</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>Các ngày làm việc</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>Thời gian tùy chỉnh</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>Giảm độ sáng màn hình khi tiết kiệm năng lượng</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>...</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>done</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>Tìm kiếm</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy bỏ</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Thêm</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>Phương thức đăng nhập</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>Mật khẩu, WeChat, xác thực sinh trắc học, khóa bảo mật</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>Mật khẩu</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>Thay đổi mật khẩu</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>Thời gian có hiệu lực (ngày)</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>Luôn luôn</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright© 2011-%1 Cộng đồng Deepin</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright© 2019-%1 Công ty Công nghệ UnionTech Software</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>Giảm tiếng ồn tự động</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>Tần số đầu vào</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>Mức đầu vào</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>Đầu vào</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>Không tìm thấy thiết bị đầu vào âm thanh</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>Các thiết bị của tôi</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>Tên máy tính</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>Không thể bắt đầu hoặc kết thúc bằng dấu gạch ngang</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>Tên hệ điều hành</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>Phiên bản</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>Phiên bản</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>Loại</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>bit</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>Phê duyệt</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>Thời gian cài đặt hệ thống</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>Kernel</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>Hình ảnh nền tảng</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>CPU</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>Bộ nhớ</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>Các thiết bị khác</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>Hiển thị các thiết bị Bluetooth không có tên</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>Mật khẩu hiện tại</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Yêu cầu</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>Mất弱</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>Trung bình中</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>Strong强</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>Nhập lại mật khẩu</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>Lời nhắc mật khẩu</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>Tùy chọn</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Mật khẩu không thể để trống</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>Mật khẩu không khớp</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>Lời nhắc sẽ hiển thị cho tất cả người dùng. Không bao gồm mật khẩu ở đây.</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>Mật khẩu mới phải khác mật khẩu hiện tại</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>Thay đổi mật khẩu</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>Khôi phục mật khẩu</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>Độ dài mật khẩu phải ít nhất 8 ký tự, và mật khẩu phải chứa sự kết hợp của ít nhất 3 trong số các ký tự sau: chữ hoa, chữ thường, số và ký tự đặc biệt. Mật khẩu kiểu này an toàn hơn</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>Khôi phục mật khẩu sẽ xóa dữ liệu được lưu trong keyring.</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy bỏ</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>Cá nhân hóa</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>Sáng</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>Tự động</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>Đen</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>Tùy chỉnh</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>Khu vực Plugin</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>Chọn biểu tượng nào xuất hiện trong Dock</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>Tắt máy</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>Sau</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>Hibernation</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>Tắt màn hình</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>Hiển thị giao diện tắt máy</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>Không làm gì</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>Màn hình và tạm ngừng</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>Tắt màn hình sau</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>Khóa màn hình sau</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>Máy tính tạm ngừng sau</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>Khi nắp bị đóng</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>Khi nút nguồn được nhấn</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>Hiệu năng cao</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>Hiệu năng cân bằng</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>Điều chỉnh tần số hoạt động của CPU dựa trên tải CPU một cách quyết liệt</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>Cân bằng</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>Tiết kiệm năng lượng</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>Tối ưu hóa hiệu năng, điều này sẽ làm tăng đáng kể tiêu thụ năng lượng và nhiệt</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>Tối ưu hóa hiệu năng và thời gian sử dụng pin, điều chỉnh tự động dựa trên sử dụng</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>Tối ưu hóa thời gian sử dụng pin, hệ thống sẽ hy sinh một số hiệu năng để giảm tiêu thụ năng lượng</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>Phút</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>Giờ</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>Không bao giờ</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>Chính sách bảo mật</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Mật khẩu không được để trống</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Mật khẩu phải có ít nhất %1 ký tự</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Mật khẩu không được nhiều hơn %1 ký tự</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Mật khẩu chỉ được chứa các chữ cái tiếng Anh (sensitivedo chữ hoa/thường), số hoặc ký tự đặc biệt (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Không sử dụng nhiều hơn %1 ký tự đối xứng</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Không sử dụng nhiều hơn %1 ký tự đồng điệu</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Không sử dụng nhiều hơn %1 ký tự lặp</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Mật khẩu phải chứa chữ cái hoa, chữ cái thường, số và ký tự (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/)</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Mật khẩu không được chứa nhiều hơn 4 ký tự đối xứng</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Không sử dụng từ vựng thông thường và các kết hợp làm mật khẩu</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Tạo một mật khẩu mạnh mẽ</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Không tuân theo quy tắc mật khẩu</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>Trung tâm kiểm soát</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>Đã kích hoạt</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>Xem</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>Đang được kích hoạt</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>Kích hoạt</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>Hết hạn</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>Trong thời gian thử nghiệm</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>Thời gian thử nghiệm đã hết hạn</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>dde-control-center</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>Cài đặt màn hình cảm ứng</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>Cài đặt màn hình cảm ứng đã thay đổi</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>Bìa nền hệ thống này đã bị khóa. Vui lòng liên hệ với quản trị viên của bạn.</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>Tìm kiếm</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>Định dạng mặc định</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>Ngày đầu tiên trong tuần</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>Hình thức ngày ngắn</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>Hình thức ngày dài</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>Hình thức giờ ngắn</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>Hình thức giờ dài</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>Biểu tượng tiền tệ</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>Chữ số</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>Kích thước giấy</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy bỏ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Lưu</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>Tìm kiếm</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>Đặt mật khẩu</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 ký tự</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>Nhập lại mật khẩu</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy bỏ</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Xác nhận</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>Mật khẩu không khớp</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>Trình bảo vệ màn hình</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>xem trước</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>Trình bảo vệ màn hình cá nhân</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>cài đặt</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>thời gian không hoạt động</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 phút</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 phút</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 phút</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 phút</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 phút</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 giờ</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>không bao giờ</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>Yêu cầu mật khẩu để khôi phục</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>Wallpaper trượt ảnh</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>Wallpaper bảo vệ hệ thống</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>Tìm kiếm</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Thêm phím tắt tùy chỉnh</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>Tên:</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Yêu cầu</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>Lệnh:</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>Phím tắt</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Không có</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy bỏ</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>Thêm</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>Phím tắt</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>Phím tắt hệ thống, phím tắt tùy chỉnh</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>Tìm kiếm phím tắt</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>Hoàn thành</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>Sửa</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>Nhấn</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Huỷ</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>hoặc</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>Thay thế</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>Khôi phục mặc định</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>Thêm phím tắt tùy chỉnh</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>Thiết bị đầu ra</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>Chọn để kích hoạt các thiết bị</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>Thiết bị đầu vào</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>EFFECT ÂM THANH</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>Khởi động</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>Tắt máy</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>Đăng xuất</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>Thức dậy</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>Tăng/ Giảm âm lượng</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>Thông báo</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>Dung lượng pin thấp</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>Gửi biểu tượng trong Launcher sang Bàn làm việc</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>Xóa rác</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>Chèn vào</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>Tháo ra</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>Thiết bị có thể tháo gỡ đã kết nối</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>Thiết bị có thể tháo gỡ đã bị tháo ra</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>Lỗi</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>Chế độ</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>Tần số đầu ra</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>Tăng âm lượng</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>Nếu âm lượng lớn hơn 100%, nó có thể làm méo mó âm thanh và gây hại cho thiết bị đầu ra</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>Trái</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>Phải</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>Đầu ra</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>Không tìm thấy thiết bị đầu ra cho âm thanh</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>Điều chỉnh âm lượng trái/phải</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>Đóng gói kênh trái và phải thành một kênh</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>Có dừng tự động khi thiết bị âm thanh hiện tại bị tháo ra không</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>Âm thanh</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>Năng lượng</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation> chuột</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>Cập nhật</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>Gỡ màn hình chờ</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>Thêm hình nền</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>Đồng bộ thời gian tự động</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>Server Ntp</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>Ngày và thời gian hệ thống</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>Tùy chỉnh</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>Cài đặt</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>Địa chỉ máy chủ</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>Yêu cầu</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>Địa chỉ máy chủ ntp không được để trống</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>Sử dụng định dạng 24 giờ</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation> múi giờ hệ thống</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>Danh sách múi giờ</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>từ</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>đến</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>Lưu cài đặt hiển thị</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>Cài đặt sẽ được khôi phục sau %1s.</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>Khôi phục</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Lưu</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation>Thêm múi giờ</translation>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation>Xác định múi giờ dựa trên vị trí hiện tại</translation>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation> múi giờ:</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation>Thành phố gần nhất:</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy bỏ</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>Lưu</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>TouchScreen</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>Cài đặt ở đây khi kết nối TouchScreen</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>Cài đặt cơ bản</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>Touchpad</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>Tốc độ con trỏ</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>Thấp</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>Tốc độ</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>Tắt touchpad khi nhập</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>Nhấn để nhấp chuột</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>Quay tự nhiên</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>Ba ngón tay cử chỉ</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>Bốn ngón tay cử chỉ</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>Tham gia chương trình trải nghiệm người dùng</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>Xác minh bảo mật</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>Hành động này nhạy cảm, vui lòng nhập mật khẩu đăng nhập trước</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>8-64 ký tự</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>Quên mật khẩu?</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>Hủy</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>Xác nhận</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>bìa giấy dán tường</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>Hình ảnh của tôi</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>Bìa giấy dán tường hệ thống</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>Màu nền đơn sắc</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>Màu nền cá nhân hóa</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>phong cách đầy</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>Đổi màu nền tự động</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>không bao giờ</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30 giây</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1 phút</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5 phút</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10 phút</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15 phút</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30 phút</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>đăng nhập</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>đăng nhập sau khi thức dậy</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>Màu nền động</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1 giờ</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>trổ ra</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>Đặt màn hình khóa</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>Đặt màn hình chính</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>Giao diện và Hiệu ứng</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>Cài đặt cửa sổ</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>Các góc cửa sổ cong</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Không có</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>Nhỏ</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>Lớn</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>Kích hoạt hiệu ứng trong suốt khi di chuyển cửa sổ</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>Hiệu ứng thu nhỏ cửa sổ</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>Thước</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>Đèn神灯</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>Độ trong suốt</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>Thấp</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>Cao</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>Thanh cuộn</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>Hiển thị khi cuộn</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>Giữ hiển thị</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>Hiển thị gọn gàng</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>Nếu được kích hoạt, nội dung sẽ được hiển thị nhiều hơn trong cửa sổ.</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>Chiều cao thanh tiêu đề</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>Chỉ phù hợp cho thanh tiêu đề cửa sổ của ứng dụng được vẽ bởi quản lý cửa sổ.</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>Rất nhỏ</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>Tiếng Trung phồn thể (Trung Quốc Hồng Kông)</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>Tiếng Trung phồn thể (Trung Quốc Đài Loan)</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>Đài Loan Trung Quốc</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>Tên người dùng phải từ 3 đến 32 ký tự</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>Ký tự đầu tiên phải là chữ cái hoặc số</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>Tên người dùng của bạn không nên chỉ có số</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>Tên người dùng đã được sử dụng bởi các tài khoản người dùng khác</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>Tên đầy đủ quá dài</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>Tên đầy đủ đã được sử dụng bởi các tài khoản người dùng khác</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>Mật khẩu không chính xác</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>Người dùng tiêu chuẩn</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>Quản trị viên</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>Tùy chỉnh</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>Host của bạn đã được loại khỏi máy chủ domain thành công</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>Host của bạn đã tham gia máy chủ domain thành công</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>Host của bạn không thể rời khỏi máy chủ domain</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>Host của bạn không thể tham gia máy chủ domain</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>Cài đặt domain AD</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>Mật khẩu không khớp</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>3 chiều</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>Phẳng</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>Phím tắt này xung đột với [%1]</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>Mật khẩu không được để trống</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>Mật khẩu phải có ít nhất %1 ký tự</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>Mật khẩu không được nhiều hơn %1 ký tự</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Mật khẩu chỉ được chứa các chữ cái tiếng Anh (không phân biệt hoa thường), số hoặc các ký tự đặc biệt (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>Không được sử dụng nhiều hơn %1 ký tự đối xứng</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>Không được sử dụng nhiều hơn %1 ký tự đồng điệu</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>Không được sử dụng nhiều hơn %1 ký tự lặp lại</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>Mật khẩu phải chứa các chữ cái hoa, chữ cái thường, số và ký tự đặc biệt (~`!@#$%^&amp;*()-_+=|{}[]:&quot;&apos;&lt;&gt;,.?/ )</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>Mật khẩu không được chứa nhiều hơn 4 ký tự đối xứng</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>Không sử dụng từ vựng và các kết hợp thông thường làm mật khẩu</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>Tạo một mật khẩu mạnh mẽ</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>Không đáp ứng các quy tắc mật khẩu</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>Hệ thống</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>Cửa sổ</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>Bàn làm việc</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>Công cụ hỗ trợ</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>Tùy chỉnh</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>Không có</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_zh_CN.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"zh_CN\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>编辑</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>添加新用户</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>设置全名</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>登录设置</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>免密登录</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>删除当前账户</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>用户组设置</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>用户组</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>用户组名称</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>添加用户组</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>自动登录</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>账户信息</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>账户名，全名，账户类型</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>账户名</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>账户全名</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>账户类型</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>名称过长</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>组名不允许超出32个字符</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>组名不能使用纯数字</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>仅使用字母、数字、下划线和破折号，并且必需以字母开头</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>组名与其他组名重复</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>快速登录，自动登录，免密登录</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>撤销</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>重做</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>剪切</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>复制</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>粘贴</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>全选</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>快速登录</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation>账户</translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation>账户管理</translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation>其他账户</translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>添加人脸数据</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>我已阅读并同意</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>《用户免责声明》</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>下一步</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>人脸录入完成</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>人脸录入失败</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>重新录入</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation>人脸识别不支持活体检测，验证方式可能存在风险\n为确保录入成功：\n1. 保持五官清晰可见，勿遮挡（帽子/墨镜/口罩等）\n2. 光线充足，避免阳光直射</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>“生物认证”是统信软件技术有限公司提供的一种对用户进行身份认证的功能。通过“生物认证”，将采集的生物识别数据与存储在设备本地的生物识别数据进行比对，并根据比对结果来验证用户身份。\n请您注意，统信软件不会收集或访问您的生物识别信息，此类信息将会存储在您的本地设备中。请您仅在您的个人设备中开启生物认证功能，并使用您本人的生物识别信息进行相关操作，并及时在该设备上禁用或清除他人的生物识别信息，否则由此给您带来的风险将由您承担。\n统信软件致力于研究与提高生物认证功能的安全性、精确性、与稳定性，但是，受限于环境、设备、技术等因素和风险控制等原因，我们暂时无法保证您一定能通过生物认证，请您不要将生物认证作为登录统信操作系统的唯一途径。若您在使用生物认证时有任何问题或建议的，可以通过系统内的“服务与支持”进行反馈。\n        </translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>添加指纹数据</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>将要录入的手指放入指纹录入器里面，并从下往上移动手指，完成动作后请抬起您的手指</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>我已阅读并同意</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>《用户免责声明》</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>下一步</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>重新录入</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>“生物认证”是统信软件技术有限公司提供的一种对用户进行身份认证的功能。通过“生物认证”，将采集的生物识别数据与存储在设备本地的生物识别数据进行比对，并根据比对结果来验证用户身份。\n请您注意，统信软件不会收集或访问您的生物识别信息，此类信息将会存储在您的本地设备中。请您仅在您的个人设备中开启生物认证功能，并使用您本人的生物识别信息进行相关操作，并及时在该设备上禁用或清除他人的生物识别信息，否则由此给您带来的风险将由您承担。\n统信软件致力于研究与提高生物认证功能的安全性、精确性、与稳定性，但是，受限于环境、设备、技术等因素和风险控制等原因，我们暂时无法保证您一定能通过生物认证，请您不要将生物认证作为登录统信操作系统的唯一途径。若您在使用生物认证时有任何问题或建议的，可以通过系统内的“服务与支持”进行反馈。\n        </translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>添加虹膜数据</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>我已阅读并同意</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>《用户免责声明》</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>下一步</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>重新录入</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>虹膜录入完成</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>虹膜录入失败</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>“生物认证”是统信软件技术有限公司提供的一种对用户进行身份认证的功能。通过“生物认证”，将采集的生物识别数据与存储在设备本地的生物识别数据进行比对，并根据比对结果来验证用户身份。\n请您注意，统信软件不会收集或访问您的生物识别信息，此类信息将会存储在您的本地设备中。请您仅在您的个人设备中开启生物认证功能，并使用您本人的生物识别信息进行相关操作，并及时在该设备上禁用或清除他人的生物识别信息，否则由此给您带来的风险将由您承担。\n统信软件致力于研究与提高生物认证功能的安全性、精确性、与稳定性，但是，受限于环境、设备、技术等因素和风险控制等原因，我们暂时无法保证您一定能通过生物认证，请您不要将生物认证作为登录统信操作系统的唯一途径。若您在使用生物认证时有任何问题或建议的，可以通过系统内的“服务与支持”进行反馈。\n        </translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation>请注视设备，确保双眼在采集区域内</translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>生物认证</translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>生物认证</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>人脸</translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation>最多可录入5个人脸数据</translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation>指纹</translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation>通过对指纹的扫描进行用户身份的识别</translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation>虹膜</translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation>通过扫描虹膜进行身份识别</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation>只能由字母、数字、中文、下划线组成，且不超过15个字符</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation>只能由字母、数字、中文、下划线组成</translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation>不得超过15个字符</translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation>该名称已存在</translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation>添加新的%1...</translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation>名称不能为空</translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>只允许一个账户开启自动登录，请先关闭%1账户的自动登录，再进行操作</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>确 定</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>图片</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>人物</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>动物</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>静物</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>创意插图</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>表情符号</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>自定义图片</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Q版风格</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>立体风格</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>平面风格</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>屏幕和待机</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>关闭显示器</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>自动锁屏</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>进入待机</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>笔记本合盖时</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>按电源按钮时</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>低电量管理</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>低电量提醒</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>自动待机</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>自动休眠</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>低电量阈值</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>电池管理</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>显示剩余使用时间及剩余充电时间</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>最大容量</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>低电量时</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>从不</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation>蓝牙设置、设备管理</translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation>蓝牙</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>蓝牙已关闭，名称显示为&quot;%1&quot;</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>蓝牙已打开，名称显示为 &quot;%1&quot;</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>断开连接</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>连接</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>发送文件</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>重命名</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>移除设备</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>选择文件</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>修改</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>允许蓝牙设备可被发现</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>若要使用蓝牙功能，请先关闭</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>飞行模式</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>蓝牙名称不能超过64个字符</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>已连接</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>未连接</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>启动设置</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>您可以点击菜单改变默认启动项，也可以拖拽图片到窗口改变背景图片.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>启动延时</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>主题</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>开启主题后您可以在开机时看到主题背景</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>启动菜单验证</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>开启后进入启动菜单编辑需要密码.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>重设密码</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>修改启动菜单验证密码</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>设置启动菜单验证密码</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>用户名：</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>新密码：</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>密码不能为空</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>密码不一致</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>确认密码：</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>确定</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>启动动画</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>调整系统启动界面的logo动画尺寸大小</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>允许下面的应用访问您的摄像头</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>指纹1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>指纹2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>指纹3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>指纹4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>指纹5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>指纹6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>指纹7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>指纹8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>指纹9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>指纹10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>指纹录入失败</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>指纹已存在</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>请使用其他手指录入</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>未知错误</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>指纹录入被中断</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>无法识别</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>接触时间短</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>接触时间短，验证时请勿移动手指</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>图像模糊</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>请清洁手指或调整触摸位置，再次按压指纹识别器</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>图像重复</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>请调整手指按压区域以录入更多指纹</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>指纹采集间隙，请勿移动手指，直到提示您抬起</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>请抬起手指，再次按压</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>请确保您的面部全部显示在识别区域内</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>人脸录入完成</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>请使用人类面容</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>请远离镜头</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>请靠近镜头</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>请不要多人入镜</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>请确保镜头清洁</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>请避免在暗光、强光、逆光环境下操作</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>请保持面部无遮挡</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>录入超时</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>摄像头被占用！</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>活动用色</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>图标设置</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>图标主题</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>自定义您的主题图标</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>光标主题</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>自定义您的主题光标</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>您确定要删除此账户吗？</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>删除账户目录</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>删除</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>去设置</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>通用</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>重复延迟</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>短</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>长</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>重复速度</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>慢</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>快</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>启用数字键盘</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>请在此输入测试</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>大写锁定提示</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>双击速度</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>双击测试</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>左手模式</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>键盘</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>通用</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>滚动速度</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation>启动菜单</translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation>管理您的开机启动菜单</translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation>开发者Root权限管理</translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation>开发者选项</translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation>开发者调试选项</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>大尺寸</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>小尺寸</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>进入开发者模式失败</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>请先登录Union ID</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>无法获取硬件信息</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>无网络连接</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>证书加载失败，无法进入开发者模式</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>签名验证失败，无法进入开发者模式</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>同意并加入用户体验计划</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>开发者模式免责声明</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>同意并进入开发者模式</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>开始设置启动新动画，请稍等一会儿</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>新的启动动画设置完成</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>新的设置会在重启系统后生效</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation>立即重启</translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation>忽略</translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation>磐石只读保护设置需重启后才能生效</translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>密码必须包含数字和字母</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>密码长度必须为8~64个字符</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>创建新用户</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>账户类型</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>用户名</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>全名</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>选填</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>创建用户</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>用户名不能超过 32 个字符</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>用户名只能包含字母、数字、 - 和 _</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>全名不能超过 32 个字符</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>全名不能包含冒号</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation>大</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>您还没有上传过头像，可点击或拖拽上传图片</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>上传的文件类型不正确，请重新上传</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>可用</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/zh/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-cn</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-cn</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>同意并加入用户体验计划</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation>&lt;p&gt;统信软件非常重视您的隐私。因此我们制定了涵盖如何收集、使用、共享、转让、公开披露以及存储您的信息的隐私政策。&lt;/p&gt;&lt;p&gt;您可以&lt;a href=&quot;%1&quot;&gt;点击此处&lt;/a&gt; 查看我们最新的隐私政策和/或通过访问&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;在线查看。请您务必认真阅读、充分理解我们针对客户隐私的做法，如果有任何疑问，请联系我们：%2。&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;开启用户体验计划视为您授权我们收集和使用您的设备及系统信息，以及应用软件信息，您可以关闭用户体验计划以拒绝我们对前述信息的收集和使用。详细说明请参照Deepin隐私政策 (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;开启用户体验计划视为您授权我们收集和使用您的设备及系统信息，以及应用软件信息，您可以关闭用户体验计划以拒绝我们对前述信息的收集和使用。了解用户体验计划，请访问： &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>日期和时间设置</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>日期</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>年</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>月</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>日</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>时间</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>确认</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation>时间和日期</translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation>时间日期、时区设置</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation>语言和区域</translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation>系统语言、区域格式</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>明天</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>昨天</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>今天</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>早 %1 小时</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>晚 %1 小时</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>空格</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>星期/周</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>一周首日</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>短日期</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>长日期</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>短时间</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>长时间</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>货币符号</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>货币正数</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>货币负数</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>小数点</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>分隔符</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>数字分组</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>纸张</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>示例</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>修改时间服务器需要认证</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>设置系统时区需要认证</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>控制中心提供操作系统的所有设置选项。</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>绑定微信</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>通过绑定微信，您可以安全快速地登录您的%1 ID和本地账户</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>未绑定</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>解 绑</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>去绑定</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>您确定要解绑微信吗？</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>解绑微信后，您将无法使用微信扫码登录%1 ID、微信扫码登录本地账户</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>我再想想</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>绑定本地账户</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>绑定本地账户后，您可以使用如下功能：</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>微信扫码登录系统</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>使用%1 ID绑定的微信，扫码登录本地账户</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>通过%1 ID重置密码</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>在您忘记本地账户密码时，通过%1 ID重置密码</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>如需使用上述功能，请前往控制中心-账户，开启相应选项</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>云同步</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>管理您的%1 ID，将您的个人数据在不同设备之间同步。\n登录%1 ID以获取浏览器、应用商店、服务与支持等众多应用的个性功能和服务。</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>登录%1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>自动同步</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>将您的系统设置和个人信息安全地存储在云端，并在您不同的设备上保持同步</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>系统设置</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>最近同步时间：%1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>清除云端数据</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>确定要清除您保存在云端的系统设置和个人数据吗？</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>数据清除后将无法恢复！</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取 消</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>清 除</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>同步服务</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>账户与安全</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>退出登录</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>前往网页设置</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>昵称长度必须为1~32个字符</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>加密密码失败</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>密码错误，您还可以尝试%1次</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>密码错误已达今日上限，可重置密码再试</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>操作成功</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>昵称每天仅可修改一次</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation>deepin ID</translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation>UOS ID</translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation>云服务</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>中国大陆</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>其他地区</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>当前系统未激活，暂无法使用该功能</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>受限于您当地的法律法规，同步服务暂未覆盖您所在地区，敬请期待。</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation>默认程序</translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation>设置打开各类文件的默认程序</translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation>网页</translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation>邮件</translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation>文本</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>音乐</translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation>视频</translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation>图片</translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation>终端</translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>选择打开“%1”的默认程序</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>添加</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>打开Desktop文件</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>应用程序(*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>所有文件(*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>开发者模式</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>进入开发者模式</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>可获得root使用权限，但同时也可能导致系统完教性遭到破坏，请谨慎使用。</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>已进入</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>进入</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>在线激活</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>登录UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>离线激活</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>导入证书</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>选择文件</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>您的UOS ID已登录，点击进入开发者模式</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>进入开发者模式需要登录UOS ID</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1.导出机器信息</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>导出</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.导入证书</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>开发调试选项</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>系统日志记录级别</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>更改此选项可以获得更详细的日志记录，这些日志可能会降低系统性能和/或占用更多存储空间.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>关闭</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>调试</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>更改选项处理可能需要一分钟，收到设置成功提示后，请重启设备方可生效。</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>如需安装非应用商店来源的应用，前往&lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; 安全中心 &lt;/a&gt;进行设置。</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation>如需安装非应用商店来源的应用，前往安全中心进行设置。</translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation>您已进入开发者模式</translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>确定</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation>2.前往%1下载离线证书.</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation>当前系统未激活，暂无法使用该功能。</translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation>磐石只读保护</translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation>关闭保护会解锁系统目录，可能导致系统损坏的高风险。</translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation>开启保护以锁定系统目录，确保最佳稳定性。</translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation>蓝牙和其他设备</translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>《用户免责声明》</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>同意</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>显示</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation>亮度、分辨率、缩放</translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation>100%</translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation>125%</translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation>150%</translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation>175%</translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation>200%</translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation>225%</translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation>250%</translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation>275%</translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation>300%</translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation>复制</translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation>扩展</translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation>默认</translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation>适应</translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation>拉伸</translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation>居中</translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation>仅%1屏</translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation>多屏设置</translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation>识别</translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation>屏幕拼接将在修改完成%1s后生效</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>模式</translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation>主屏幕</translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation>显示和布局</translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation>亮度</translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation>分辨率</translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation>桌面显示</translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation>刷新率</translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation>方向</translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation>标准</translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation>90度</translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation>180度</translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation>270度</translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation>当前屏幕仅支持1倍缩放</translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation>护眼模式</translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation>开启护眼模式</translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation>调整屏幕显示较暖的颜色，减少屏幕蓝光</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>时间</translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation>全天</translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation>日落到日出</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>自定义</translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation>从</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>至</translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation>色温</translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation>%1x%2 （推荐）</translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation>%1x%2</translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation>%1赫兹 （推荐）</translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation>%1赫兹</translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation>缩放</translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation>桌面和任务栏</translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation>桌面整理、任务栏模式、插件区域设置</translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation>任务栏</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>模式</translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation>经典模式</translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation>居中模式</translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation>任务栏大小</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>大</translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation>屏幕中的位置</translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation>上</translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation>下</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>左</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>右</translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation>状态</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>一直显示</translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation>一直隐藏</translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation>智能隐藏</translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation>多屏显示</translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation>设置任务栏在屏幕中的位置</translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation>仅主屏显示</translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation>跟随鼠标位置显示</translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation>插件区域</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>选择显示在任务栏插件区域的图标</translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation>禁用自由调节</translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation>合并应用图标</translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>允许下面的应用访问您的文件和文件夹</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>文档</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>桌面</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>图片</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>视频</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>音乐</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>下载</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>文件夹</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>字号</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>标准字体</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>等宽字体</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>性能模式</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>节能设置</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>低电量时自动开启节能模式</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>低电量阈值</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>使用电池时自动开启节能模式</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>唤醒设置</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>待机恢复时需要密码</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>唤醒显示器时需要密码</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>关机设置</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>定时关机</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>时间</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>重复</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>一次</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>每天</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>工作日</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>自定义</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>节能模式时降低屏幕亮度</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation>三指向上</translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation>三指向下</translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation>三指向左</translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation>三指向右</translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation>三指点击</translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation>四指向上</translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation>四指向下</translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation>四指向左</translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation>四指向右</translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation>四指点击</translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>、</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>等</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>最佳性能</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>均衡</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>最佳视觉</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>关闭所有界面和窗口特效，保障系统高效运行</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>限制部分窗口特效，保障出色的视觉效果，同时维持系统流畅运行</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>启用所有界面和窗口特效，体验最佳视觉效果</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation>键盘</translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation>通用设置、输入法、快捷键</translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation>通用</translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>语言</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>编辑</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>其他语言</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>添加</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>区域</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>地区</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>操作系统和应用可能会根据你所在的国家和地区向你提供本地内容</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>操作系统和某些应用会根据区域格式设置日期和时间格式</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>区域格式</translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>添加语言</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>搜索</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>添加</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>登录方式</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>密码，微信扫码，生物认证，安全密钥</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>密码</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>修改密码</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>有效天数</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>长期有效</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>重设密码</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright © 2011-%1 深度社区</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright © 2019-%1 统信软件技术有限公司</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>噪音抑制</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>输入音量</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>反馈音量</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>输入</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>没有找到声音输入设备</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>输入设备</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>鼠标与触控板</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation>通用、鼠标、触控板</translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation>通用</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>鼠标</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>触控板</translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation>鼠标</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>指针速度</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>慢</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>快</translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation>指针大小</translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation>鼠标加速</translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation>插入鼠标时禁用触控板</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>自然滚动</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>中</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>大</translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation>极大</translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation>部分应用需注销或重启系统后生效</translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>我的设备</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>计算机名</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>计算机名不能以 - 开头结尾</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>产品名称</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>版本号</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>版本</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>类型</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>位</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>版本授权</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>系统安装日期</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>内核版本</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>图形平台</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>处理器</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>内存</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>计算机名长度必须介于1到63个字符之间</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation>勿扰模式、应用通知</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>通知</translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation>勿扰设置</translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation>所有应用消息横幅将会被隐藏，通知声音将会静音，您可在通知中心查看所有消息。</translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation>启用勿扰模式</translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation>在屏幕锁屏时</translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation>通知横幅展示数量</translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation>应用通知</translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation>允许通知</translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation>可以显示通知横幅，或在通知中心显示未读消息</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>桌面</translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation>锁屏</translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation>通知中心</translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation>显示消息预览</translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation>通知时提示声音</translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>其他设备</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>显示没有名称的蓝牙设备</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>当前密码</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>强度低</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>强度中</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>强度高</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>重复密码</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>密码提示</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>选填</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>密码不能为空</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>密码不一致</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>密码提示对所有人可见，切勿包含具体密码信息</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>新密码</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>新密码和旧密码不能相同</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation>密码不能与用户名一致。</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>修改密码</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>重设密码</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>建议密码长度8位以上，同时包含大写字母、小写字母、数字、符号中的3种密码更安全。</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>重设密码将会清除密钥环内已存储的数据</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>个性化</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>浅色</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>自动</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>深色</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation>主题</translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation>外观</translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation>窗口效果</translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation>个性化您的壁纸和屏保</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>屏幕保护</translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation>颜色和图标</translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation>调整活动色和主题图标</translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation>字体和字号</translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation>修改系统字体与字号</translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation>壁纸</translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation>选择浅色、深色或自动切换主题外观</translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation>界面和效果、窗口圆角</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>自定义</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>插件区域</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>选择显示在任务栏插件区域的图标</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation>节能设置、屏幕和待机管理</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>电源管理</translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation>通用</translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation>性能模式、节能设置、唤醒设置、关机设置</translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation>使用电源</translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation>屏幕和待机管理</translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation>使用电池</translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation>屏幕和待机管理、低电量管理、电池管理</translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>关机</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>待机</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>休眠</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>关闭显示器</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>进入关机界面</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>无任何操作</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>屏幕和待机</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>关闭显示器</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>自动锁屏</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>进入待机</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>笔记本合盖时</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>按电源按钮时</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>高性能模式</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>性能模式</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>根据负载情况积极调整运行频率</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>平衡模式</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>节能模式</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>性能优先，会显著提升功耗和发热</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>兼顾性能和续航，根据使用情况自动调节</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>续航优先，系统会牺牲一些性能表现来降低功耗</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>分钟</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>小时</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>从不</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation>隐私和安全</translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation>摄像头、文件夹权限</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation>摄像头</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation>选择应用是否有摄像头的访问权限</translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation>文件和文件夹</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation>选择应用是否有文件和文件夹的访问权限</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>隐私政策</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>复制链接地址</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>密码不能为空</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>密码长度不能少于%1个字符</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>密码长度不能超过%1个字符</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>密码只能由英文（区分大小写）、数字或特殊符号（~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/）组成</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>回文字符长度不超过%1位</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>单调性字符不超过%1位</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>重复字符不超过%1位</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>密码必须由大写字母、小写字母、数字、符号（~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/）三种类型组成</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>密码不得含有连续4个以上的回文字符</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>密码不能是常见单词及组合</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>密码过于简单，请增加密码复杂度</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>密码不符合安全要求</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>控制中心</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>已激活</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>查看</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>待激活</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>激活</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>已过期</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>试用期</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>试用期过期</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>控制中心</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>触控屏设置</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>已变更触控屏设置</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>当前系统壁纸已被锁定，请联系管理员</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>搜索</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>默认格式</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>一周第一天</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>短日期</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>长日期</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>短时间</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>长时间</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>货币符号</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>数字</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>纸张</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>区域格式</translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>搜索</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>设置密码</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>请输入8-64位密码</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>请再次输入密码</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>确定</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>两次密码输入不一致</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>自定义重复时间</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>屏幕保护</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>全屏预览</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>个性化屏保</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>设置</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>闲置时间</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1分钟</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5分钟</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10分钟</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15分钟</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30分钟</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1小时</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>从不</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>恢复时需要密码</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>图片轮播屏保</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>系统屏保</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>搜索</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>无搜索结果</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>添加自定义快捷键</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>名称：</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>命令：</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>快捷键</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>无</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>添加</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation>快捷键名称已被占用，请修改名称。</translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation>修改自定义快捷键</translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation>请输入快捷键</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation>点击保存使这个快捷键生效</translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation>点击添加使这个快捷键生效</translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>快捷键</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>系统快捷键、自定义快捷键</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>搜索快捷键</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>编辑</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>点击</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>或</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>替换</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>恢复默认</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>添加快捷键</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation>请输入新的快捷键</translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>声音</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation>输入、输出、系统音效、设备管理</translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>输出设备</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>选择是否启用设备</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>输入设备</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>系统音效</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation>设置</translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation>系统音效</translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation>开启/关闭系统音效</translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation>启用/禁用音频设备</translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation>设备管理</translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>开机</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>关机</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>注销</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>唤醒</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>音量调节</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>通知</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>电量不足</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>从启动器发送图标到桌面</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>清空回收站</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>电源接入</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>电源拔出</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>移动设备接入</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>移动设备拔出</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>错误提示</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>模式</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>输出音量</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>音量增强</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>音量大于100%时可能会导致音效失真，同时损害您的音频输出设备</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>左</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>右</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>输出</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>没有找到声音输出设备</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>左右平衡</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>将左声道和右声道合并成一个声道</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>外设插拔时音频输出是否自动暂停</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation>单声道音频</translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation>插拔管理</translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>输出设备</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>声音</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>电源</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>鼠标</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>更新</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>屏幕保护</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation>常用设置</translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation>系统</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation>辅助信息</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation>关于本机</translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation>系统版本、设备信息</translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation>查看开源软件声明</translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation>用户体验计划</translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation>加入用户体验计划，帮助改进产品</translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation>用户许可协议</translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation>查看最终用户许可协议</translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>隐私政策</translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation>查看隐私政策相关信息</translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation>开源软件声明</translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>下载更多</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>自动同步配置</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>服务器</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>系统日期和时间</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>自定义</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>设置</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>服务器地址</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>时间服务器地址不能为空</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>24小时制</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>系统时区</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>时区列表</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>添加</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>从</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>至</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>是否要保存显示设置？</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>如无任何操作将在%1秒后还原。</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>还原</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation>时区：</translation>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>触控屏</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>连接触摸屏时在此处设置</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>基础设置</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>触控板</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>指针速度</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>慢</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>快</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>输入时禁用触控板</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>轻触以点击</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>自然滚动</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>三指手势</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>四指手势</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation>手势</translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation>触控屏</translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation>触控屏设置</translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation>通用</translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>加入用户体验计划</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>复制链接地址</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>安全验证</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>您正在进行敏感操作，请进行登录密码认证</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>请输入8-64位密码</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>忘记密码？</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>确定</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation>数位板</translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation>数位板选项设置</translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation>数位板</translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation>笔模式</translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation>鼠标模式</translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation>压杆力度</translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation>轻</translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation>重</translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation>模式</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>壁纸</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>我的图片</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>系统壁纸</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>纯色壁纸</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>自定义</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>填充方式</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>自动切换壁纸</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>从不</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30秒</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1分钟</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5分钟</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10分钟</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15分钟</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30分钟</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>登录时</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>唤醒时</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>动态壁纸</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1小时</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation>系统壁纸</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>收起</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>设置锁屏</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>设置桌面</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation>显示全部－%1张</translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation>添加图片</translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>界面效果</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>窗口设置</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>窗口圆角</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>无</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>大</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>窗口移动时启用透明特效</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>最小化时效果</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>缩放</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>魔灯</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>不透明度调节</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>低</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>高</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>滚动条</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>滚动时显示</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>一直显示</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>紧凑模式</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>开启后，窗口将显示更多内容</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>标题栏高度</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>仅适用于窗口管理器绘制的应用标题栏</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>极小</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>中</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>中</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>繁体中文（中国香港）</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>繁体中文（中国台湾）</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation>闽南语</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>中国台湾</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>用户名长度必须介于 3 到 32 个字符之间</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>必须字母或者数字开头</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>用户名不能仅仅是数字</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>用户名和其他用户名重复</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>全名太长了</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>全名和其他用户名重复</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>密码错误</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>标准用户</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>管理员</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>自定义</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>您的主机成功退出了域服务器</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>您的主机成功加入了域服务器</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>您的主机退出域服务器失败</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>您的主机加入域服务器失败</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>AD域设置</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>密码不一致</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>立体风格</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>平面风格</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation>面纹</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>人脸</translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation>使用人脸数据解锁您的设备，之后还可进行更多设置</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation>指纹</translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation>放置手指</translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation>请以手指压指纹收集器，然后根据提示抬起</translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation>抬起手指</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>请抬起手指，再次按压</translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation>请抬起手指，再次按压</translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation>录入中断</translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation>录入边缘指纹</translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation>请以手指边缘压指纹收集器，然后根据提示抬起</translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation>请调整按压区域，继续录入边缘指纹</translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation>成功添加指纹</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation>虹膜</translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation>使用虹膜数据解锁您的设备，之后还可进行更多设置</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>此快捷键与[%1]冲突</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>密码不能为空</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>密码长度不能少于%1个字符</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>密码长度不能超过%1个字符</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>密码只能由英文（区分大小写）、数字或特殊符号（~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/）组成</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>回文字符长度不超过%1位</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>单调性字符不超过%1位</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>重复字符不超过%1位</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>密码必须由大写字母、小写字母、数字、符号（~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/）三种类型组成</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>密码不得含有连续4个以上的回文字符</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>密码不能是常见单词及组合</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>密码过于简单，请增加密码复杂度</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>密码不符合安全要求</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation>至少同时包含小写字母、大写字母、数字和符号中的%1种，且密码不能与用户名一致。</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>系统</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>窗口</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>工作区</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>辅助功能</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>自定义</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>无</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_zh_HK.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"zh_HK\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>編輯</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>添加新用户</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>設置全名</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>登錄設置</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>免密登錄</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>刪除當前賬户</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>用户組設置</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>用户組</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>用户組名稱</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>添加用户組</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>自動登錄</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>賬户信息</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>賬户名，全名，賬户類型</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>賬户名</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>賬户全名</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>賬户類型</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>名稱過長</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>組名不允許超出32個字符</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>組名不能使用純數字</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>僅使用字母、數字、下劃線和破折號，並且必需以字母開頭</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>組名與其他組名重複</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>快速登錄，自動登錄，免密登錄</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>撤銷</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>重做</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>剪切</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>複製</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>粘貼</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>全選</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>快速登錄</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation>賬户</translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation>賬户管理</translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation>其他賬户</translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>添加人臉數據</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>我已閲讀並同意</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>《用户免責聲明》</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>下一步</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>人臉錄入完成</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>人臉錄入失敗</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>重新錄入</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation>人臉識別不支持活體檢測，驗證方式可能存在風險\n為確保錄入成功：\n1. 保持五官清晰可見，勿遮擋（帽子/墨鏡/口罩等）\n2. 光線充足，避免陽光直射</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>「生物認證」是統信軟件技術有限公司提供的一種對用户進行身份認證的功能。通過「生物認證」，將採集的生物識別數據與存儲在設備本地的生物識別數據進行比對，並根據比對結果來驗證用户身份。\n請您注意，統信軟件不會收集或訪問您的生物識別信息，此類信息將會存儲在您的本地設備中。請您僅在您的個人設備中開啓生物認證功能，並使用您本人的生物識別信息進行相關操作，並及時在該設備上禁用或清除他人的生物識別信息，否則由此給您帶來的風險將由您承擔。\n統信軟件致力於研究與提高生物認證功能的安全性、精確性、與穩定性，但是，受限於環境、設備、技術等因素和風險控制等原因，我們暫時無法保證您一定能通過生物認證，請您不要將生物認證作為登錄統信作業系統的唯一途徑。若您在使用生物認證時有任何問題或建議的，可以通過系統內的「服務與支持」進行反饋。</translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>添加指紋數據</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>將要錄入的手指放入指紋錄入器裏面，並從下往上移動手指,完成動作後請擡起您的手指</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>我已閲讀並同意</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>《用户免責聲明》</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>下一步</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>重新錄入</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>「生物認證」是統信軟件技術有限公司提供的一種對用户進行身份認證的功能。通過「生物認證」，將採集的生物識別數據與存儲在設備本地的生物識別數據進行比對，並根據比對結果來驗證用户身份。\n請您注意，統信軟件不會收集或訪問您的生物識別信息，此類信息將會存儲在您的本地設備中。請您僅在您的個人設備中開啓生物認證功能，並使用您本人的生物識別信息進行相關操作，並及時在該設備上禁用或清除他人的生物識別信息，否則由此給您帶來的風險將由您承擔。\n統信軟件致力於研究與提高生物認證功能的安全性、精確性、與穩定性，但是，受限於環境、設備、技術等因素和風險控制等原因，我們暫時無法保證您一定能通過生物認證，請您不要將生物認證作為登錄統信作業系統的唯一途徑。若您在使用生物認證時有任何問題或建議的，可以通過系統內的「服務與支持」進行反饋。</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>添加虹膜數據</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>我已閲讀並同意</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>《用户免責聲明》</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>下一步</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>重新錄入</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>虹膜錄入完成</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>虹膜錄入失敗</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>「生物認證」是統信軟件技術有限公司提供的一種對用户進行身份認證的功能。通過「生物認證」，將採集的生物識別數據與存儲在設備本地的生物識別數據進行比對，並根據比對結果來驗證用户身份。\n請您注意，統信軟件不會收集或訪問您的生物識別信息，此類信息將會存儲在您的本地設備中。請您僅在您的個人設備中開啓生物認證功能，並使用您本人的生物識別信息進行相關操作，並及時在該設備上禁用或清除他人的生物識別信息，否則由此給您帶來的風險將由您承擔。\n統信軟件致力於研究與提高生物認證功能的安全性、精確性、與穩定性，但是，受限於環境、設備、技術等因素和風險控制等原因，我們暫時無法保證您一定能通過生物認證，請您不要將生物認證作為登錄統信作業系統的唯一途徑。若您在使用生物認證時有任何問題或建議的，可以通過系統內的「服務與支持」進行反饋。</translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation>請注視設備，確保雙眼在採集區域內</translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>生物認證</translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>生物認證</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>人臉</translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation>最多可錄入5個人臉數據</translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation>指紋</translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation>通過對指紋的掃描進行用户身份的識別</translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation>虹膜</translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation>通過掃描虹膜進行身份識別</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation>只能由字母、數字、中文、下劃線組成，且不超過15個字符</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation>只能由字母、數字、中文、下劃線組成</translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation>不得超過15個字符</translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation>該名稱已存在</translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation>添加新的%1...</translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation>名稱不能為空</translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>只允許一個賬户開啓自動登錄，請先關閉%1賬户的自動登錄，再進行操作</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>確 定</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>圖片</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>人物</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>動物</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>靜物</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>創意插圖</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>表情符號</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>自定義圖片</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Q版風格</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>立體風格</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>平面風格</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>屏幕和待機</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>關閉顯示器</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>自動鎖屏</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>進入待機</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>筆記本合蓋時</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>按電源按鈕時</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>低電量管理</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>低電量提醒</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>自動待機</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>自動休眠</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>低電量閾值</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>電池管理</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>顯示剩餘使用時間及剩餘充電時間</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>最大容量</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>低電量時</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>從不</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation>藍牙設置、設備管理</translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation>藍牙</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>藍牙已關閉，名稱顯示為&quot;%1&quot;</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>藍牙已打開，名稱顯示為 &quot;%1&quot;</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>斷開連接</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>連接</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>發送文件</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>重命名</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>移除設備</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>選擇文件</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>修改</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>允許其他藍牙設備找到該設備</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>如需使用藍牙功能，請關閉</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>飛行模式</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>藍牙名稱不能超過64個字符</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>已連接</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>未連接</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>啓動設置</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>您可以點擊菜單改變默認啓動項，也可以拖拽圖片到窗口改變背景圖片.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>啓動延時</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>主題</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>開啓主題後您可以在開機時看到主題背景</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>啓動菜單驗證</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>開啓後進入啓動菜單編輯需要密碼.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>修改密碼</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>修改啓動菜單驗證密碼</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>設置啓動菜單驗證密碼</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>用户名：</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>新密碼：</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>密碼不能為空</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>密碼不一致</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>確認密碼：</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>確定</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>啓動動畫</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>調整系統啓動界面的logo動畫尺寸大小</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>允許下面的應用訪問您的攝像頭</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>指紋1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>指紋2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>指紋3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>指紋4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>指紋5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>指紋6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>指紋7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>指紋8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>指紋9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>指紋10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>指紋錄入失敗</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>指紋已存在</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>請使用其他手指錄入</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>未知錯誤</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>指紋錄入被中斷</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>無法識別</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>接觸時間短</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>接觸時間短，驗證時請勿移動手指</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>圖像模糊</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>請清潔手指或調整觸摸位置，再次按壓指紋識別器</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>圖像重複</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>請調整手指按壓區域以錄入更多指紋</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>指紋採集間隙，請勿移動手指，直到提示您擡起</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>請擡起手指，再次按壓</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>請確保您的面部全部顯示在識別區域內</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>人臉錄入完成</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>請使用人類面容</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>請遠離鏡頭</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>請靠近鏡頭</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>請不要多人入鏡</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>請確保鏡頭清潔</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>請避免在暗光、強光、逆光環境下操作</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>請保持面部無遮擋</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>錄入超時</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>攝像頭被佔用！</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>活動用色</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>圖標設置</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>圖標主題</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>自定義您的主題圖標</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>光標主題</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>自定義您的主題光標</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>您確定要刪除此賬户嗎？</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>刪除賬户目錄</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>刪除</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>去設置</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>通用</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>重複延遲</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>短</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>長</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>重複速度</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>慢</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>快</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>啓用數字鍵盤</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>請在此輸入測試</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>大寫鎖定提示</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>雙擊速度</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>雙擊測試</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>左手模式</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>鍵盤</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>通用</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>滾動速度</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation>啓動菜單</translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation>管理您的開機啓動菜單</translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation>開發者Root權限管理</translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation>開發者選項</translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation>開發者調試選項</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>大尺寸</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>小尺寸</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>進入開發者模式失敗</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>請先登錄Union ID</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>無法獲取硬件信息</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>無網絡連接</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>證書加載失敗，無法進入開發者模式</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>簽名驗證失敗，無法進入開發者模式</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>同意並加入用户體驗計劃</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>開發者模式免責聲明</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>同意並進入開發者模式</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>開始設置啓動新動畫，請稍等一會兒</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>新的啓動動畫設置完成</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>新的設置會在重啓系統後生效</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation>立即重啓</translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation>忽略</translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation>磐石只讀保護設置需重啓後纔能生效</translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>密碼必須包含數字和字母</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>密碼長度必須為8~64個字符</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>創建新用户</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>賬户類型</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>用户名</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>全名</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>選填</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>創建用户</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>用户名不能超過 32 個字符</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>用户名只能包含字母、數字、 - 和 _</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>全名不能超過 32 個字符</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>全名不能包含冒號</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation>大</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>您還沒有上傳過頭像，可點擊或拖拽上傳圖片</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>上傳的文件類型不正確，請重新上傳</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>可用</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/zh/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-hk</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-hk</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>同意並加入用户體驗計劃</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation>&lt;p&gt;統信軟件非常重視您的私隱。因此我們制定了涵蓋如何收集、使用、共享、轉讓、公開披露以及存儲您的信息的私隱政策。&lt;/p&gt;&lt;p&gt;您可以&lt;a href=&quot;%1&quot;&gt;點擊此處&lt;/a&gt; 查看我們最新的私隱政策和/或通過訪問 &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;在線查看。請您務必認真閲讀、充分理解我們針對客户私隱的做法，如果有任何疑問，請聯繫我們：%2。&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;開啓用户體驗計劃視為您授權我們收集和使用您的設備及系統信息，以及應用軟件信息，您可以關閉用户體驗計劃以拒絕我們對前述信息的收集和使用。詳細説明請參照Deepin私隱政策 (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;開啓用户體驗計劃視為您授權我們收集和使用您的設備及系統信息，以及應用軟件信息，您可以關閉用户體驗計劃以拒絕我們對前述信息的收集和使用。瞭解用户體驗計劃，請訪問： &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>日期和時間設置</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>日期</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>年</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>月</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>日</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>時間</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>確認</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation>時間和日期</translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation>時間日期、時區設置</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation>語言和區域</translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation>系統語言、區域格式</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>明天</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>昨天</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>今天</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>早 %1 小時</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>晚 %1 小時</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>空格</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>星期/周</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>一週首日</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>短日期</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>長日期</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>短時間</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>長時間</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>貨幣符號</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>貨幣正數</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>貨幣負數</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>小數點</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>分隔符</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>數字分組</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>紙張</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>示例</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>修改時間伺服器需要認證</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>設置系統時區需要認證</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>控制中心提供作業系統的所有設置選項。</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>綁定微信</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>通過綁定微信，您可以安全快速地登錄您的%1 ID和本地賬户</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>未綁定</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>解 綁</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>去綁定</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>您確定要解綁微信嗎？</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>解綁微信後，您將無法使用微信掃碼登錄%1 ID、微信掃碼登錄本地賬户</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>我再想想</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>綁定本地賬户</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>綁定本地賬户後，您可以使用如下功能：</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>微信掃碼登錄系統</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>使用%1 ID綁定的微信，掃碼登錄本地賬户</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>通過%1 ID重置密碼</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>在您忘記本地賬户密碼時，通過%1 ID重置密碼</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>如需使用上述功能，請前往控制中心-賬户，開啓相應選項</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>雲同步</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>管理您的%1 ID，將您的個人數據在不同設備之間同步。\n登錄%1 ID以獲取瀏覽器、應用商店、服務與支持等眾多應用的個性功能和服務。</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>登錄%1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>自動同步</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>將您的系統設置和個人信息安全地存儲在雲端，並在您不同的設備上保持同步</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>系統設置</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>最近同步時間：%1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>清除雲端數據</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>確定要清除您保存在雲端的系統設置和個人數據嗎？</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>數據清除後將無法恢復！</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取 消</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>清 除</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>同步服務</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>賬户與安全</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>退出登錄</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>前往網頁設置</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>暱稱長度必須為1~32個字符</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>加密密碼失敗</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>密碼錯誤，您還可以嘗試%1次</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>密碼錯誤已達今日上限，可重置密碼再試</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>操作成功</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>暱稱每天僅可修改一次</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation>deepin ID</translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation>UOS ID</translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation>雲服務</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>中國大陸</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>其他地區</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>當前系統未激活，暫無法使用該功能</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>受限於您當地的法律法規，同步服務暫未覆蓋您所在地區，敬請期待。</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation>默認程序</translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation>設置打開各類文件的默認程序</translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation>網頁</translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation>郵件</translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation>文本</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>音樂</translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation>視頻</translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation>圖片</translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation>終端</translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>選擇打開「%1」的默認程序</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>添加</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>打開Desktop文件</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>應用程式(*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>所有文件(*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>開發者模式</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>進入開發者模式</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>可獲得root使用權限，但同時也可能導致系統完教性遭到破壞，請謹慎使用。</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>已進入</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>進入</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>在線激活</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>登錄UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>離線激活</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>導入證書</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>選擇文件</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>您的UOS ID已登錄，點擊進入開發者模式</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>進入開發者模式需要登錄UOS ID</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1.導出機器信息</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>導出</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.導入證書</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>開發調試選項</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>系統日誌記錄級別</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>更改此選項可以獲得更詳細的日誌記錄，這些日誌可能會降低系統性能和/或佔用更多存儲空間.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>關閉</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>調試</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>更改選項處理可能需要一分鐘，收到設置成功提示後，請重啓設備方可生效。</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>如需安裝非應用商店來源的應用，前往&lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; 安全中心 &lt;/a&gt;進行設置。</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation>如需安裝非應用商店來源的應用，前往安全中心進行設置。</translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation>您已進入開發者模式</translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>確定</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation>2.前往%1下載離線證書.</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation>當前系統未激活，暫無法使用該功能。</translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation>磐石只讀保護</translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation>關閉保護會解鎖系統目錄，可能導致系統損壞的高風險。</translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation>開啓保護以鎖定系統目錄，確保最佳穩定性。</translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation>藍牙和其他設備</translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>《用户免責聲明》</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>同意</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>顯示</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation>亮度、解像度、縮放</translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation>100%</translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation>125%</translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation>150%</translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation>175%</translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation>200%</translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation>225%</translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation>250%</translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation>275%</translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation>300%</translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation>複製</translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation>擴展</translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation>默認</translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation>適應</translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation>拉伸</translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation>居中</translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation>僅%1屏</translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation>多屏設置</translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation>識別</translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation>屏幕拼接將在修改完成%1s後生效</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>模式</translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation>主屏幕</translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation>顯示和佈局</translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation>亮度</translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation>解像度</translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation>桌面顯示</translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation>刷新率</translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation>方向</translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation>標準</translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation>90度</translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation>180度</translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation>270度</translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation>當前屏幕僅支持1倍縮放</translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation>護眼模式</translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation>開啓護眼模式</translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation>調整屏幕顯示較暖的顏色，減少屏幕藍光</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>時間</translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation>全天</translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation>日落到日出</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>自定義</translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation>從</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>至</translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation>色温</translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation>%1x%2 （推薦）</translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation>%1x%2</translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation>%1赫茲 （推薦）</translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation>%1赫茲</translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation>縮放</translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation>桌面和任務欄</translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation>桌面整理、任務欄模式、插件區域設置</translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation>任務欄</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>模式</translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation>經典模式</translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation>居中模式</translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation>任務欄大小</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>大</translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation>屏幕中的位置</translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation>上</translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation>下</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>左</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>右</translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation>狀態</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>一直顯示</translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation>一直隱藏</translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation>智能隱藏</translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation>多屏顯示</translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation>設置任務欄在屏幕中的位置</translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation>僅主屏顯示</translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation>跟隨鼠標位置顯示</translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation>插件區域</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>選擇顯示在任務欄插件區域的圖標</translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation>禁用自由調節</translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation>合併應用圖標</translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>允許下面的應用訪問您的文件和文件夾</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>文檔</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>桌面</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>圖片</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>視頻</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>音樂</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>下載</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>文件夾</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>字號</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>標準字體</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>等寬字體</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>性能模式</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>節能設置</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>低電量時自動開啓節能模式</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>低電量閾值</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>使用電池時自動開啓節能模式</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>喚醒設置</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>待機恢復時需要密碼</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>喚醒顯示器時需要密碼</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>關機設置</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>定時關機</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>時間</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>重複</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>一次</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>每天</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>工作日</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>自定義</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>節能模式時降低屏幕亮度</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation>三指向上</translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation>三指向下</translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation>三指向左</translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation>三指向右</translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation>三指點擊</translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation>四指向上</translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation>四指向下</translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation>四指向左</translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation>四指向右</translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation>四指點擊</translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>、</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>等</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>最佳性能</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>均衡</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>最佳視覺</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>關閉所有界面和窗口特效，保障系統高效運行</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>限制部分窗口特效，保障出色的視覺效果，同時維持系統流暢運行</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>啓用所有界面和窗口特效，體驗最佳視覺效果</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation>鍵盤</translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation>通用設置、輸入法、快捷鍵</translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation>通用</translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>語言</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>編輯</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>其他語言</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>添加</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>區域</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>地區</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>作業系統和應用可能會根據你所在的國家和地區向你提供本地內容</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>作業系統和某些應用會根據區域格式設置日期和時間格式</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>區域格式</translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>添加語言</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>搜索</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>添加</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>登錄方式</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>密碼，微信掃碼，生物認證，安全密鑰</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>密碼</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>修改密碼</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>有效天數</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>長期有效</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>重置密碼</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright © 2011-%1 深度社區</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright © 2019-%1 統信軟件技術有限公司</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>噪音抑制</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>輸入音量</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>反饋音量</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>輸入</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>沒有找到聲音輸入設備</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>輸入設備</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>鼠標與觸控板</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation>通用、鼠標、觸控板</translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation>通用</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>鼠標</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>觸控板</translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation>鼠標</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>指針速度</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>慢</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>快</translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation>指針大小</translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation>鼠標加速</translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation>插入鼠標時禁用觸摸板</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>自然滾動</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>中</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>大</translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation>極大</translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation>部分應用需註銷或重啓系統後生效</translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>我的設備</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>計算機名</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>計算機名不能以 - 開頭結尾</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>產品名稱</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>版本號</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>版本</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>類型</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>位</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>版本授權</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>系統安裝日期</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>內核版本</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>圖形平台</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>處理器</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>內存</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>計算機名長度必須介於1到63個字符之間</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation>勿擾模式、應用通知</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>通知</translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation>勿擾設置</translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation>所有應用消息橫幅將會被隱藏，通知聲音將會靜音，您可在通知中心查看所有消息。</translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation>啓用勿擾模式</translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation>在屏幕鎖屏時</translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation>通知橫幅展示數量</translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation>應用通知</translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation>允許通知</translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation>可以顯示通知橫幅，或在通知中心顯示未讀消息</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>桌面</translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation>鎖屏</translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation>通知中心</translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation>顯示消息預覽</translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation>通知時提示聲音</translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>其他設備</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>顯示沒有名稱的藍牙設備</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>當前密碼</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>強度低</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>強度中</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>強度高</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>重複密碼</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>密碼提示</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>選填</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>密碼不能為空</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>密碼不一致</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>密碼提示對所有人可見，切勿包含具體密碼信息</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>新密碼</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>新密碼和舊密碼不能相同</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation>密碼不能與用户名一致。</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>修改密碼</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>重置密碼</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>建議密碼長度8位以上，同時包含大寫字母、小寫字母、數字、符號中的3種密碼更安全。</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>重設密碼將會清除密鑰環內已存儲的數據</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>個性化</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>淺色</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>自動</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>深色</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation>主題</translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation>外觀</translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation>窗口效果</translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation>個性化您的壁紙和屏保</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>屏幕保護</translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation>顏色和圖標</translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation>調整活動色和主題圖標</translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation>字體和字號</translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation>修改系統字體與字號</translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation>壁紙</translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation>選擇淺色、深色或自動切換主題外觀</translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation>界面和效果、窗口圓角</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>自定義</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>插件區域</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>選擇顯示在任務欄插件區域的圖標</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation>節能設置、屏幕和待機管理</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>電源管理</translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation>通用</translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation>性能模式、節能設置、喚醒設置、關機設置</translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation>使用電源</translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation>屏幕和待機管理</translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation>使用電池</translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation>屏幕和待機管理、低電量管理、電池管理</translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>關機</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>待機</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>休眠</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>關閉顯示器</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>進入關機界面</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>無任何操作</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>屏幕和待機</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>關閉顯示器</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>自動鎖屏</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>進入待機</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>筆記本合蓋時</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>按電源按鈕時</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>高性能模式</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>性能模式</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>根據負載情況積極調整運行頻率</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>平衡模式</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>節能模式</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>性能優先，會顯著提升功耗和發熱</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>兼顧性能和續航，根據使用情況自動調節</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>續航優先，系統會犧牲一些性能表現來降低功耗</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>分鐘</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>小時</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>從不</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation>私隱和安全</translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation>攝像頭、文件夾權限</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation>攝像頭</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation>選擇應用是否有攝像頭的訪問權限</translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation>文件和文件夾</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation>選擇應用是否有文件和文件夾的訪問權限</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>私隱政策</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>複製連結地址</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>密碼不能為空</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>密碼長度不能少於%1個字符</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>密碼長度不能超過%1個字符</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>密碼只能由英文（區分大小寫）、數字或特殊符號（~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/）組成</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>迴文字符長度不超過%1位</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>單調性字符不超過%1位</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>重複字符不超過%1位</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>密碼必須由大寫字母、小寫字母、數字、符號（~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/）三種類型組成</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>密碼不得含有連續4個以上的迴文字符</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>密碼不能是常見單詞及組合</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>密碼過於簡單，請增加密碼複雜度</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>密碼不符合安全要求</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>控制中心</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>已激活</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>查看</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>待激活</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>激活</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>已過期</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>試用期</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>試用期過期</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>控制中心</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>觸控屏設置</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>已變更觸控屏設置</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>當前系統壁紙已被鎖定，請聯繫管理員</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>搜索</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>默認格式</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>一週第一天</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>短日期</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>長日期</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>短時間</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>長時間</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>貨幣符號</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>數字</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>紙張</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>區域格式</translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>搜索</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>設置密碼</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>請輸入8-64位密碼</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>請再次輸入密碼</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>確定</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>兩次密碼輸入不一致</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>自定義重複時間</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>屏幕保護</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>全屏預覽</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>個性化屏保</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>設置</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>閒置時間</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1分鐘</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5分鐘</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10分鐘</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15分鐘</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30分鐘</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1小時</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>從不</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>恢復時需要密碼</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>圖片輪播屏保</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>系統屏保</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>搜索</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>無搜索結果</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>添加自定義快捷鍵</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>名稱：</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>命令：</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>快捷鍵</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>無</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>添加</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation>快捷鍵名稱已被佔用，請修改名稱。</translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation>修改自定義快捷鍵</translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation>請輸入快捷鍵</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation>點擊保存使這個快捷鍵生效</translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation>點擊添加使這個快捷鍵生效</translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>快捷鍵</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>系統快捷鍵、自定義快捷鍵</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>搜索快捷鍵</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>編輯</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>點擊</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>或</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>替換</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>恢復默認</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>添加快捷鍵</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation>請輸入新的快捷鍵</translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>聲音</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation>輸入、輸出、系統音效、設備管理</translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>輸出設備</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>選擇是否啓用設備</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>輸入設備</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>系統音效</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation>設置</translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation>系統音效</translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation>開啓/關閉系統音效</translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation>啓用/禁用音頻設備</translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation>設備管理</translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>開機</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>關機</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>註銷</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>喚醒</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>音量調節</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>通知</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>電量不足</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>從啓動器發送圖標到桌面</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>清空回收站</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>電源接入</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>電源拔出</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>流動裝置接入</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>流動裝置拔出</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>錯誤提示</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>模式</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>輸出音量</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>音量增強</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>音量大於100%時可能會導致音效失真，同時損害您的音頻輸出設備</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>左</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>右</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>輸出</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>沒有找到聲音輸出設備</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>左右平衡</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>將左聲道和右聲道合併成一個聲道</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>外設插拔時音頻輸出是否自動暫停</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation>單聲道音頻</translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation>插拔管理</translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>輸出設備</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>聲音</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>電源</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>鼠標</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>更新</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>屏幕保護</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation>常用設置</translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation>系統</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation>輔助信息</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation>關於本機</translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation>系統版本、設備信息</translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation>查看開源軟件聲明</translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation>用户體驗計劃</translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation>加入用户體驗計劃，幫助改進產品</translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation>用户許可協議</translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation>查看最終用户許可協議</translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>私隱政策</translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation>查看私隱政策相關信息</translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation>開源軟件聲明</translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>下載更多</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>自動同步配置</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>伺服器</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>系統日期和時間</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>自定義</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>設置</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>伺服器地址</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>時間伺服器地址不能為空</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>24小時制</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>系統時區</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>時區列表</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>添加</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>從</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>至</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>是否要保存顯示設置？</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>如無任何操作將在%1秒後還原。</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>還原</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>保存</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>觸控屏</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>連接觸摸屏時在此處設置</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>基礎設置</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>觸控板</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>指針速度</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>慢</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>快</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>輸入時禁用觸摸板</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>輕觸以點擊</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>自然滾動</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>三指手勢</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>四指手勢</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation>手勢</translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation>觸控屏</translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation>觸控屏設置</translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation>通用</translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>加入用户體驗計劃</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>複製連結地址</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>安全驗證</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>您正在進行敏感操作，請進行登錄密碼認證</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>請輸入8-64位密碼</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>忘記密碼？</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>確定</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation>數位板</translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation>數位板選項設置</translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation>數位板</translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation>筆模式</translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation>鼠標模式</translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation>壓桿力度</translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation>輕</translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation>重</translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation>模式</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>壁紙</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>我的圖片</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>系統壁紙</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>純色壁紙</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>自定義</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>填充方式</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>自動切換壁紙</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>從不</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30秒</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1分鐘</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5分鐘</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10分鐘</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15分鐘</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30分鐘</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>登錄時</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>喚醒時</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>動態壁紙</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1小時</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation>系統壁紙</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>收起</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>設置鎖屏</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>設置桌面</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation>顯示全部－%1張</translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation>添加圖片</translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>界面效果</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>窗口設置</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>窗口圓角</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>無</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>大</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>窗口移動時啓用透明特效</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>最小化時效果</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>縮放</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>魔燈</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>不透明度調節</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>低</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>高</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>滾動條</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>滾動時顯示</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>一直顯示</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>緊湊模式</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>開啓後，窗口將顯示更多內容</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>標題欄高度</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>僅適用於窗口管理器繪製的應用標題欄</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>極小</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>中</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>中</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>繁體中文（中國香港）</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>繁體中文（中國台灣）</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation>閩南語</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>中國台灣</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>用户名長度必須介於 3 到 32 個字符之間</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>必須字母或者數字開頭</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>用户名不能僅僅是數字</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>用户名和其他用户名重複</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>全名太長了</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>全名和其他用户名重複</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>密碼錯誤</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>標準用户</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>管理員</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>自定義</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>您的主機成功退出了域伺服器</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>您的主機成功加入了域伺服器</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>您的主機退出域伺服器失敗</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>您的主機加入域伺服器失敗</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>AD域設置</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>密碼不一致</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>立體風格</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>平面風格</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation>面紋</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>人臉</translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation>使用人臉數據解鎖您的設備，之後還可進行更多設置</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation>指紋</translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation>放置手指</translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation>請以手指壓指紋收集器，然後根據提示擡起</translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation>擡起手指</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>請擡起手指，再次按壓</translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation>請擡起手指，再次按壓</translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation>錄入中斷</translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation>錄入邊緣指紋</translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation>請以手指邊緣壓指紋收集器，然後根據提示擡起</translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation>請調整按壓區域，繼續錄入邊緣指紋</translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation>成功添加指紋</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation>虹膜</translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation>使用虹膜數據解鎖您的設備，之後還可進行更多設置</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>此快捷鍵與[%1]衝突</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>密碼不能為空</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>密碼長度不能少於%1個字符</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>密碼長度不能超過%1個字符</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>密碼只能由英文（區分大小寫）、數字或特殊符號（~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/）組成</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>迴文字符長度不超過%1位</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>單調性字符不超過%1位</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>重複字符不超過%1位</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>密碼必須由大寫字母、小寫字母、數字、符號（~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/）三種類型組成</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>密碼不得含有連續4個以上的迴文字符</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>密碼不能是常見單詞及組合</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>密碼過於簡單，請增加密碼複雜度</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>密碼不符合安全要求</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation>至少同時包含小寫字母、大寫字母、數字和符號中的%1種，且密碼不能與用户名一致。</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>系統</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>窗口</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>工作區</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>輔助功能</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>自定義</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>無</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/dde-control-center_zh_TW.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"zh_TW\">\n<context>\n    <name>AccountSettings</name>\n    <message>\n        <source>edit</source>\n        <translation>編輯</translation>\n    </message>\n    <message>\n        <source>Add new user</source>\n        <translation>新增新使用者</translation>\n    </message>\n    <message>\n        <source>Set fullname</source>\n        <translation>設定全名</translation>\n    </message>\n    <message>\n        <source>Login settings</source>\n        <translation>登入設定</translation>\n    </message>\n    <message>\n        <source>Login without password</source>\n        <translation>免密登入</translation>\n    </message>\n    <message>\n        <source>Delete current account</source>\n        <translation>刪除當前帳戶</translation>\n    </message>\n    <message>\n        <source>Group setting</source>\n        <translation>使用者組設定</translation>\n    </message>\n    <message>\n        <source>Account groups</source>\n        <translation>使用者組</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>Group name</source>\n        <translation>使用者組名稱</translation>\n    </message>\n    <message>\n        <source>Add group</source>\n        <translation>新增使用者組</translation>\n    </message>\n    <message>\n        <source>Auto login</source>\n        <translation>自動登入</translation>\n    </message>\n    <message>\n        <source>Account Information</source>\n        <translation>帳戶資訊</translation>\n    </message>\n    <message>\n        <source>Account name, account fullname, account type</source>\n        <translation>帳戶名，全名，帳戶型別</translation>\n    </message>\n    <message>\n        <source>Account name</source>\n        <translation>帳戶名</translation>\n    </message>\n    <message>\n        <source>Account fullname</source>\n        <translation>帳戶全名</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>帳戶型別</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>名稱過長</translation>\n    </message>\n    <message>\n        <source>Group names should be no more than 32 characters</source>\n        <translation>組名不允許超出32個字元</translation>\n    </message>\n    <message>\n        <source>Group names cannot only have numbers</source>\n        <translation>組名不能使用純數字</translation>\n    </message>\n    <message>\n        <source>Use letters,numbers,underscores and dashes only, and must start with a letter</source>\n        <translation>僅使用字母、數字、下劃線和破折號，並且必需以字母開頭</translation>\n    </message>\n    <message>\n        <source>The group name has been used</source>\n        <translation>組名與其他組名重複</translation>\n    </message>\n    <message>\n        <source>quick login, Auto login, login without password</source>\n        <translation>快速登入，自動登入，免密登入</translation>\n    </message>\n    <message>\n        <source>Undo</source>\n        <translation>撤銷</translation>\n    </message>\n    <message>\n        <source>Redo</source>\n        <translation>重做</translation>\n    </message>\n    <message>\n        <source>Cut</source>\n        <translation>剪下</translation>\n    </message>\n    <message>\n        <source>Copy</source>\n        <translation>複製</translation>\n    </message>\n    <message>\n        <source>Paste</source>\n        <translation>粘貼</translation>\n    </message>\n    <message>\n        <source>Select All</source>\n        <translation>全選</translation>\n    </message>\n    <message>\n        <source>Quick login</source>\n        <translation>快速登入</translation>\n    </message>\n</context>\n<context>\n    <name>Accounts</name>\n    <message>\n        <source>Account</source>\n        <translation>帳戶</translation>\n    </message>\n    <message>\n        <source>Account manager</source>\n        <translation>帳戶管理</translation>\n    </message>\n</context>\n<context>\n    <name>AccountsMain</name>\n    <message>\n        <source>Other accounts</source>\n        <translation>其他帳戶</translation>\n    </message>\n</context>\n<context>\n    <name>AddFaceinfoDialog</name>\n    <message>\n        <source>Enroll Face</source>\n        <translation>新增人臉資料</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>我已閱讀並同意</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>《使用者免責宣告》</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>下一步</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>人臉錄入完成</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your face</source>\n        <translation>人臉錄入失敗</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>重新錄入</translation>\n    </message>\n    <message>\n        <source>Face recognition does not support liveness detection, and the verification method may carry risks.\nTo ensure successful entry:\n1. Keep your facial features clearly visible and do not cover them (hats, sunglasses, masks, etc.).\n2. Ensure sufficient lighting and avoid direct sunlight.</source>\n        <translation>人臉識別不支援活體檢測，驗證方式可能存在風險\n為確保錄入成功：\n1. 保持五官清晰可見，勿遮擋（帽子/墨鏡/口罩等）\n2. 光線充足，避免陽光直射</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>「生物認證」是統信軟體技術有限公司提供的一種對使用者進行身份認證的功能。通過「生物認證」，將採集的生物識別資料與儲存在裝置本地的生物識別資料進行比對，並根據比對結果來驗證使用者身份。\n請您注意，統信軟體不會收集或訪問您的生物識別資訊，此類資訊將會儲存在您的本地裝置中。請您僅在您的個人裝置中開啟生物認證功能，並使用您本人的生物識別資訊進行相關操作，並及時在該裝置上停用或清除他人的生物識別資訊，否則由此給您帶來的風險將由您承擔。\n統信軟體致力於研究與提高生物認證功能的安全性、精確性、與穩定性，但是，受限於環境、裝置、技術等因素和風險控制等原因，我們暫時無法保證您一定能通過生物認證，請您不要將生物認證作為登入統信作業系統的唯一途徑。若您在使用生物認證時有任何問題或建議的，可以通過系統內的「服務與支援」進行反饋。</translation>\n    </message>\n</context>\n<context>\n    <name>AddFingerDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>Enroll Finger</source>\n        <translation>新增指紋資料</translation>\n    </message>\n    <message>\n        <source>Place the finger to be entered into the fingerprint sensor and move it from bottom to top. After completing the action, please lift your finger.</source>\n        <translation>將要錄入的手指放入指紋錄入器裡面，並從下往上移動手指，完成動作後請擡起您的手指</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>我已閱讀並同意</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>《使用者免責宣告》</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>下一步</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>重新錄入</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>「生物認證」是統信軟體技術有限公司提供的一種對使用者進行身份認證的功能。通過「生物認證」，將採集的生物識別資料與儲存在裝置本地的生物識別資料進行比對，並根據比對結果來驗證使用者身份。\n請您注意，統信軟體不會收集或訪問您的生物識別資訊，此類資訊將會儲存在您的本地裝置中。請您僅在您的個人裝置中開啟生物認證功能，並使用您本人的生物識別資訊進行相關操作，並及時在該裝置上停用或清除他人的生物識別資訊，否則由此給您帶來的風險將由您承擔。\n統信軟體致力於研究與提高生物認證功能的安全性、精確性、與穩定性，但是，受限於環境、裝置、技術等因素和風險控制等原因，我們暫時無法保證您一定能通過生物認證，請您不要將生物認證作為登入統信作業系統的唯一途徑。若您在使用生物認證時有任何問題或建議的，可以通過系統內的「服務與支援」進行反饋。</translation>\n    </message>\n</context>\n<context>\n    <name>AddIrisDialog</name>\n    <message>\n        <source>Enroll Iris</source>\n        <translation>新增虹膜資料</translation>\n    </message>\n    <message>\n        <source>I have read and agree to the</source>\n        <translation>我已閱讀並同意</translation>\n    </message>\n    <message>\n        <source>Disclaimer</source>\n        <translation>《使用者免責宣告》</translation>\n    </message>\n    <message>\n        <source>Next</source>\n        <translation>下一步</translation>\n    </message>\n    <message>\n        <source>Done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Retry Enroll</source>\n        <translation>重新錄入</translation>\n    </message>\n    <message>\n        <source>Iris enrolled</source>\n        <translation>虹膜錄入完成</translation>\n    </message>\n    <message>\n        <source>Failed to enroll your iris</source>\n        <translation>虹膜錄入失敗</translation>\n    </message>\n    <message>\n        <source>&quot;Biometric authentication&quot; is a function for user identity authentication provided by UnionTech Software Technology Co., Ltd. Through &quot;biometric authentication&quot;, the biometric data collected will be compared with that stored in the device, and the user identity will be verified based on the comparison result.\n\nPlease be noted that UnionTech Software Technology Co., Ltd. will not collect or access your biometric information, which will be stored on your local device. Please only enable the biometric authentication in your personal device and use your own biometric information for related operations, and promptly disable or delete other people's biometric information on that device, otherwise you will bear the risk arising therefrom.\n\nUnionTech Software Technology Co., Ltd. is committed to research and improve the security, accuracy and stability of biometric authentication. However, due to environmental, equipment, technical and other factors and risk control, there is no guarantee that you will pass the biometric authentication temporarily. Therefore, please do not take biometric authentication as the only way to log in to UOS. If you have any questions or suggestions when using the biometric authentication, you can give feedback through &quot;Service and Support&quot; in the UOS.</source>\n        <translation>「生物認證」是統信軟體技術有限公司提供的一種對使用者進行身份認證的功能。通過「生物認證」，將採集的生物識別資料與儲存在裝置本地的生物識別資料進行比對，並根據比對結果來驗證使用者身份。\n請您注意，統信軟體不會收集或訪問您的生物識別資訊，此類資訊將會儲存在您的本地裝置中。請您僅在您的個人裝置中開啟生物認證功能，並使用您本人的生物識別資訊進行相關操作，並及時在該裝置上停用或清除他人的生物識別資訊，否則由此給您帶來的風險將由您承擔。\n統信軟體致力於研究與提高生物認證功能的安全性、精確性、與穩定性，但是，受限於環境、裝置、技術等因素和風險控制等原因，我們暫時無法保證您一定能通過生物認證，請您不要將生物認證作為登入統信作業系統的唯一途徑。若您在使用生物認證時有任何問題或建議的，可以通過系統內的「服務與支援」進行反饋。</translation>\n    </message>\n    <message>\n        <source>Please keep an eye on the device and ensure that both eyes are within the collection area</source>\n        <translation>請注視裝置，確保雙眼在採集區域內</translation>\n    </message>\n</context>\n<context>\n    <name>Authentication</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>生物認證</translation>\n    </message>\n</context>\n<context>\n    <name>AuthenticationMain</name>\n    <message>\n        <source>Biometric Authentication</source>\n        <translation>生物認證</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>人臉</translation>\n    </message>\n    <message>\n        <source>Up to 5 facial data can be entered</source>\n        <translation>最多可錄入5個人臉資料</translation>\n    </message>\n    <message>\n        <source>Fingerprint</source>\n        <translation>指紋</translation>\n    </message>\n    <message>\n        <source>Identifying user identity through scanning fingerprints</source>\n        <translation>通過對指紋的掃描進行使用者身份的識別</translation>\n    </message>\n    <message>\n        <source>Iris</source>\n        <translation>虹膜</translation>\n    </message>\n    <message>\n        <source>Identity recognition through iris scanning</source>\n        <translation>通過掃描虹膜進行身份識別</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only, and no more than 15 characters</source>\n        <translation>只能由字母、數字、中文、下劃線組成，且不超過15個字元</translation>\n    </message>\n    <message>\n        <source>Use letters, numbers and underscores only</source>\n        <translation>只能由字母、數字、中文、下劃線組成</translation>\n    </message>\n    <message>\n        <source>No more than 15 characters</source>\n        <translation>不得超過15個字元</translation>\n    </message>\n    <message>\n        <source>This name already exists</source>\n        <translation>該名稱已存在</translation>\n    </message>\n    <message>\n        <source>Add a new %1 ...</source>\n        <translation>新增新的%1...</translation>\n    </message>\n    <message>\n        <source>The name cannot be empty</source>\n        <translation>名稱不能為空</translation>\n    </message>\n</context>\n<context>\n    <name>AutoLoginWarningDialog</name>\n    <message>\n        <source>&quot;Auto Login&quot; can be enabled for only one account, please disable it for the account &quot;%1&quot; first</source>\n        <translation>只允許一個帳戶開啟自動登入，請先關閉%1帳戶的自動登入，再進行操作</translation>\n    </message>\n    <message>\n        <source>Ok</source>\n        <translation>確 定</translation>\n    </message>\n</context>\n<context>\n    <name>AvatarSettingsDialog</name>\n    <message>\n        <source>Images</source>\n        <translation>圖片</translation>\n    </message>\n    <message>\n        <source>Human</source>\n        <translation>人物</translation>\n    </message>\n    <message>\n        <source>Animal</source>\n        <translation>動物</translation>\n    </message>\n    <message>\n        <source>Scenery</source>\n        <translation>靜物</translation>\n    </message>\n    <message>\n        <source>Illustration</source>\n        <translation>創意插圖</translation>\n    </message>\n    <message>\n        <source>Emoji</source>\n        <translation>表情符號</translation>\n    </message>\n    <message>\n        <source>custom</source>\n        <translation>自定義圖片</translation>\n    </message>\n    <message>\n        <source>Cartoon style</source>\n        <translation>Q版風格</translation>\n    </message>\n    <message>\n        <source>Dimensional style</source>\n        <translation>立體風格</translation>\n    </message>\n    <message>\n        <source>Flat style</source>\n        <translation>平面風格</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>儲存</translation>\n    </message>\n</context>\n<context>\n    <name>BatteryPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>螢幕和待機</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>關閉顯示器</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>自動鎖屏</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>進入待機</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>筆記本合蓋時</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>按電源按鈕時</translation>\n    </message>\n    <message>\n        <source>Low Battery</source>\n        <translation>低電量管理</translation>\n    </message>\n    <message>\n        <source>Low battery notification</source>\n        <translation>低電量提醒</translation>\n    </message>\n    <message>\n        <source>Auto suspend</source>\n        <translation>自動待機</translation>\n    </message>\n    <message>\n        <source>Auto Hibernate</source>\n        <translation>自動休眠</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>低電量閾值</translation>\n    </message>\n    <message>\n        <source>Battery Management</source>\n        <translation>電池管理</translation>\n    </message>\n    <message>\n        <source>Display remaining using and charging time</source>\n        <translation>顯示剩餘使用時間及剩餘充電時間</translation>\n    </message>\n    <message>\n        <source>Maximum capacity</source>\n        <translation>最大容量</translation>\n    </message>\n    <message>\n        <source>Low battery level</source>\n        <translation>低電量時</translation>\n    </message>\n    <message>\n        <source>Disable</source>\n        <translation>從不</translation>\n    </message>\n</context>\n<context>\n    <name>BlueTooth</name>\n    <message>\n        <source>Bluetooth settings, devices</source>\n        <translation>藍牙設定、裝置管理</translation>\n    </message>\n    <message>\n        <source>Bluetooth</source>\n        <translation>藍牙</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothAdaptersModel</name>\n    <message>\n        <source>Bluetooth is turned off, and the name is displayed as &quot;%1&quot;</source>\n        <translation>藍牙已關閉，名稱顯示為&quot;%1&quot;</translation>\n    </message>\n    <message>\n        <source>Bluetooth is turned on, and the name is displayed as &quot;%1&quot;</source>\n        <translation>藍牙已打開，名稱顯示為 &quot;%1&quot;</translation>\n    </message>\n</context>\n<context>\n    <name>BlueToothDeviceListView</name>\n    <message>\n        <source>Disconnect</source>\n        <translation>斷開連線</translation>\n    </message>\n    <message>\n        <source>Connect</source>\n        <translation>連線</translation>\n    </message>\n    <message>\n        <source>Send Files</source>\n        <translation>傳送檔案</translation>\n    </message>\n    <message>\n        <source>Rename</source>\n        <translation>重新命名</translation>\n    </message>\n    <message>\n        <source>Remove Device</source>\n        <translation>移除裝置</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>選擇檔案</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothCtl</name>\n    <message>\n        <source>Edit</source>\n        <translation>修改</translation>\n    </message>\n    <message>\n        <source>Allow other Bluetooth devices to find this device</source>\n        <translation>允許其他藍牙裝置找到該裝置</translation>\n    </message>\n    <message>\n        <source>To use the Bluetooth function, please turn off</source>\n        <translation>如需使用藍牙功能，請關閉</translation>\n    </message>\n    <message>\n        <source>Airplane Mode</source>\n        <translation>飛航模式</translation>\n    </message>\n    <message>\n        <source>Bluetooth name cannot exceed 64 characters</source>\n        <translation>藍牙名稱不能超過64個字元</translation>\n    </message>\n</context>\n<context>\n    <name>BluetoothDeviceModel</name>\n    <message>\n        <source>Connected</source>\n        <translation>已連線</translation>\n    </message>\n    <message>\n        <source>Not connected</source>\n        <translation>未連線</translation>\n    </message>\n</context>\n<context>\n    <name>BootPage</name>\n    <message>\n        <source>Startup Settings</source>\n        <translation>啟動設定</translation>\n    </message>\n    <message>\n        <source>You can click the menu to change the default startup items, or drag the image to the window to change the background image.</source>\n        <translation>您可以點選菜單改變預設啟動項，也可以拖拽圖片到視窗改變背景圖片.</translation>\n    </message>\n    <message>\n        <source>grub start delay</source>\n        <translation>啟動延時</translation>\n    </message>\n    <message>\n        <source>theme</source>\n        <translation>主題</translation>\n    </message>\n    <message>\n        <source>After turning on the theme, you can see the theme background when you turn on the computer</source>\n        <translation>開啟主題後您可以在開機時看到主題背景</translation>\n    </message>\n    <message>\n        <source>Boot menu verification</source>\n        <translation>啟動菜單驗證</translation>\n    </message>\n    <message>\n        <source>After opening, entering the menu editing requires a password.</source>\n        <translation>開啟後進入啟動菜單編輯需要密碼.</translation>\n    </message>\n    <message>\n        <source>Change Password</source>\n        <translation>修改密碼</translation>\n    </message>\n    <message>\n        <source>Change boot menu verification password</source>\n        <translation>修改啟動菜單驗證密碼</translation>\n    </message>\n    <message>\n        <source>Set the boot menu authentication password</source>\n        <translation>設定啟動菜單驗證密碼</translation>\n    </message>\n    <message>\n        <source>User Name :</source>\n        <translation>使用者名稱：</translation>\n    </message>\n    <message>\n        <source>root</source>\n        <translation>root</translation>\n    </message>\n    <message>\n        <source>New Password :</source>\n        <translation>新密碼：</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>密碼不能為空</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>密碼不一致</translation>\n    </message>\n    <message>\n        <source>Repeat password:</source>\n        <translation>確認密碼：</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Sure</source>\n        <translation>確定</translation>\n    </message>\n    <message>\n        <source>Start animation</source>\n        <translation>啟動動畫</translation>\n    </message>\n    <message>\n        <source>Adjust the size of the logo animation on the system startup interface</source>\n        <translation>調整系統啟動介面的logo動畫尺寸大小</translation>\n    </message>\n</context>\n<context>\n    <name>Camera</name>\n    <message>\n        <source>Allow below apps to access your camera:</source>\n        <translation>允許下麵的應用訪問您的攝像頭</translation>\n    </message>\n</context>\n<context>\n    <name>CharaMangerModel</name>\n    <message>\n        <source>Fingerprint1</source>\n        <translation>指紋1</translation>\n    </message>\n    <message>\n        <source>Fingerprint2</source>\n        <translation>指紋2</translation>\n    </message>\n    <message>\n        <source>Fingerprint3</source>\n        <translation>指紋3</translation>\n    </message>\n    <message>\n        <source>Fingerprint4</source>\n        <translation>指紋4</translation>\n    </message>\n    <message>\n        <source>Fingerprint5</source>\n        <translation>指紋5</translation>\n    </message>\n    <message>\n        <source>Fingerprint6</source>\n        <translation>指紋6</translation>\n    </message>\n    <message>\n        <source>Fingerprint7</source>\n        <translation>指紋7</translation>\n    </message>\n    <message>\n        <source>Fingerprint8</source>\n        <translation>指紋8</translation>\n    </message>\n    <message>\n        <source>Fingerprint9</source>\n        <translation>指紋9</translation>\n    </message>\n    <message>\n        <source>Fingerprint10</source>\n        <translation>指紋10</translation>\n    </message>\n    <message>\n        <source>Scan failed</source>\n        <translation>指紋錄入失敗</translation>\n    </message>\n    <message>\n        <source>The fingerprint already exists</source>\n        <translation>指紋已存在</translation>\n    </message>\n    <message>\n        <source>Please scan other fingers</source>\n        <translation>請使用其他手指錄入</translation>\n    </message>\n    <message>\n        <source>Unknown error</source>\n        <translation>未知錯誤</translation>\n    </message>\n    <message>\n        <source>Scan suspended</source>\n        <translation>指紋錄入被中斷</translation>\n    </message>\n    <message>\n        <source>Cannot recognize</source>\n        <translation>無法識別</translation>\n    </message>\n    <message>\n        <source>Moved too fast</source>\n        <translation>接觸時間短</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast, please do not lift until prompted</source>\n        <translation>接觸時間短，驗證時請勿移動手指</translation>\n    </message>\n    <message>\n        <source>Unclear fingerprint</source>\n        <translation>影像模糊</translation>\n    </message>\n    <message>\n        <source>Clean your finger or adjust the finger position, and try again</source>\n        <translation>請清潔手指或調整觸控位置，再次按壓指紋識別器</translation>\n    </message>\n    <message>\n        <source>Already scanned</source>\n        <translation>影像重複</translation>\n    </message>\n    <message>\n        <source>Adjust the finger position to scan your fingerprint fully</source>\n        <translation>請調整手指按壓區域以錄入更多指紋</translation>\n    </message>\n    <message>\n        <source>Finger moved too fast. Please do not lift until prompted</source>\n        <translation>指紋採集間隙，請勿移動手指，直到提示您擡起</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>請擡起手指，再次按壓</translation>\n    </message>\n    <message>\n        <source>Position your face inside the frame</source>\n        <translation>請確保您的面部全部顯示在識別區域內</translation>\n    </message>\n    <message>\n        <source>Face enrolled</source>\n        <translation>人臉錄入完成</translation>\n    </message>\n    <message>\n        <source>Position a human face please</source>\n        <translation>請使用人類面容</translation>\n    </message>\n    <message>\n        <source>Keep away from the camera</source>\n        <translation>請遠離鏡頭</translation>\n    </message>\n    <message>\n        <source>Get closer to the camera</source>\n        <translation>請靠近鏡頭</translation>\n    </message>\n    <message>\n        <source>Do not position multiple faces inside the frame</source>\n        <translation>請不要多人入鏡</translation>\n    </message>\n    <message>\n        <source>Make sure the camera lens is clean</source>\n        <translation>請確保鏡頭清潔</translation>\n    </message>\n    <message>\n        <source>Do not enroll in dark, bright or backlit environments</source>\n        <translation>請避免在暗光、強光、逆光環境下操作</translation>\n    </message>\n    <message>\n        <source>Keep your face uncovered</source>\n        <translation>請保持面部無遮擋</translation>\n    </message>\n    <message>\n        <source>Scan timed out</source>\n        <translation>錄入超時</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Camera occupied!</source>\n        <translation>攝像頭被佔用！</translation>\n    </message>\n</context>\n<context>\n    <name>ColorAndIcons</name>\n    <message>\n        <source>Accent Color</source>\n        <translation>活動用色</translation>\n    </message>\n    <message>\n        <source>Icon Settings</source>\n        <translation>圖示設定</translation>\n    </message>\n    <message>\n        <source>Icon Theme</source>\n        <translation>圖示主題</translation>\n    </message>\n    <message>\n        <source>Customize your theme icon</source>\n        <translation>自定義您的主題圖示</translation>\n    </message>\n    <message>\n        <source>Cursor Theme</source>\n        <translation>游標主題</translation>\n    </message>\n    <message>\n        <source>Customize your theme cursor</source>\n        <translation>自定義您的主題游標</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmDeleteDialog</name>\n    <message>\n        <source>Are you sure you want to delete this account?</source>\n        <translation>您確定要刪除此帳戶嗎？</translation>\n    </message>\n    <message>\n        <source>Delete account directory</source>\n        <translation>刪除帳戶目錄</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Delete</source>\n        <translation>刪除</translation>\n    </message>\n</context>\n<context>\n    <name>ComfirmSafePage</name>\n    <message>\n        <source>Go to settings</source>\n        <translation>去設定</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n</context>\n<context>\n    <name>Common</name>\n    <message>\n        <source>Common</source>\n        <translation>通用</translation>\n    </message>\n    <message>\n        <source>Repeat delay</source>\n        <translation>重複延遲</translation>\n    </message>\n    <message>\n        <source>Short</source>\n        <translation>短</translation>\n    </message>\n    <message>\n        <source>Long</source>\n        <translation>長</translation>\n    </message>\n    <message>\n        <source>Repeat rate</source>\n        <translation>重複速度</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>慢</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>快</translation>\n    </message>\n    <message>\n        <source>Numeric Keypad</source>\n        <translation>啟用數字鍵盤</translation>\n    </message>\n    <message>\n        <source>test here</source>\n        <translation>請在此輸入測試</translation>\n    </message>\n    <message>\n        <source>Caps lock prompt</source>\n        <translation>大寫鎖定提示</translation>\n    </message>\n    <message>\n        <source>Double Click Speed</source>\n        <translation>雙擊速度</translation>\n    </message>\n    <message>\n        <source>Double Click Test</source>\n        <translation>雙擊測試</translation>\n    </message>\n    <message>\n        <source>Left Hand Mode</source>\n        <translation>左手模式</translation>\n    </message>\n    <message>\n        <source>Enable Keyboard</source>\n        <translation>鍵盤</translation>\n    </message>\n    <message>\n        <source>General</source>\n        <translation>通用</translation>\n    </message>\n    <message>\n        <source>Scrolling Speed</source>\n        <translation>滾動速度</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoMain</name>\n    <message>\n        <source>Boot Menu</source>\n        <translation>啟動菜單</translation>\n    </message>\n    <message>\n        <source>Manage your boot menu</source>\n        <translation>管理您的開機啟動菜單</translation>\n    </message>\n    <message>\n        <source>Developer root permission management</source>\n        <translation>開發者Root許可權管理</translation>\n    </message>\n    <message>\n        <source>Developer Options</source>\n        <translation>開發者選項</translation>\n    </message>\n    <message>\n        <source>Developer debugging options</source>\n        <translation>開發者除錯選項</translation>\n    </message>\n</context>\n<context>\n    <name>CommonInfoWork</name>\n    <message>\n        <source>Large size</source>\n        <translation>大尺寸</translation>\n    </message>\n    <message>\n        <source>Small size</source>\n        <translation>小尺寸</translation>\n    </message>\n    <message>\n        <source>Failed to get root access</source>\n        <translation>進入開發者模式失敗</translation>\n    </message>\n    <message>\n        <source>Please sign in to your Union ID first</source>\n        <translation>請先登入Union ID</translation>\n    </message>\n    <message>\n        <source>Cannot read your PC information</source>\n        <translation>無法獲取硬體資訊</translation>\n    </message>\n    <message>\n        <source>No network connection</source>\n        <translation>無網路連線</translation>\n    </message>\n    <message>\n        <source>Certificate loading failed, unable to get root access</source>\n        <translation>證書載入失敗，無法進入開發者模式</translation>\n    </message>\n    <message>\n        <source>Signature verification failed, unable to get root access</source>\n        <translation>簽名驗證失敗，無法進入開發者模式</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>同意並加入使用者體驗計劃</translation>\n    </message>\n    <message>\n        <source>The Disclaimer of Developer Mode</source>\n        <translation>開發者模式免責宣告</translation>\n    </message>\n    <message>\n        <source>Agree and Request Root Access</source>\n        <translation>同意並進入開發者模式</translation>\n    </message>\n    <message>\n        <source>Start setting the new boot animation, please wait for a minute</source>\n        <translation>開始設定啟動新動畫，請稍等一會兒</translation>\n    </message>\n    <message>\n        <source>Setting new boot animation finished</source>\n        <translation>新的啟動動畫設定完成</translation>\n    </message>\n    <message>\n        <source>The settings will be applied after rebooting the system</source>\n        <translation>新的設定會在重啟系統後生效</translation>\n    </message>\n    <message>\n        <source>Restart now</source>\n        <translation>立即重啟</translation>\n    </message>\n    <message>\n        <source>Dismiss</source>\n        <translation>忽略</translation>\n    </message>\n    <message>\n        <source>Restart device to finish applying Solid System Read-Only Protection settings</source>\n        <translation>磐石只讀保護設定需重啟後纔能生效</translation>\n    </message>\n</context>\n<context>\n    <name>ConfirmManager</name>\n    <message>\n        <source>Password must contain numbers and letters</source>\n        <translation>密碼必須包含數字和字母</translation>\n    </message>\n    <message>\n        <source>Password must be between 8 and 64 characters</source>\n        <translation>密碼長度必須為8~64個字元</translation>\n    </message>\n</context>\n<context>\n    <name>CreateAccountDialog</name>\n    <message>\n        <source>Create a new account</source>\n        <translation>建立新使用者</translation>\n    </message>\n    <message>\n        <source>Account type</source>\n        <translation>帳戶型別</translation>\n    </message>\n    <message>\n        <source>UserName</source>\n        <translation>使用者名稱</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>FullName</source>\n        <translation>全名</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>選填</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Create account</source>\n        <translation>建立使用者</translation>\n    </message>\n    <message>\n        <source>Username cannot exceed 32 characters</source>\n        <translation>使用者名稱不能超過 32 個字元</translation>\n    </message>\n    <message>\n        <source>Username can only contain letters, numbers, - and _</source>\n        <translation>使用者名稱只能包含字母、數字、 - 和 _</translation>\n    </message>\n    <message>\n        <source>Full name cannot exceed 32 characters</source>\n        <translation>全名不能超過 32 個字元</translation>\n    </message>\n    <message>\n        <source>Full name cannot contain colons</source>\n        <translation>全名不能包含冒號</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarCropper</name>\n    <message>\n        <source>small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>big</source>\n        <translation>大</translation>\n    </message>\n</context>\n<context>\n    <name>CustomAvatarEmpatyArea</name>\n    <message>\n        <source>You haven&apos;t uploaded an avatar yet. Click or drag and drop to upload an image.</source>\n        <translation>您還沒有上傳過頭像，可點選或拖拽上傳圖片</translation>\n    </message>\n    <message>\n        <source>The uploaded file type is incorrect, please upload it again</source>\n        <translation>上傳的檔案型別不正確，請重新上傳</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoModel</name>\n    <message>\n        <source>available</source>\n        <translation>可用</translation>\n    </message>\n</context>\n<context>\n    <name>DCC_NAMESPACE::SystemInfoWork</name>\n    <message>\n        <source>https://www.deepin.org/en/agreement/privacy/</source>\n        <translation>https://www.deepin.org/zh/agreement/privacy/</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/privacy-en</source>\n        <translation>https://www.uniontech.com/agreement/privacy-tw</translation>\n    </message>\n    <message>\n        <source>https://www.uniontech.com/agreement/experience-en</source>\n        <translation>https://www.uniontech.com/agreement/experience-tw</translation>\n    </message>\n    <message>\n        <source>Agree and Join User Experience Program</source>\n        <translation>同意並加入使用者體驗計劃</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;We are deeply aware of the importance of your personal information to you. So we have the Privacy Policy that covers how we collect, use, share, transfer, publicly disclose, and store your information.&lt;/p&gt;&lt;p&gt;You can &lt;a href=&quot;%1&quot;&gt;click here&lt;/a&gt; to view our latest privacy policy and/or view it online by visiting &lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;. Please read carefully and fully understand our practices on customer privacy. If you have any questions, please contact us at: %2.&lt;/p&gt;</source>\n        <translation>&lt;p&gt;統信軟體非常重視您的隱私。因此我們制定了涵蓋如何收集、使用、共享、轉讓、公開披露以及儲存您的資訊的隱私政策。&lt;/p&gt;&lt;p&gt;您可以&lt;a href=&quot;%1&quot;&gt;點選此處&lt;/a&gt; 檢視我們最新的隱私政策和/或通過訪問&lt;a href=&quot;%1&quot;&gt; %1&lt;/a&gt;線上檢視。請您務必認真閱讀、充分理解我們針對客戶隱私的做法，如果有任何疑問，請聯絡我們：%2。&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, do not join User Experience Program. For details, please refer to Deepin Privacy Policy (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;開啟使用者體驗計劃視為您授權我們收集和使用您的裝置及系統資訊，以及應用軟體資訊，您可以關閉使用者體驗計劃以拒絕我們對前述資訊的收集和使用。詳細說明請參照Deepin隱私政策 (&lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;).&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n    <message>\n        <source>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;Joining User Experience Program means that you grant and authorize us to collect and use the information of your device, system and applications. If you refuse our collection and use of the aforementioned information, please do not join it. For the details of User Experience Program, please visit &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</source>\n        <translation>&lt;p&gt;&lt;span style=&quot;color:%2;&quot;&gt;開啟使用者體驗計劃視為您授權我們收集和使用您的裝置及系統資訊，以及應用軟體資訊，您可以關閉使用者體驗計劃以拒絕我們對前述資訊的收集和使用。瞭解使用者體驗計劃，請訪問： &lt;/span&gt;&lt;a href=&quot;%1&quot; style=&quot;text-decoration: none;&quot;&gt;%1&lt;/a&gt;&lt;span style=&quot;color:%2;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;</translation>\n    </message>\n</context>\n<context>\n    <name>DateTimeSettingDialog</name>\n    <message>\n        <source>Date and time setting</source>\n        <translation>日期和時間設定</translation>\n    </message>\n    <message>\n        <source>Date</source>\n        <translation>日期</translation>\n    </message>\n    <message>\n        <source>Year</source>\n        <translation>年</translation>\n    </message>\n    <message>\n        <source>Month</source>\n        <translation>月</translation>\n    </message>\n    <message>\n        <source>Day</source>\n        <translation>日</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>時間</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>確認</translation>\n    </message>\n</context>\n<context>\n    <name>Datetime</name>\n    <message>\n        <source>Time and date</source>\n        <translation>時間和日期</translation>\n    </message>\n    <message>\n        <source>Time and date, time zone settings</source>\n        <translation>時間日期、時區設定</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeMain</name>\n    <message>\n        <source>Language and region</source>\n        <translation>語言和區域</translation>\n    </message>\n    <message>\n        <source>System language, regional formats</source>\n        <translation>系統語言、區域格式</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeModel</name>\n    <message>\n        <source>Tomorrow</source>\n        <translation>明天</translation>\n    </message>\n    <message>\n        <source>Yesterday</source>\n        <translation>昨天</translation>\n    </message>\n    <message>\n        <source>Today</source>\n        <translation>今天</translation>\n    </message>\n    <message>\n        <source>%1 hours earlier than local</source>\n        <translation>早 %1 小時</translation>\n    </message>\n    <message>\n        <source>%1 hours later than local</source>\n        <translation>晚 %1 小時</translation>\n    </message>\n    <message>\n        <source>Space</source>\n        <translation>空格</translation>\n    </message>\n    <message>\n        <source>Week</source>\n        <translation>星期/周</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>一週首日</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>短日期</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>長日期</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>短時間</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>長時間</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>貨幣符號</translation>\n    </message>\n    <message>\n        <source>Positive currency</source>\n        <translation>貨幣正數</translation>\n    </message>\n    <message>\n        <source>Negative currency</source>\n        <translation>貨幣負數</translation>\n    </message>\n    <message>\n        <source>Decimal symbol</source>\n        <translation>小數點</translation>\n    </message>\n    <message>\n        <source>Digit grouping symbol</source>\n        <translation>分隔符</translation>\n    </message>\n    <message>\n        <source>Digit grouping</source>\n        <translation>數字分組</translation>\n    </message>\n    <message>\n        <source>Page size</source>\n        <translation>紙張</translation>\n    </message>\n    <message>\n        <source>Example</source>\n        <translation>範例</translation>\n    </message>\n</context>\n<context>\n    <name>DatetimeWorker</name>\n    <message>\n        <source>Authentication is required to change NTP server</source>\n        <translation>修改時間伺服器需要認證</translation>\n    </message>\n    <message>\n        <source>Authentication is required to set the system timezone</source>\n        <translation>設定系統時區需要認證</translation>\n    </message>\n</context>\n<context>\n    <name>DccColorDialog</name>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>儲存</translation>\n    </message>\n</context>\n<context>\n    <name>DccWindow</name>\n    <message>\n        <source>Control Center provides the options for system settings.</source>\n        <translation>控制中心提供作業系統的所有設定選項。</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDAccountSecurity</name>\n    <message>\n        <source>Bind WeChat</source>\n        <translation>繫結微信</translation>\n    </message>\n    <message>\n        <source>By binding WeChat, you can securely and quickly log in to your %1 ID and local accounts.</source>\n        <translation>通過繫結微信，您可以安全快速地登入您的%1 ID和本地帳戶</translation>\n    </message>\n    <message>\n        <source>Unlinked</source>\n        <translation>未繫結</translation>\n    </message>\n    <message>\n        <source>Unbinding</source>\n        <translation>解 綁</translation>\n    </message>\n    <message>\n        <source>Link</source>\n        <translation>去繫結</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to unbind WeChat?</source>\n        <translation>您確定要解綁微信嗎？</translation>\n    </message>\n    <message>\n        <source>After unbinding WeChat, you will not be able to use WeChat to scan the QR code to log in to %1 ID or local account.</source>\n        <translation>解綁微信後，您將無法使用微信掃碼登入%1 ID、微信掃碼登入本地帳戶</translation>\n    </message>\n    <message>\n        <source>Let me think it over</source>\n        <translation>我再想想</translation>\n    </message>\n    <message>\n        <source>Local Account Binding</source>\n        <translation>繫結本地帳戶</translation>\n    </message>\n    <message>\n        <source>After binding your local account, you can use the following functions:</source>\n        <translation>繫結本地帳戶後，您可以使用如下功能：</translation>\n    </message>\n    <message>\n        <source>WeChat Scan Code Login System</source>\n        <translation>微信掃碼登入系統</translation>\n    </message>\n    <message>\n        <source>Use WeChat, which is bound to your %1 ID, to scan code to log in to your local account.</source>\n        <translation>使用%1 ID繫結的微信，掃碼登入本地帳戶</translation>\n    </message>\n    <message>\n        <source>Reset password via %1 ID</source>\n        <translation>通過%1 ID重置密碼</translation>\n    </message>\n    <message>\n        <source>Reset your local password via %1 ID in case you forget it.</source>\n        <translation>在您忘記本地帳戶密碼時，通過%1 ID重置密碼</translation>\n    </message>\n    <message>\n        <source>To use the above features, please go to Control Center - Accounts and turn on the corresponding options.</source>\n        <translation>如需使用上述功能，請前往控制中心-帳戶，開啟相應選項</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDInterface</name>\n    <message>\n        <source>deepin</source>\n        <translation>deepin</translation>\n    </message>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDLogin</name>\n    <message>\n        <source>Cloud Sync</source>\n        <translation>雲同步</translation>\n    </message>\n    <message>\n        <source>Manage your %1 ID and sync your personal data across devices.\nSign in to %1 ID to get personalized features and services of Browser, App Store, and more.</source>\n        <translation>管理您的%1 ID，將您的個人資料在不同裝置之間同步。\n登入%1 ID以獲取瀏覽器、應用商店、服務與支援等眾多應用的個性功能和服務。</translation>\n    </message>\n    <message>\n        <source>Sign In to %1 ID</source>\n        <translation>登入%1 ID</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDSyncService</name>\n    <message>\n        <source>Auto Sync</source>\n        <translation>自動同步</translation>\n    </message>\n    <message>\n        <source>Securely store system settings and personal data in the cloud, and keep them in sync across devices</source>\n        <translation>將您的系統設定和個人資訊安全地儲存在雲端，並在您不同的裝置上保持同步</translation>\n    </message>\n    <message>\n        <source>System Settings</source>\n        <translation>系統設定</translation>\n    </message>\n    <message>\n        <source>Last sync time: %1</source>\n        <translation>最近同步時間：%1</translation>\n    </message>\n    <message>\n        <source>Clear cloud data</source>\n        <translation>清除雲端資料</translation>\n    </message>\n    <message>\n        <source>Are you sure you want to clear your system settings and personal data saved in the cloud?</source>\n        <translation>確定要清除您儲存在雲端的系統設定和個人資料嗎？</translation>\n    </message>\n    <message>\n        <source>Once the data is cleared, it cannot be recovered!</source>\n        <translation>資料清除後將無法恢復！</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取 消</translation>\n    </message>\n    <message>\n        <source>Clear</source>\n        <translation>清 除</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinIDUserInfo</name>\n    <message>\n        <source>Synchronization Service</source>\n        <translation>同步服務</translation>\n    </message>\n    <message>\n        <source>Account and Security</source>\n        <translation>帳戶與安全</translation>\n    </message>\n    <message>\n        <source>Sign out</source>\n        <translation>退出登入</translation>\n    </message>\n    <message>\n        <source>Go to web settings</source>\n        <translation>前往網頁設定</translation>\n    </message>\n    <message>\n        <source>The nickname must be 1~32 characters long</source>\n        <translation>暱稱長度必須為1~32個字元</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinWorker</name>\n    <message>\n        <source>encrypt password failed</source>\n        <translation>加密密碼失敗</translation>\n    </message>\n    <message>\n        <source>Wrong password, %1 chances left</source>\n        <translation>密碼錯誤，您還可以嘗試%1次</translation>\n    </message>\n    <message>\n        <source>The login error has reached the limit today. You can reset the password and try again.</source>\n        <translation>密碼錯誤已達今日上限，可重置密碼再試</translation>\n    </message>\n    <message>\n        <source>Operation Successful</source>\n        <translation>操作成功</translation>\n    </message>\n    <message>\n        <source>The nickname can be modified only once a day</source>\n        <translation>暱稱每天僅可修改一次</translation>\n    </message>\n</context>\n<context>\n    <name>Deepinid</name>\n    <message>\n        <source>deepin ID</source>\n        <translation>deepin ID</translation>\n    </message>\n    <message>\n        <source>UOS ID</source>\n        <translation>UOS ID</translation>\n    </message>\n    <message>\n        <source>Cloud services</source>\n        <translation>雲服務</translation>\n    </message>\n</context>\n<context>\n    <name>DeepinidModel</name>\n    <message>\n        <source>Mainland China</source>\n        <translation>中國大陸</translation>\n    </message>\n    <message>\n        <source>Other regions</source>\n        <translation>其他地區</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first</source>\n        <translation>當前系統未啟用，暫無法使用該功能</translation>\n    </message>\n    <message>\n        <source>Subject to your local laws and regulations, it is currently unavailable in your region.</source>\n        <translation>受限於您當地的法律法規，同步服務暫未覆蓋您所在地區，敬請期待。</translation>\n    </message>\n</context>\n<context>\n    <name>Defaultapp</name>\n    <message>\n        <source>Default App</source>\n        <translation>預設程式</translation>\n    </message>\n    <message>\n        <source>Set the default application for opening various types of files</source>\n        <translation>設定打開各類檔案的預設程式</translation>\n    </message>\n</context>\n<context>\n    <name>DefaultappMain</name>\n    <message>\n        <source>Webpage</source>\n        <translation>網頁</translation>\n    </message>\n    <message>\n        <source>Mail</source>\n        <translation>郵件</translation>\n    </message>\n    <message>\n        <source>Text</source>\n        <translation>文字</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>音樂</translation>\n    </message>\n    <message>\n        <source>Video</source>\n        <translation>影片</translation>\n    </message>\n    <message>\n        <source>Picture</source>\n        <translation>圖片</translation>\n    </message>\n    <message>\n        <source>Terminal</source>\n        <translation>終端</translation>\n    </message>\n</context>\n<context>\n    <name>DetailItem</name>\n    <message>\n        <source>Please choose the default program to open &apos;%1&apos;</source>\n        <translation>選擇打開「%1」的預設程式</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>新增</translation>\n    </message>\n    <message>\n        <source>Open Desktop file</source>\n        <translation>打開Desktop檔案</translation>\n    </message>\n    <message>\n        <source>Apps (*.desktop)</source>\n        <translation>應用程式(*.desktop)</translation>\n    </message>\n    <message>\n        <source>All files (*)</source>\n        <translation>所有檔案(*)</translation>\n    </message>\n</context>\n<context>\n    <name>DevelopModePage</name>\n    <message>\n        <source>Root Access</source>\n        <translation>開發者模式</translation>\n    </message>\n    <message>\n        <source>Request Root Access</source>\n        <translation>進入開發者模式</translation>\n    </message>\n    <message>\n        <source>After entering the developer mode, you can obtain root permissions, but it may also damage the system integrity, so please use it with caution.</source>\n        <translation>可獲得root使用許可權，但同時也可能導致系統完教性遭到破壞，請謹慎使用。</translation>\n    </message>\n    <message>\n        <source>Allowed</source>\n        <translation>已進入</translation>\n    </message>\n    <message>\n        <source>Enter</source>\n        <translation>進入</translation>\n    </message>\n    <message>\n        <source>Online</source>\n        <translation>線上啟用</translation>\n    </message>\n    <message>\n        <source>Login UOS ID</source>\n        <translation>登入UOS ID</translation>\n    </message>\n    <message>\n        <source>Offline</source>\n        <translation>離線啟用</translation>\n    </message>\n    <message>\n        <source>Import Certificate</source>\n        <translation>匯入證書</translation>\n    </message>\n    <message>\n        <source>Select file</source>\n        <translation>選擇檔案</translation>\n    </message>\n    <message>\n        <source>Your UOS ID has been logged in, click to enter developer mode</source>\n        <translation>您的UOS ID已登入，點選進入開發者模式</translation>\n    </message>\n    <message>\n        <source>Please sign in to your UOS ID first and continue</source>\n        <translation>進入開發者模式需要登入UOS ID</translation>\n    </message>\n    <message>\n        <source>1.Export PC Info</source>\n        <translation>1.匯出機器資訊</translation>\n    </message>\n    <message>\n        <source>Export</source>\n        <translation>匯出</translation>\n    </message>\n    <message>\n        <source>3.Import Certificate</source>\n        <translation>3.匯入證書</translation>\n    </message>\n    <message>\n        <source>Development and debugging options</source>\n        <translation>開發除錯選項</translation>\n    </message>\n    <message>\n        <source>System logging level</source>\n        <translation>系統日誌記錄級別</translation>\n    </message>\n    <message>\n        <source>Changing the options results in more detailed logging that may degrade system performance and/or take up more storage space.</source>\n        <translation>更改此選項可以獲得更詳細的日誌記錄，這些日誌可能會降低系統性能和/或佔用更多儲存空間.</translation>\n    </message>\n    <message>\n        <source>Off</source>\n        <translation>關閉</translation>\n    </message>\n    <message>\n        <source>Debug</source>\n        <translation>除錯</translation>\n    </message>\n    <message>\n        <source>Changing the option may take up to a minute to process, after receiving a successful setting prompt, please reboot the device to take effect.</source>\n        <translation>更改選項處理可能需要一分鐘，收到設定成功提示後，請重啟裝置方可生效。</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to &lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; Security Center &lt;/a&gt; to change the settings.</source>\n        <translation>如需安裝非應用商店來源的應用，前往&lt;a style=&apos;text-decoration: none;&apos; href=&apos;Security Center&apos;&gt; 安全中心 &lt;/a&gt;進行設定。</translation>\n    </message>\n    <message>\n        <source>To install and run unsigned apps, please go to Security Center to change the settings.</source>\n        <translation>如需安裝非應用商店來源的應用，前往安全中心進行設定。</translation>\n    </message>\n    <message>\n        <source>You have entered developer mode</source>\n        <translation>您已進入開發者模式</translation>\n    </message>\n    <message>\n        <source>OK</source>\n        <translation>確定</translation>\n    </message>\n    <message>\n        <source>2.please go to %1 to Download offline certificate.</source>\n        <translation>2.前往%1下載離線證書.</translation>\n    </message>\n    <message>\n        <source>The feature is not available at present, please activate your system first.</source>\n        <translation>當前系統未啟用，暫無法使用該功能。</translation>\n    </message>\n    <message>\n        <source>Solid System Read-Only Protection</source>\n        <translation>磐石只讀保護</translation>\n    </message>\n    <message>\n        <source>Disabling protection unlocks system directories，This action carries a high risk of system damage.</source>\n        <translation>關閉保護會解鎖系統目錄，可能導致系統損壞的高風險。</translation>\n    </message>\n    <message>\n        <source>Enable protection to lock system directories and ensure optimal stability.</source>\n        <translation>開啟保護以鎖定系統目錄，確保最佳穩定性。</translation>\n    </message>\n</context>\n<context>\n    <name>Device</name>\n    <message>\n        <source>Bluetooth and Devices</source>\n        <translation>藍牙和其他裝置</translation>\n    </message>\n</context>\n<context>\n    <name>DisclaimerControl</name>\n    <message>\n        <source>Disclaimer</source>\n        <translation>《使用者免責宣告》</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Agree</source>\n        <translation>同意</translation>\n    </message>\n</context>\n<context>\n    <name>Display</name>\n    <message>\n        <source>Display</source>\n        <translation>顯示</translation>\n    </message>\n    <message>\n        <source>Brightness,resolution,scaling</source>\n        <translation>亮度、解析度、縮放</translation>\n    </message>\n</context>\n<context>\n    <name>DisplayMain</name>\n    <message>\n        <source>100%</source>\n        <translation>100%</translation>\n    </message>\n    <message>\n        <source>125%</source>\n        <translation>125%</translation>\n    </message>\n    <message>\n        <source>150%</source>\n        <translation>150%</translation>\n    </message>\n    <message>\n        <source>175%</source>\n        <translation>175%</translation>\n    </message>\n    <message>\n        <source>200%</source>\n        <translation>200%</translation>\n    </message>\n    <message>\n        <source>225%</source>\n        <translation>225%</translation>\n    </message>\n    <message>\n        <source>250%</source>\n        <translation>250%</translation>\n    </message>\n    <message>\n        <source>275%</source>\n        <translation>275%</translation>\n    </message>\n    <message>\n        <source>300%</source>\n        <translation>300%</translation>\n    </message>\n    <message>\n        <source>Duplicate</source>\n        <translation>複製</translation>\n    </message>\n    <message>\n        <source>Extend</source>\n        <translation>擴展</translation>\n    </message>\n    <message>\n        <source>Default</source>\n        <translation>預設</translation>\n    </message>\n    <message>\n        <source>Fit</source>\n        <translation>適應</translation>\n    </message>\n    <message>\n        <source>Stretch</source>\n        <translation>拉伸</translation>\n    </message>\n    <message>\n        <source>Center</source>\n        <translation>居中</translation>\n    </message>\n    <message>\n        <source>Only on %1</source>\n        <translation>僅%1屏</translation>\n    </message>\n    <message>\n        <source>Multiple Displays Settings</source>\n        <translation>多屏設定</translation>\n    </message>\n    <message>\n        <source>Identify</source>\n        <translation>識別</translation>\n    </message>\n    <message>\n        <source>Screen rearrangement will take effect in %1s after changes</source>\n        <translation>螢幕拼接將在修改完成%1s後生效</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>模式</translation>\n    </message>\n    <message>\n        <source>Main Screen</source>\n        <translation>主螢幕</translation>\n    </message>\n    <message>\n        <source>Display And Layout</source>\n        <translation>顯示和佈局</translation>\n    </message>\n    <message>\n        <source>Brightness</source>\n        <translation>亮度</translation>\n    </message>\n    <message>\n        <source>Resolution</source>\n        <translation>解析度</translation>\n    </message>\n    <message>\n        <source>Resize Desktop</source>\n        <translation>桌面顯示</translation>\n    </message>\n    <message>\n        <source>Refresh Rate</source>\n        <translation>重新整理率</translation>\n    </message>\n    <message>\n        <source>Rotation</source>\n        <translation>方向</translation>\n    </message>\n    <message>\n        <source>Standard</source>\n        <translation>標準</translation>\n    </message>\n    <message>\n        <source>90°</source>\n        <translation>90度</translation>\n    </message>\n    <message>\n        <source>180°</source>\n        <translation>180度</translation>\n    </message>\n    <message>\n        <source>270°</source>\n        <translation>270度</translation>\n    </message>\n    <message>\n        <source>The monitor only supports 100% display scaling</source>\n        <translation>當前螢幕僅支援1倍縮放</translation>\n    </message>\n    <message>\n        <source>Eye Comfort</source>\n        <translation>護眼模式</translation>\n    </message>\n    <message>\n        <source>Enable eye comfort</source>\n        <translation>開啟護眼模式</translation>\n    </message>\n    <message>\n        <source>Adjust screen display to warmer colors, reducing screen blue light</source>\n        <translation>調整螢幕顯示較暖的顏色，減少螢幕藍光</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>時間</translation>\n    </message>\n    <message>\n        <source>All day</source>\n        <translation>全天</translation>\n    </message>\n    <message>\n        <source>Sunset to Sunrise</source>\n        <translation>日落到日出</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>自定義</translation>\n    </message>\n    <message>\n        <source>from</source>\n        <translation>從</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>至</translation>\n    </message>\n    <message>\n        <source>Color Temperature</source>\n        <translation>色溫</translation>\n    </message>\n    <message>\n        <source>%1x%2 (Recommended)</source>\n        <translation>%1x%2 （推薦）</translation>\n    </message>\n    <message>\n        <source>%1x%2</source>\n        <translation>%1x%2</translation>\n    </message>\n    <message>\n        <source>%1Hz (Recommended)</source>\n        <translation>%1赫茲 （推薦）</translation>\n    </message>\n    <message>\n        <source>%1Hz</source>\n        <translation>%1赫茲</translation>\n    </message>\n    <message>\n        <source>Scaling</source>\n        <translation>縮放</translation>\n    </message>\n</context>\n<context>\n    <name>Dock</name>\n    <message>\n        <source>Desktop and taskbar</source>\n        <translation>桌面和工作列</translation>\n    </message>\n    <message>\n        <source>Desktop organization, taskbar mode, plugin area settings</source>\n        <translation>桌面整理、工作列模式、外掛區域設定</translation>\n    </message>\n</context>\n<context>\n    <name>DockMain</name>\n    <message>\n        <source>Dock</source>\n        <translation>工作列</translation>\n    </message>\n    <message>\n        <source>Mode</source>\n        <translation>模式</translation>\n    </message>\n    <message>\n        <source>Classic Mode</source>\n        <translation>經典模式</translation>\n    </message>\n    <message>\n        <source>Centered Mode</source>\n        <translation>居中模式</translation>\n    </message>\n    <message>\n        <source>Dock size</source>\n        <translation>工作列大小</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>大</translation>\n    </message>\n    <message>\n        <source>Position on the screen</source>\n        <translation>螢幕中的位置</translation>\n    </message>\n    <message>\n        <source>Top</source>\n        <translation>上</translation>\n    </message>\n    <message>\n        <source>Bottom</source>\n        <translation>下</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>左</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>右</translation>\n    </message>\n    <message>\n        <source>Status</source>\n        <translation>狀態</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>一直顯示</translation>\n    </message>\n    <message>\n        <source>Keep hidden</source>\n        <translation>一直隱藏</translation>\n    </message>\n    <message>\n        <source>Smart hide</source>\n        <translation>智慧隱藏</translation>\n    </message>\n    <message>\n        <source>Multiple Displays</source>\n        <translation>多屏顯示</translation>\n    </message>\n    <message>\n        <source>Set the position of the taskbar on the screen</source>\n        <translation>設定工作列在螢幕中的位置</translation>\n    </message>\n    <message>\n        <source>Only on main</source>\n        <translation>僅主屏顯示</translation>\n    </message>\n    <message>\n        <source>On screen where the cursor is</source>\n        <translation>跟隨滑鼠位置顯示</translation>\n    </message>\n    <message>\n        <source>Plugin Area</source>\n        <translation>外掛區域</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>選擇顯示在工作列外掛區域的圖示</translation>\n    </message>\n    <message>\n        <source>Lock the Dock</source>\n        <translation>停用自由調節</translation>\n    </message>\n    <message>\n        <source>Combine application icons</source>\n        <translation>合併應用圖標</translation>\n    </message>\n</context>\n<context>\n    <name>FileAndFolder</name>\n    <message>\n        <source>Allow below apps to access these files and folders:</source>\n        <translation>允許下麵的應用訪問您的檔案和資料夾</translation>\n    </message>\n    <message>\n        <source>Documents</source>\n        <translation>文件</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>桌面</translation>\n    </message>\n    <message>\n        <source>Pictures</source>\n        <translation>圖片</translation>\n    </message>\n    <message>\n        <source>Videos</source>\n        <translation>影片</translation>\n    </message>\n    <message>\n        <source>Music</source>\n        <translation>音樂</translation>\n    </message>\n    <message>\n        <source>Downloads</source>\n        <translation>下載</translation>\n    </message>\n    <message>\n        <source>folder</source>\n        <translation>資料夾</translation>\n    </message>\n</context>\n<context>\n    <name>FontSizePage</name>\n    <message>\n        <source>Size</source>\n        <translation>字號</translation>\n    </message>\n    <message>\n        <source>Standard Font</source>\n        <translation>標準字型</translation>\n    </message>\n    <message>\n        <source>Monospaced Font</source>\n        <translation>等寬字型</translation>\n    </message>\n</context>\n<context>\n    <name>GeneralPage</name>\n    <message>\n        <source>Power Plans</source>\n        <translation>效能模式</translation>\n    </message>\n    <message>\n        <source>Power Saving Settings</source>\n        <translation>節能設定</translation>\n    </message>\n    <message>\n        <source>Auto power saving on low battery</source>\n        <translation>低電量時自動開啟節能模式</translation>\n    </message>\n    <message>\n        <source>Low battery threshold</source>\n        <translation>低電量閾值</translation>\n    </message>\n    <message>\n        <source>Auto power saving on battery</source>\n        <translation>使用電池時自動開啟節能模式</translation>\n    </message>\n    <message>\n        <source>Wakeup Settings</source>\n        <translation>喚醒設定</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the computer</source>\n        <translation>待機恢復時需要密碼</translation>\n    </message>\n    <message>\n        <source>Password is required to wake up the monitor</source>\n        <translation>喚醒顯示器時需要密碼</translation>\n    </message>\n    <message>\n        <source>Shutdown Settings</source>\n        <translation>關機設定</translation>\n    </message>\n    <message>\n        <source>Scheduled Shutdown</source>\n        <translation>定時關機</translation>\n    </message>\n    <message>\n        <source>Time</source>\n        <translation>時間</translation>\n    </message>\n    <message>\n        <source>Repeat</source>\n        <translation>重複</translation>\n    </message>\n    <message>\n        <source>Once</source>\n        <translation>一次</translation>\n    </message>\n    <message>\n        <source>Every day</source>\n        <translation>每天</translation>\n    </message>\n    <message>\n        <source>Working days</source>\n        <translation>工作日</translation>\n    </message>\n    <message>\n        <source>Custom Time</source>\n        <translation>自定義</translation>\n    </message>\n    <message>\n        <source>Decrease screen brightness on power saver</source>\n        <translation>節能模式時降低螢幕亮度</translation>\n    </message>\n</context>\n<context>\n    <name>GestureModel</name>\n    <message>\n        <source>Three-finger up</source>\n        <translation>三指向上</translation>\n    </message>\n    <message>\n        <source>Three-finger down</source>\n        <translation>三指向下</translation>\n    </message>\n    <message>\n        <source>Three-finger left</source>\n        <translation>三指向左</translation>\n    </message>\n    <message>\n        <source>Three-finger right</source>\n        <translation>三指向右</translation>\n    </message>\n    <message>\n        <source>Three-finger tap</source>\n        <translation>三指點選</translation>\n    </message>\n    <message>\n        <source>Four-finger up</source>\n        <translation>四指向上</translation>\n    </message>\n    <message>\n        <source>Four-finger down</source>\n        <translation>四指向下</translation>\n    </message>\n    <message>\n        <source>Four-finger left</source>\n        <translation>四指向左</translation>\n    </message>\n    <message>\n        <source>Four-finger right</source>\n        <translation>四指向右</translation>\n    </message>\n    <message>\n        <source>Four-finger tap</source>\n        <translation>四指點選</translation>\n    </message>\n</context>\n<context>\n    <name>HomePage</name>\n    <message>\n        <source>,</source>\n        <translation>、</translation>\n    </message>\n    <message>\n        <source>...</source>\n        <translation>等</translation>\n    </message>\n</context>\n<context>\n    <name>InterfaceEffectListview</name>\n    <message>\n        <source>Optimal Performance</source>\n        <translation>最佳效能</translation>\n    </message>\n    <message>\n        <source>Balance</source>\n        <translation>均衡</translation>\n    </message>\n    <message>\n        <source>Best Visuals</source>\n        <translation>最佳視覺</translation>\n    </message>\n    <message>\n        <source>Disable all interface and window effects for efficient system performance.</source>\n        <translation>關閉所有介面和視窗特效，保障系統高效執行</translation>\n    </message>\n    <message>\n        <source>Limit some window effects for excellent visuals while maintaining smooth system performance.</source>\n        <translation>限制部分視窗特效，保障出色的視覺效果，同時維持系統流暢執行</translation>\n    </message>\n    <message>\n        <source>Enable all interface and window effects for the best visual experience.</source>\n        <translation>啟用所有介面和視窗特效，體驗最佳視覺效果</translation>\n    </message>\n</context>\n<context>\n    <name>Keyboard</name>\n    <message>\n        <source>Keyboard</source>\n        <translation>鍵盤</translation>\n    </message>\n    <message>\n        <source>General Settings, input method, shortcuts</source>\n        <translation>通用設定、輸入法、快捷鍵</translation>\n    </message>\n</context>\n<context>\n    <name>KeyboardMain</name>\n    <message>\n        <source>Common</source>\n        <translation>通用</translation>\n    </message>\n</context>\n<context>\n    <name>LangAndFormat</name>\n    <message>\n        <source>Language</source>\n        <translation>語言</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>編輯</translation>\n    </message>\n    <message>\n        <source>Other languages</source>\n        <translation>其他語言</translation>\n    </message>\n    <message>\n        <source>add</source>\n        <translation>新增</translation>\n    </message>\n    <message>\n        <source>Region</source>\n        <translation>區域</translation>\n    </message>\n    <message>\n        <source>Area</source>\n        <translation>地區</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may provide you with local content based on your country and region</source>\n        <translation>作業系統和應用可能會根據你所在的國家和地區向你提供本地內容</translation>\n    </message>\n    <message>\n        <source>Operating system and applications may set date and time formats based on regional formats</source>\n        <translation>作業系統和某些應用會根據區域格式設定日期和時間格式</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>區域格式</translation>\n    </message>\n</context>\n<context>\n    <name>LangsChooserDialog</name>\n    <message>\n        <source>Add language</source>\n        <translation>新增語言</translation>\n    </message>\n    <message>\n        <source>Search</source>\n        <translation>搜尋</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>新增</translation>\n    </message>\n</context>\n<context>\n    <name>LoginMethod</name>\n    <message>\n        <source>Login method</source>\n        <translation>登入方式</translation>\n    </message>\n    <message>\n        <source>Password, wechat, biometric authentication, security key</source>\n        <translation>密碼，微信掃碼，生物認證，安全金鑰</translation>\n    </message>\n    <message>\n        <source>Password</source>\n        <translation>密碼</translation>\n    </message>\n    <message>\n        <source>Modify password</source>\n        <translation>修改密碼</translation>\n    </message>\n    <message>\n        <source>Validity days</source>\n        <translation>有效天數</translation>\n    </message>\n    <message>\n        <source>Always</source>\n        <translation>長期有效</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>重置密碼</translation>\n    </message>\n</context>\n<context>\n    <name>LogoModule</name>\n    <message>\n        <source>Copyright© 2011-%1 Deepin Community</source>\n        <translation>Copyright © 2011-%1 深度社區</translation>\n    </message>\n    <message>\n        <source>Copyright© 2019-%1 UnionTech Software Technology Co., LTD</source>\n        <translation>Copyright © 2019-%1 統信軟體技術有限公司</translation>\n    </message>\n</context>\n<context>\n    <name>MicrophonePage</name>\n    <message>\n        <source>Automatic Noise Suppression</source>\n        <translation>噪音抑制</translation>\n    </message>\n    <message>\n        <source>Input Volume</source>\n        <translation>輸入音量</translation>\n    </message>\n    <message>\n        <source>Input Level</source>\n        <translation>反饋音量</translation>\n    </message>\n    <message>\n        <source>Input</source>\n        <translation>輸入</translation>\n    </message>\n    <message>\n        <source>No input device for sound found</source>\n        <translation>沒有找到聲音輸入裝置</translation>\n    </message>\n    <message>\n        <source>Input Device</source>\n        <translation>輸入裝置</translation>\n    </message>\n</context>\n<context>\n    <name>Mouse</name>\n    <message>\n        <source>Mouse and Touchpad</source>\n        <translation>滑鼠與觸控板</translation>\n    </message>\n    <message>\n        <source>Common、Mouse、Touchpad</source>\n        <translation>通用、滑鼠、觸控板</translation>\n    </message>\n</context>\n<context>\n    <name>MouseMain</name>\n    <message>\n        <source>Common</source>\n        <translation>通用</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>滑鼠</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>觸控板</translation>\n    </message>\n</context>\n<context>\n    <name>MousePage</name>\n    <message>\n        <source>Mouse</source>\n        <translation>滑鼠</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>指標速度</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>慢</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>快</translation>\n    </message>\n    <message>\n        <source>Pointer Size</source>\n        <translation>指標大小</translation>\n    </message>\n    <message>\n        <source>Mouse Acceleration</source>\n        <translation>滑鼠加速</translation>\n    </message>\n    <message>\n        <source>Disable touchpad when a mouse is connected</source>\n        <translation>插入滑鼠時停用觸控板</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>自然滾動</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>中</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>大</translation>\n    </message>\n    <message>\n        <source>X-Large</source>\n        <translation>極大</translation>\n    </message>\n    <message>\n        <source>Some apps require logout or system restart to take effect</source>\n        <translation>部分應用需登出或重啟系統後生效</translation>\n    </message>\n</context>\n<context>\n    <name>MyDevice</name>\n    <message>\n        <source>My Devices</source>\n        <translation>我的裝置</translation>\n    </message>\n</context>\n<context>\n    <name>NativeInfoPage</name>\n    <message>\n        <source>UOS</source>\n        <translation>UOS</translation>\n    </message>\n    <message>\n        <source>Computer name</source>\n        <translation>計算機名</translation>\n    </message>\n    <message>\n        <source>It cannot start or end with dashes</source>\n        <translation>計算機名不能以 - 開頭結尾</translation>\n    </message>\n    <message>\n        <source>OS Name</source>\n        <translation>產品名稱</translation>\n    </message>\n    <message>\n        <source>Version</source>\n        <translation>版本號</translation>\n    </message>\n    <message>\n        <source>Edition</source>\n        <translation>版本</translation>\n    </message>\n    <message>\n        <source>Type</source>\n        <translation>型別</translation>\n    </message>\n    <message>\n        <source>bit</source>\n        <translation>位</translation>\n    </message>\n    <message>\n        <source>Authorization</source>\n        <translation>版本授權</translation>\n    </message>\n    <message>\n        <source>System installation time</source>\n        <translation>系統安裝日期</translation>\n    </message>\n    <message>\n        <source>Kernel</source>\n        <translation>核心版本</translation>\n    </message>\n    <message>\n        <source>Graphics Platform</source>\n        <translation>圖形平臺</translation>\n    </message>\n    <message>\n        <source>Processor</source>\n        <translation>處理器</translation>\n    </message>\n    <message>\n        <source>Memory</source>\n        <translation>記憶體</translation>\n    </message>\n    <message>\n        <source>1~63 characters please</source>\n        <translation>計算機名長度必須介於1到63個字元之間</translation>\n    </message>\n</context>\n<context>\n    <name>Notification</name>\n    <message>\n        <source>DND mode, app notifications</source>\n        <translation>勿擾模式、應用通知</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>通知</translation>\n    </message>\n</context>\n<context>\n    <name>NotificationMain</name>\n    <message>\n        <source>Do Not Disturb Settings</source>\n        <translation>勿擾設定</translation>\n    </message>\n    <message>\n        <source>App notifications will not be shown on desktop and the sounds will be silenced, but you can view all messages in the notification center.</source>\n        <translation>所有應用消息橫幅將會被隱藏，通知聲音將會靜音，您可在通知中心檢視所有消息。</translation>\n    </message>\n    <message>\n        <source>Enable Do Not Disturb</source>\n        <translation>啟用勿擾模式</translation>\n    </message>\n    <message>\n        <source>When the screen is locked</source>\n        <translation>在螢幕鎖屏時</translation>\n    </message>\n    <message>\n        <source>Number of notifications shown on the desktop</source>\n        <translation>通知橫幅展示數量</translation>\n    </message>\n    <message>\n        <source>App Notifications</source>\n        <translation>應用通知</translation>\n    </message>\n    <message>\n        <source>Allow Notifications</source>\n        <translation>允許通知</translation>\n    </message>\n    <message>\n        <source>Display notification on desktop or show unread messages in the notification center</source>\n        <translation>可以顯示通知橫幅，或在通知中心顯示未讀消息</translation>\n    </message>\n    <message>\n        <source>Desktop</source>\n        <translation>桌面</translation>\n    </message>\n    <message>\n        <source>Lock Screen</source>\n        <translation>鎖屏</translation>\n    </message>\n    <message>\n        <source>Notification Center</source>\n        <translation>通知中心</translation>\n    </message>\n    <message>\n        <source>Show message preview</source>\n        <translation>顯示消息預覽</translation>\n    </message>\n    <message>\n        <source>Play a sound</source>\n        <translation>通知時提示聲音</translation>\n    </message>\n</context>\n<context>\n    <name>OtherDevice</name>\n    <message>\n        <source>Other Devices</source>\n        <translation>其他裝置</translation>\n    </message>\n    <message>\n        <source>Show Bluetooth devices without names</source>\n        <translation>顯示沒有名稱的藍牙裝置</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordLayout</name>\n    <message>\n        <source>Current password</source>\n        <translation>當前密碼</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>Weak</source>\n        <translation>強度低</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <translation>強度中</translation>\n    </message>\n    <message>\n        <source>Strong</source>\n        <translation>強度高</translation>\n    </message>\n    <message>\n        <source>Repeat Password</source>\n        <translation>重複密碼</translation>\n    </message>\n    <message>\n        <source>Password hint</source>\n        <translation>密碼提示</translation>\n    </message>\n    <message>\n        <source>Optional</source>\n        <translation>選填</translation>\n    </message>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>密碼不能為空</translation>\n    </message>\n    <message>\n        <source>Passwords do not match</source>\n        <translation>密碼不一致</translation>\n    </message>\n    <message>\n        <source>The hint is visible to all users. Do not include the password here.</source>\n        <translation>密碼提示對所有人可見，切勿包含具體密碼資訊</translation>\n    </message>\n    <message>\n        <source>New password</source>\n        <translation>新密碼</translation>\n    </message>\n    <message>\n        <source>New password should differ from the current one</source>\n        <translation>新的密碼必須不同於目前密碼</translation>\n    </message>\n    <message>\n        <source>The password cannot be the same as the username.</source>\n        <translation>密碼不能與使用者名稱一致。</translation>\n    </message>\n</context>\n<context>\n    <name>PasswordModifyDialog</name>\n    <message>\n        <source>Modify password</source>\n        <translation>修改密碼</translation>\n    </message>\n    <message>\n        <source>Reset password</source>\n        <translation>重置密碼</translation>\n    </message>\n    <message>\n        <source>Password length should be at least 8 characters, and the password should contain a combination of at least 3 of the following: uppercase letters, lowercase letters, numbers, and symbols. This type of password is more secure.</source>\n        <translation>建議密碼長度8位以上，同時包含大寫字母、小寫字母、數字、符號中的3種密碼更安全</translation>\n    </message>\n    <message>\n        <source>Resetting the password will clear the data stored in the keyring.</source>\n        <translation>重設密碼將會清除金鑰環內已儲存的資料</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n</context>\n<context>\n    <name>Personalization</name>\n    <message>\n        <source>Personalization</source>\n        <translation>個性化</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationInterface</name>\n    <message>\n        <source>Light</source>\n        <translation>淺色</translation>\n    </message>\n    <message>\n        <source>Auto</source>\n        <translation>自動</translation>\n    </message>\n    <message>\n        <source>Dark</source>\n        <translation>深色</translation>\n    </message>\n    <message>\n        <source>Picker service is not available</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Invalid color format: %1</source>\n        <translation type=\"unfinished\"/>\n    </message>\n</context>\n<context>\n    <name>PersonalizationMain</name>\n    <message>\n        <source>Theme</source>\n        <translation>主題</translation>\n    </message>\n    <message>\n        <source>Appearance</source>\n        <translation>外觀</translation>\n    </message>\n    <message>\n        <source>Window effect</source>\n        <translation>視窗效果</translation>\n    </message>\n    <message>\n        <source>Personalize your wallpaper and screensaver</source>\n        <translation>個性化您的壁紙和屏保</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>螢幕保護</translation>\n    </message>\n    <message>\n        <source>Colors and icons</source>\n        <translation>顏色和圖示</translation>\n    </message>\n    <message>\n        <source>Adjust accent color and theme icons</source>\n        <translation>調整活動色和主題圖示</translation>\n    </message>\n    <message>\n        <source>Font and font size</source>\n        <translation>字型和字號</translation>\n    </message>\n    <message>\n        <source>Change system font and size</source>\n        <translation>修改系統字型與字號</translation>\n    </message>\n    <message>\n        <source>Wallpaper</source>\n        <translation>壁紙</translation>\n    </message>\n    <message>\n        <source>Select light, dark or automatic theme appearance</source>\n        <translation>選擇淺色、深色或自動切換主題外觀</translation>\n    </message>\n    <message>\n        <source>Interface and effects, rounded corners</source>\n        <translation>介面和效果、視窗圓角</translation>\n    </message>\n</context>\n<context>\n    <name>PersonalizationWorker</name>\n    <message>\n        <source>Custom</source>\n        <translation>自定義</translation>\n    </message>\n</context>\n<context>\n    <name>PluginArea</name>\n    <message>\n        <source>Plugin Area</source>\n        <translation>外掛區域</translation>\n    </message>\n    <message>\n        <source>Select which icons appear in the Dock</source>\n        <translation>選擇顯示在工作列外掛區域的圖示</translation>\n    </message>\n</context>\n<context>\n    <name>Power</name>\n    <message>\n        <source>Power saving settings, screen and suspend</source>\n        <translation>節能設定、螢幕和待機管理</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>電源管理</translation>\n    </message>\n</context>\n<context>\n    <name>PowerMain</name>\n    <message>\n        <source>General</source>\n        <translation>通用</translation>\n    </message>\n    <message>\n        <source>Power plans, power saving settings, wakeup settings, shutdown settings</source>\n        <translation>效能模式、節能設定、喚醒設定、關機設定</translation>\n    </message>\n    <message>\n        <source>Plugged In</source>\n        <translation>使用電源</translation>\n    </message>\n    <message>\n        <source>Screen and suspend</source>\n        <translation>螢幕和待機管理</translation>\n    </message>\n    <message>\n        <source>On Battery</source>\n        <translation>使用電池</translation>\n    </message>\n    <message>\n        <source>screen and suspend, low battery, battery management</source>\n        <translation>螢幕和待機管理、低電量管理、電池管理</translation>\n    </message>\n</context>\n<context>\n    <name>PowerOperatorModel</name>\n    <message>\n        <source>Shut down</source>\n        <translation>關機</translation>\n    </message>\n    <message>\n        <source>Suspend</source>\n        <translation>待機</translation>\n    </message>\n    <message>\n        <source>Hibernate</source>\n        <translation>休眠</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor</source>\n        <translation>關閉顯示器</translation>\n    </message>\n    <message>\n        <source>Show the shutdown Interface</source>\n        <translation>進入關機介面</translation>\n    </message>\n    <message>\n        <source>Do nothing</source>\n        <translation>無任何操作</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPage</name>\n    <message>\n        <source>Screen and Suspend</source>\n        <translation>螢幕和待機</translation>\n    </message>\n    <message>\n        <source>Turn off the monitor after</source>\n        <translation>關閉顯示器</translation>\n    </message>\n    <message>\n        <source>Lock screen after</source>\n        <translation>自動鎖屏</translation>\n    </message>\n    <message>\n        <source>Computer suspends after</source>\n        <translation>進入待機</translation>\n    </message>\n    <message>\n        <source>When the lid is closed</source>\n        <translation>筆記本合蓋時</translation>\n    </message>\n    <message>\n        <source>When the power button is pressed</source>\n        <translation>按電源按鈕時</translation>\n    </message>\n</context>\n<context>\n    <name>PowerPlansListview</name>\n    <message>\n        <source>High Performance</source>\n        <translation>高效能模式</translation>\n    </message>\n    <message>\n        <source>Balance Performance</source>\n        <translation>效能模式</translation>\n    </message>\n    <message>\n        <source>Aggressively adjust CPU operating frequency based on CPU load condition</source>\n        <translation>根據負載情況積極調整執行頻率</translation>\n    </message>\n    <message>\n        <source>Balanced</source>\n        <translation>平衡模式</translation>\n    </message>\n    <message>\n        <source>Power Saver</source>\n        <translation>節能模式</translation>\n    </message>\n    <message>\n        <source>Prioritize performance, which will significantly increase power consumption and heat generation</source>\n        <translation>效能優先，會顯著提升功耗和發熱</translation>\n    </message>\n    <message>\n        <source>Balancing performance and battery life, automatically adjusted according to usage</source>\n        <translation>兼顧效能和續航，根據使用情況自動調節</translation>\n    </message>\n    <message>\n        <source>Prioritize battery life, which the system will sacrifice some performance to reduce power consumption</source>\n        <translation>續航優先，系統會犧牲一些效能表現來降低功耗</translation>\n    </message>\n</context>\n<context>\n    <name>PowerWorker</name>\n    <message>\n        <source>Minutes</source>\n        <translation>分鐘</translation>\n    </message>\n    <message>\n        <source>Hour</source>\n        <translation>小時</translation>\n    </message>\n    <message>\n        <source>Never</source>\n        <translation>從不</translation>\n    </message>\n</context>\n<context>\n    <name>Privacy</name>\n    <message>\n        <source>Privacy and Security</source>\n        <translation>隱私和安全</translation>\n    </message>\n    <message>\n        <source>Camera, folder permissions</source>\n        <translation>攝像頭、資料夾許可權</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyMain</name>\n    <message>\n        <source>Camera</source>\n        <translation>攝像頭</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to the camera</source>\n        <translation>選擇應用是否有攝像頭的訪問許可權</translation>\n    </message>\n    <message>\n        <source>Files and Folders</source>\n        <translation>檔案和資料夾</translation>\n    </message>\n    <message>\n        <source>Choose whether the application has access to files and folders</source>\n        <translation>選擇應用是否有檔案和資料夾的訪問許可權</translation>\n    </message>\n</context>\n<context>\n    <name>PrivacyPolicyPage</name>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>隱私政策</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>複製連結地址</translation>\n    </message>\n</context>\n<context>\n    <name>PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>密碼不能為空</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>密碼長度不能少於%1個字元</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>密碼長度不能超過%1個字元</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>密碼只能由英文（區分大小寫）、數字或特殊符號（~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/）組成</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>迴文字元長度不超過%1位</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>單調性字元不超過%1位</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>重複字元不超過%1位</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>密碼必須由大寫字母、小寫字母、數字、符號（~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/）三種類型組成</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>密碼不得含有連續4個以上的迴文字元</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>密碼不能是常見單詞及組合</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>密碼過於簡單，請增加密碼複雜度</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>密碼不符合安全要求</translation>\n    </message>\n</context>\n<context>\n    <name>QObject</name>\n    <message>\n        <source>Control Center</source>\n        <translation>控制中心</translation>\n    </message>\n    <message>\n        <source>Activated</source>\n        <translation>已啟用</translation>\n    </message>\n    <message>\n        <source>View</source>\n        <translation>檢視</translation>\n    </message>\n    <message>\n        <source>To be activated</source>\n        <translation>待啟用</translation>\n    </message>\n    <message>\n        <source>Activate</source>\n        <translation>啟用</translation>\n    </message>\n    <message>\n        <source>Expired</source>\n        <translation>已過期</translation>\n    </message>\n    <message>\n        <source>In trial period</source>\n        <translation>試用期</translation>\n    </message>\n    <message>\n        <source>Trial expired</source>\n        <translation>試用期過期</translation>\n    </message>\n    <message>\n        <source>dde-control-center</source>\n        <translation>控制中心</translation>\n    </message>\n    <message>\n        <source>Touch Screen Settings</source>\n        <translation>觸控屏設定</translation>\n    </message>\n    <message>\n        <source>The settings of touch screen changed</source>\n        <translation>已變更觸控屏設定</translation>\n    </message>\n    <message>\n        <source>This system wallpaper is locked. Please contact your admin.</source>\n        <translation>當前系統壁紙已被鎖定，請聯絡管理員</translation>\n    </message>\n    <message>\n        <source>%1 (%2)</source>\n        <comment>Language and region name, e.g. Chinese (China)</comment>\n        <translation>%1 (%2)</translation>\n    </message>\n</context>\n<context>\n    <name>RegionFormatDialog</name>\n    <message>\n        <source>Search</source>\n        <translation>搜尋</translation>\n    </message>\n    <message>\n        <source>Default formats</source>\n        <translation>預設格式</translation>\n    </message>\n    <message>\n        <source>First day of week</source>\n        <translation>一週第一天</translation>\n    </message>\n    <message>\n        <source>Short date</source>\n        <translation>短日期</translation>\n    </message>\n    <message>\n        <source>Long date</source>\n        <translation>長日期</translation>\n    </message>\n    <message>\n        <source>Short time</source>\n        <translation>短時間</translation>\n    </message>\n    <message>\n        <source>Long time</source>\n        <translation>長時間</translation>\n    </message>\n    <message>\n        <source>Currency symbol</source>\n        <translation>貨幣符號</translation>\n    </message>\n    <message>\n        <source>Digit</source>\n        <translation>數字</translation>\n    </message>\n    <message>\n        <source>Paper size</source>\n        <translation>紙張</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>儲存</translation>\n    </message>\n    <message>\n        <source>Regional format</source>\n        <translation>區域格式</translation>\n    </message>\n</context>\n<context>\n    <name>RegionsChooserWindow</name>\n    <message>\n        <source>Search</source>\n        <translation>搜尋</translation>\n    </message>\n</context>\n<context>\n    <name>RegisterDialog</name>\n    <message>\n        <source>Set a Password</source>\n        <translation>設定密碼</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>請輸入8-64位密碼</translation>\n    </message>\n    <message>\n        <source>Repeat the password</source>\n        <translation>請再次輸入密碼</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>確定</translation>\n    </message>\n    <message>\n        <source>Passwords don&apos;t match</source>\n        <translation>兩次密碼輸入不一致</translation>\n    </message>\n</context>\n<context>\n    <name>ScheduledShutdownDialog</name>\n    <message>\n        <source>Customize repetition time</source>\n        <translation>自定義重複時間</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>儲存</translation>\n    </message>\n</context>\n<context>\n    <name>ScreenSaverPage</name>\n    <message>\n        <source>Screensaver</source>\n        <translation>螢幕保護</translation>\n    </message>\n    <message>\n        <source>preview</source>\n        <translation>全屏預覽</translation>\n    </message>\n    <message>\n        <source>Personalized screensaver</source>\n        <translation>個性化屏保</translation>\n    </message>\n    <message>\n        <source>setting</source>\n        <translation>設定</translation>\n    </message>\n    <message>\n        <source>idle time</source>\n        <translation>閒置時間</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1分鐘</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5分鐘</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10分鐘</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15分鐘</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30分鐘</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1小時</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>從不</translation>\n    </message>\n    <message>\n        <source>Password required for recovery</source>\n        <translation>恢復時需要密碼</translation>\n    </message>\n    <message>\n        <source>Picture slideshow screensaver</source>\n        <translation>圖片輪播屏保</translation>\n    </message>\n    <message>\n        <source>System screensaver</source>\n        <translation>系統屏保</translation>\n    </message>\n</context>\n<context>\n    <name>SearchableListViewPopup</name>\n    <message>\n        <source>Search</source>\n        <translation>搜尋</translation>\n    </message>\n    <message>\n        <source>No search results</source>\n        <translation>無搜尋結果</translation>\n    </message>\n</context>\n<context>\n    <name>ShortcutSettingDialog</name>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>新增自定義快捷鍵</translation>\n    </message>\n    <message>\n        <source>Name:</source>\n        <translation>名稱：</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>Command:</source>\n        <translation>命令：</translation>\n    </message>\n    <message>\n        <source>Shortcut</source>\n        <translation>快捷鍵</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>無</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>新增</translation>\n    </message>\n    <message>\n        <source>The shortcut name is already in use. Choose a different name.</source>\n        <translation>快捷鍵名稱已被佔用，請修改名稱。</translation>\n    </message>\n    <message>\n        <source>Change custom shortcut</source>\n        <translation>修改自定義快捷鍵</translation>\n    </message>\n    <message>\n        <source>please enter a shortcut key</source>\n        <translation>請輸入快捷鍵</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>儲存</translation>\n    </message>\n    <message>\n        <source>click Save to make this shortcut key effective</source>\n        <translation>點選儲存使這個快捷鍵生效</translation>\n    </message>\n    <message>\n        <source>click Add to make this shortcut key effective</source>\n        <translation>點選新增使這個快捷鍵生效</translation>\n    </message>\n</context>\n<context>\n    <name>Shortcuts</name>\n    <message>\n        <source>Shortcuts</source>\n        <translation>快捷鍵</translation>\n    </message>\n    <message>\n        <source>System shortcut, custom shortcut</source>\n        <translation>系統快捷鍵、自定義快捷鍵</translation>\n    </message>\n    <message>\n        <source>Search shortcuts</source>\n        <translation>搜尋快捷鍵</translation>\n    </message>\n    <message>\n        <source>done</source>\n        <translation>完成</translation>\n    </message>\n    <message>\n        <source>edit</source>\n        <translation>編輯</translation>\n    </message>\n    <message>\n        <source>Click</source>\n        <translation>點選</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>or</source>\n        <translation>或</translation>\n    </message>\n    <message>\n        <source>Replace</source>\n        <translation>替換</translation>\n    </message>\n    <message>\n        <source>Restore default</source>\n        <translation>恢復預設</translation>\n    </message>\n    <message>\n        <source>Add custom shortcut</source>\n        <translation>新增快捷鍵</translation>\n    </message>\n    <message>\n        <source>please enter a new shortcut key</source>\n        <translation>請輸入新的快捷鍵</translation>\n    </message>\n</context>\n<context>\n    <name>Sound</name>\n    <message>\n        <source>Sound</source>\n        <translation>聲音</translation>\n    </message>\n    <message>\n        <source>Output, input, sound effects, devices</source>\n        <translation>輸入、輸出、系統音效、裝置管理</translation>\n    </message>\n</context>\n<context>\n    <name>SoundDevicemanagesPage</name>\n    <message>\n        <source>Output Devices</source>\n        <translation>輸出裝置</translation>\n    </message>\n    <message>\n        <source>Select whether to enable the devices</source>\n        <translation>選擇是否啟用裝置</translation>\n    </message>\n    <message>\n        <source>Input Devices</source>\n        <translation>輸入裝置</translation>\n    </message>\n</context>\n<context>\n    <name>SoundEffectsPage</name>\n    <message>\n        <source>Sound Effects</source>\n        <translation>系統音效</translation>\n    </message>\n</context>\n<context>\n    <name>SoundMain</name>\n    <message>\n        <source>Settings</source>\n        <translation>設定</translation>\n    </message>\n    <message>\n        <source>Sound Effects</source>\n        <translation>系統音效</translation>\n    </message>\n    <message>\n        <source>Enable/disable sound effects</source>\n        <translation>開啟/關閉系統音效</translation>\n    </message>\n    <message>\n        <source>Enable/disable audio devices</source>\n        <translation>啟用/停用音訊裝置</translation>\n    </message>\n    <message>\n        <source>Devices Management</source>\n        <translation>裝置管理</translation>\n    </message>\n</context>\n<context>\n    <name>SoundModel</name>\n    <message>\n        <source>Boot up</source>\n        <translation>開機</translation>\n    </message>\n    <message>\n        <source>Shut down</source>\n        <translation>關機</translation>\n    </message>\n    <message>\n        <source>Log out</source>\n        <translation>登出</translation>\n    </message>\n    <message>\n        <source>Wake up</source>\n        <translation>喚醒</translation>\n    </message>\n    <message>\n        <source>Volume +/-</source>\n        <translation>音量調節</translation>\n    </message>\n    <message>\n        <source>Notification</source>\n        <translation>通知</translation>\n    </message>\n    <message>\n        <source>Low battery</source>\n        <translation>電量不足</translation>\n    </message>\n    <message>\n        <source>Send icon in Launcher to Desktop</source>\n        <translation>從啟動器傳送圖示到桌面</translation>\n    </message>\n    <message>\n        <source>Empty Trash</source>\n        <translation>清空回收站</translation>\n    </message>\n    <message>\n        <source>Plug in</source>\n        <translation>電源接入</translation>\n    </message>\n    <message>\n        <source>Plug out</source>\n        <translation>電源拔出</translation>\n    </message>\n    <message>\n        <source>Removable device connected</source>\n        <translation>行動裝置接入</translation>\n    </message>\n    <message>\n        <source>Removable device removed</source>\n        <translation>行動裝置拔出</translation>\n    </message>\n    <message>\n        <source>Error</source>\n        <translation>錯誤提示</translation>\n    </message>\n</context>\n<context>\n    <name>SpeakerPage</name>\n    <message>\n        <source>Mode</source>\n        <translation>模式</translation>\n    </message>\n    <message>\n        <source>Output Volume</source>\n        <translation>輸出音量</translation>\n    </message>\n    <message>\n        <source>Volume Boost</source>\n        <translation>音量增強</translation>\n    </message>\n    <message>\n        <source>If the volume is louder than 100%, it may distort audio and be harmful to output devices</source>\n        <translation>音量大於100%時可能會導致音效失真，同時損害您的音訊輸出裝置</translation>\n    </message>\n    <message>\n        <source>Left</source>\n        <translation>左</translation>\n    </message>\n    <message>\n        <source>Right</source>\n        <translation>右</translation>\n    </message>\n    <message>\n        <source>Output</source>\n        <translation>輸出</translation>\n    </message>\n    <message>\n        <source>No output device for sound found</source>\n        <translation>沒有找到聲音輸出裝置</translation>\n    </message>\n    <message>\n        <source>Left Right Balance</source>\n        <translation>左右平衡</translation>\n    </message>\n    <message>\n        <source>Merge left and right channels into a single channel</source>\n        <translation>將左聲道和右聲道合併成一個聲道</translation>\n    </message>\n    <message>\n        <source>Whether the audio will be automatically paused when the current audio device is unplugged</source>\n        <translation>外設插拔時音訊輸出是否自動暫停</translation>\n    </message>\n    <message>\n        <source>Mono Audio</source>\n        <translation>單聲道音訊</translation>\n    </message>\n    <message>\n        <source>Auto Pause</source>\n        <translation>插拔管理</translation>\n    </message>\n    <message>\n        <source>Output Device</source>\n        <translation>輸出裝置</translation>\n    </message>\n</context>\n<context>\n    <name>SyncInfoListModel</name>\n    <message>\n        <source>Sound</source>\n        <translation>聲音</translation>\n    </message>\n    <message>\n        <source>Power</source>\n        <translation>電源</translation>\n    </message>\n    <message>\n        <source>Mouse</source>\n        <translation>滑鼠</translation>\n    </message>\n    <message>\n        <source>Update</source>\n        <translation>更新</translation>\n    </message>\n    <message>\n        <source>Screensaver</source>\n        <translation>螢幕保護</translation>\n    </message>\n</context>\n<context>\n    <name>System</name>\n    <message>\n        <source>Common settings</source>\n        <translation>常用設定</translation>\n    </message>\n    <message>\n        <source>System</source>\n        <translation>系統</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfo</name>\n    <message>\n        <source>Auxiliary Information</source>\n        <translation>輔助資訊</translation>\n    </message>\n</context>\n<context>\n    <name>SystemInfoMain</name>\n    <message>\n        <source>About This PC</source>\n        <translation>關於本機</translation>\n    </message>\n    <message>\n        <source>System version, device information</source>\n        <translation>系統版本、裝置資訊</translation>\n    </message>\n    <message>\n        <source>View the notice of open source software</source>\n        <translation>檢視開源軟體宣告</translation>\n    </message>\n    <message>\n        <source>User Experience Program</source>\n        <translation>使用者體驗計劃</translation>\n    </message>\n    <message>\n        <source>Join the user experience program to help improve the product</source>\n        <translation>加入使用者體驗計劃，幫助改進產品</translation>\n    </message>\n    <message>\n        <source>End User License Agreement</source>\n        <translation>使用者許可協議</translation>\n    </message>\n    <message>\n        <source>View the end  user license agreement</source>\n        <translation>檢視終端使用者許可協議</translation>\n    </message>\n    <message>\n        <source>Privacy Policy</source>\n        <translation>隱私政策</translation>\n    </message>\n    <message>\n        <source>View information about privacy policy</source>\n        <translation>檢視隱私政策相關資訊</translation>\n    </message>\n    <message>\n        <source>Open Source Software Notice</source>\n        <translation>開源軟體宣告</translation>\n    </message>\n</context>\n<context>\n    <name>ThemeSelectView</name>\n    <message>\n        <source>More Wallpapers</source>\n        <translation>下載更多</translation>\n    </message>\n</context>\n<context>\n    <name>TimeAndDate</name>\n    <message>\n        <source>Auto sync time</source>\n        <translation>自動同步配置</translation>\n    </message>\n    <message>\n        <source>Ntp server</source>\n        <translation>伺服器</translation>\n    </message>\n    <message>\n        <source>System date and time</source>\n        <translation>系統日期和時間</translation>\n    </message>\n    <message>\n        <source>Customize</source>\n        <translation>自定義</translation>\n    </message>\n    <message>\n        <source>Settings</source>\n        <translation>設定</translation>\n    </message>\n    <message>\n        <source>Server address</source>\n        <translation>伺服器地址</translation>\n    </message>\n    <message>\n        <source>Required</source>\n        <translation>必填</translation>\n    </message>\n    <message>\n        <source>The ntp server address cannot be empty</source>\n        <translation>時間伺服器地址不能為空</translation>\n    </message>\n    <message>\n        <source>Use 24-hour format</source>\n        <translation>24小時制</translation>\n    </message>\n    <message>\n        <source>system time zone</source>\n        <translation>系統時區</translation>\n    </message>\n    <message>\n        <source>Timezone list</source>\n        <translation>時區列表</translation>\n    </message>\n    <message>\n        <source>Add</source>\n        <translation>新增</translation>\n    </message>\n</context>\n<context>\n    <name>TimeRange</name>\n    <message>\n        <source>from</source>\n        <translation>從</translation>\n    </message>\n    <message>\n        <source>to</source>\n        <translation>至</translation>\n    </message>\n</context>\n<context>\n    <name>TimeoutDialog</name>\n    <message>\n        <source>Save the display settings?</source>\n        <translation>是否要儲存顯示設定？</translation>\n    </message>\n    <message>\n        <source>Settings will be reverted in %1s.</source>\n        <translation>如無任何操作將在%1秒後還原。</translation>\n    </message>\n    <message>\n        <source>Revert</source>\n        <translation>還原</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>儲存</translation>\n    </message>\n</context>\n<context>\n    <name>TimezoneDialog</name>\n    <message>\n        <source>Add time zone</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Determine the time zone based on the current location</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Time zone:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Nearest City:</source>\n        <translation type=\"unfinished\"/>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Save</source>\n        <translation>儲存</translation>\n    </message>\n</context>\n<context>\n    <name>TouchScreen</name>\n    <message>\n        <source>TouchScreen</source>\n        <translation>觸控屏</translation>\n    </message>\n    <message>\n        <source>Set up here when connecting the touch screen</source>\n        <translation>連線觸控螢幕時在此處設定</translation>\n    </message>\n</context>\n<context>\n    <name>Touchpad</name>\n    <message>\n        <source>Basic Settings</source>\n        <translation>基礎設定</translation>\n    </message>\n    <message>\n        <source>Touchpad</source>\n        <translation>觸控板</translation>\n    </message>\n    <message>\n        <source>Pointer Speed</source>\n        <translation>指標速度</translation>\n    </message>\n    <message>\n        <source>Slow</source>\n        <translation>慢</translation>\n    </message>\n    <message>\n        <source>Fast</source>\n        <translation>快</translation>\n    </message>\n    <message>\n        <source>Disable touchpad during input</source>\n        <translation>輸入時停用觸控板</translation>\n    </message>\n    <message>\n        <source>Tap to Click</source>\n        <translation>輕觸以點選</translation>\n    </message>\n    <message>\n        <source>Natural Scrolling</source>\n        <translation>自然滾動</translation>\n    </message>\n    <message>\n        <source>Three-finger gestures</source>\n        <translation>三指手勢</translation>\n    </message>\n    <message>\n        <source>Four-finger gestures</source>\n        <translation>四指手勢</translation>\n    </message>\n    <message>\n        <source>Gestures</source>\n        <translation>手勢</translation>\n    </message>\n</context>\n<context>\n    <name>Touchscreen</name>\n    <message>\n        <source>Touchscreen</source>\n        <translation>觸控屏</translation>\n    </message>\n    <message>\n        <source>Configuring Touchscreen</source>\n        <translation>觸控屏設定</translation>\n    </message>\n</context>\n<context>\n    <name>TouchscreenMain</name>\n    <message>\n        <source>Common</source>\n        <translation>通用</translation>\n    </message>\n</context>\n<context>\n    <name>UserExperienceProgramPage</name>\n    <message>\n        <source>Join User Experience Program</source>\n        <translation>加入使用者體驗計劃</translation>\n    </message>\n    <message>\n        <source>Copy Link Address</source>\n        <translation>複製連結地址</translation>\n    </message>\n</context>\n<context>\n    <name>VerifyDialog</name>\n    <message>\n        <source>Security Verification</source>\n        <translation>安全驗證</translation>\n    </message>\n    <message>\n        <source>The action is sensitive, please enter the login password first</source>\n        <translation>您正在進行敏感操作，請進行登入密碼認證</translation>\n    </message>\n    <message>\n        <source>8-64 characters</source>\n        <translation>請輸入8-64位密碼</translation>\n    </message>\n    <message>\n        <source>Forgot Password?</source>\n        <translation>忘記密碼？</translation>\n    </message>\n    <message>\n        <source>Cancel</source>\n        <translation>取消</translation>\n    </message>\n    <message>\n        <source>Confirm</source>\n        <translation>確定</translation>\n    </message>\n</context>\n<context>\n    <name>Wacom</name>\n    <message>\n        <source>wacom</source>\n        <translation>數位板</translation>\n    </message>\n    <message>\n        <source>Configuring wacom</source>\n        <translation>數位板選項設定</translation>\n    </message>\n</context>\n<context>\n    <name>WacomMain</name>\n    <message>\n        <source>wacom</source>\n        <translation>數位板</translation>\n    </message>\n    <message>\n        <source>Pen Mode</source>\n        <translation>筆模式</translation>\n    </message>\n    <message>\n        <source>Mouse Mode</source>\n        <translation>滑鼠模式</translation>\n    </message>\n    <message>\n        <source>Pressure Sensitivity</source>\n        <translation>壓桿力度</translation>\n    </message>\n    <message>\n        <source>Light</source>\n        <translation>輕</translation>\n    </message>\n    <message>\n        <source>Heavy</source>\n        <translation>重</translation>\n    </message>\n    <message>\n        <source>Model</source>\n        <translation>模式</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperPage</name>\n    <message>\n        <source>wallpaper</source>\n        <translation>壁紙</translation>\n    </message>\n    <message>\n        <source>My pictures</source>\n        <translation>我的圖片</translation>\n    </message>\n    <message>\n        <source>System Wallpaper</source>\n        <translation>系統壁紙</translation>\n    </message>\n    <message>\n        <source>Solid color wallpaper</source>\n        <translation>純色壁紙</translation>\n    </message>\n    <message>\n        <source>Customizable wallpapers</source>\n        <translation>自定義</translation>\n    </message>\n    <message>\n        <source>fill style</source>\n        <translation>填充方式</translation>\n    </message>\n    <message>\n        <source>Automatic wallpaper change</source>\n        <translation>自動切換壁紙</translation>\n    </message>\n    <message>\n        <source>never</source>\n        <translation>從不</translation>\n    </message>\n    <message>\n        <source>30 second</source>\n        <translation>30秒</translation>\n    </message>\n    <message>\n        <source>1 minute</source>\n        <translation>1分鐘</translation>\n    </message>\n    <message>\n        <source>5 minute</source>\n        <translation>5分鐘</translation>\n    </message>\n    <message>\n        <source>10 minute</source>\n        <translation>10分鐘</translation>\n    </message>\n    <message>\n        <source>15 minute</source>\n        <translation>15分鐘</translation>\n    </message>\n    <message>\n        <source>30 minute</source>\n        <translation>30分鐘</translation>\n    </message>\n    <message>\n        <source>login</source>\n        <translation>登入時</translation>\n    </message>\n    <message>\n        <source>wake up</source>\n        <translation>喚醒時</translation>\n    </message>\n    <message>\n        <source>Live Wallpaper</source>\n        <translation>動態壁紙</translation>\n    </message>\n    <message>\n        <source>1 hour</source>\n        <translation>1小時</translation>\n    </message>\n    <message>\n        <source>System Wallpapers</source>\n        <translation>系統壁紙</translation>\n    </message>\n</context>\n<context>\n    <name>WallpaperSelectView</name>\n    <message>\n        <source>unfold</source>\n        <translation>收起</translation>\n    </message>\n    <message>\n        <source>Set lock screen</source>\n        <translation>設定鎖屏</translation>\n    </message>\n    <message>\n        <source>Set desktop</source>\n        <translation>設定桌面</translation>\n    </message>\n    <message>\n        <source>show all - %1 items</source>\n        <translation>顯示全部－%1張</translation>\n    </message>\n    <message>\n        <source>Add Picture</source>\n        <translation>新增圖片</translation>\n    </message>\n</context>\n<context>\n    <name>WindowEffectPage</name>\n    <message>\n        <source>Interface and Effects</source>\n        <translation>介面效果</translation>\n    </message>\n    <message>\n        <source>Window Settings</source>\n        <translation>視窗設定</translation>\n    </message>\n    <message>\n        <source>Window rounded corners</source>\n        <translation>視窗圓角</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>無</translation>\n    </message>\n    <message>\n        <source>Small</source>\n        <translation>小</translation>\n    </message>\n    <message>\n        <source>Large</source>\n        <translation>大</translation>\n    </message>\n    <message>\n        <source>Enable transparent effects when moving windows</source>\n        <translation>視窗移動時啟用透明特效</translation>\n    </message>\n    <message>\n        <source>Window Minimize Effect</source>\n        <translation>最小化時效果</translation>\n    </message>\n    <message>\n        <source>Scale</source>\n        <translation>縮放</translation>\n    </message>\n    <message>\n        <source>Magic Lamp</source>\n        <translation>魔燈</translation>\n    </message>\n    <message>\n        <source>Opacity</source>\n        <translation>不透明度調節</translation>\n    </message>\n    <message>\n        <source>Low</source>\n        <translation>低</translation>\n    </message>\n    <message>\n        <source>High</source>\n        <translation>高</translation>\n    </message>\n    <message>\n        <source>Scroll Bars</source>\n        <translation>捲軸</translation>\n    </message>\n    <message>\n        <source>Show on scrolling</source>\n        <translation>滾動時顯示</translation>\n    </message>\n    <message>\n        <source>Keep shown</source>\n        <translation>一直顯示</translation>\n    </message>\n    <message>\n        <source>Compact Display</source>\n        <translation>緊湊模式</translation>\n    </message>\n    <message>\n        <source>If enabled, more content is displayed in the window.</source>\n        <translation>開啟後，視窗將顯示更多內容</translation>\n    </message>\n    <message>\n        <source>Title Bar Height</source>\n        <translation>標題欄高度</translation>\n    </message>\n    <message>\n        <source>Only suitable for application window title bars drawn by the window manager.</source>\n        <translation>僅適用於視窗管理器繪製的應用標題欄</translation>\n    </message>\n    <message>\n        <source>Extremely small</source>\n        <translation>極小</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe size of window rounded corners</comment>\n        <translation>中</translation>\n    </message>\n    <message>\n        <source>Medium</source>\n        <comment>describe height of window title bar</comment>\n        <translation>中</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::dialectNames</name>\n    <message>\n        <source>Traditional Chinese (Chinese Hong Kong)</source>\n        <translation>繁體中文（中國香港）</translation>\n    </message>\n    <message>\n        <source>Traditional Chinese (Chinese Taiwan)</source>\n        <translation>繁體中文（中國台灣）</translation>\n    </message>\n    <message>\n        <source>Min Nan Chinese</source>\n        <translation>閩南語</translation>\n    </message>\n</context>\n<context>\n    <name>dcc::Locale::regionNames</name>\n    <message>\n        <source>Taiwan China</source>\n        <translation>中國臺灣</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsController</name>\n    <message>\n        <source>Username must be between 3 and 32 characters</source>\n        <translation>使用者名稱長度必須介於 3 到 32 個字元之間</translation>\n    </message>\n    <message>\n        <source>The first character must be a letter or number</source>\n        <translation>必須字母或者數字開頭</translation>\n    </message>\n    <message>\n        <source>Your username should not only have numbers</source>\n        <translation>使用者名稱不能僅僅是數字</translation>\n    </message>\n    <message>\n        <source>The username has been used by other user accounts</source>\n        <translation>使用者名稱和其他使用者名稱重複</translation>\n    </message>\n    <message>\n        <source>The full name is too long</source>\n        <translation>全名太長了</translation>\n    </message>\n    <message>\n        <source>The full name has been used by other user accounts</source>\n        <translation>全名和其他使用者名稱重複</translation>\n    </message>\n    <message>\n        <source>Wrong password</source>\n        <translation>密碼錯誤</translation>\n    </message>\n    <message>\n        <source>Standard User</source>\n        <translation>標準使用者</translation>\n    </message>\n    <message>\n        <source>Administrator</source>\n        <translation>管理員</translation>\n    </message>\n    <message>\n        <source>Customized</source>\n        <translation>自定義</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AccountsWorker</name>\n    <message>\n        <source>Your host was removed from the domain server successfully</source>\n        <translation>您的主機成功退出了域伺服器</translation>\n    </message>\n    <message>\n        <source>Your host joins the domain server successfully</source>\n        <translation>您的主機成功加入了域伺服器</translation>\n    </message>\n    <message>\n        <source>Your host failed to leave the domain server</source>\n        <translation>您的主機退出域伺服器失敗</translation>\n    </message>\n    <message>\n        <source>Your host failed to join the domain server</source>\n        <translation>您的主機加入域伺服器失敗</translation>\n    </message>\n    <message>\n        <source>AD domain settings</source>\n        <translation>AD域設定</translation>\n    </message>\n    <message>\n        <source>Password not match</source>\n        <translation>密碼不一致</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::AvatarTypesModel</name>\n    <message>\n        <source>Dimensional</source>\n        <translation>立體風格</translation>\n    </message>\n    <message>\n        <source>Flat</source>\n        <translation>平面風格</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FaceAuthController</name>\n    <message>\n        <source>Faceprint</source>\n        <translation>麵紋</translation>\n    </message>\n    <message>\n        <source>Face</source>\n        <translation>人臉</translation>\n    </message>\n    <message>\n        <source>Use your face to unlock the device and make settings later</source>\n        <translation>使用人臉資料解鎖您的裝置，之後還可進行更多設定</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::FingerprintAuthController</name>\n    <message>\n        <source>Fingerprint</source>\n        <translation>指紋</translation>\n    </message>\n    <message>\n        <source>Place your finger</source>\n        <translation>放置手指</translation>\n    </message>\n    <message>\n        <source>Place your finger firmly on the sensor until you&apos;re asked to lift it</source>\n        <translation>請以手指壓指紋收集器，然後根據提示擡起</translation>\n    </message>\n    <message>\n        <source>Lift your finger</source>\n        <translation>擡起手指</translation>\n    </message>\n    <message>\n        <source>Lift your finger and place it on the sensor again</source>\n        <translation>請擡起手指，再次按壓</translation>\n    </message>\n    <message>\n        <source>Lift your finger and do that again</source>\n        <translation>請擡起手指，再次按壓</translation>\n    </message>\n    <message>\n        <source>Scan Suspended</source>\n        <translation>錄入中斷</translation>\n    </message>\n    <message>\n        <source>Scan the edges of your fingerprint</source>\n        <translation>錄入邊緣指紋</translation>\n    </message>\n    <message>\n        <source>Place the edges of your fingerprint on the sensor</source>\n        <translation>請以手指邊緣壓指紋收集器，然後根據提示擡起</translation>\n    </message>\n    <message>\n        <source>Adjust the position to scan the edges of your fingerprint</source>\n        <translation>請調整按壓區域，繼續錄入邊緣指紋</translation>\n    </message>\n    <message>\n        <source>Fingerprint added</source>\n        <translation>成功新增指紋</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::IrisAuthController</name>\n    <message>\n        <source>Iris</source>\n        <translation>虹膜</translation>\n    </message>\n    <message>\n        <source>Use your iris to unlock the device and make settings later</source>\n        <translation>使用虹膜資料解鎖您的裝置，之後還可進行更多設定</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::KeyboardController</name>\n    <message>\n        <source>This shortcut conflicts with [%1]</source>\n        <translation>此快捷鍵與[%1]衝突</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::PwqualityManager</name>\n    <message>\n        <source>Password cannot be empty</source>\n        <translation>密碼不能為空</translation>\n    </message>\n    <message>\n        <source>Password must have at least %1 characters</source>\n        <translation>密碼長度不能少於%1個字元</translation>\n    </message>\n    <message>\n        <source>Password must be no more than %1 characters</source>\n        <translation>密碼長度不能超過%1個字元</translation>\n    </message>\n    <message>\n        <source>Password can only contain English letters (case-sensitive), numbers or special symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>密碼只能由英文（區分大小寫）、數字或特殊符號（~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/）組成</translation>\n    </message>\n    <message>\n        <source>No more than %1 palindrome characters please</source>\n        <translation>迴文字元長度不超過%1位</translation>\n    </message>\n    <message>\n        <source>No more than %1 monotonic characters please</source>\n        <translation>單調性字元不超過%1位</translation>\n    </message>\n    <message>\n        <source>No more than %1 repeating characters please</source>\n        <translation>重複字元不超過%1位</translation>\n    </message>\n    <message>\n        <source>Password must contain uppercase letters, lowercase letters, numbers and symbols (~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/)</source>\n        <translation>密碼必須由大寫字母、小寫字母、數字、符號（~`!@#$%^&amp;*()-_+=|\\{}[]:&quot;&apos;&lt;&gt;,.?/）三種類型組成</translation>\n    </message>\n    <message>\n        <source>Password must not contain more than 4 palindrome characters</source>\n        <translation>密碼不得含有連續4個以上的迴文字元</translation>\n    </message>\n    <message>\n        <source>Do not use common words and combinations as password</source>\n        <translation>密碼不能是常見單詞及組合</translation>\n    </message>\n    <message>\n        <source>Create a strong password please</source>\n        <translation>密碼過於簡單，請增加密碼複雜度</translation>\n    </message>\n    <message>\n        <source>It does not meet password rules</source>\n        <translation>密碼不符合安全要求</translation>\n    </message>\n    <message>\n        <source>At least include %1 types among lowercase letters, uppercase letters, numbers, and symbols, and the password cannot be the same as the username.</source>\n        <translation>至少同時包含小寫字母、大寫字母、數字和符號中的%1種，且密碼不能與使用者名稱一致。</translation>\n    </message>\n</context>\n<context>\n    <name>dccV25::ShortcutModel</name>\n    <message>\n        <source>System</source>\n        <translation>系統</translation>\n    </message>\n    <message>\n        <source>Window</source>\n        <translation>視窗</translation>\n    </message>\n    <message>\n        <source>Workspace</source>\n        <translation>工作區</translation>\n    </message>\n    <message>\n        <source>AssistiveTools</source>\n        <translation>輔助功能</translation>\n    </message>\n    <message>\n        <source>Custom</source>\n        <translation>自定義</translation>\n    </message>\n    <message>\n        <source>None</source>\n        <translation>無</translation>\n    </message>\n</context>\n</TS>"
  },
  {
    "path": "translations/desktop/desktop.ts",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>\n"
  },
  {
    "path": "translations/desktop/desktop_ady.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ady\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_af.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"af\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Beheersentrum</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_af_ZA.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"af_ZA\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ak.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ak\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_am.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"am\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_am_ET.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"am_ET\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>መቆጣጠሪያ ማእከል</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>ዲፕኢን መቆጣጠሪያ ማእከል</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ar.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ar\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>مركز التحكم</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>مركز تحكم ديبين</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>مركز تحكم بيئة سطح مكتب Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ar_EG.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ar_EG\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ast.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ast\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Centru de control</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Centru de control Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_az.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"az\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>İdarə Etmə Mərkəzi</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin İdarəetmə Mərkəzi</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin İş Masası Mühiti İdarəetmə Mərkəzi</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_bg.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"bg\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Контролен център</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Контролен център на Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Контролен център на работната среда Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_bn.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"bn\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>নিয়ন্ত্রণ কেন্দ্র</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>ডিপিন কন্ট্রোল সেন্টার</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>ডিপিন ডেস্কটপ এনভাইরনমেন্ট নিয়ন্ত্রণ কেন্দ্র</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_bo.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"bo\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>ཚོད་འཛིན་ལྟེ་གནས།</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>གཏིང་ཚད་ཚོད་འཛིན་ལྟེ་གནས།</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>གཏིང་ཚད་ཅོག་ངོས་ཁོར་ཡུག་ཚོད་འཛིན་ལྟེ་གནས།</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_bqi.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"bqi\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_br.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"br\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ca.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ca\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Centre de control</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Centre de control del Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Centre de control de l&apos;entorn d&apos;escriptori del Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_cgg.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"cgg\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_cs.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"cs\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Ovládací panely</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Ovládací panely pro Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Ovládací panely pracovního prostředí Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_da.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"da\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Kontrolcenter</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin kontrolcenter</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Kontrolcenter for Deepin-skrivebordsmiljø</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_de.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"de\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Kontrollzentrum</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin Kontrollzentrum</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin Desktop-Umgebung Kontrollzentrum</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_el.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"el\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Κέντρο Ελέγχου</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin Κέντρο Ελέγχου</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Κέντρο Ελέγχου Περιβάλλοντος Εγασίας Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_el_GR.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"el_GR\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_en.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS language=\"en\" version=\"2.1\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Control Center</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin Control Center</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin Desktop Environment Control Center</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_en_AU.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"en_AU\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Control Center</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin Control Center</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin Desktop Environment Control Center</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_en_GB.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"en_GB\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Control Center</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin Control Center</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin Desktop Environment Control Center</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_en_NO.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"en_NO\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_en_US.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"en_US\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Control Center</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin Control Center</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin Desktop Environment Control Center</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_eo.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"eo\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>kontroloj centro</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_es.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"es\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Centro de control</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Centro de control de Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Centro de control del entorno de escritorio Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_et.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"et\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Juhtpaneel</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin juhtpaneel</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin töölaua juhtpaneel</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_eu.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"eu\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_fa.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"fa\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>مرکز کنترل</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>مرکز کنترل دیپین</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>مرکز کنترل محیط دسکتاپ دیپین</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_fi.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"fi\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Ohjauspaneli</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin ohjauspaneeli</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin ohjauspaneeli</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_fil.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"fil\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin Control Center</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_fr.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"fr\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Centre de contrôle</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Centre de contrôle Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Centre de contrôle de l’environnement de bureau Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_gl.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"gl\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_gl_ES.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"gl_ES\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Centro de Control</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Centro de control de Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Centro de control de ambiente de escritorio Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_he.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"he\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>מרכז בקרה</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>מרכז הבקרה של Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>מרכז управления סביבת שולחן העבודה Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_hi_IN.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"hi_IN\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>नियंत्रण केंद्र</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>डीपइन नियंत्रण केंद्र</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>डीपिन डेस्कटॉप वातावरण नियंत्रण केंद्र </translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_hr.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"hr\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Središte upravljanja</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin kontrolni centar</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Kontrolni centar Deepin radnog okruženja</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_hu.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"hu\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Vezérlőpult</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin® Vezérlőpult</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin® Asztali Környezet Vezérlőpult</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_hy.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"hy\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Ղեկավարման Կենտրոն</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_id.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"id\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Pusat Kontrol</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Pusat Kontrol Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Pusat Kontrol Lingkungan Desktop Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_id_ID.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"id_ID\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_it.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"it\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Centro di Controllo</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Centro di Controllo di Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Centro di Controllo del Deepin Desktop Environment</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ja.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ja\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>コントロールセンター</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin コントロールセンター</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin デスクトップ環境のコントロールセンター</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ka.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ka\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>მართვის ცენტრი</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_kab.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"kab\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Ammas n usenqed</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Ammas n usenqed n Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Ammas n usenqed n twennaḍt n tnarit n Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_kk.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"kk\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Көрсөткүч центрі</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin Көрсөткүч центрі</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin Аreamаялық міндеттерінің Көрсөткүч центрі</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_km_KH.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"km_KH\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>មជ្ឈមណ្ឌលបញ្ជា</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>មជ្ឈមណ្ឌលបញ្ជា Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>មជ្ឈមណ្ឌលបញ្ជាបរិស្ថានផ្ទៃតុ Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_kn_IN.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"kn_IN\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ko.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ko\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>제어 센터</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin 제어 센터</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin 바탕화면 환경 제어 센터</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ku.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ku\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ku_IQ.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ku_IQ\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ky.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ky\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ky@Arab.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ky@Arab\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_la.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"la\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_lo.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"lo\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>ສູນຄວບຄຸມ</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>ສູນຄວບຄຸມ Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>deepin ສູນຄວບຄຸມສະພາບແວດລ້ອມ desktop</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_lt.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"lt\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Valdymo centras</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin valdymo centras</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin darbalaukio aplinkos valdymo centras</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_lv.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"lv\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ml.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ml\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_mn.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"mn\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Удирдлагын хэсэг</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_mr.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"mr\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ms.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ms\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Pusat Kawalan</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Pusat Kawalan Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Pusat Kawalan Persekitaran Atas Meja Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_nb.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"nb\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Kontrollsenter</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin kontrollsenter</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin Desktop Environment Kontrollsenter</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ne.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ne\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>नियन्त्रण केन्द्र</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Desktop Control Center</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>डीपिन डेस्कटप वातावरण नियन्त्रण केन्द्र</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_nl.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"nl\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Instellingencentrum</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin Systeeminstellingen</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin Systeeminstellingen</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_pa.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"pa\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>ਕੰਟਰੋਲ ਸੈਂਟਰ</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>ਡੀਪਿਨ ਡੈਸਕਟਾਪ ਇੰਵਾਇਰਨਮੈਂਟ ਕੰਟਰੋਲ ਸੈਂਟਰ</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_pam.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"pam\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_pl.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"pl\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Centrum kontroli</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Centrum kontroli Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Centrum kontroli środowiska Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ps.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ps\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_pt.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"pt\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Centro de Controlo</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Centro de Controlo Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Centro de Controlo do Ambiente de trabalho Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_pt_BR.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"pt_BR\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Configurações</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Configurações</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Configurações do Deepin Desktop Environment</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ro.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ro\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Centru Control</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Panou de Control Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Centru Control Mediu Desktop Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ru.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ru\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Центр Управления</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Центр Управления Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Центр управления окружением рабочего стола Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ru_UA.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ru_UA\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_sc.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"sc\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_si.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"si\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>පාලන මධ්‍යස්ථානය</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin පාලන මධ්‍යස්ථානය</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin ඩෙස්ක්ටොප් පරිසර පාලන මධ්‍යස්ථානය</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_sk.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"sk\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Ovládacie centrum</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin Ovládacie centrum</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Ovládacie centrum Deepin Desktop Environment</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_sl.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"sl\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Nadzorni center</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Nadzorni center Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin Desktop Enviroment nadzorni center</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_sq.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"sq\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Qendër Kontrolli</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Qendër Kontrolli Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Qendër Kontrolli e Mjedisit Desktop Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_sr.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"sr\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Контролни Центар</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Дипин Контролни Центар</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Дипин Радно Окружење Контролни Центар</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_sv.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"sv\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Kontrollcenter</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin Kontrollcenter</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin Desktop Environment Kontrollcenter</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_sv_SE.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"sv_SE\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_sw.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"sw\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Kituo cha ulinzi</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Kituo cha ulinzi za eneo la kazi ya Deepin </translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ta.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ta\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>கட்டுப்பாட்டு மையம்</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_te.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"te\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_th.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"th\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_tr.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"tr\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Kontrol Merkezi</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin Kontrol Merkezi</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin Masaüstü Ortamı Kontrol Merkezi</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_tzm.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"tzm\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ug.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ug\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>كونترول مەركىزى </translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin كونترول مەركىزى</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>ئېكران مۇھىتى كونترول قىلىش مەركىزى </translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_uk.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"uk\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Центр керування</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Центр керування Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Центр керування стільничним середовищем Deepin</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_ur.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"ur\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_uz.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"uz\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation type=\"unfinished\"/></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation type=\"unfinished\"/></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_vi.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"vi\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>Trung tâm kiểm soát</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Trung tâm Điều khiển Deepin</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Điều khiển Deepin Desktop Environment </translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_zh_CN.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"zh_CN\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>控制中心</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>深度控制中心 </translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>深度桌面环境控制中心</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_zh_HK.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"zh_HK\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>控制中心</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin 控制中心</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin 控制中心</translation></message></context></TS>"
  },
  {
    "path": "translations/desktop/desktop_zh_TW.ts",
    "content": "<?xml version=\"1.0\" ?><!DOCTYPE TS><TS version=\"2.1\" language=\"zh_TW\"><context><name>desktop</name><message><location filename=\"Desktop Entry]GenericName\" line=\"0\"/><source>Control Center</source><translation>控制中心</translation></message><message><location filename=\"Desktop Entry]Name\" line=\"0\"/><source>Deepin Control Center</source><translation>Deepin 控制中心</translation></message><message><location filename=\"Desktop Entry]Comment\" line=\"0\"/><source>Deepin Desktop Environment Control Center</source><translation>Deepin 桌面環境的控制中心</translation></message></context></TS>"
  }
]